@owp/core 1.23.0 → 1.24.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/OwpUtils-DemzkaAZ.js +628 -0
- package/dist/OwpUtils-DemzkaAZ.js.map +1 -0
- package/dist/{QuickPanel-th8vPfoY.js → QuickPanel-Dla59ejy.js} +6 -5
- package/dist/{QuickPanel-th8vPfoY.js.map → QuickPanel-Dla59ejy.js.map} +1 -1
- package/dist/constants.js +19 -7
- package/dist/constants.js.map +1 -1
- package/dist/hooks.js +78 -0
- package/dist/hooks.js.map +1 -0
- package/dist/index-DuATtBay.js +52475 -0
- package/dist/index-DuATtBay.js.map +1 -0
- package/dist/index.js +131 -225
- package/dist/language-CwsGUe4C.js +5 -0
- package/dist/language-CwsGUe4C.js.map +1 -0
- package/dist/treeGrid-4QKOKXZw.js +46 -0
- package/dist/treeGrid-4QKOKXZw.js.map +1 -0
- package/dist/treeGridUtil-ZdWIjKlK.js +2922 -0
- package/dist/treeGridUtil-ZdWIjKlK.js.map +1 -0
- package/dist/types/constants/excel.d.ts +12 -0
- package/dist/types/constants/index.d.ts +3 -0
- package/dist/types/constants/language.d.ts +1 -0
- package/dist/types/constants/treeGrid.d.ts +4 -0
- package/dist/types/hooks/index.d.ts +19 -0
- package/dist/types/hooks/useCommonCodeList.d.ts +4 -4
- package/dist/types/hooks/useCurrentLanguage.d.ts +1 -1
- package/dist/types/hooks/useNavigation.d.ts +4 -4
- package/dist/types/index.d.ts +0 -37
- package/dist/types/utils/excelUtil.d.ts +2 -8
- package/dist/types/utils/index.d.ts +18 -0
- package/dist/types/utils/treeGridUtil.d.ts +2 -5
- package/dist/useTreeGridExcelExport-BumQHnAN.js +414 -0
- package/dist/useTreeGridExcelExport-BumQHnAN.js.map +1 -0
- package/dist/utils.js +6962 -0
- package/dist/utils.js.map +1 -0
- package/hooks.d.ts +1 -0
- package/hooks.js +1 -0
- package/package.json +7 -2
- package/utils.d.ts +1 -0
- package/utils.js +1 -0
- package/dist/index-DOKXEOMh.js +0 -63356
- package/dist/index-DOKXEOMh.js.map +0 -1
- package/dist/storageKeys-DRzte9LZ.js +0 -15
- package/dist/storageKeys-DRzte9LZ.js.map +0 -1
package/hooks.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/types/hooks/index';
|
package/hooks.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/hooks.js';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@owp/core",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.24.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"module": "dist/index.js",
|
|
@@ -104,6 +104,10 @@
|
|
|
104
104
|
"files": [
|
|
105
105
|
"constants.d.ts",
|
|
106
106
|
"constants.js",
|
|
107
|
+
"hooks.d.ts",
|
|
108
|
+
"hooks.js",
|
|
109
|
+
"utils.d.ts",
|
|
110
|
+
"utils.js",
|
|
107
111
|
"dist/",
|
|
108
112
|
"types/",
|
|
109
113
|
"styles/",
|
|
@@ -123,7 +127,8 @@
|
|
|
123
127
|
"scripts": {
|
|
124
128
|
"dev": "vite",
|
|
125
129
|
"build": "vite build && pnpm run build:types",
|
|
126
|
-
"build:types": "tsc -p tsconfig.types.json",
|
|
130
|
+
"build:types": "pnpm run clean:types && tsc -p tsconfig.types.json",
|
|
131
|
+
"clean:types": "node -e \"require('node:fs').rmSync('dist/types', { recursive: true, force: true })\"",
|
|
127
132
|
"lint": "eslint .",
|
|
128
133
|
"lint:staged": "eslint",
|
|
129
134
|
"preview": "vite preview",
|
package/utils.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/types/utils/index';
|
package/utils.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './dist/utils.js';
|