@das-fed/ui 7.0.7-hot.70 → 7.0.7-hot.71
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/package.json +5 -5
- package/packages/business-components/device-panel/i18n/index.d.ts +4 -0
- package/packages/business-components/device-panel/index.js +2288 -2291
- package/packages/business-components/device-panel/index.js.gz +0 -0
- package/packages/business-components/device-panel/style.css +1 -1
- package/packages/business-components/device-panel/style.css.gz +0 -0
- package/packages/business-components/process-form/index.js +381 -371
- package/packages/business-components/process-form/index.js.gz +0 -0
- package/packages/business-components/process-form/style.css +1 -1
- package/packages/business-components/process-log/i18n/index.d.ts +80 -0
- package/packages/business-components/process-log/index.js +828 -333
- package/packages/business-components/process-log/index.js.gz +0 -0
- package/packages/business-components/process-log/src/apis.d.ts +1 -0
- package/packages/business-components/process-log/src/widgets/base/evaluationContent.vue.d.ts +7 -0
- package/packages/business-components/process-log/src/widgets/base/evaluationDialog.vue.d.ts +42 -0
- package/packages/business-components/process-log/src/widgets/base/meetingEvaluationInfo.vue.d.ts +24 -0
- package/packages/business-components/process-log/src/widgets/base/remarkInfo.vue.d.ts +1 -0
- package/packages/business-components/process-log/style.css +1 -1
- package/packages/business-components/process-log/style.css.gz +0 -0
- package/packages/business-components/process-log/type.d.ts +11 -0
- package/packages/business-components/video-dialog/index.d.ts +5 -5
- package/packages/business-components/video-dialog/src/index.vue.d.ts +1 -1
- package/packages/components/tree/i18n/index.d.ts +5 -0
- package/packages/components/tree/index.js +1767 -1574
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/src/App.vue.d.ts +40 -16
- package/packages/components/tree/src/hooks/use-lazy-tree.d.ts +11 -2
- package/packages/components/tree/src/type.d.ts +18 -1
- package/packages/components/tree/style.css +1 -1
- package/packages/components/tree/style.css.gz +0 -0
- package/packages/components/tree-select/src/App.vue.d.ts +2 -2
- package/packages/components/tree-select/src/hooks/use-tree-select.d.ts +2 -2
- package/packages/components/tree-v2/index.js +1982 -1933
- package/packages/components/tree-v2/index.js.gz +0 -0
- package/packages/components/tree-v2/style.css +1 -1
- package/packages/components/tree-v2/style.css.gz +0 -0
- package/packages/components/virtual-tree/style.css +1 -1
- package/packages/components/virtual-tree/style.css.gz +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "7.0.7-hot.
|
|
3
|
+
"version": "7.0.7-hot.71",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"@antv/x6-plugin-snapline": "^2.1.7",
|
|
27
27
|
"@antv/x6-plugin-transform": "^2.1.8",
|
|
28
28
|
"@antv/x6-vue-shape": "^2.1.2",
|
|
29
|
-
"@das-fed/cli": "7.0.7-hot.
|
|
29
|
+
"@das-fed/cli": "7.0.7-hot.71",
|
|
30
30
|
"@element-plus/icons-vue": "^2.3.1",
|
|
31
31
|
"@types/lodash": "^4.14.194",
|
|
32
32
|
"@types/lodash-es": "^4.17.9",
|
|
@@ -56,9 +56,9 @@
|
|
|
56
56
|
"vue-tsc": "^2.0.29"
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
|
-
"@das-fed/ui": "7.0.7-hot.
|
|
60
|
-
"@das-fed/utils": "7.0.7-hot.
|
|
61
|
-
"@das-fed/web": "7.0.7-hot.
|
|
59
|
+
"@das-fed/ui": "7.0.7-hot.71",
|
|
60
|
+
"@das-fed/utils": "7.0.7-hot.71",
|
|
61
|
+
"@das-fed/web": "7.0.7-hot.71",
|
|
62
62
|
"@types/markdown-it": "^14.1.2",
|
|
63
63
|
"@wangeditor-next/editor": "5.6.31",
|
|
64
64
|
"@wangeditor-next/editor-for-vue": "5.1.14",
|