@rafal.lemieszewski/tide-ui 0.40.0 → 0.40.1

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.
@@ -74,8 +74,10 @@ interface DataTableColumnHeaderProps<_TData = any, _TValue = any> extends React.
74
74
  declare function DataTableColumnHeader<TData, TValue>({ column, title, className, }: DataTableColumnHeaderProps<TData, TValue>): import("react/jsx-runtime").JSX.Element;
75
75
  interface DataTablePaginationProps<_TData = any> {
76
76
  table: any;
77
+ enableGrouping?: boolean;
78
+ hideChildrenForSingleItemGroups?: Record<string, boolean>;
77
79
  }
78
- declare function DataTablePagination<TData>({ table }: DataTablePaginationProps<TData>): import("react/jsx-runtime").JSX.Element;
80
+ declare function DataTablePagination<TData>({ table, enableGrouping, hideChildrenForSingleItemGroups }: DataTablePaginationProps<TData>): import("react/jsx-runtime").JSX.Element;
79
81
  export type BorderStyle = "vertical" | "horizontal" | "both" | "none";
80
82
  export interface DataTableProps<TData, TValue> {
81
83
  columns: ColumnDef<TData, TValue>[];