ListDefaultSlots: {
    ActionAdd: (
        { action, width, label, isVisible, isDisabled, }: any,
    ) => JSX.Element;
    ActionFab: (
        { action, label, width, icon: Icon, isVisible, isDisabled, }: any,
    ) => JSX.Element;
    ActionListSlot: <FilterData extends {}>(
        { className, actions, style, title, height, width, deps, }: any,
    ) => JSX.Element;
    ActionMenu: (
        { options, deps, }: any,
    ) => JSX.Element | null;
    BodyRow: <RowData extends any = any>(props: any) => JSX.Element;
    CheckboxCell: <RowData extends any = any>(
        { row, disabled, }: any,
    ) => JSX.Element;
    ChipListSlot: (props: any) => JSX.Element;
    CommonCell: <RowData extends any = any>(
� Â Â Â Â Â Â Â { column, row, disabled, onMenuToggle, onAction, }: any,
    ) => any;
    DesktopBodyRow: <RowData extends any = any>(
        { row, mode, columns, disabled, fullWidth, }: any,
    ) => JSX.Element;
    FilterListSlot: <FilterData extends {}>(
        { className, style, height, filterData, filters, change, label, loading, withSearch, withToggledFilters, search, onSearchChange, onFilterChange, onCollapsedChange, }: any,
    ) => JSX.Element;
    HeadRow: (props: any) => JSX.Element;
    MobileBodyRow: <RowData extends any = any>(
        { row, mode, disabled, columns, fullWidth, }: any,
    ) => JSX.Element;
    OperationListSlot: (
        { className, style, operations, width, }: any,
    ) => JSX.Element;
    SearchSlot: (
        { className, style, label, loading, search, onSearchChange, }: any,
    ) => JSX.Element;
}

Type declaration

  • ActionAdd: (
        { action, width, label, isVisible, isDisabled, }: any,
    ) => JSX.Element
  • ActionFab: (
        { action, label, width, icon: Icon, isVisible, isDisabled, }: any,
    ) => JSX.Element
  • ActionListSlot: <FilterData extends {}>(
        { className, actions, style, title, height, width, deps, }: any,
    ) => JSX.Element
  • ActionMenu: ({ options, deps, }: any) => JSX.Element | null
  • BodyRow: <RowData extends any = any>(props: any) => JSX.Element
  • CheckboxCell: <RowData extends any = any>(
        { row, disabled, }: any,
    ) => JSX.Element
  • ChipListSlot: (props: any) => JSX.Element
  • CommonCell: <RowData extends any = any>(
        { column, row, disabled, onMenuToggle, onAction, }: any,
    ) => any
  • DesktopBodyRow: <RowData extends any = any>(
        { row, mode, columns, disabled, fullWidth, }: any,
    ) => JSX.Element
  • FilterListSlot: <FilterData extends {}>(
        { className, style, height, filterData, filters, change, label, loading, withSearch, withToggledFilters, search, onSearchChange, onFilterChange, onCollapsedChange, }: any,
    ) => JSX.Element
  • HeadRow: (props: any) => JSX.Element
  • MobileBodyRow: <RowData extends any = any>(
        { row, mode, disabled, columns, fullWidth, }: any,
    ) => JSX.Element
  • OperationListSlot: (
        { className, style, operations, width, }: any,
    ) => JSX.Element
  • SearchSlot: (
        { className, style, label, loading, search, onSearchChange, }: any,
    ) => JSX.Element

Variable holding an array of default slot components.