@das-fed/ui 6.4.0-dev.23 → 6.4.0-dev.25
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/esm-map.json +3 -1
- package/package.json +5 -5
- package/packages/business-components/index.d.ts +1 -0
- package/packages/business-components/index.js +1 -0
- package/packages/business-components/process-form/App.vue.d.ts +3 -0
- package/packages/business-components/process-form/index.d.ts +3 -0
- package/packages/business-components/process-form/index.js +1019 -971
- package/packages/business-components/process-form/index.js.gz +0 -0
- package/packages/business-components/process-form/src/hooks/useSelector.d.ts +1 -1
- package/packages/business-components/process-form/src/widgets/store.d.ts +1 -0
- package/packages/business-components/process-form/style.css +1 -1
- package/packages/business-components/process-form/type.d.ts +1 -0
- package/packages/business-components/process-search-form/hooks/useSearchOptions.d.ts +1 -172
- package/packages/business-components/process-search-form/index.js +236 -337
- package/packages/business-components/process-search-form/index.js.gz +0 -0
- package/packages/business-components/process-table/hooks/useProcessTable.d.ts +12 -4
- package/packages/business-components/process-table/hooks/useTableShow.d.ts +8 -12
- package/packages/business-components/process-table/index.d.ts +18 -2
- package/packages/business-components/process-table/index.js +613 -591
- package/packages/business-components/process-table/index.js.gz +0 -0
- package/packages/business-components/process-table/src/App.vue.d.ts +2 -0
- package/packages/business-components/process-table/src/type.d.ts +21 -0
- package/packages/business-components/process-table/style.css +1 -1
- package/packages/business-components/upload-file/index.d.ts +87 -0
- package/packages/business-components/upload-file/index.js +111 -0
- package/packages/business-components/upload-file/index.js.gz +0 -0
- package/packages/business-components/upload-file/src/App.vue.d.ts +16 -0
- package/packages/business-components/upload-file/src/hooks/use-upload.d.ts +7 -0
- package/packages/business-components/upload-file/src/type.d.ts +51 -0
- package/packages/business-components/upload-file/style.css +1 -0
- package/packages/components/form/index.js +21 -21
- package/packages/components/form/index.js.gz +0 -0
- package/packages/components/form/style.css +1 -1
- package/packages/components/form-item/index.js +2 -2
- package/packages/components/form-item/index.js.gz +0 -0
- package/packages/components/form-item/style.css +1 -1
- package/packages/components/form-item/style.css.gz +0 -0
- package/packages/components/rich-editor/index.js +1 -0
- package/packages/components/rich-editor/index.js.gz +0 -0
- package/packages/components/search/index.js +19 -19
- package/packages/components/search/index.js.gz +0 -0
- package/packages/components/search/style.css +1 -1
- package/packages/components/search/style.css.gz +0 -0
- package/packages/components/tree/index.js +2 -1
- package/packages/components/tree/index.js.gz +0 -0
- package/packages/components/tree/src/App.vue.d.ts +50 -40
|
Binary file
|
|
@@ -3,6 +3,7 @@ export declare const useStore: () => {
|
|
|
3
3
|
formData: import("vue").Ref<never[], never[]>;
|
|
4
4
|
formRule: import("vue").Ref<Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>, Partial<Record<string, import("element-plus/es/utils/typescript.mjs").Arrayable<import("element-plus").FormItemRule>>>>;
|
|
5
5
|
showData: import("vue").Ref<{}, {}>;
|
|
6
|
+
flowKey: import("vue").Ref<string, string>;
|
|
6
7
|
setData: (key: string, val: any) => void;
|
|
7
8
|
setDetailData: (val: any) => void;
|
|
8
9
|
getData: (key: string) => any;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.form-image[data-v-e6f9c5ec]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-
|
|
1
|
+
.form-image[data-v-e6f9c5ec]{background:#fff;margin:10px 0 30px}.table-search-process-top[data-v-c2fe15eb]{display:flex;justify-content:space-between;align-items:center;margin:0 14px 6px}.table-search-process-top .left-box[data-v-c2fe15eb]{display:flex;align-items:center}.form-image[data-v-6169bf17]{background:#fff;margin:10px 0 30px}.accordion-layout{width:100%}.accordion-layout .grid-layout{padding:0}.custom-page[data-v-7653ee4c]{display:flex;flex-direction:column;background-color:#e2e7ef}.custom-page .btn-box[data-v-7653ee4c]{background-color:#fff;height:48px;line-height:48px;padding-left:18px}.custom-page .content-box[data-v-7653ee4c]{flex:1;margin:0 10px;min-height:0}
|
|
@@ -2,177 +2,6 @@ import type { Props, Emits } from '../src/type';
|
|
|
2
2
|
export declare const useSearchOptions: (prop: Props, emits: Emits) => {
|
|
3
3
|
searchOptions: import("vue").Ref<any, any>;
|
|
4
4
|
buttonSetting: import("vue").Ref<any, any>;
|
|
5
|
-
settingData: import("vue").Ref<
|
|
6
|
-
colPrefix: string;
|
|
7
|
-
name: string;
|
|
8
|
-
na: string;
|
|
9
|
-
ty: string;
|
|
10
|
-
op: string;
|
|
11
|
-
cm: string;
|
|
12
|
-
va: string;
|
|
13
|
-
vf: string;
|
|
14
|
-
ct: string;
|
|
15
|
-
qt: string;
|
|
16
|
-
option: null;
|
|
17
|
-
controlContent: string;
|
|
18
|
-
mpDisplay: string;
|
|
19
|
-
value: string;
|
|
20
|
-
format: string;
|
|
21
|
-
ctrlType: string;
|
|
22
|
-
} | {
|
|
23
|
-
colPrefix: string;
|
|
24
|
-
name: string;
|
|
25
|
-
na: string;
|
|
26
|
-
ty: string;
|
|
27
|
-
op: string;
|
|
28
|
-
cm: string;
|
|
29
|
-
va: string;
|
|
30
|
-
vf: string;
|
|
31
|
-
ct: string;
|
|
32
|
-
qt: string;
|
|
33
|
-
option: {
|
|
34
|
-
choiceType: string;
|
|
35
|
-
customQuery: {};
|
|
36
|
-
};
|
|
37
|
-
controlContent: {
|
|
38
|
-
key: string;
|
|
39
|
-
value: string;
|
|
40
|
-
}[];
|
|
41
|
-
mpDisplay: string;
|
|
42
|
-
value: string;
|
|
43
|
-
ctrlType: string;
|
|
44
|
-
format?: undefined;
|
|
45
|
-
} | {
|
|
46
|
-
colPrefix: string;
|
|
47
|
-
name: string;
|
|
48
|
-
na: string;
|
|
49
|
-
ty: string;
|
|
50
|
-
op: string;
|
|
51
|
-
cm: string;
|
|
52
|
-
va: string;
|
|
53
|
-
vf: string;
|
|
54
|
-
ct: string;
|
|
55
|
-
qt: string;
|
|
56
|
-
option: null;
|
|
57
|
-
controlContent: string;
|
|
58
|
-
mpDisplay: string;
|
|
59
|
-
ctrlType: string;
|
|
60
|
-
value?: undefined;
|
|
61
|
-
format?: undefined;
|
|
62
|
-
})[], ({
|
|
63
|
-
colPrefix: string;
|
|
64
|
-
name: string;
|
|
65
|
-
na: string;
|
|
66
|
-
ty: string;
|
|
67
|
-
op: string;
|
|
68
|
-
cm: string;
|
|
69
|
-
va: string;
|
|
70
|
-
vf: string;
|
|
71
|
-
ct: string;
|
|
72
|
-
qt: string;
|
|
73
|
-
option: null;
|
|
74
|
-
controlContent: string;
|
|
75
|
-
mpDisplay: string;
|
|
76
|
-
value: string;
|
|
77
|
-
format: string;
|
|
78
|
-
ctrlType: string;
|
|
79
|
-
} | {
|
|
80
|
-
colPrefix: string;
|
|
81
|
-
name: string;
|
|
82
|
-
na: string;
|
|
83
|
-
ty: string;
|
|
84
|
-
op: string;
|
|
85
|
-
cm: string;
|
|
86
|
-
va: string;
|
|
87
|
-
vf: string;
|
|
88
|
-
ct: string;
|
|
89
|
-
qt: string;
|
|
90
|
-
option: {
|
|
91
|
-
choiceType: string;
|
|
92
|
-
customQuery: {};
|
|
93
|
-
};
|
|
94
|
-
controlContent: {
|
|
95
|
-
key: string;
|
|
96
|
-
value: string;
|
|
97
|
-
}[];
|
|
98
|
-
mpDisplay: string;
|
|
99
|
-
value: string;
|
|
100
|
-
ctrlType: string;
|
|
101
|
-
format?: undefined;
|
|
102
|
-
} | {
|
|
103
|
-
colPrefix: string;
|
|
104
|
-
name: string;
|
|
105
|
-
na: string;
|
|
106
|
-
ty: string;
|
|
107
|
-
op: string;
|
|
108
|
-
cm: string;
|
|
109
|
-
va: string;
|
|
110
|
-
vf: string;
|
|
111
|
-
ct: string;
|
|
112
|
-
qt: string;
|
|
113
|
-
option: null;
|
|
114
|
-
controlContent: string;
|
|
115
|
-
mpDisplay: string;
|
|
116
|
-
ctrlType: string;
|
|
117
|
-
value?: undefined;
|
|
118
|
-
format?: undefined;
|
|
119
|
-
})[] | ({
|
|
120
|
-
colPrefix: string;
|
|
121
|
-
name: string;
|
|
122
|
-
na: string;
|
|
123
|
-
ty: string;
|
|
124
|
-
op: string;
|
|
125
|
-
cm: string;
|
|
126
|
-
va: string;
|
|
127
|
-
vf: string;
|
|
128
|
-
ct: string;
|
|
129
|
-
qt: string;
|
|
130
|
-
option: null;
|
|
131
|
-
controlContent: string;
|
|
132
|
-
mpDisplay: string;
|
|
133
|
-
value: string;
|
|
134
|
-
format: string;
|
|
135
|
-
ctrlType: string;
|
|
136
|
-
} | {
|
|
137
|
-
colPrefix: string;
|
|
138
|
-
name: string;
|
|
139
|
-
na: string;
|
|
140
|
-
ty: string;
|
|
141
|
-
op: string;
|
|
142
|
-
cm: string;
|
|
143
|
-
va: string;
|
|
144
|
-
vf: string;
|
|
145
|
-
ct: string;
|
|
146
|
-
qt: string;
|
|
147
|
-
option: {
|
|
148
|
-
choiceType: string;
|
|
149
|
-
customQuery: {};
|
|
150
|
-
};
|
|
151
|
-
controlContent: {
|
|
152
|
-
key: string;
|
|
153
|
-
value: string;
|
|
154
|
-
}[];
|
|
155
|
-
mpDisplay: string;
|
|
156
|
-
value: string;
|
|
157
|
-
ctrlType: string;
|
|
158
|
-
format?: undefined;
|
|
159
|
-
} | {
|
|
160
|
-
colPrefix: string;
|
|
161
|
-
name: string;
|
|
162
|
-
na: string;
|
|
163
|
-
ty: string;
|
|
164
|
-
op: string;
|
|
165
|
-
cm: string;
|
|
166
|
-
va: string;
|
|
167
|
-
vf: string;
|
|
168
|
-
ct: string;
|
|
169
|
-
qt: string;
|
|
170
|
-
option: null;
|
|
171
|
-
controlContent: string;
|
|
172
|
-
mpDisplay: string;
|
|
173
|
-
ctrlType: string;
|
|
174
|
-
value?: undefined;
|
|
175
|
-
format?: undefined;
|
|
176
|
-
})[]>;
|
|
5
|
+
settingData: import("vue").Ref<never[], never[]>;
|
|
177
6
|
searchList: (formDataValues: any) => void;
|
|
178
7
|
};
|