@dt-frames/ui 2.0.2 → 2.0.4

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 (69) hide show
  1. package/es/assets/locales/en.ts +1 -1
  2. package/es/components/container/index.d.ts +4 -3
  3. package/es/components/container/index.js +24 -22
  4. package/es/components/container/src/slot-container.d.ts +5 -3
  5. package/es/components/curd/index.js +261 -229
  6. package/es/components/curd/src/components/Curd.d.ts +126 -331
  7. package/es/components/curd/src/props.d.ts +14 -15
  8. package/es/components/drawer/index.d.ts +3 -5
  9. package/es/components/drawer/index.js +55 -54
  10. package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
  11. package/es/components/drawer/src/index.d.ts +4 -7
  12. package/es/components/form/index.d.ts +213 -361
  13. package/es/components/form/index.js +210 -163
  14. package/es/components/form/index.less +206 -8
  15. package/es/components/form/src/components/FormButtons.d.ts +3 -3
  16. package/es/components/form/src/components/FormItem.d.ts +152 -304
  17. package/es/components/form/src/components/formIcon.d.ts +4 -4
  18. package/es/components/form/src/components/formInputUseDialog.d.ts +3 -3
  19. package/es/components/form/src/enums/index.d.ts +1 -1
  20. package/es/components/form/src/index.d.ts +199 -347
  21. package/es/components/form/src/props.d.ts +8 -12
  22. package/es/components/form/src/types/form.type.d.ts +2 -2
  23. package/es/components/icons/index.d.ts +496 -2
  24. package/es/components/icons/index.less +5 -0
  25. package/es/components/icons/src/pick-icon.d.ts +5 -5
  26. package/es/components/modal/index.js +76 -74
  27. package/es/components/modal/index.less +10 -0
  28. package/es/components/modal/src/components/Modal.d.ts +108 -215
  29. package/es/components/modal/src/components/ModalFooter.d.ts +3 -3
  30. package/es/components/modal/src/index.d.ts +116 -223
  31. package/es/components/source/hooks/useSource.d.ts +14 -0
  32. package/es/components/source/index.js +66 -27
  33. package/es/components/source/types/source.type.d.ts +4 -8
  34. package/es/components/table/index.js +452 -820
  35. package/es/components/table/index.less +50 -14
  36. package/es/components/table/src/components/TableAction.d.ts +1 -1
  37. package/es/components/table/src/components/TableHeader.d.ts +109 -216
  38. package/es/components/table/src/components/TableRender.d.ts +13 -9
  39. package/es/components/table/src/components/tableSetting/Download.d.ts +107 -214
  40. package/es/components/table/src/components/tableSetting/DownloadCtrl.d.ts +107 -214
  41. package/es/components/table/src/components/tableSetting/index.d.ts +107 -214
  42. package/es/components/table/src/hooks/useDataSource.d.ts +1 -2
  43. package/es/components/table/src/hooks/usePagination.d.ts +3 -118
  44. package/es/components/table/src/index.d.ts +99 -435
  45. package/es/components/table/src/props.d.ts +19 -74
  46. package/es/components/table/src/types/actions.type.d.ts +1 -2
  47. package/es/components/table/src/types/table.type.d.ts +13 -8
  48. package/es/index.d.ts +1 -1
  49. package/es/index.js +2 -3240
  50. package/es/theme/index.js +688 -453
  51. package/es/theme/index.less +150 -0
  52. package/es/theme/src/components/header/components/logo.d.ts +0 -1
  53. package/es/theme/src/components/header/components/notify.d.ts +4 -3
  54. package/es/theme/src/components/header/components/setting-theme.d.ts +2 -1
  55. package/es/theme/src/components/header/components/user-info.d.ts +4 -3
  56. package/es/theme/src/components/header/helper/menu-tree.d.ts +1 -0
  57. package/es/theme/src/components/header/index.d.ts +8 -7
  58. package/es/theme/src/components/header/multiple-header.d.ts +22 -25
  59. package/es/theme/src/components/sider/components/drag-bar.d.ts +1 -1
  60. package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -1
  61. package/es/theme/src/components/sider/index.d.ts +147 -3
  62. package/es/theme/src/components/sider/mix-sider.d.ts +146 -0
  63. package/es/theme/src/enums/theme.enum.d.ts +2 -1
  64. package/es/theme/src/hooks/useMenu.d.ts +4 -2
  65. package/es/theme/src/index.d.ts +166 -23
  66. package/es/theme/src/stores/theme.store.d.ts +3 -0
  67. package/es/theme/src/types/theme.type.d.ts +2 -1
  68. package/package.json +3 -4
  69. package/vite.config.ts +0 -27
@@ -2,312 +2,160 @@ 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<"middle" | "top" | "bottom" | "stretch">;
54
+ justify: PropType<"center" | "start" | "space-around" | "space-between" | "end">;
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" | "large" | "middle">;
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
+ minShowColumn: {
92
+ type: NumberConstructor;
93
+ default: number;
94
+ };
95
+ showAdvancedButton: {
96
+ type: BooleanConstructor;
97
+ default: boolean;
98
+ };
99
+ allowClear: {
100
+ type: BooleanConstructor;
101
+ default: boolean;
102
+ };
103
+ scrollToFirstError: {
104
+ type: BooleanConstructor;
105
+ default: boolean;
106
+ };
107
+ colon: {
108
+ type: BooleanConstructor;
109
+ default: boolean;
110
+ };
111
+ loading: {
112
+ type: PropType<{
113
+ [key: string]: Ref<boolean>;
114
+ }>;
115
+ default: () => {
116
+ onSearch: Ref<boolean>;
117
+ onReset: Ref<boolean>;
211
118
  };
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
119
  };
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>;
120
+ onSearch: {
121
+ type: PropType<(params: Recordable<any>) => void>;
122
+ default: (params: Recordable<any>) => void;
123
+ };
124
+ onReset: {
125
+ type: PropType<(params: Recordable<any>) => void>;
126
+ default: (params: Recordable<any>) => void;
127
+ };
128
+ buttons: {
129
+ type: PropType<boolean | import("../types/form.type").ButtonProps[]>;
130
+ default: boolean;
131
+ };
132
+ resetFunc: {
133
+ type: PropType<() => void>;
134
+ };
135
+ registerInstance: {
136
+ type: PropType<(instance: FormActionType) => void>;
137
+ };
138
+ }>>>;
139
+ default: () => {};
140
+ };
141
+ defaultValues: {
142
+ type: PropType<Recordable<any>>;
143
+ default: () => {};
144
+ };
145
+ formModel: {
146
+ type: PropType<Recordable<any>>;
147
+ default: () => {};
148
+ };
149
+ setFormModel: {
150
+ type: PropType<(key: string, value: any) => void>;
151
+ };
152
+ formActionType: {
153
+ type: PropType<FormActionType>;
154
+ };
306
155
  };
307
- }>>, {
308
- formModel: {};
309
- schema: {};
310
- formProps: {};
311
- defaultValues: {};
312
- }>;
156
+ setup(props: any, { emit, slots }: {
157
+ emit: any;
158
+ slots: any;
159
+ }): () => JSX.Element;
160
+ };
313
161
  export default _sfc_main;
@@ -143,7 +143,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
143
143
  'onUpdate:value': import("vue").PropType<(val: string) => void>;
144
144
  valueModifiers: ObjectConstructor;
145
145
  hidden: BooleanConstructor;
146
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "disabled" | "allowClear" | "loading" | "hidden" | "readonly" | "autofocus" | "lazy" | "bordered">;
146
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "loading" | "disabled" | "bordered" | "autofocus" | "readonly" | "allowClear" | "lazy" | "hidden">;
147
147
  $attrs: {
148
148
  [x: string]: unknown;
149
149
  };
@@ -457,7 +457,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
457
457
  inputPrefixCls: StringConstructor;
458
458
  enterButton: import("vue-types").VueTypeValidableDef<any>;
459
459
  onSearch: {
460
- type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
460
+ type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
461
461
  };
462
462
  id: StringConstructor;
463
463
  prefixCls: StringConstructor;
@@ -529,7 +529,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
529
529
  inputPrefixCls: StringConstructor;
530
530
  enterButton: import("vue-types").VueTypeValidableDef<any>;
531
531
  onSearch: {
532
- type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
532
+ type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
533
533
  };
534
534
  id: StringConstructor;
535
535
  prefixCls: StringConstructor;
@@ -1014,7 +1014,7 @@ declare const _sfc_main: import("vue").DefineComponent<{
1014
1014
  onMousedown: {
1015
1015
  type: import("vue").PropType<(event: MouseEvent) => void>;
1016
1016
  };
1017
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "disabled" | "loading" | "block" | "htmlType" | "ghost" | "danger">;
1017
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "loading" | "disabled" | "htmlType" | "ghost" | "block" | "danger">;
1018
1018
  $attrs: {
1019
1019
  [x: string]: unknown;
1020
1020
  };
@@ -96,7 +96,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
96
96
  'onUpdate:value': import("vue").PropType<(val: string) => void>;
97
97
  valueModifiers: ObjectConstructor;
98
98
  hidden: BooleanConstructor;
99
- }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "disabled" | "allowClear" | "loading" | "hidden" | "readonly" | "autofocus" | "lazy" | "bordered">;
99
+ }>> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "value" | "type" | "loading" | "disabled" | "bordered" | "autofocus" | "readonly" | "allowClear" | "lazy" | "hidden">;
100
100
  $attrs: {
101
101
  [x: string]: unknown;
102
102
  };
@@ -410,7 +410,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
410
410
  inputPrefixCls: StringConstructor;
411
411
  enterButton: import("vue-types").VueTypeValidableDef<any>;
412
412
  onSearch: {
413
- type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
413
+ type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
414
414
  };
415
415
  id: StringConstructor;
416
416
  prefixCls: StringConstructor;
@@ -482,7 +482,7 @@ declare const _sfc_main: import("vue").DefineComponent<{}, {
482
482
  inputPrefixCls: StringConstructor;
483
483
  enterButton: import("vue-types").VueTypeValidableDef<any>;
484
484
  onSearch: {
485
- type: import("vue").PropType<(value: string, event?: import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | MouseEvent | KeyboardEvent) => void>;
485
+ type: import("vue").PropType<(value: string, event?: MouseEvent | import("ant-design-vue/lib/_util/EventInterface").ChangeEvent | KeyboardEvent) => void>;
486
486
  };
487
487
  id: StringConstructor;
488
488
  prefixCls: StringConstructor;
@@ -1,7 +1,7 @@
1
1
  export declare const SEARCH_BTN_NAME = "UI.SEARCH";
2
2
  export declare const RESET_BTN_NAME = "UI.RESET";
3
3
  export declare const SEARCH_BTNS: {
4
- name: string;
4
+ label: string;
5
5
  preIcon: string;
6
6
  type: string;
7
7
  }[];