@dt-frames/ui 2.0.2 → 2.0.3
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/es/components/container/index.d.ts +4 -3
- package/es/components/container/index.js +24 -22
- package/es/components/container/src/slot-container.d.ts +5 -3
- package/es/components/curd/index.js +304 -282
- package/es/components/curd/src/components/Curd.d.ts +126 -331
- package/es/components/curd/src/props.d.ts +14 -15
- package/es/components/drawer/index.d.ts +2 -4
- package/es/components/drawer/index.js +64 -63
- package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
- package/es/components/drawer/src/index.d.ts +2 -4
- package/es/components/form/index.d.ts +196 -344
- package/es/components/form/index.js +140 -139
- package/es/components/form/src/components/FormButtons.d.ts +3 -3
- package/es/components/form/src/components/FormItem.d.ts +156 -304
- package/es/components/form/src/components/formIcon.d.ts +10 -10
- package/es/components/form/src/components/formInputUseDialog.d.ts +5 -5
- package/es/components/form/src/index.d.ts +186 -334
- package/es/components/form/src/props.d.ts +7 -7
- package/es/components/form/src/types/form.type.d.ts +1 -1
- package/es/components/icons/index.d.ts +496 -2
- package/es/components/icons/src/pick-icon.d.ts +5 -5
- package/es/components/modal/index.js +87 -86
- package/es/components/modal/src/components/Modal.d.ts +108 -215
- package/es/components/modal/src/index.d.ts +107 -214
- package/es/components/source/index.js +1 -0
- package/es/components/table/index.js +357 -788
- package/es/components/table/index.less +9 -0
- package/es/components/table/src/components/TableAction.d.ts +1 -1
- package/es/components/table/src/components/TableHeader.d.ts +109 -216
- package/es/components/table/src/components/TableRender.d.ts +13 -9
- package/es/components/table/src/components/tableSetting/Download.d.ts +107 -214
- package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +107 -214
- package/es/components/table/src/components/tableSetting/index.d.ts +107 -214
- package/es/components/table/src/hooks/useDataSource.d.ts +1 -2
- package/es/components/table/src/hooks/usePagination.d.ts +3 -118
- package/es/components/table/src/index.d.ts +79 -425
- package/es/components/table/src/props.d.ts +11 -70
- package/es/components/table/src/types/actions.type.d.ts +1 -2
- package/es/components/table/src/types/table.type.d.ts +9 -3
- package/es/index.d.ts +1 -1
- package/es/index.js +2 -3240
- package/es/theme/index.js +406 -393
- package/es/theme/src/components/header/components/logo.d.ts +0 -1
- package/es/theme/src/components/header/components/notify.d.ts +4 -3
- package/es/theme/src/components/header/components/setting-theme.d.ts +2 -1
- package/es/theme/src/components/header/components/size.d.ts +5 -5
- package/es/theme/src/components/header/components/user-info.d.ts +4 -3
- package/es/theme/src/components/header/index.d.ts +13 -12
- package/es/theme/src/components/header/multiple-header.d.ts +26 -28
- package/es/theme/src/hooks/useMenu.d.ts +1 -1
- package/es/theme/src/index.d.ts +27 -28
- package/es/theme/src/types/theme.type.d.ts +1 -1
- package/package.json +3 -2
- package/vite.config.ts +0 -27
|
@@ -2,312 +2,164 @@ import { PropType, Ref } from 'vue';
|
|
|
2
2
|
import { Recordable } from '@dt-frames/core';
|
|
3
3
|
import { FormActionType } from '../types/actions.type';
|
|
4
4
|
import { FormSchema } from '../types/form.type';
|
|
5
|
-
declare const _sfc_main:
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
default: boolean;
|
|
19
|
-
};
|
|
20
|
-
model: {
|
|
21
|
-
type: PropType<Recordable<any>>;
|
|
22
|
-
default: {};
|
|
23
|
-
};
|
|
24
|
-
layout: {
|
|
25
|
-
type: PropType<"vertical" | "horizontal" | "inline">;
|
|
26
|
-
default: string;
|
|
27
|
-
};
|
|
28
|
-
labelWidth: {
|
|
29
|
-
type: PropType<string | number>;
|
|
30
|
-
default: number;
|
|
31
|
-
};
|
|
32
|
-
enLabelWidth: {
|
|
33
|
-
type: PropType<string | number>;
|
|
34
|
-
default: number;
|
|
35
|
-
};
|
|
36
|
-
labelAlign: {
|
|
37
|
-
type: PropType<"left" | "right">;
|
|
38
|
-
default: string;
|
|
39
|
-
};
|
|
40
|
-
labelCol: {
|
|
41
|
-
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
42
|
-
default: () => void;
|
|
43
|
-
};
|
|
44
|
-
wrapperCol: {
|
|
45
|
-
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
46
|
-
default: () => void;
|
|
47
|
-
};
|
|
48
|
-
rowProps: {
|
|
49
|
-
type: PropType<Partial<import("vue").ExtractPropTypes<{
|
|
50
|
-
align: PropType<"stretch" | "bottom" | "top" | "middle">;
|
|
51
|
-
justify: PropType<"space-around" | "space-between" | "center" | "end" | "start">;
|
|
52
|
-
prefixCls: StringConstructor;
|
|
53
|
-
gutter: {
|
|
54
|
-
type: PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
|
|
55
|
-
default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
|
|
56
|
-
};
|
|
57
|
-
wrap: {
|
|
58
|
-
type: BooleanConstructor;
|
|
59
|
-
default: any;
|
|
60
|
-
};
|
|
61
|
-
}>>>;
|
|
62
|
-
default: () => void;
|
|
63
|
-
};
|
|
64
|
-
colProps: {
|
|
65
|
-
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
66
|
-
default: () => void;
|
|
67
|
-
};
|
|
68
|
-
size: {
|
|
69
|
-
type: PropType<"small" | "middle" | "large">;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
disabled: {
|
|
73
|
-
type: BooleanConstructor;
|
|
74
|
-
default: boolean;
|
|
75
|
-
};
|
|
76
|
-
compact: {
|
|
77
|
-
type: BooleanConstructor;
|
|
78
|
-
default: any;
|
|
79
|
-
};
|
|
80
|
-
schemas: {
|
|
81
|
-
type: PropType<FormSchema[]>;
|
|
82
|
-
default: () => any[];
|
|
83
|
-
};
|
|
84
|
-
autoSearchOnEnter: {
|
|
85
|
-
type: BooleanConstructor;
|
|
86
|
-
default: boolean;
|
|
87
|
-
};
|
|
88
|
-
alwaysShowLines: {
|
|
89
|
-
type: BooleanConstructor;
|
|
90
|
-
default: boolean;
|
|
91
|
-
};
|
|
92
|
-
minShowColumn: {
|
|
93
|
-
type: NumberConstructor;
|
|
94
|
-
default: number;
|
|
95
|
-
};
|
|
96
|
-
showAdvancedButton: {
|
|
97
|
-
type: BooleanConstructor;
|
|
98
|
-
default: boolean;
|
|
99
|
-
};
|
|
100
|
-
allowClear: {
|
|
101
|
-
type: BooleanConstructor;
|
|
102
|
-
default: boolean;
|
|
103
|
-
};
|
|
104
|
-
scrollToFirstError: {
|
|
105
|
-
type: BooleanConstructor;
|
|
106
|
-
default: boolean;
|
|
107
|
-
};
|
|
108
|
-
colon: {
|
|
109
|
-
type: BooleanConstructor;
|
|
110
|
-
default: boolean;
|
|
111
|
-
};
|
|
112
|
-
loading: {
|
|
113
|
-
type: PropType<{
|
|
114
|
-
[key: string]: Ref<boolean>;
|
|
115
|
-
}>;
|
|
116
|
-
default: () => {
|
|
117
|
-
onSearch: Ref<boolean>;
|
|
118
|
-
onReset: Ref<boolean>;
|
|
5
|
+
declare const _sfc_main: {
|
|
6
|
+
name: string;
|
|
7
|
+
inheritAttrs: boolean;
|
|
8
|
+
props: {
|
|
9
|
+
schema: {
|
|
10
|
+
type: PropType<FormSchema>;
|
|
11
|
+
default: () => {};
|
|
12
|
+
};
|
|
13
|
+
formProps: {
|
|
14
|
+
type: PropType<Partial<import("vue").ExtractPropTypes<{
|
|
15
|
+
mode: {
|
|
16
|
+
type: PropType<"search" | "dialog">;
|
|
17
|
+
default: string;
|
|
119
18
|
};
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
19
|
+
autoFetch: {
|
|
20
|
+
type: BooleanConstructor;
|
|
21
|
+
default: boolean;
|
|
22
|
+
};
|
|
23
|
+
model: {
|
|
24
|
+
type: PropType<Recordable<any>>;
|
|
25
|
+
default: () => {};
|
|
26
|
+
};
|
|
27
|
+
layout: {
|
|
28
|
+
type: PropType<"vertical" | "horizontal" | "inline">;
|
|
29
|
+
default: string;
|
|
30
|
+
};
|
|
31
|
+
labelWidth: {
|
|
32
|
+
type: PropType<string | number>;
|
|
33
|
+
default: number;
|
|
34
|
+
};
|
|
35
|
+
enLabelWidth: {
|
|
36
|
+
type: PropType<string | number>;
|
|
37
|
+
default: number;
|
|
38
|
+
};
|
|
39
|
+
labelAlign: {
|
|
40
|
+
type: PropType<"left" | "right">;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
labelCol: {
|
|
44
|
+
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
45
|
+
default: () => {};
|
|
46
|
+
};
|
|
47
|
+
wrapperCol: {
|
|
48
|
+
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
49
|
+
default: () => {};
|
|
50
|
+
};
|
|
51
|
+
rowProps: {
|
|
52
|
+
type: PropType<Partial<import("vue").ExtractPropTypes<{
|
|
53
|
+
align: PropType<"stretch" | "bottom" | "top" | "middle">;
|
|
54
|
+
justify: PropType<"space-around" | "space-between" | "center" | "end" | "start">;
|
|
55
|
+
prefixCls: StringConstructor;
|
|
56
|
+
gutter: {
|
|
57
|
+
type: PropType<import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter]>;
|
|
58
|
+
default: import("ant-design-vue/lib/grid/Row").Gutter | [import("ant-design-vue/lib/grid/Row").Gutter, import("ant-design-vue/lib/grid/Row").Gutter];
|
|
59
|
+
};
|
|
60
|
+
wrap: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: any;
|
|
63
|
+
};
|
|
64
|
+
}>>>;
|
|
65
|
+
default: () => {};
|
|
66
|
+
};
|
|
67
|
+
colProps: {
|
|
68
|
+
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
69
|
+
default: () => {};
|
|
70
|
+
};
|
|
71
|
+
size: {
|
|
72
|
+
type: PropType<"small" | "middle" | "large">;
|
|
73
|
+
default: string;
|
|
74
|
+
};
|
|
75
|
+
disabled: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
79
|
+
compact: {
|
|
80
|
+
type: BooleanConstructor;
|
|
81
|
+
default: any;
|
|
82
|
+
};
|
|
83
|
+
schemas: {
|
|
84
|
+
type: PropType<FormSchema[]>;
|
|
85
|
+
default: () => any[];
|
|
86
|
+
};
|
|
87
|
+
autoSearchOnEnter: {
|
|
88
|
+
type: BooleanConstructor;
|
|
89
|
+
default: boolean;
|
|
90
|
+
};
|
|
91
|
+
alwaysShowLines: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: boolean;
|
|
94
|
+
};
|
|
95
|
+
minShowColumn: {
|
|
96
|
+
type: NumberConstructor;
|
|
97
|
+
default: number;
|
|
98
|
+
};
|
|
99
|
+
showAdvancedButton: {
|
|
100
|
+
type: BooleanConstructor;
|
|
101
|
+
default: boolean;
|
|
102
|
+
};
|
|
103
|
+
allowClear: {
|
|
104
|
+
type: BooleanConstructor;
|
|
105
|
+
default: boolean;
|
|
106
|
+
};
|
|
107
|
+
scrollToFirstError: {
|
|
108
|
+
type: BooleanConstructor;
|
|
109
|
+
default: boolean;
|
|
110
|
+
};
|
|
111
|
+
colon: {
|
|
112
|
+
type: BooleanConstructor;
|
|
113
|
+
default: boolean;
|
|
114
|
+
};
|
|
115
|
+
loading: {
|
|
116
|
+
type: PropType<{
|
|
117
|
+
[key: string]: Ref<boolean>;
|
|
118
|
+
}>;
|
|
119
|
+
default: () => {
|
|
120
|
+
onSearch: Ref<boolean>;
|
|
121
|
+
onReset: Ref<boolean>;
|
|
211
122
|
};
|
|
212
|
-
}>>>;
|
|
213
|
-
default: () => void;
|
|
214
|
-
};
|
|
215
|
-
colProps: {
|
|
216
|
-
type: PropType<Partial<import("../types/form.type").ColEx>>;
|
|
217
|
-
default: () => void;
|
|
218
|
-
};
|
|
219
|
-
size: {
|
|
220
|
-
type: PropType<"small" | "middle" | "large">;
|
|
221
|
-
default: string;
|
|
222
|
-
};
|
|
223
|
-
disabled: {
|
|
224
|
-
type: BooleanConstructor;
|
|
225
|
-
default: boolean;
|
|
226
|
-
};
|
|
227
|
-
compact: {
|
|
228
|
-
type: BooleanConstructor;
|
|
229
|
-
default: any;
|
|
230
|
-
};
|
|
231
|
-
schemas: {
|
|
232
|
-
type: PropType<FormSchema[]>;
|
|
233
|
-
default: () => any[];
|
|
234
|
-
};
|
|
235
|
-
autoSearchOnEnter: {
|
|
236
|
-
type: BooleanConstructor;
|
|
237
|
-
default: boolean;
|
|
238
|
-
};
|
|
239
|
-
alwaysShowLines: {
|
|
240
|
-
type: BooleanConstructor;
|
|
241
|
-
default: boolean;
|
|
242
|
-
};
|
|
243
|
-
minShowColumn: {
|
|
244
|
-
type: NumberConstructor;
|
|
245
|
-
default: number;
|
|
246
|
-
};
|
|
247
|
-
showAdvancedButton: {
|
|
248
|
-
type: BooleanConstructor;
|
|
249
|
-
default: boolean;
|
|
250
|
-
};
|
|
251
|
-
allowClear: {
|
|
252
|
-
type: BooleanConstructor;
|
|
253
|
-
default: boolean;
|
|
254
|
-
};
|
|
255
|
-
scrollToFirstError: {
|
|
256
|
-
type: BooleanConstructor;
|
|
257
|
-
default: boolean;
|
|
258
|
-
};
|
|
259
|
-
colon: {
|
|
260
|
-
type: BooleanConstructor;
|
|
261
|
-
default: boolean;
|
|
262
|
-
};
|
|
263
|
-
loading: {
|
|
264
|
-
type: PropType<{
|
|
265
|
-
[key: string]: Ref<boolean>;
|
|
266
|
-
}>;
|
|
267
|
-
default: () => {
|
|
268
|
-
onSearch: Ref<boolean>;
|
|
269
|
-
onReset: Ref<boolean>;
|
|
270
123
|
};
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
124
|
+
onSearch: {
|
|
125
|
+
type: PropType<(params: Recordable<any>) => void>;
|
|
126
|
+
default: (params: Recordable<any>) => void;
|
|
127
|
+
};
|
|
128
|
+
onReset: {
|
|
129
|
+
type: PropType<(params: Recordable<any>) => void>;
|
|
130
|
+
default: (params: Recordable<any>) => void;
|
|
131
|
+
};
|
|
132
|
+
buttons: {
|
|
133
|
+
type: PropType<boolean | import("../types/form.type").ButtonProps[]>;
|
|
134
|
+
default: boolean;
|
|
135
|
+
};
|
|
136
|
+
resetFunc: {
|
|
137
|
+
type: PropType<() => void>;
|
|
138
|
+
};
|
|
139
|
+
registerInstance: {
|
|
140
|
+
type: PropType<(instance: FormActionType) => void>;
|
|
141
|
+
};
|
|
142
|
+
}>>>;
|
|
143
|
+
default: () => {};
|
|
144
|
+
};
|
|
145
|
+
defaultValues: {
|
|
146
|
+
type: PropType<Recordable<any>>;
|
|
147
|
+
default: () => {};
|
|
148
|
+
};
|
|
149
|
+
formModel: {
|
|
150
|
+
type: PropType<Recordable<any>>;
|
|
151
|
+
default: () => {};
|
|
152
|
+
};
|
|
153
|
+
setFormModel: {
|
|
154
|
+
type: PropType<(key: string, value: any) => void>;
|
|
155
|
+
};
|
|
156
|
+
formActionType: {
|
|
157
|
+
type: PropType<FormActionType>;
|
|
158
|
+
};
|
|
306
159
|
};
|
|
307
|
-
}
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
}>;
|
|
160
|
+
setup(props: any, { emit, slots }: {
|
|
161
|
+
emit: any;
|
|
162
|
+
slots: any;
|
|
163
|
+
}): () => JSX.Element;
|
|
164
|
+
};
|
|
313
165
|
export default _sfc_main;
|
|
@@ -153,8 +153,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
153
153
|
$slots: Readonly<{
|
|
154
154
|
[name: string]: import("vue").Slot;
|
|
155
155
|
}>;
|
|
156
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
157
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
156
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
157
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
158
158
|
$emit: (event: string, ...args: any[]) => void;
|
|
159
159
|
$el: any;
|
|
160
160
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -236,7 +236,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
236
236
|
allowClear: boolean;
|
|
237
237
|
bordered: boolean;
|
|
238
238
|
lazy: boolean;
|
|
239
|
-
}> & {
|
|
239
|
+
}, {}, string> & {
|
|
240
240
|
beforeCreate?: (() => void) | (() => void)[];
|
|
241
241
|
created?: (() => void) | (() => void)[];
|
|
242
242
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -251,7 +251,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
251
251
|
unmounted?: (() => void) | (() => void)[];
|
|
252
252
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
253
253
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
254
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
254
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
255
255
|
};
|
|
256
256
|
$forceUpdate: () => void;
|
|
257
257
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -407,7 +407,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
407
407
|
allowClear: boolean;
|
|
408
408
|
bordered: boolean;
|
|
409
409
|
lazy: boolean;
|
|
410
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
410
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
411
411
|
readonly Group: import("vue").DefineComponent<{
|
|
412
412
|
prefixCls: StringConstructor;
|
|
413
413
|
size: {
|
|
@@ -1024,8 +1024,8 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1024
1024
|
$slots: Readonly<{
|
|
1025
1025
|
[name: string]: import("vue").Slot;
|
|
1026
1026
|
}>;
|
|
1027
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1028
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1027
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1028
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
1029
1029
|
$emit: (event: string, ...args: any[]) => void;
|
|
1030
1030
|
$el: any;
|
|
1031
1031
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -1084,7 +1084,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1084
1084
|
ghost: boolean;
|
|
1085
1085
|
danger: boolean;
|
|
1086
1086
|
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
1087
|
-
}> & {
|
|
1087
|
+
}, {}, string> & {
|
|
1088
1088
|
beforeCreate?: (() => void) | (() => void)[];
|
|
1089
1089
|
created?: (() => void) | (() => void)[];
|
|
1090
1090
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -1099,7 +1099,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1099
1099
|
unmounted?: (() => void) | (() => void)[];
|
|
1100
1100
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1101
1101
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1102
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
1102
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
1103
1103
|
};
|
|
1104
1104
|
$forceUpdate: () => void;
|
|
1105
1105
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -1211,7 +1211,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
|
|
|
1211
1211
|
ghost: boolean;
|
|
1212
1212
|
danger: boolean;
|
|
1213
1213
|
htmlType: import("ant-design-vue/lib/button/buttonTypes").ButtonHTMLType;
|
|
1214
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
1214
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
1215
1215
|
readonly Group: import("vue").DefineComponent<{
|
|
1216
1216
|
prefixCls: StringConstructor;
|
|
1217
1217
|
size: {
|
|
@@ -106,8 +106,8 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
106
106
|
$slots: Readonly<{
|
|
107
107
|
[name: string]: import("vue").Slot;
|
|
108
108
|
}>;
|
|
109
|
-
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
110
|
-
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
109
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
110
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>;
|
|
111
111
|
$emit: (event: string, ...args: any[]) => void;
|
|
112
112
|
$el: any;
|
|
113
113
|
$options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
|
|
@@ -189,7 +189,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
189
189
|
allowClear: boolean;
|
|
190
190
|
bordered: boolean;
|
|
191
191
|
lazy: boolean;
|
|
192
|
-
}> & {
|
|
192
|
+
}, {}, string> & {
|
|
193
193
|
beforeCreate?: (() => void) | (() => void)[];
|
|
194
194
|
created?: (() => void) | (() => void)[];
|
|
195
195
|
beforeMount?: (() => void) | (() => void)[];
|
|
@@ -204,7 +204,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
204
204
|
unmounted?: (() => void) | (() => void)[];
|
|
205
205
|
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
206
206
|
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
207
|
-
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}
|
|
207
|
+
errorCaptured?: ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string>, {}>, info: string) => boolean | void)[];
|
|
208
208
|
};
|
|
209
209
|
$forceUpdate: () => void;
|
|
210
210
|
$nextTick: typeof import("vue").nextTick;
|
|
@@ -360,7 +360,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
|
360
360
|
allowClear: boolean;
|
|
361
361
|
bordered: boolean;
|
|
362
362
|
lazy: boolean;
|
|
363
|
-
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
363
|
+
}, {}, string> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
364
364
|
readonly Group: import("vue").DefineComponent<{
|
|
365
365
|
prefixCls: StringConstructor;
|
|
366
366
|
size: {
|