@app-studio/web 0.7.15 → 0.7.16
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/components/Table/Table.d.ts +2 -1
- package/dist/web.cjs.development.js +2 -1
- package/dist/web.cjs.development.js.map +1 -1
- package/dist/web.cjs.production.min.js +1 -1
- package/dist/web.cjs.production.min.js.map +1 -1
- package/dist/web.esm.js +2 -1
- package/dist/web.esm.js.map +1 -1
- package/package.json +1 -1
|
@@ -3,11 +3,12 @@ import { TableLayoutProps } from './Table/Table.props';
|
|
|
3
3
|
export declare const Table: {
|
|
4
4
|
({ children, styles }: TableLayoutProps): React.JSX.Element;
|
|
5
5
|
Head: React.FC<any>;
|
|
6
|
+
HeadCell: React.FC<any>;
|
|
6
7
|
Body: React.FC<any>;
|
|
7
8
|
Row: React.FC<any>;
|
|
8
9
|
Cell: React.FC<any>;
|
|
9
10
|
Footer: React.FC<any>;
|
|
10
11
|
Caption: React.FC<any>;
|
|
11
|
-
|
|
12
|
+
Container: React.FC<any>;
|
|
12
13
|
Template: React.FC<import("./Table/Table.props").TableViewProps>;
|
|
13
14
|
};
|
|
@@ -6204,12 +6204,13 @@ var Table = function Table(_ref) {
|
|
|
6204
6204
|
}, children);
|
|
6205
6205
|
};
|
|
6206
6206
|
Table.Head = TableHead;
|
|
6207
|
+
Table.HeadCell = TableHeadCell;
|
|
6207
6208
|
Table.Body = TableBody;
|
|
6208
6209
|
Table.Row = TableRow;
|
|
6209
6210
|
Table.Cell = TableCell;
|
|
6210
6211
|
Table.Footer = TableFooter;
|
|
6211
6212
|
Table.Caption = TableCaption;
|
|
6212
|
-
Table.
|
|
6213
|
+
Table.Container = TableContainer;
|
|
6213
6214
|
Table.Template = TableView;
|
|
6214
6215
|
|
|
6215
6216
|
// Initializes a custom hook for managing tab states with an array of 'Tab' objects passed as properties.
|