@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.
Files changed (42) hide show
  1. package/dist/OwpUtils-DemzkaAZ.js +628 -0
  2. package/dist/OwpUtils-DemzkaAZ.js.map +1 -0
  3. package/dist/{QuickPanel-th8vPfoY.js → QuickPanel-Dla59ejy.js} +6 -5
  4. package/dist/{QuickPanel-th8vPfoY.js.map → QuickPanel-Dla59ejy.js.map} +1 -1
  5. package/dist/constants.js +19 -7
  6. package/dist/constants.js.map +1 -1
  7. package/dist/hooks.js +78 -0
  8. package/dist/hooks.js.map +1 -0
  9. package/dist/index-DuATtBay.js +52475 -0
  10. package/dist/index-DuATtBay.js.map +1 -0
  11. package/dist/index.js +131 -225
  12. package/dist/language-CwsGUe4C.js +5 -0
  13. package/dist/language-CwsGUe4C.js.map +1 -0
  14. package/dist/treeGrid-4QKOKXZw.js +46 -0
  15. package/dist/treeGrid-4QKOKXZw.js.map +1 -0
  16. package/dist/treeGridUtil-ZdWIjKlK.js +2922 -0
  17. package/dist/treeGridUtil-ZdWIjKlK.js.map +1 -0
  18. package/dist/types/constants/excel.d.ts +12 -0
  19. package/dist/types/constants/index.d.ts +3 -0
  20. package/dist/types/constants/language.d.ts +1 -0
  21. package/dist/types/constants/treeGrid.d.ts +4 -0
  22. package/dist/types/hooks/index.d.ts +19 -0
  23. package/dist/types/hooks/useCommonCodeList.d.ts +4 -4
  24. package/dist/types/hooks/useCurrentLanguage.d.ts +1 -1
  25. package/dist/types/hooks/useNavigation.d.ts +4 -4
  26. package/dist/types/index.d.ts +0 -37
  27. package/dist/types/utils/excelUtil.d.ts +2 -8
  28. package/dist/types/utils/index.d.ts +18 -0
  29. package/dist/types/utils/treeGridUtil.d.ts +2 -5
  30. package/dist/useTreeGridExcelExport-BumQHnAN.js +414 -0
  31. package/dist/useTreeGridExcelExport-BumQHnAN.js.map +1 -0
  32. package/dist/utils.js +6962 -0
  33. package/dist/utils.js.map +1 -0
  34. package/hooks.d.ts +1 -0
  35. package/hooks.js +1 -0
  36. package/package.json +7 -2
  37. package/utils.d.ts +1 -0
  38. package/utils.js +1 -0
  39. package/dist/index-DOKXEOMh.js +0 -63356
  40. package/dist/index-DOKXEOMh.js.map +0 -1
  41. package/dist/storageKeys-DRzte9LZ.js +0 -15
  42. 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.23.0",
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';