📄️ <Button>
Strato Admin provides a wrapper around Cloudscape's Button component, ensuring consistent styling across the framework.
📄️ <BulkDeleteButton>
BulkDeleteButton deletes all currently-selected records in a `. It opens a confirmation modal before performing the deletion and is disabled when no rows are selected. It renders null when the resource has canDelete: false`.
📄️ <CancelButton>
CancelButton navigates back to the previous page. It is included in the default form toolbar alongside ` in and ` views.
📄️ <CreateButton>
CreateButton navigates to the create page for the current resource. It renders only when the resource has hasCreate set (i.e. a ` with a create prop). It is typically placed in the actions area of a `.
📄️ <DeleteButton>
DeleteButton deletes the current record after showing a confirmation modal. It is included in the default header of ` views and renders null when the resource has canDelete: false`.
📄️ <EditButton>
EditButton navigates to the edit page for a specific record. It reads the record from the current record context (e.g. inside a ` row or a view). Returns null` when no record is available.
📄️ <SaveButton>
SaveButton submits the enclosing form. It sets formAction="submit" and renders as a native type="submit" button so it works with both Cloudscape form handling and standard HTML form submission. It is typically placed in the actions area of a ` or ` view.