@das-fed/ui 6.4.0-dev.8 → 6.4.0-dev.9
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/process-search-form/index.d.ts +34 -0
- package/packages/business-components/process-search-form/index.js +597 -529
- package/packages/business-components/process-search-form/index.js.gz +0 -0
- package/packages/business-components/process-search-form/src/type.d.ts +28 -0
- package/packages/business-components/process-table/hooks/useProcessTable.d.ts +32 -32
- package/packages/business-components/process-table/hooks/useValueFormatter.d.ts +5 -0
- package/packages/business-components/process-table/index.d.ts +401 -191
- package/packages/business-components/process-table/index.js +961 -763
- package/packages/business-components/process-table/index.js.gz +0 -0
- package/packages/business-components/process-table/src/App.vue.d.ts +11 -1
- package/packages/business-components/process-table/style.css +1 -1
- package/packages/components/date-picker/index.js +2017 -2019
- package/packages/components/date-picker/index.js.gz +0 -0
- package/packages/components/search-form/index.js +6 -6
- package/packages/components/search-form/index.js.gz +0 -0
- package/packages/components/search-form/style.css +1 -1
- package/packages/components/search-form/style.css.gz +0 -0
- package/packages/components/table/index.js +12305 -8625
- package/packages/components/table/index.js.gz +0 -0
- package/packages/components/table/style.css +1 -1
- package/packages/components/table/style.css.gz +0 -0
- package/packages/components/tree/index.js +1847 -1844
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/src/App.vue.d.ts +11 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@das-fed/ui",
|
|
3
|
-
"version": "6.4.0-dev.
|
|
3
|
+
"version": "6.4.0-dev.9",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
"@antv/x6-plugin-snapline": "^2.1.7",
|
|
26
26
|
"@antv/x6-plugin-transform": "^2.1.8",
|
|
27
27
|
"@antv/x6-vue-shape": "^2.1.2",
|
|
28
|
-
"@das-fed/cli": "6.4.0-dev.
|
|
28
|
+
"@das-fed/cli": "6.4.0-dev.9",
|
|
29
29
|
"@element-plus/icons-vue": "^2.3.1",
|
|
30
30
|
"@types/lodash": "^4.14.194",
|
|
31
31
|
"@types/lodash-es": "^4.17.9",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"vue-tsc": "^2.0.29"
|
|
56
56
|
},
|
|
57
57
|
"dependencies": {
|
|
58
|
-
"@das-fed/ui": "6.4.0-dev.
|
|
59
|
-
"@das-fed/utils": "6.4.0-dev.
|
|
60
|
-
"@das-fed/web": "6.4.0-dev.
|
|
58
|
+
"@das-fed/ui": "6.4.0-dev.9",
|
|
59
|
+
"@das-fed/utils": "6.4.0-dev.9",
|
|
60
|
+
"@das-fed/web": "6.4.0-dev.9",
|
|
61
61
|
"@wangeditor/editor": "^5.1.23",
|
|
62
62
|
"@wangeditor/editor-for-vue": "^5.1.12",
|
|
63
63
|
"@wangeditor/plugin-upload-attachment": "^1.1.0",
|
|
@@ -13,6 +13,23 @@ declare const DasProcessSearchForm: import("@das-fed/utils").SFCWithInstall<impo
|
|
|
13
13
|
type: import("vue").PropType<boolean>;
|
|
14
14
|
default: boolean;
|
|
15
15
|
};
|
|
16
|
+
orgConfig: {
|
|
17
|
+
type: import("vue").PropType<{
|
|
18
|
+
width?: string;
|
|
19
|
+
value: any;
|
|
20
|
+
closable?: boolean;
|
|
21
|
+
nodeKey: string;
|
|
22
|
+
options: any[];
|
|
23
|
+
change?: Function;
|
|
24
|
+
treeProps?: {
|
|
25
|
+
label?: string;
|
|
26
|
+
children?: string;
|
|
27
|
+
disabled?: string | ((node: any) => boolean);
|
|
28
|
+
isLeaf?: string;
|
|
29
|
+
};
|
|
30
|
+
checkedNodes?: any[];
|
|
31
|
+
}>;
|
|
32
|
+
};
|
|
16
33
|
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
17
34
|
processConfirm: (val: any) => void;
|
|
18
35
|
getBtnSetting: (val: any) => void;
|
|
@@ -31,6 +48,23 @@ declare const DasProcessSearchForm: import("@das-fed/utils").SFCWithInstall<impo
|
|
|
31
48
|
type: import("vue").PropType<boolean>;
|
|
32
49
|
default: boolean;
|
|
33
50
|
};
|
|
51
|
+
orgConfig: {
|
|
52
|
+
type: import("vue").PropType<{
|
|
53
|
+
width?: string;
|
|
54
|
+
value: any;
|
|
55
|
+
closable?: boolean;
|
|
56
|
+
nodeKey: string;
|
|
57
|
+
options: any[];
|
|
58
|
+
change?: Function;
|
|
59
|
+
treeProps?: {
|
|
60
|
+
label?: string;
|
|
61
|
+
children?: string;
|
|
62
|
+
disabled?: string | ((node: any) => boolean);
|
|
63
|
+
isLeaf?: string;
|
|
64
|
+
};
|
|
65
|
+
checkedNodes?: any[];
|
|
66
|
+
}>;
|
|
67
|
+
};
|
|
34
68
|
}>> & {
|
|
35
69
|
onProcessConfirm?: ((val: any) => any) | undefined;
|
|
36
70
|
onGetBtnSetting?: ((val: any) => any) | undefined;
|