sun-biz 0.0.4-beta.4 → 0.0.4-beta.40

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 (40) hide show
  1. package/dist/components/biz-select/biz-unit-select/api.d.ts +34 -0
  2. package/dist/components/biz-select/department-select/api.d.ts +51 -0
  3. package/dist/components/biz-select/index.d.ts +6 -0
  4. package/dist/components/biz-select/tag-select/api.d.ts +44 -0
  5. package/dist/components/biz-select/tag-select/utils.d.ts +31 -0
  6. package/dist/components/biz-select/user-select/api.d.ts +109 -0
  7. package/dist/components/biz-select/ward-select/api.d.ts +43 -0
  8. package/dist/components/index.d.ts +3 -1
  9. package/dist/components/index.js +4095 -439
  10. package/dist/components/index.js.LICENSE.txt +11 -0
  11. package/dist/components/keyboard-value/index.d.ts +1 -0
  12. package/dist/components/patient-access/api.d.ts +12 -1
  13. package/dist/components/print/hooks/index.d.ts +1 -0
  14. package/dist/components/pro-avatar/index.d.ts +2 -0
  15. package/dist/components/pro-avatar/utils.d.ts +21 -0
  16. package/dist/components/pro-form/typings/index.d.ts +1 -0
  17. package/dist/components/pro-table/constant.d.ts +1 -0
  18. package/dist/components/pro-table/interface/index.d.ts +7 -1
  19. package/dist/components/static/css/index.css +23 -3
  20. package/dist/components/table-select/composable/useDirectionKey.d.ts +7 -0
  21. package/dist/components/table-select/index.d.ts +4 -0
  22. package/dist/components/table-select/types/index.d.ts +95 -0
  23. package/dist/directives/index.d.ts +1 -0
  24. package/dist/directives/shortcut.d.ts +13 -0
  25. package/dist/hooks/index.d.ts +3 -3
  26. package/dist/hooks/index.js +67 -21
  27. package/dist/hooks/use-app-config/index.d.ts +2 -2
  28. package/dist/hooks/use-column&form-config/index.d.ts +5 -5
  29. package/dist/hooks/use-data-change-detector/index.d.ts +2 -1
  30. package/dist/hooks/use-direction-select/index.d.ts +2 -2
  31. package/dist/hooks/use-editable-table/index.d.ts +2 -0
  32. package/dist/hooks/use-fetch-data/index.d.ts +3 -0
  33. package/dist/hooks/{use-fetch-dataset/index.d.ts → use-fetch-data/use-fetch-dataset.d.ts} +1 -1
  34. package/dist/hooks/use-fetch-data/use-fetch-params.d.ts +24 -0
  35. package/dist/hooks/use-fetch-data/use-fetch-time.d.ts +6 -0
  36. package/dist/index.d.ts +7 -2
  37. package/dist/index.js +4642 -517
  38. package/dist/index.js.LICENSE.txt +11 -0
  39. package/dist/static/css/index.css +23 -3
  40. package/package.json +19 -17
@@ -0,0 +1,11 @@
1
+ /**!
2
+ * hotkeys-js v3.13.15
3
+ * A simple micro-library for defining and dispatching keyboard shortcuts. It has no dependencies.
4
+ *
5
+ * Copyright (c) 2025 kenny wong <wowohoo@qq.com>
6
+ * https://github.com/jaywcjlove/hotkeys-js.git
7
+ *
8
+ * @website: https://jaywcjlove.github.io/hotkeys-js
9
+
10
+ * Licensed under the MIT license
11
+ */
@@ -6,21 +6,41 @@
6
6
 
7
7
 
8
8
 
9
- [data-v-51d84f56] .el-menu-item {
9
+ [data-v-0aa25cee] .el-menu-item {
10
10
  height: 48px;
11
11
  line-height: 48px;
12
12
  }
13
- [data-v-51d84f56] .el-sub-menu__title {
13
+ [data-v-0aa25cee] .el-sub-menu__title {
14
14
  height: 48px;
15
15
  line-height: 48px;
16
16
  }
17
- [data-v-51d84f56] .el-menu-item.is-active {
17
+ [data-v-0aa25cee] .el-menu-item.is-active {
18
18
  color: inherit !important;
19
19
  background-color: #0000 !important;
20
20
  }
21
21
 
22
22
 
23
23
 
24
+ .input[data-v-9f70929c] .el-input__inner {
25
+ cursor: pointer !important;
26
+ }
27
+ .table-select-popover[data-v-9f70929c] {
28
+ height: 350px;
29
+ width: auto !important;
30
+ }
31
+ .table-select-popover-simple .header[data-v-9f70929c] {
32
+ width: 100%;
33
+ }
34
+ .table-select-popover-simple .header > span[data-v-9f70929c] {
35
+ flex: var(--simple-column-flex);
36
+ }
37
+ .table-select-popover-simple .cell[data-v-9f70929c] {
38
+ width: 100%;
39
+ }
40
+ .table-select-popover-simple .cell > span[data-v-9f70929c] {
41
+ flex: var(--simple-column-flex);
42
+ }
43
+
24
44
 
25
45
 
26
46
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sun-biz",
3
- "version": "0.0.4-beta.4",
3
+ "version": "0.0.4-beta.40",
4
4
  "type": "module",
5
5
  "workspaces": [
6
6
  "src/*",
@@ -35,29 +35,31 @@
35
35
  "storybook": "storybook dev -p 6007"
36
36
  },
37
37
  "devDependencies": {
38
- "@microsoft/api-extractor": "^7.51.0",
39
- "@rsbuild/plugin-babel": "^1.0.4",
40
- "@rsbuild/plugin-vue": "^1.0.6",
41
- "@rsbuild/plugin-vue-jsx": "^1.1.0",
38
+ "@microsoft/api-extractor": "^7.52.8",
39
+ "@rsbuild/plugin-babel": "^1.0.5",
40
+ "@rsbuild/plugin-sass": "^1.4.0",
41
+ "@rsbuild/plugin-vue": "^1.1.0",
42
+ "@rsbuild/plugin-vue-jsx": "^1.1.1",
42
43
  "@rslib/core": "^0.0.18",
43
44
  "@storybook/addon-essentials": "8.4.4",
44
45
  "@storybook/test": "8.4.4",
45
46
  "@storybook/vue3": "8.4.4",
46
- "@types/lodash": "^4.17.15",
47
- "@types/node": "^22.13.5",
47
+ "@sun-toolkit/enums": "1.0.0-beta.36",
48
+ "@sun-toolkit/micro-app": "0.0.1-beta.8",
49
+ "@sun-toolkit/request": "1.0.0-beta.20",
50
+ "@sun-toolkit/shared": "0.0.1-beta.8",
51
+ "@types/lodash": "^4.17.20",
52
+ "@types/node": "^22.17.0",
48
53
  "@types/sortablejs": "^1.15.8",
54
+ "element-sun": "0.0.0-dev.4",
55
+ "hotkeys-js": "^3.13.15",
49
56
  "storybook": "8.4.4",
50
57
  "storybook-addon-rslib": "^0.1.10",
51
58
  "storybook-vue3-rsbuild": "0.1.5",
52
59
  "tailwindcss": "^3.4.17",
53
- "typescript": "^5.7.3",
54
- "vue": "^3.5.13",
55
- "vue-router": "^4.5.1",
56
- "element-sun": "0.0.0-dev.4",
57
- "@sun-toolkit/enums": "1.0.0-beta.12",
58
- "@sun-toolkit/micro-app": "0.0.1-beta.8",
59
- "@sun-toolkit/request": "1.0.0-beta.10",
60
- "@sun-toolkit/shared": "0.0.1-beta.6"
60
+ "typescript": "^5.9.2",
61
+ "vue": "^3.5.18",
62
+ "vue-router": "^4.5.1"
61
63
  },
62
64
  "peerDependencies": {
63
65
  "@element-sun/icons-vue": "*",
@@ -73,9 +75,9 @@
73
75
  },
74
76
  "dependencies": {
75
77
  "@element-sun/icons-vue": "^1.0.6",
76
- "axios": "^1.8.1",
78
+ "axios": "^1.11.0",
77
79
  "i18next": "^23.16.8",
78
- "i18next-vue": "^5.2.0",
80
+ "i18next-vue": "^5.3.0",
79
81
  "js-pinyin": "^0.2.7",
80
82
  "latest": "^0.2.0",
81
83
  "lodash": "^4.17.21",