@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.
Files changed (54) hide show
  1. package/es/components/container/index.d.ts +4 -3
  2. package/es/components/container/index.js +24 -22
  3. package/es/components/container/src/slot-container.d.ts +5 -3
  4. package/es/components/curd/index.js +304 -282
  5. package/es/components/curd/src/components/Curd.d.ts +126 -331
  6. package/es/components/curd/src/props.d.ts +14 -15
  7. package/es/components/drawer/index.d.ts +2 -4
  8. package/es/components/drawer/index.js +64 -63
  9. package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
  10. package/es/components/drawer/src/index.d.ts +2 -4
  11. package/es/components/form/index.d.ts +196 -344
  12. package/es/components/form/index.js +140 -139
  13. package/es/components/form/src/components/FormButtons.d.ts +3 -3
  14. package/es/components/form/src/components/FormItem.d.ts +156 -304
  15. package/es/components/form/src/components/formIcon.d.ts +10 -10
  16. package/es/components/form/src/components/formInputUseDialog.d.ts +5 -5
  17. package/es/components/form/src/index.d.ts +186 -334
  18. package/es/components/form/src/props.d.ts +7 -7
  19. package/es/components/form/src/types/form.type.d.ts +1 -1
  20. package/es/components/icons/index.d.ts +496 -2
  21. package/es/components/icons/src/pick-icon.d.ts +5 -5
  22. package/es/components/modal/index.js +87 -86
  23. package/es/components/modal/src/components/Modal.d.ts +108 -215
  24. package/es/components/modal/src/index.d.ts +107 -214
  25. package/es/components/source/index.js +1 -0
  26. package/es/components/table/index.js +357 -788
  27. package/es/components/table/index.less +9 -0
  28. package/es/components/table/src/components/TableAction.d.ts +1 -1
  29. package/es/components/table/src/components/TableHeader.d.ts +109 -216
  30. package/es/components/table/src/components/TableRender.d.ts +13 -9
  31. package/es/components/table/src/components/tableSetting/Download.d.ts +107 -214
  32. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +107 -214
  33. package/es/components/table/src/components/tableSetting/index.d.ts +107 -214
  34. package/es/components/table/src/hooks/useDataSource.d.ts +1 -2
  35. package/es/components/table/src/hooks/usePagination.d.ts +3 -118
  36. package/es/components/table/src/index.d.ts +79 -425
  37. package/es/components/table/src/props.d.ts +11 -70
  38. package/es/components/table/src/types/actions.type.d.ts +1 -2
  39. package/es/components/table/src/types/table.type.d.ts +9 -3
  40. package/es/index.d.ts +1 -1
  41. package/es/index.js +2 -3240
  42. package/es/theme/index.js +406 -393
  43. package/es/theme/src/components/header/components/logo.d.ts +0 -1
  44. package/es/theme/src/components/header/components/notify.d.ts +4 -3
  45. package/es/theme/src/components/header/components/setting-theme.d.ts +2 -1
  46. package/es/theme/src/components/header/components/size.d.ts +5 -5
  47. package/es/theme/src/components/header/components/user-info.d.ts +4 -3
  48. package/es/theme/src/components/header/index.d.ts +13 -12
  49. package/es/theme/src/components/header/multiple-header.d.ts +26 -28
  50. package/es/theme/src/hooks/useMenu.d.ts +1 -1
  51. package/es/theme/src/index.d.ts +27 -28
  52. package/es/theme/src/types/theme.type.d.ts +1 -1
  53. package/package.json +3 -2
  54. 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: import("vue").DefineComponent<{
6
- schema: {
7
- type: PropType<FormSchema>;
8
- default: () => {};
9
- };
10
- formProps: {
11
- type: PropType<Partial<import("vue").ExtractPropTypes<{
12
- mode: {
13
- type: PropType<"search" | "dialog">;
14
- default: string;
15
- };
16
- autoFetch: {
17
- type: BooleanConstructor;
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
- onSearch: {
122
- type: PropType<(params: Recordable<any>) => void>;
123
- default: (params: Recordable<any>) => void;
124
- };
125
- onReset: {
126
- type: PropType<(params: Recordable<any>) => void>;
127
- default: (params: Recordable<any>) => void;
128
- };
129
- buttons: {
130
- type: PropType<boolean | import("../types/form.type").ButtonProps[]>;
131
- default: boolean;
132
- };
133
- resetFunc: {
134
- type: PropType<() => void>;
135
- };
136
- registerInstance: {
137
- type: PropType<(instance: FormActionType) => void>;
138
- };
139
- }>>>;
140
- default: () => {};
141
- };
142
- defaultValues: {
143
- type: PropType<Recordable<any>>;
144
- default: () => {};
145
- };
146
- formModel: {
147
- type: PropType<Recordable<any>>;
148
- default: () => {};
149
- };
150
- setFormModel: {
151
- type: PropType<(key: string, value: any) => void>;
152
- };
153
- formActionType: {
154
- type: PropType<FormActionType>;
155
- };
156
- }, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
157
- schema: {
158
- type: PropType<FormSchema>;
159
- default: () => {};
160
- };
161
- formProps: {
162
- type: PropType<Partial<import("vue").ExtractPropTypes<{
163
- mode: {
164
- type: PropType<"search" | "dialog">;
165
- default: string;
166
- };
167
- autoFetch: {
168
- type: BooleanConstructor;
169
- default: boolean;
170
- };
171
- model: {
172
- type: PropType<Recordable<any>>;
173
- default: {};
174
- };
175
- layout: {
176
- type: PropType<"vertical" | "horizontal" | "inline">;
177
- default: string;
178
- };
179
- labelWidth: {
180
- type: PropType<string | number>;
181
- default: number;
182
- };
183
- enLabelWidth: {
184
- type: PropType<string | number>;
185
- default: number;
186
- };
187
- labelAlign: {
188
- type: PropType<"left" | "right">;
189
- default: string;
190
- };
191
- labelCol: {
192
- type: PropType<Partial<import("../types/form.type").ColEx>>;
193
- default: () => void;
194
- };
195
- wrapperCol: {
196
- type: PropType<Partial<import("../types/form.type").ColEx>>;
197
- default: () => void;
198
- };
199
- rowProps: {
200
- type: PropType<Partial<import("vue").ExtractPropTypes<{
201
- align: PropType<"stretch" | "bottom" | "top" | "middle">;
202
- justify: PropType<"space-around" | "space-between" | "center" | "end" | "start">;
203
- prefixCls: StringConstructor;
204
- gutter: {
205
- 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]>;
206
- 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];
207
- };
208
- wrap: {
209
- type: BooleanConstructor;
210
- default: any;
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
- onSearch: {
273
- type: PropType<(params: Recordable<any>) => void>;
274
- default: (params: Recordable<any>) => void;
275
- };
276
- onReset: {
277
- type: PropType<(params: Recordable<any>) => void>;
278
- default: (params: Recordable<any>) => void;
279
- };
280
- buttons: {
281
- type: PropType<boolean | import("../types/form.type").ButtonProps[]>;
282
- default: boolean;
283
- };
284
- resetFunc: {
285
- type: PropType<() => void>;
286
- };
287
- registerInstance: {
288
- type: PropType<(instance: FormActionType) => void>;
289
- };
290
- }>>>;
291
- default: () => {};
292
- };
293
- defaultValues: {
294
- type: PropType<Recordable<any>>;
295
- default: () => {};
296
- };
297
- formModel: {
298
- type: PropType<Recordable<any>>;
299
- default: () => {};
300
- };
301
- setFormModel: {
302
- type: PropType<(key: string, value: any) => void>;
303
- };
304
- formActionType: {
305
- type: PropType<FormActionType>;
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
- formModel: {};
309
- schema: {};
310
- formProps: {};
311
- defaultValues: {};
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, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
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, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
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, {}>>, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>, info: string) => boolean | void)[];
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: {