odaptos_design_system 1.4.9 → 1.4.10

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.
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ interface TableRowsProps {
3
+ footerItems: any[];
4
+ }
5
+ export declare const TableFooter: ({ footerItems }: TableRowsProps) => React.JSX.Element;
6
+ export {};
@@ -16,9 +16,10 @@ interface TableProps {
16
16
  id?: string;
17
17
  rowsClassName?: string;
18
18
  selectAll?: () => void;
19
+ footerItems?: any[];
19
20
  }
20
21
  /**
21
22
  * Figma link : https://www.figma.com/file/fjnhhbL12HvKccPmJchVnr/Atomic-Library?type=design&node-id=1262-39999&mode=dev
22
23
  */
23
- export declare const Table: ({ headers, rows, isSelectable, className, id, rowsClassName, areAllSelected, selectAll, }: TableProps) => React.JSX.Element;
24
+ export declare const Table: ({ headers, rows, isSelectable, className, id, rowsClassName, areAllSelected, footerItems, selectAll, }: TableProps) => React.JSX.Element;
24
25
  export {};