searchsmartly-ui 0.0.134 → 0.0.136

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.ts CHANGED
@@ -705,8 +705,10 @@ type TableProps<T> = {
705
705
  minWidth?: number;
706
706
  columns: SmartTableColumn<T>[];
707
707
  data: T[];
708
+ sx: Record<string, string | number>;
709
+ headerProps: Record<string, string | number | boolean>;
708
710
  };
709
- declare function Table<T>({ rowHeight, getUniqueId, align, minWidth, columns, data, }: TableProps<T>): JSX$1.Element;
711
+ declare function Table<T>({ rowHeight, getUniqueId, align, minWidth, columns, data, sx, ...headerProps }: TableProps<T>): JSX$1.Element;
710
712
 
711
713
  declare const EmptyImage: FC<{
712
714
  sx?: Record<string, string | number>;