@6thbridge/hexa 0.0.0-pr69-114 → 0.0.0-pr70-116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -421,6 +421,7 @@ type TableBulkRowActionsProps = {
421
421
  tableBulkActions: RowAction[];
422
422
  selectedRows: string[];
423
423
  isMobile?: boolean;
424
+ id?: string;
424
425
  };
425
426
 
426
427
  type SelectOption = {
@@ -518,8 +519,9 @@ type TableProps<T extends RowData> = {
518
519
  actions: TableBulkRowActionsProps["tableBulkActions"];
519
520
  selectedRows?: TableBulkRowActionsProps["selectedRows"];
520
521
  };
522
+ emptyDataMessage?: ReactNode;
521
523
  };
522
- declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
524
+ declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, emptyDataMessage, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
523
525
 
524
526
  type PageDataToolbarProps = {
525
527
  onRefetch?: () => void;
package/dist/index.d.ts CHANGED
@@ -421,6 +421,7 @@ type TableBulkRowActionsProps = {
421
421
  tableBulkActions: RowAction[];
422
422
  selectedRows: string[];
423
423
  isMobile?: boolean;
424
+ id?: string;
424
425
  };
425
426
 
426
427
  type SelectOption = {
@@ -518,8 +519,9 @@ type TableProps<T extends RowData> = {
518
519
  actions: TableBulkRowActionsProps["tableBulkActions"];
519
520
  selectedRows?: TableBulkRowActionsProps["selectedRows"];
520
521
  };
522
+ emptyDataMessage?: ReactNode;
521
523
  };
522
- declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
524
+ declare const Table: <T extends RowData>({ table, isMobile, onRowClick, id, onRefetch, isRefetching, FilterMenu, ExtraNode, onExport, search, download, isLoading, pagination, filterListOptions, setAppliedFilters, onFilterChange, tableBulkActions, emptyDataMessage, }: TableProps<T>) => react_jsx_runtime.JSX.Element;
523
525
 
524
526
  type PageDataToolbarProps = {
525
527
  onRefetch?: () => void;