What's New

    • Introduce the <EditInDialogButton emptyWhenLoading> prop.
  • Navigation 5.2.05 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>
  • Form Layout v5.9.012 days ago

    • Warn about unsaved changes with <AutoSave>
    • Introduce the <AutoSave disableWarnWhenUnsavedChanges> prop.
  • Search v5.3.213 days ago

    • Fix the message displayed when no results are found by introducing a new ra-search.no_results translation key.
  • Datagrid AG v5.4.115 days ago

    • Fix <DatagridAG> does not apply stored list pagination after navigation
  • Enterprise v10.0.018 days ago

    • Upgrade to @react-admin/ra-tree v6
  • Tree 6.0.018 days ago

    • React-admin now calls <Tree onClick> handler with the event as the first parameter and the clicked TreeRecord as second parameter instead of the rc-tree TreeNode.
    • <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 multiple mutationMode like useTreeController that will be applied to drag & drop operations mutations.
  • Navigation 5.1.021 days ago

    • Allow <HorizontalMenu.Item> to be used as a child of another <HorizontalMenu.Item> to create submenus
    • Add <HorizontalMenu.DashboardItem>
  • Datagrid AG v5.4.025 days ago

    • Feat: add canAccess check to enable in-place editing
    • Update react-admin to v5.3.0
  • Form Layout v5.8.027 days ago

    • Feat: Dialog components (<CreateDialog>, <EditDialog>, <ShowDialog>, <CreateInDialogButton>, <EditInDialogButton>, <ShowInDialogButton>) now support hiding the title with title={null}