@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.
- package/es/assets/locales/en.ts +1 -1
- 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 +261 -229
- 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 +3 -5
- package/es/components/drawer/index.js +55 -54
- package/es/components/drawer/src/components/DrawerHeader.d.ts +1 -3
- package/es/components/drawer/src/index.d.ts +4 -7
- package/es/components/form/index.d.ts +213 -361
- package/es/components/form/index.js +210 -163
- package/es/components/form/index.less +206 -8
- package/es/components/form/src/components/FormButtons.d.ts +3 -3
- package/es/components/form/src/components/FormItem.d.ts +152 -304
- package/es/components/form/src/components/formIcon.d.ts +4 -4
- package/es/components/form/src/components/formInputUseDialog.d.ts +3 -3
- package/es/components/form/src/enums/index.d.ts +1 -1
- package/es/components/form/src/index.d.ts +199 -347
- package/es/components/form/src/props.d.ts +8 -12
- package/es/components/form/src/types/form.type.d.ts +2 -2
- package/es/components/icons/index.d.ts +496 -2
- package/es/components/icons/index.less +5 -0
- package/es/components/icons/src/pick-icon.d.ts +5 -5
- package/es/components/modal/index.js +76 -74
- package/es/components/modal/index.less +10 -0
- package/es/components/modal/src/components/Modal.d.ts +108 -215
- package/es/components/modal/src/components/ModalFooter.d.ts +3 -3
- package/es/components/modal/src/index.d.ts +116 -223
- package/es/components/source/hooks/useSource.d.ts +14 -0
- package/es/components/source/index.js +66 -27
- package/es/components/source/types/source.type.d.ts +4 -8
- package/es/components/table/index.js +452 -820
- package/es/components/table/index.less +50 -14
- 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 +99 -435
- package/es/components/table/src/props.d.ts +19 -74
- package/es/components/table/src/types/actions.type.d.ts +1 -2
- package/es/components/table/src/types/table.type.d.ts +13 -8
- package/es/index.d.ts +1 -1
- package/es/index.js +2 -3240
- package/es/theme/index.js +688 -453
- package/es/theme/index.less +150 -0
- 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/user-info.d.ts +4 -3
- package/es/theme/src/components/header/helper/menu-tree.d.ts +1 -0
- package/es/theme/src/components/header/index.d.ts +8 -7
- package/es/theme/src/components/header/multiple-header.d.ts +22 -25
- package/es/theme/src/components/sider/components/drag-bar.d.ts +1 -1
- package/es/theme/src/components/sider/components/sider-trigger.d.ts +0 -1
- package/es/theme/src/components/sider/index.d.ts +147 -3
- package/es/theme/src/components/sider/mix-sider.d.ts +146 -0
- package/es/theme/src/enums/theme.enum.d.ts +2 -1
- package/es/theme/src/hooks/useMenu.d.ts +4 -2
- package/es/theme/src/index.d.ts +166 -23
- package/es/theme/src/stores/theme.store.d.ts +3 -0
- package/es/theme/src/types/theme.type.d.ts +2 -1
- package/package.json +3 -4
- 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:
|
|
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<"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
|
-
|
|
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
|
-
|
|
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
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
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" | "
|
|
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 |
|
|
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 |
|
|
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, "
|
|
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" | "
|
|
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 |
|
|
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 |
|
|
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;
|