@das-fed/upf-ui 6.4.0-dev.204 → 6.4.0-dev.206
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/front-end/i18n/front-end-page/dasui_en-US.js +2 -2
- package/front-end/i18n/front-end-page/dasui_zh-CN.js +2 -2
- package/front-end/i18n/front-end-page/dasui_zh-MO.js +2 -2
- package/package.json +5 -5
- package/packages/components/collaspe/index.d.ts +2 -2
- package/packages/components/collaspe/src/type.d.ts +1 -1
- package/packages/components/input/index.d.ts +4264 -0
- package/packages/components/input/src/index.vue.d.ts +1432 -0
- package/packages/components/select/index.js +273 -271
- package/packages/components/select/index.js.gz +0 -0
- package/packages/components/select/style.css +1 -1
- package/packages/components/select/style.css.gz +0 -0
- package/packages/components/split-panel/index.js +221 -208
- package/packages/components/split-panel/index.js.gz +0 -0
- package/packages/components/split-panel/style.css +1 -1
- package/packages/components/split-panel/style.css.gz +0 -0
- package/packages/components/table/index.d.ts +2 -2
- package/packages/components/table/index.js +13 -4
- package/packages/components/table/index.js.gz +0 -0
- package/packages/components/table/src/type.d.ts +1 -1
- package/packages/components/table/style.css +1 -1
- package/packages/components/table/style.css.gz +0 -0
- package/packages/components/tabs/src/type.d.ts +1 -1
- package/packages/components/tooltip/index.js +65 -56
- package/packages/components/tooltip/index.js.gz +0 -0
- package/packages/components/tooltip/style.css +1 -1
- package/packages/components/tooltip/style.css.gz +0 -0
- package/packages/components/tree/index.js +473 -466
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/style.css +1 -1
- package/packages/components/tree/style.css.gz +0 -0
- package/packages/components/tree-v2/index.js +885 -878
- 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/src/App.vue.d.ts +3974 -0
- package/packages/components/virtual-tree/src/type.d.ts +43 -0
- package/packages/components/virtual-tree/style.css +1 -1
- package/packages/components/virtual-tree/style.css.gz +0 -0
|
@@ -732,9 +732,9 @@ export default {
|
|
|
732
732
|
"点击下载": "",
|
|
733
733
|
"仅支持上传": "",
|
|
734
734
|
"重复数据以最后一条为准": "",
|
|
735
|
-
"请重新支付": "",
|
|
736
735
|
"删除流程定义": "",
|
|
737
736
|
"对应的实例和任务会一起删除": "",
|
|
737
|
+
"请重新支付": "",
|
|
738
738
|
"添加组织": "",
|
|
739
739
|
"用户": "",
|
|
740
740
|
"预订上午": "",
|
|
@@ -745,12 +745,12 @@ export default {
|
|
|
745
745
|
"符号": "",
|
|
746
746
|
"修改密码成功": "",
|
|
747
747
|
"数据趋势": "",
|
|
748
|
+
"确定要删除吗": "",
|
|
748
749
|
"引用": "",
|
|
749
750
|
"篇资料作为参考": "",
|
|
750
751
|
"思考中": "",
|
|
751
752
|
"用时": "",
|
|
752
753
|
"秒": "",
|
|
753
|
-
"确定要删除吗": "",
|
|
754
754
|
"嗨": "",
|
|
755
755
|
"我是": "",
|
|
756
756
|
"我可以帮你分析": "",
|
|
@@ -719,9 +719,9 @@ export default {
|
|
|
719
719
|
"点击下载": "点击下载",
|
|
720
720
|
"仅支持上传": "仅支持上传",
|
|
721
721
|
"重复数据以最后一条为准": "重复数据以最后一条为准",
|
|
722
|
-
"请重新支付": "请重新支付",
|
|
723
722
|
"删除流程定义": "删除流程定义",
|
|
724
723
|
"对应的实例和任务会一起删除": "对应的实例和任务会一起删除",
|
|
724
|
+
"请重新支付": "请重新支付",
|
|
725
725
|
"添加组织": "添加组织",
|
|
726
726
|
"用户": "用户",
|
|
727
727
|
"预订上午": "预订上午",
|
|
@@ -732,12 +732,12 @@ export default {
|
|
|
732
732
|
"符号": "符号",
|
|
733
733
|
"修改密码成功": "修改密码成功",
|
|
734
734
|
"数据趋势": "数据趋势",
|
|
735
|
+
"确定要删除吗": "确定要删除吗",
|
|
735
736
|
"引用": "引用",
|
|
736
737
|
"篇资料作为参考": "篇资料作为参考",
|
|
737
738
|
"思考中": "思考中",
|
|
738
739
|
"用时": "用时",
|
|
739
740
|
"秒": "秒",
|
|
740
|
-
"确定要删除吗": "确定要删除吗",
|
|
741
741
|
"嗨": "嗨",
|
|
742
742
|
"我是": "我是",
|
|
743
743
|
"我可以帮你分析": "我可以帮你分析",
|
|
@@ -718,9 +718,9 @@ export default {
|
|
|
718
718
|
"点击下载": "",
|
|
719
719
|
"仅支持上传": "",
|
|
720
720
|
"重复数据以最后一条为准": "",
|
|
721
|
-
"请重新支付": "",
|
|
722
721
|
"删除流程定义": "",
|
|
723
722
|
"对应的实例和任务会一起删除": "",
|
|
723
|
+
"请重新支付": "",
|
|
724
724
|
"添加组织": "",
|
|
725
725
|
"用户": "",
|
|
726
726
|
"预订上午": "",
|
|
@@ -731,12 +731,12 @@ export default {
|
|
|
731
731
|
"符号": "",
|
|
732
732
|
"修改密码成功": "",
|
|
733
733
|
"数据趋势": "",
|
|
734
|
+
"确定要删除吗": "",
|
|
734
735
|
"引用": "",
|
|
735
736
|
"篇资料作为参考": "",
|
|
736
737
|
"思考中": "",
|
|
737
738
|
"用时": "",
|
|
738
739
|
"秒": "",
|
|
739
|
-
"确定要删除吗": "",
|
|
740
740
|
"嗨": "",
|
|
741
741
|
"我是": "",
|
|
742
742
|
"我可以帮你分析": "",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/upf-ui",
|
|
3
|
-
"version": "6.4.0-dev.
|
|
3
|
+
"version": "6.4.0-dev.206",
|
|
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/upf-ui": "6.4.0-dev.
|
|
29
|
+
"@das-fed/upf-ui": "6.4.0-dev.206",
|
|
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/upf-cli": "6.4.0-dev.
|
|
60
|
-
"@das-fed/upf-utils": "6.4.0-dev.
|
|
61
|
-
"@das-fed/upf-web": "6.4.0-dev.
|
|
59
|
+
"@das-fed/upf-cli": "6.4.0-dev.206",
|
|
60
|
+
"@das-fed/upf-utils": "6.4.0-dev.206",
|
|
61
|
+
"@das-fed/upf-web": "6.4.0-dev.206",
|
|
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",
|
|
@@ -3,7 +3,7 @@ declare const DasCollaspeRef: () => import("vue").Ref<({
|
|
|
3
3
|
$data: {};
|
|
4
4
|
$props: {
|
|
5
5
|
readonly width?: string | undefined;
|
|
6
|
-
readonly bordered
|
|
6
|
+
readonly bordered?: boolean | undefined;
|
|
7
7
|
readonly activeKey?: string | string[] | undefined;
|
|
8
8
|
readonly expandIconType?: "triangle" | "arrow" | undefined;
|
|
9
9
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|
|
@@ -60,7 +60,7 @@ declare const DasCollaspeRef: () => import("vue").Ref<({
|
|
|
60
60
|
$data: {};
|
|
61
61
|
$props: {
|
|
62
62
|
readonly width?: string | undefined;
|
|
63
|
-
readonly bordered
|
|
63
|
+
readonly bordered?: boolean | undefined;
|
|
64
64
|
readonly activeKey?: string | string[] | undefined;
|
|
65
65
|
readonly expandIconType?: "triangle" | "arrow" | undefined;
|
|
66
66
|
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps;
|