@app-studio/web 0.7.15 → 0.7.17
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 +6 -4
- 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 +4 -2
- 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
|
};
|
|
@@ -8,7 +8,8 @@ var React = require('react');
|
|
|
8
8
|
var React__default = _interopDefault(React);
|
|
9
9
|
var appStudio = require('app-studio');
|
|
10
10
|
var reactRouterDom = require('react-router-dom');
|
|
11
|
-
var
|
|
11
|
+
var Horizontal$1 = require('src/components/Layout/Horizontal/Horizontal');
|
|
12
|
+
var Vertical$1 = require('src/components/Layout/Vertical/Vertical');
|
|
12
13
|
var format = _interopDefault(require('date-fns/format'));
|
|
13
14
|
var formik = require('formik');
|
|
14
15
|
var zustand = require('zustand');
|
|
@@ -3051,9 +3052,9 @@ var CheckboxView = function CheckboxView(_ref) {
|
|
|
3051
3052
|
onMouseEnter: handleHover,
|
|
3052
3053
|
onMouseLeave: handleHover,
|
|
3053
3054
|
size: appStudio.Typography.fontSizes[size]
|
|
3054
|
-
}, checkboxStyle.container, props), React__default.createElement(
|
|
3055
|
+
}, checkboxStyle.container, props), React__default.createElement(Vertical$1.Vertical, {
|
|
3055
3056
|
gap: 8
|
|
3056
|
-
}, React__default.createElement(
|
|
3057
|
+
}, React__default.createElement(Horizontal$1.Horizontal, {
|
|
3057
3058
|
gap: 10,
|
|
3058
3059
|
alignItems: "center"
|
|
3059
3060
|
}, labelPosition === 'left' && label && React__default.createElement(Text, Object.assign({
|
|
@@ -6204,12 +6205,13 @@ var Table = function Table(_ref) {
|
|
|
6204
6205
|
}, children);
|
|
6205
6206
|
};
|
|
6206
6207
|
Table.Head = TableHead;
|
|
6208
|
+
Table.HeadCell = TableHeadCell;
|
|
6207
6209
|
Table.Body = TableBody;
|
|
6208
6210
|
Table.Row = TableRow;
|
|
6209
6211
|
Table.Cell = TableCell;
|
|
6210
6212
|
Table.Footer = TableFooter;
|
|
6211
6213
|
Table.Caption = TableCaption;
|
|
6212
|
-
Table.
|
|
6214
|
+
Table.Container = TableContainer;
|
|
6213
6215
|
Table.Template = TableView;
|
|
6214
6216
|
|
|
6215
6217
|
// Initializes a custom hook for managing tab states with an array of 'Tab' objects passed as properties.
|