@scmlatam/web-ui 0.1.6 → 0.1.7
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/{get-context-n706IMdq.js → get-context-BTd6Jmu4.js} +1 -1
- package/dist/{main-BFqtOpW2.js → main-DD4J3AHl.js} +10905 -10527
- package/dist/web-ui.d.ts +19 -4
- package/dist/web-ui.js +1 -1
- package/dist/web-ui.umd.cjs +149 -149
- package/package.json +1 -1
package/dist/web-ui.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ import { GroupItem } from './core/types/types';
|
|
|
8
8
|
import { ITableContext } from './table/types/types';
|
|
9
9
|
import { Item } from './core/types/types';
|
|
10
10
|
import { JSX } from 'react/jsx-runtime';
|
|
11
|
+
import { Option as Option_2 } from './table/types/types';
|
|
11
12
|
import { PageProps } from './core/types/types';
|
|
12
13
|
import { PaginationModel } from './table/types/types';
|
|
13
14
|
import { RouteItem } from './core/types/types';
|
|
@@ -18,6 +19,8 @@ import { TableProps as TableProps_2 } from './types/types';
|
|
|
18
19
|
import { TableProviderProps } from './table/types/types';
|
|
19
20
|
import { Theme } from '@mui/material';
|
|
20
21
|
import { ToolbarProps } from './table/types/types';
|
|
22
|
+
import { ValueItem } from './select/types/types';
|
|
23
|
+
import { ValueItem as ValueItem_2 } from '../components/select/types/types';
|
|
21
24
|
|
|
22
25
|
export declare const Core: ({ login, logout, sidebarItems, routes }: CoreProps) => JSX.Element;
|
|
23
26
|
|
|
@@ -50,6 +53,8 @@ export { ITableContext }
|
|
|
50
53
|
|
|
51
54
|
export { Item }
|
|
52
55
|
|
|
56
|
+
export { Option_2 as Option }
|
|
57
|
+
|
|
53
58
|
export { PageProps }
|
|
54
59
|
|
|
55
60
|
export { PaginationModel }
|
|
@@ -71,10 +76,18 @@ export declare const useTable: () => {
|
|
|
71
76
|
setRows: Dispatch<SetStateAction<any[]>>;
|
|
72
77
|
range: [Dayjs | null, Dayjs | null];
|
|
73
78
|
setRange: Dispatch<SetStateAction<[Dayjs | null, Dayjs | null]>>;
|
|
74
|
-
tags:
|
|
75
|
-
setTags: Dispatch<SetStateAction<
|
|
76
|
-
|
|
77
|
-
|
|
79
|
+
tags: ValueItem_2[];
|
|
80
|
+
setTags: Dispatch<SetStateAction<ValueItem_2[]>>;
|
|
81
|
+
tagSelected: string;
|
|
82
|
+
setTagSelected: Dispatch<SetStateAction<string>>;
|
|
83
|
+
tagMultipleSelected: string[];
|
|
84
|
+
setTagMultipleSelected: Dispatch<SetStateAction<string[]>>;
|
|
85
|
+
employees: ValueItem_2[];
|
|
86
|
+
setEmployees: Dispatch<SetStateAction<ValueItem_2[]>>;
|
|
87
|
+
employeeSelected: string;
|
|
88
|
+
setEmployeeSelected: Dispatch<SetStateAction<string>>;
|
|
89
|
+
employeeMultipleSelected: string[];
|
|
90
|
+
setEmployeeMultipleSelected: Dispatch<SetStateAction<string[]>>;
|
|
78
91
|
loading: boolean;
|
|
79
92
|
setLoading: Dispatch<SetStateAction<boolean>>;
|
|
80
93
|
paginationModel: PaginationModel;
|
|
@@ -85,4 +98,6 @@ export declare const useTable: () => {
|
|
|
85
98
|
setContextMenu: Dispatch<SetStateAction<ContextMenu | null>>;
|
|
86
99
|
};
|
|
87
100
|
|
|
101
|
+
export { ValueItem }
|
|
102
|
+
|
|
88
103
|
export { }
|
package/dist/web-ui.js
CHANGED