isp-ui-kit 0.13.0 → 0.14.1
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/Layout/index.d.ts +0 -2
- package/dist/index.d.ts +22 -2
- package/dist/index.js +1 -1
- package/package.json +1 -1
- package/dist/FormComponents/ConfigForm/index.d.ts +0 -1
- package/dist/Layout/ContentColumn/ContentColumn.d.ts +0 -5
- package/dist/Layout/ContentColumn/content-column.d.ts +0 -3
- package/dist/Layout/ThreeColumn/ThreeColumn.d.ts +0 -4
- package/dist/Layout/ThreeColumn/three-column.type.d.ts +0 -4
package/dist/Layout/index.d.ts
CHANGED
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export { default as Column } from './Column/Column';
|
|
2
|
-
export { default as ContentColumn } from './ContentColumn/ContentColumn';
|
|
3
2
|
export { default as NoData } from './NoData/NoData';
|
|
4
3
|
export { default as EmptyData } from './EmptyData/EmptyData';
|
|
5
4
|
export { default as HomePage } from './HomePage/HomePage';
|
|
6
5
|
export { default as ErrorPage } from './ErrorPage/ErrorPage';
|
|
7
6
|
export { default as NotFoundPage } from './NotFoundPage/NotFoundPage';
|
|
8
|
-
export { default as ThreeColumn } from './ThreeColumn/ThreeColumn';
|
|
9
7
|
export { default as LayoutMenu } from './LayoutMenu/LayoutMenu';
|
|
10
8
|
export { default as LayoutSider } from './LayoutSider/LayoutSider';
|
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,29 @@
|
|
|
1
1
|
import * as FormComponents from './FormComponents';
|
|
2
|
+
export * from './FormComponents/ConfigForm/config-form.type';
|
|
3
|
+
export * from './FormComponents/FormArrayMap/form-array-map.type';
|
|
4
|
+
export * from './FormComponents/FormCheckbox/form-checkbox.type';
|
|
5
|
+
export * from './FormComponents/FormCodeEditor/form-code-editor.type';
|
|
6
|
+
export * from './FormComponents/FormInput/form-input.type';
|
|
7
|
+
export * from './FormComponents/FormInputNumber/form-input-number.type';
|
|
8
|
+
export * from './FormComponents/FormInputPassword/form-input-password.type';
|
|
9
|
+
export * from './FormComponents/FormRadioGroup/form-radio-group.type';
|
|
10
|
+
export * from './FormComponents/FormSelect/form-select.type';
|
|
11
|
+
export * from './FormComponents/FormTextArea/form-text-area.type';
|
|
12
|
+
export * from './FormComponents/FormTreeSelect/form-tree-select.type';
|
|
13
|
+
export * from './FormComponents/formTypes';
|
|
2
14
|
import * as Layout from './Layout';
|
|
15
|
+
export * from './Layout/Column/column.type';
|
|
16
|
+
export * from './Layout/ErrorPage/error-page';
|
|
17
|
+
export * from './Layout/HomePage/home-page';
|
|
18
|
+
export * from './Layout/LayoutMenu/layout-menu';
|
|
19
|
+
export * from './Layout/LayoutSider/layout-sider';
|
|
20
|
+
export * from './Layout/NotFoundPage/not-found-page';
|
|
21
|
+
import ReactJsonView from './components/ReactJsonView/js';
|
|
22
|
+
import ConfigTable from './components/ConfigTable/ConfigTable';
|
|
3
23
|
import SearchInput from './components/SearchInput/SearchInput';
|
|
24
|
+
export * from './components/ConfigTable/config-table.type';
|
|
25
|
+
export * from './components/SearchInput/search-input.type';
|
|
4
26
|
import useAuth from './hooks/useAuth';
|
|
5
27
|
import { getConfigProperty } from './utils/configUtils';
|
|
6
|
-
import ReactJsonView from './components/ReactJsonView/js';
|
|
7
28
|
import { findRouteWithParents } from './utils/layoutMenuUtils';
|
|
8
|
-
import ConfigTable from './components/ConfigTable/ConfigTable';
|
|
9
29
|
export { FormComponents, SearchInput, Layout, useAuth, getConfigProperty, ReactJsonView, findRouteWithParents, ConfigTable, };
|