What's New
Form Layout v5.10.0-1 day ago
- Introduce the
<EditInDialogButton emptyWhenLoading>
prop.
- Introduce the
Navigation 5.2.0-5 days ago
- Add access control support to
<SolarMenu.ResourceItem>
- Add
<HorizontalMenu.ResourceItem>
with access control support - Add
<Icon.ResourceItem>
with access control support - Add
<Icon.DashboardItem>
- Add
<MultiLevelMenu.ResourceItem>
with access control support - Add
<MultiLevelMenu.DashboardItem>
- Add access control support to
Form Layout v5.9.0-12 days ago
- Warn about unsaved changes with
<AutoSave>
- Introduce the
<AutoSave disableWarnWhenUnsavedChanges>
prop.
- Warn about unsaved changes with
Search v5.3.2-13 days ago
- Fix the message displayed when no results are found by introducing a new
ra-search.no_results
translation key.
- Fix the message displayed when no results are found by introducing a new
Datagrid AG v5.4.1-15 days ago
- Fix
<DatagridAG>
does not apply stored list pagination after navigation
- Fix
Enterprise v10.0.0-18 days ago
- Upgrade to
@react-admin/ra-tree
v6
- Upgrade to
Tree 6.0.0-18 days ago
- React-admin now calls
<Tree onClick>
handler with the event as the first parameter and the clickedTreeRecord
as second parameter instead of the rc-treeTreeNode
. <Tree onExpand>
signature changed to:(event: MouseEvent, expandedRecords: TreeRecord[], record: TreeRecord, isExpanded: boolean) => void
<Tree onSelect>
signature changed to:(event: MouseEvent, selectedRecord: TreeRecord | undefined, record: TreeRecord, isSelected: boolean) => void
<Tree onCheck>
signature changed to:(event: MouseEvent, selectedRecords: TreeRecord[], record: TreeRecord, isSelected: boolean) => void
<Tree onDrop>
signature changed to:(event: MouseEvent, dropData: { source: TreeRecord; destination: TreeRecord; position: number; type: 'child' | 'sibling'; }) => void
<TreeWithDetails>
now support multiplemutationMode
likeuseTreeController
that will be applied to drag & drop operations mutations.
- React-admin now calls
Navigation 5.1.0-21 days ago
- Allow
<HorizontalMenu.Item>
to be used as a child of another<HorizontalMenu.Item>
to create submenus - Add
<HorizontalMenu.DashboardItem>
- Allow
Datagrid AG v5.4.0-25 days ago
- Feat: add
canAccess
check to enable in-place editing - Update
react-admin
to v5.3.0
- Feat: add
Form Layout v5.8.0-27 days ago
- Feat: Dialog components (
<CreateDialog>
,<EditDialog>
,<ShowDialog>
,<CreateInDialogButton>
,<EditInDialogButton>
,<ShowInDialogButton>
) now support hiding the title withtitle={null}
- Feat: Dialog components (