@owp/core 1.24.2 → 1.25.0
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/{QuickPanel-D8WlNSMK.js → QuickPanel-uWtPXsYC.js} +3 -3
- package/dist/{QuickPanel-D8WlNSMK.js.map → QuickPanel-uWtPXsYC.js.map} +1 -1
- package/dist/constants.js +1 -1
- package/dist/hooks.js +33 -75
- package/dist/hooks.js.map +1 -1
- package/dist/{index-1U_Yytcf.js → index-DvBno1rF.js} +7800 -7776
- package/dist/{index-1U_Yytcf.js.map → index-DvBno1rF.js.map} +1 -1
- package/dist/index.js +232 -131
- package/dist/index.js.map +1 -1
- package/dist/{treeGrid-4QKOKXZw.js → treeGrid-CPgV7yMG.js} +9 -9
- package/dist/{treeGrid-4QKOKXZw.js.map → treeGrid-CPgV7yMG.js.map} +1 -1
- package/dist/{treeGridUtil-CGze1rYA.js → treeGridUtil-mbjQrrTs.js} +83 -83
- package/dist/{treeGridUtil-CGze1rYA.js.map → treeGridUtil-mbjQrrTs.js.map} +1 -1
- package/dist/types/hooks/useCommonCodeList.d.ts +4 -4
- package/dist/types/hooks/useNavigation.d.ts +4 -4
- package/dist/types/index.d.ts +3 -0
- package/dist/{useTreeGridExcelExport-B_a3dFaL.js → useTreeGridExcelExport-BPWeY2Oq.js} +770 -729
- package/dist/useTreeGridExcelExport-BPWeY2Oq.js.map +1 -0
- package/dist/utils.js +64 -6932
- package/dist/utils.js.map +1 -1
- package/dist/zipUtil-Dmq4Gna2.js +7505 -0
- package/dist/zipUtil-Dmq4Gna2.js.map +1 -0
- package/package.json +1 -1
- package/dist/OwpUtils-DgBOzRu6.js +0 -628
- package/dist/OwpUtils-DgBOzRu6.js.map +0 -1
- package/dist/useTreeGridExcelExport-B_a3dFaL.js.map +0 -1
|
@@ -8,10 +8,10 @@ export declare const useGetCommonCodeList: () => {
|
|
|
8
8
|
/**
|
|
9
9
|
* 공통코드 목록 설정 훅
|
|
10
10
|
*/
|
|
11
|
-
export declare const useSetCommonCodeList: () => (args_0:
|
|
11
|
+
export declare const useSetCommonCodeList: () => (args_0: {
|
|
12
12
|
[codeId: string]: CommonCode[];
|
|
13
|
-
} | ((prev: {
|
|
13
|
+
} | typeof import("jotai/utils").RESET | ((prev: {
|
|
14
14
|
[codeId: string]: CommonCode[];
|
|
15
|
-
}) =>
|
|
15
|
+
}) => {
|
|
16
16
|
[codeId: string]: CommonCode[];
|
|
17
|
-
})) => void;
|
|
17
|
+
} | typeof import("jotai/utils").RESET)) => void;
|
|
@@ -14,11 +14,11 @@ export declare const useGetNavigationList: () => (Navigation & {
|
|
|
14
14
|
/**
|
|
15
15
|
* 내비게이션 목록 설정 훅
|
|
16
16
|
*/
|
|
17
|
-
export declare const useSetNavigationList: () => (args_0: (Navigation & {
|
|
17
|
+
export declare const useSetNavigationList: () => (args_0: typeof import("jotai/utils").RESET | (Navigation & {
|
|
18
18
|
children?: Array<Navigation>;
|
|
19
|
-
})[] |
|
|
19
|
+
})[] | ((prev: (Navigation & {
|
|
20
20
|
children?: Array<Navigation>;
|
|
21
|
-
})[]) => (Navigation & {
|
|
21
|
+
})[]) => typeof import("jotai/utils").RESET | (Navigation & {
|
|
22
22
|
children?: Array<Navigation>;
|
|
23
|
-
})[]
|
|
23
|
+
})[])) => void;
|
|
24
24
|
export {};
|
package/dist/types/index.d.ts
CHANGED
|
@@ -4,6 +4,9 @@ export * from './colors/skyBlue';
|
|
|
4
4
|
export { DialogsProvider } from '@toolpad/core/useDialogs';
|
|
5
5
|
export * from './context/OwpAppProvider';
|
|
6
6
|
export * from './store/store';
|
|
7
|
+
export * from './constants';
|
|
8
|
+
export * from './hooks';
|
|
9
|
+
export * from './utils';
|
|
7
10
|
export * from './components/layouts/themeLayouts';
|
|
8
11
|
export * from './components/layouts/shared-components/OwpLanguageSwitcherSelect';
|
|
9
12
|
export * from './components/layouts/shared-components/OwpSettingsViewerDialog';
|