jclib-ui 1.0.152 → 1.0.153
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 +2 -0
- package/dist/jclib-ui.css +1 -1
- package/dist/jclib-ui.es.js +277 -16
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +95 -11
- package/dist/jclib-ui.umd.js.map +1 -1
- package/dist/tabContainer/tabControl.d.ts +8 -0
- package/dist/tabContainer/tabControlContext.d.ts +35 -0
- package/dist/tabContainer/tabHeader.d.ts +3 -0
- package/dist/tabContainer/tabSheet/tabSheet.d.ts +8 -0
- package/dist/tabContainer/tabSheet/tabSheet.styles.d.ts +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,8 @@ export { ScrollContainer } from './ScrollContainer/ScrollContainer';
|
|
|
62
62
|
export { default as BoxSearch } from './BoxSearch/BoxSearch';
|
|
63
63
|
export { default as PrintButtons } from './printButtons/printButtons';
|
|
64
64
|
export { FormDeskGrid, FormDeskLine, default as FormDesk } from './formDesk/formDesk';
|
|
65
|
+
export { default as TabControl } from './tabContainer/tabControl';
|
|
66
|
+
export { default as TabSheet } from './tabContainer/tabSheet/tabSheet';
|
|
65
67
|
export { useLocalForage } from './hooks/useLocalForage';
|
|
66
68
|
export { default as useParamId } from './hooks/useParamId';
|
|
67
69
|
export { default as useQuery } from './hooks/useQuery';
|