@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
package/dist/web.esm.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import React, { useRef, useState, useEffect, useCallback, useMemo, createContext, useContext, Fragment } from 'react';
|
|
2
2
|
import { View as View$1, Element, Typography, Image, useTheme, Input, Form } from 'app-studio';
|
|
3
3
|
import { Link as Link$1 } from 'react-router-dom';
|
|
4
|
-
import {
|
|
4
|
+
import { Horizontal as Horizontal$1 } from 'src/components/Layout/Horizontal/Horizontal';
|
|
5
|
+
import { Vertical as Vertical$1 } from 'src/components/Layout/Vertical/Vertical';
|
|
5
6
|
import format from 'date-fns/format';
|
|
6
7
|
import { useFormikContext } from 'formik';
|
|
7
8
|
import { create } from 'zustand';
|
|
@@ -6197,12 +6198,13 @@ var Table = function Table(_ref) {
|
|
|
6197
6198
|
}, children);
|
|
6198
6199
|
};
|
|
6199
6200
|
Table.Head = TableHead;
|
|
6201
|
+
Table.HeadCell = TableHeadCell;
|
|
6200
6202
|
Table.Body = TableBody;
|
|
6201
6203
|
Table.Row = TableRow;
|
|
6202
6204
|
Table.Cell = TableCell;
|
|
6203
6205
|
Table.Footer = TableFooter;
|
|
6204
6206
|
Table.Caption = TableCaption;
|
|
6205
|
-
Table.
|
|
6207
|
+
Table.Container = TableContainer;
|
|
6206
6208
|
Table.Template = TableView;
|
|
6207
6209
|
|
|
6208
6210
|
// Initializes a custom hook for managing tab states with an array of 'Tab' objects passed as properties.
|