@bsol-oss/react-datatable5 7.6.1 → 7.6.3

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
@@ -292,6 +292,15 @@ interface TableHeaderProps {
292
292
  }
293
293
  declare const TableHeader: ({ canResize, pinnedBgColor, showSelector, isSticky, alwaysShowSelector, tHeadProps, }: TableHeaderProps) => react_jsx_runtime.JSX.Element;
294
294
 
295
+ interface TableProps extends TableRootProps {
296
+ showLoading?: boolean;
297
+ loadingComponent?: ReactNode;
298
+ emptyComponent?: ReactNode;
299
+ canResize?: boolean;
300
+ children: ReactNode;
301
+ }
302
+ declare const Table: ({ children, emptyComponent, canResize, ...props }: TableProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null;
303
+
295
304
  interface DefaultTableProps {
296
305
  showFooter?: boolean;
297
306
  showSelector?: boolean;
@@ -311,15 +320,6 @@ interface ReloadButtonProps {
311
320
  }
312
321
  declare const ReloadButton: ({ text, variant, }: ReloadButtonProps) => react_jsx_runtime.JSX.Element;
313
322
 
314
- interface TableProps extends TableRootProps {
315
- showLoading?: boolean;
316
- loadingComponent?: ReactNode;
317
- emptyComponent?: ReactNode;
318
- canResize?: boolean;
319
- children: ReactNode;
320
- }
321
- declare const Table: ({ children, emptyComponent, canResize, ...props }: TableProps) => string | number | bigint | boolean | Iterable<ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<ReactNode> | null | undefined> | react_jsx_runtime.JSX.Element | null;
322
-
323
323
  interface TableCardContainerProps extends GridProps {
324
324
  children: ReactNode;
325
325
  variant?: "carousel" | "";