@dt-frames/ui 1.0.2 → 1.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/README.md +1 -15
- package/es/assets/style/reset.less +0 -3
- package/es/index.css +1 -1
- package/es/index.js +1 -0
- package/es/style/assets/style/reset.less +0 -3
- package/es/style/theme/sider/index.less +25 -25
- package/es/theme/content/index.d.ts +27 -29
- package/es/theme/header/components/menu-search.d.ts +528 -528
- package/es/theme/header/components/setting-theme.d.ts +2580 -2550
- package/es/theme/header/index.d.ts +4369 -4369
- package/es/theme/tabs/components/TabRedo.d.ts +7 -49
- package/es/theme/tabs/index.d.ts +2478 -1399
- package/es/theme/theme/initTheme.d.ts +3 -3
- package/es/theme/theme.d.ts +22 -0
- package/package.json +50 -40
- package/src/assets/data/icons/actions.ts +427 -0
- package/src/assets/data/icons/code.ts +10 -0
- package/src/assets/data/icons/commuticate.ts +190 -0
- package/src/assets/data/icons/currency.ts +46 -0
- package/src/assets/data/icons/devices.ts +128 -0
- package/src/assets/data/icons/edit.ts +165 -0
- package/src/assets/data/icons/file.ts +104 -0
- package/src/assets/data/icons/math.ts +53 -0
- package/src/assets/data/icons/message.ts +75 -0
- package/src/assets/data/icons/navigate.ts +181 -0
- package/src/assets/data/icons/other.ts +333 -0
- package/src/assets/data/icons.ts +58 -0
- package/src/assets/imgs/logo/logo.png +0 -0
- package/src/assets/locales/en_US.json +3 -0
- package/src/assets/locales/zh_CN.json +3 -0
- package/src/assets/style/index.less +10 -0
- package/src/assets/style/reset.less +17 -0
- package/src/components/container/index.less +85 -0
- package/src/components/container/index.ts +8 -0
- package/src/components/container/src/bar.ts +107 -0
- package/src/components/container/src/lazy-container.vue +9 -0
- package/src/components/container/src/scroll-bar.vue +117 -0
- package/src/components/container/src/scroll-container.vue +61 -0
- package/src/components/curd/index.ts +5 -0
- package/src/components/curd/src/components/dialog.vue +65 -0
- package/src/components/curd/src/components/props.ts +32 -0
- package/src/components/curd/src/hooks/useCurd.tsx +72 -0
- package/src/components/curd/src/types/curd.type.ts +29 -0
- package/src/components/excel/index.ts +6 -0
- package/src/components/excel/src/export2Excel.ts +44 -0
- package/src/components/forms/index.ts +12 -0
- package/src/components/forms/src/componentMap.ts +44 -0
- package/src/components/forms/src/components/formButton.vue +150 -0
- package/src/components/forms/src/components/formIcon.vue +50 -0
- package/src/components/forms/src/components/formItem.vue +407 -0
- package/src/components/forms/src/components/radioButton.vue +58 -0
- package/src/components/forms/src/const/form.const.ts +7 -0
- package/src/components/forms/src/hooks/helper.ts +70 -0
- package/src/components/forms/src/hooks/useForm.ts +130 -0
- package/src/components/forms/src/hooks/useFormActions.ts +63 -0
- package/src/components/forms/src/hooks/useFormEvents.ts +247 -0
- package/src/components/forms/src/hooks/useFormValue.ts +49 -0
- package/src/components/forms/src/hooks/useFormValues.ts +131 -0
- package/src/components/forms/src/hooks/useLabelWidth.ts +57 -0
- package/src/components/forms/src/index.less +82 -0
- package/src/components/forms/src/index.vue +306 -0
- package/src/components/forms/src/prop.ts +80 -0
- package/src/components/forms/src/types/form.type.ts +269 -0
- package/src/components/icons/index.ts +7 -0
- package/src/components/icons/src/index.less +96 -0
- package/src/components/icons/src/pick-icon.vue +117 -0
- package/src/components/icons/src/svg-icon.vue +117 -0
- package/src/components/iframe/index.ts +5 -0
- package/src/components/iframe/src/index.less +3 -0
- package/src/components/iframe/src/index.vue +38 -0
- package/src/components/index.ts +46 -0
- package/src/components/modal/index.ts +8 -0
- package/src/components/modal/src/components/close-icon.vue +47 -0
- package/src/components/modal/src/components/modal-wrap.vue +118 -0
- package/src/components/modal/src/components/modal.tsx +30 -0
- package/src/components/modal/src/components/modalFooter.vue +38 -0
- package/src/components/modal/src/hooks/useDrag.ts +107 -0
- package/src/components/modal/src/hooks/useFullScreen.ts +27 -0
- package/src/components/modal/src/hooks/useModal.ts +177 -0
- package/src/components/modal/src/index.less +60 -0
- package/src/components/modal/src/index.vue +173 -0
- package/src/components/modal/src/props.ts +43 -0
- package/src/components/modal/src/types/modal.type.ts +27 -0
- package/src/components/router/base-router.vue +11 -0
- package/src/components/router/index.ts +3 -0
- package/src/components/source/index.ts +1 -0
- package/src/components/source/src/hooks/useFetch.ts +70 -0
- package/src/components/source/src/hooks/usePage.ts +3 -0
- package/src/components/source/src/hooks/useSource.ts +178 -0
- package/src/components/source/src/index.ts +5 -0
- package/src/components/source/src/types/source.type.ts +68 -0
- package/src/components/source/src/types/table.type.ts +8 -0
- package/src/components/table/index.ts +7 -0
- package/src/components/table/src/components/TableActions.vue +108 -0
- package/src/components/table/src/components/TableHeader.vue +77 -0
- package/src/components/table/src/components/TableRender.vue +76 -0
- package/src/components/table/src/components/setting/Column.vue +355 -0
- package/src/components/table/src/components/setting/Download.vue +55 -0
- package/src/components/table/src/components/setting/Fullscreen.vue +43 -0
- package/src/components/table/src/components/setting/Size.vue +42 -0
- package/src/components/table/src/components/setting/index.vue +64 -0
- package/src/components/table/src/const.ts +13 -0
- package/src/components/table/src/hooks/useColumns.ts +319 -0
- package/src/components/table/src/hooks/useCustomRow.ts +0 -0
- package/src/components/table/src/hooks/useDataSource.ts +99 -0
- package/src/components/table/src/hooks/useLoading.ts +29 -0
- package/src/components/table/src/hooks/usePagination.ts +76 -0
- package/src/components/table/src/hooks/useRowSelection.ts +146 -0
- package/src/components/table/src/hooks/useRows.ts +30 -0
- package/src/components/table/src/hooks/useTable.ts +77 -0
- package/src/components/table/src/hooks/useTableHeader.ts +48 -0
- package/src/components/table/src/hooks/useTableInstance.ts +29 -0
- package/src/components/table/src/hooks/useTableScroll.ts +227 -0
- package/src/components/table/src/index.less +162 -0
- package/src/components/table/src/index.vue +198 -0
- package/src/components/table/src/props.ts +152 -0
- package/src/components/table/src/types/table.type.ts +133 -0
- package/src/components/table/src/types/tableHeader.type.ts +27 -0
- package/src/components/type.ts +0 -0
- package/src/directives/icon.ts +36 -0
- package/src/directives/index.ts +27 -0
- package/src/directives/permission.ts +21 -0
- package/src/global.d.ts +8 -0
- package/src/index.ts +4 -0
- package/src/theme/content/index.vue +37 -0
- package/src/theme/feature/back-top.vue +11 -0
- package/src/theme/feature/index.vue +7 -0
- package/src/theme/footer/index.less +16 -0
- package/src/theme/footer/index.vue +24 -0
- package/src/theme/header/components/bread-crumb.vue +26 -0
- package/src/theme/header/components/fullscreen.vue +14 -0
- package/src/theme/header/components/handler.ts +81 -0
- package/src/theme/header/components/index.ts +21 -0
- package/src/theme/header/components/lang-picker.vue +36 -0
- package/src/theme/header/components/logo.vue +33 -0
- package/src/theme/header/components/menu-search.vue +62 -0
- package/src/theme/header/components/notify.vue +23 -0
- package/src/theme/header/components/setting-theme.vue +123 -0
- package/src/theme/header/components/theme-drawer/enum.ts +12 -0
- package/src/theme/header/components/theme-drawer/feature.vue +75 -0
- package/src/theme/header/components/theme-drawer/index.ts +7 -0
- package/src/theme/header/components/theme-drawer/menu-type.vue +40 -0
- package/src/theme/header/components/theme-drawer/select-item.vue +46 -0
- package/src/theme/header/components/theme-drawer/switch-item.vue +39 -0
- package/src/theme/header/components/theme-drawer/theme-color.vue +26 -0
- package/src/theme/header/components/trigger.vue +14 -0
- package/src/theme/header/components/user-info.vue +43 -0
- package/src/theme/header/const/index.ts +40 -0
- package/src/theme/header/helper/menu-tree.ts +67 -0
- package/src/theme/header/index.less +438 -0
- package/src/theme/header/index.ts +0 -0
- package/src/theme/header/index.vue +96 -0
- package/src/theme/header/multiple-header.vue +67 -0
- package/src/theme/header/set-theme.less +68 -0
- package/src/theme/index.ts +3 -0
- package/src/theme/sider/components/basic-menu/basic-menu-item.vue +14 -0
- package/src/theme/sider/components/basic-menu/basic-menu.vue +122 -0
- package/src/theme/sider/components/basic-menu/basic-sub-menu-item.vue +46 -0
- package/src/theme/sider/components/basic-menu/menu-item-content.vue +13 -0
- package/src/theme/sider/components/drag-bar.vue +26 -0
- package/src/theme/sider/components/layout-menu.vue +132 -0
- package/src/theme/sider/components/props.ts +97 -0
- package/src/theme/sider/components/sider-trigger.vue +24 -0
- package/src/theme/sider/helper/sider.ts +52 -0
- package/src/theme/sider/helper/split-menu.ts +147 -0
- package/src/theme/sider/hooks/useDragLine.ts +86 -0
- package/src/theme/sider/hooks/useOpenKeys.ts +57 -0
- package/src/theme/sider/index.less +203 -0
- package/src/theme/sider/index.vue +88 -0
- package/src/theme/tabs/components/TabContent.vue +37 -0
- package/src/theme/tabs/components/TabRedo.vue +18 -0
- package/src/theme/tabs/hooks/useMultifyTabs.ts +96 -0
- package/src/theme/tabs/hooks/useTabDropdown.ts +89 -0
- package/src/theme/tabs/index.less +165 -0
- package/src/theme/tabs/index.vue +98 -0
- package/src/theme/tabs/types/tabs.type.ts +8 -0
- package/src/theme/theme.less +66 -0
- package/src/theme/theme.vue +89 -0
- package/src/theme/transition.less +99 -0
- package/es/themes/generate.ts +0 -74
- package/es/themes/index.ts +0 -10
- package/es/themes/modifyVars.ts +0 -33
- package/es/themes/themePlugiin.ts +0 -74
package/es/theme/tabs/index.d.ts
CHANGED
|
@@ -1,1399 +1,2478 @@
|
|
|
1
|
-
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
-
menuLabelMap: any;
|
|
3
|
-
getShowQuick: any;
|
|
4
|
-
|
|
5
|
-
activeKeyRef: import("vue").Ref<string>;
|
|
6
|
-
tabStore: any;
|
|
7
|
-
getTabsState: import("vue").ComputedRef<any>;
|
|
8
|
-
unClose: import("vue").ComputedRef<boolean>;
|
|
9
|
-
getWrapCls: import("vue").ComputedRef<(string | {
|
|
10
|
-
'dt-reuse-tabs--hide-close': boolean;
|
|
11
|
-
})[]>;
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
activeKey
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
renderTabBar
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
};
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
hideAdd:
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
};
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
$
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
$
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
};
|
|
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
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
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
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
};
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
752
|
-
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
|
|
759
|
-
|
|
760
|
-
};
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
|
|
791
|
-
|
|
792
|
-
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
|
|
928
|
-
|
|
929
|
-
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
|
|
964
|
-
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
|
|
971
|
-
|
|
972
|
-
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
983
|
-
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
|
|
998
|
-
|
|
999
|
-
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
1007
|
-
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
|
|
1014
|
-
|
|
1015
|
-
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
|
|
1102
|
-
|
|
1103
|
-
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
|
|
1111
|
-
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
|
|
1121
|
-
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
|
|
1130
|
-
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
1137
|
-
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
|
|
1145
|
-
|
|
1146
|
-
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
|
|
1153
|
-
|
|
1154
|
-
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
|
|
1161
|
-
|
|
1162
|
-
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
|
|
1169
|
-
|
|
1170
|
-
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
|
|
1204
|
-
|
|
1205
|
-
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
|
|
1244
|
-
|
|
1245
|
-
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
|
|
1271
|
-
|
|
1272
|
-
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
}
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
}
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
|
|
1306
|
-
|
|
1307
|
-
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
|
|
1341
|
-
|
|
1342
|
-
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
|
|
1392
|
-
|
|
1393
|
-
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
|
|
1
|
+
declare const _sfc_main: import("vue").DefineComponent<{}, {
|
|
2
|
+
menuLabelMap: any;
|
|
3
|
+
getShowQuick: any;
|
|
4
|
+
getShowFullscreen: any;
|
|
5
|
+
activeKeyRef: import("vue").Ref<string>;
|
|
6
|
+
tabStore: any;
|
|
7
|
+
getTabsState: import("vue").ComputedRef<any>;
|
|
8
|
+
unClose: import("vue").ComputedRef<boolean>;
|
|
9
|
+
getWrapCls: import("vue").ComputedRef<(string | {
|
|
10
|
+
'dt-reuse-tabs--hide-close': boolean;
|
|
11
|
+
})[]>;
|
|
12
|
+
currentRoute: import("vue").Ref<import("vue-router").RouteLocationNormalizedLoaded>;
|
|
13
|
+
handleChange: (activeKey: any) => void;
|
|
14
|
+
handleEdit: (targetKey: string) => void;
|
|
15
|
+
Tabs: {
|
|
16
|
+
new (...args: any[]): {
|
|
17
|
+
$: import("vue").ComponentInternalInstance;
|
|
18
|
+
$data: {};
|
|
19
|
+
$props: Partial<{
|
|
20
|
+
prefixCls: string;
|
|
21
|
+
centered: boolean;
|
|
22
|
+
tabBarStyle: {
|
|
23
|
+
[key: string]: any;
|
|
24
|
+
};
|
|
25
|
+
tabPosition: string;
|
|
26
|
+
renderTabBar: (...args: any[]) => any;
|
|
27
|
+
tabBarGutter: number;
|
|
28
|
+
destroyInactiveTabPane: boolean;
|
|
29
|
+
hideAdd: boolean;
|
|
30
|
+
onTabClick: (...args: any[]) => any;
|
|
31
|
+
}> & Omit<Readonly<{
|
|
32
|
+
prefixCls?: unknown;
|
|
33
|
+
activeKey?: unknown;
|
|
34
|
+
defaultActiveKey?: unknown;
|
|
35
|
+
hideAdd?: unknown;
|
|
36
|
+
centered?: unknown;
|
|
37
|
+
tabBarStyle?: unknown;
|
|
38
|
+
tabBarExtraContent?: unknown;
|
|
39
|
+
destroyInactiveTabPane?: unknown;
|
|
40
|
+
type?: unknown;
|
|
41
|
+
tabPosition?: unknown;
|
|
42
|
+
size?: unknown;
|
|
43
|
+
animated?: unknown;
|
|
44
|
+
tabBarGutter?: unknown;
|
|
45
|
+
renderTabBar?: unknown;
|
|
46
|
+
onChange?: unknown;
|
|
47
|
+
onTabClick?: unknown;
|
|
48
|
+
onPrevClick?: unknown;
|
|
49
|
+
onNextClick?: unknown;
|
|
50
|
+
onEdit?: unknown;
|
|
51
|
+
} & {
|
|
52
|
+
prefixCls: string;
|
|
53
|
+
centered: boolean;
|
|
54
|
+
tabBarStyle: {
|
|
55
|
+
[key: string]: any;
|
|
56
|
+
};
|
|
57
|
+
tabPosition: string;
|
|
58
|
+
tabBarGutter: number;
|
|
59
|
+
destroyInactiveTabPane: boolean;
|
|
60
|
+
hideAdd: boolean;
|
|
61
|
+
} & {
|
|
62
|
+
type?: "line" | "card" | "editable-card";
|
|
63
|
+
onChange?: (activeKey: string) => void;
|
|
64
|
+
onEdit?: (targetKey: string | MouseEvent, action: "add" | "remove") => void;
|
|
65
|
+
size?: string;
|
|
66
|
+
activeKey?: string | number;
|
|
67
|
+
tabBarExtraContent?: any;
|
|
68
|
+
animated?: boolean | {
|
|
69
|
+
[key: string]: any;
|
|
70
|
+
};
|
|
71
|
+
renderTabBar?: (...args: any[]) => any;
|
|
72
|
+
defaultActiveKey?: string | number;
|
|
73
|
+
onTabClick?: (...args: any[]) => any;
|
|
74
|
+
onPrevClick?: (e: MouseEvent) => void;
|
|
75
|
+
onNextClick?: (e: MouseEvent) => void;
|
|
76
|
+
}> & {
|
|
77
|
+
onChange?: (...args: any[]) => any;
|
|
78
|
+
onEdit?: (...args: any[]) => any;
|
|
79
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
80
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "prefixCls" | "destroyInactiveTabPane" | "hideAdd" | "centered" | "tabBarStyle" | "tabPosition" | "tabBarGutter" | "renderTabBar" | "onTabClick">;
|
|
81
|
+
$attrs: {
|
|
82
|
+
[x: string]: unknown;
|
|
83
|
+
};
|
|
84
|
+
$refs: {
|
|
85
|
+
[x: string]: unknown;
|
|
86
|
+
};
|
|
87
|
+
$slots: Readonly<{
|
|
88
|
+
[name: string]: import("vue").Slot;
|
|
89
|
+
}>;
|
|
90
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
91
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
92
|
+
$emit: (event: "change" | "update:activeKey" | "edit", ...args: any[]) => void;
|
|
93
|
+
$el: any;
|
|
94
|
+
$options: import("vue").ComponentOptionsBase<Readonly<{
|
|
95
|
+
prefixCls?: unknown;
|
|
96
|
+
activeKey?: unknown;
|
|
97
|
+
defaultActiveKey?: unknown;
|
|
98
|
+
hideAdd?: unknown;
|
|
99
|
+
centered?: unknown;
|
|
100
|
+
tabBarStyle?: unknown;
|
|
101
|
+
tabBarExtraContent?: unknown;
|
|
102
|
+
destroyInactiveTabPane?: unknown;
|
|
103
|
+
type?: unknown;
|
|
104
|
+
tabPosition?: unknown;
|
|
105
|
+
size?: unknown;
|
|
106
|
+
animated?: unknown;
|
|
107
|
+
tabBarGutter?: unknown;
|
|
108
|
+
renderTabBar?: unknown;
|
|
109
|
+
onChange?: unknown;
|
|
110
|
+
onTabClick?: unknown;
|
|
111
|
+
onPrevClick?: unknown;
|
|
112
|
+
onNextClick?: unknown;
|
|
113
|
+
onEdit?: unknown;
|
|
114
|
+
} & {
|
|
115
|
+
prefixCls: string;
|
|
116
|
+
centered: boolean;
|
|
117
|
+
tabBarStyle: {
|
|
118
|
+
[key: string]: any;
|
|
119
|
+
};
|
|
120
|
+
tabPosition: string;
|
|
121
|
+
tabBarGutter: number;
|
|
122
|
+
destroyInactiveTabPane: boolean;
|
|
123
|
+
hideAdd: boolean;
|
|
124
|
+
} & {
|
|
125
|
+
type?: "line" | "card" | "editable-card";
|
|
126
|
+
onChange?: (activeKey: string) => void;
|
|
127
|
+
onEdit?: (targetKey: string | MouseEvent, action: "add" | "remove") => void;
|
|
128
|
+
size?: string;
|
|
129
|
+
activeKey?: string | number;
|
|
130
|
+
tabBarExtraContent?: any;
|
|
131
|
+
animated?: boolean | {
|
|
132
|
+
[key: string]: any;
|
|
133
|
+
};
|
|
134
|
+
renderTabBar?: (...args: any[]) => any;
|
|
135
|
+
defaultActiveKey?: string | number;
|
|
136
|
+
onTabClick?: (...args: any[]) => any;
|
|
137
|
+
onPrevClick?: (e: MouseEvent) => void;
|
|
138
|
+
onNextClick?: (e: MouseEvent) => void;
|
|
139
|
+
}> & {
|
|
140
|
+
onChange?: (...args: any[]) => any;
|
|
141
|
+
onEdit?: (...args: any[]) => any;
|
|
142
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
143
|
+
}, {
|
|
144
|
+
configProvider: {
|
|
145
|
+
getTargetContainer?: () => HTMLElement;
|
|
146
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
147
|
+
prefixCls?: string;
|
|
148
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
149
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
150
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
151
|
+
csp?: unknown;
|
|
152
|
+
autoInsertSpaceInButton?: boolean;
|
|
153
|
+
locale?: {
|
|
154
|
+
locale: string;
|
|
155
|
+
Pagination?: {
|
|
156
|
+
constructor: Function;
|
|
157
|
+
toString: () => string;
|
|
158
|
+
toLocaleString: () => string;
|
|
159
|
+
valueOf: () => Object;
|
|
160
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
161
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
162
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
163
|
+
};
|
|
164
|
+
DatePicker?: {
|
|
165
|
+
constructor: Function;
|
|
166
|
+
toString: () => string;
|
|
167
|
+
toLocaleString: () => string;
|
|
168
|
+
valueOf: () => Object;
|
|
169
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
170
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
171
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
172
|
+
};
|
|
173
|
+
TimePicker?: {
|
|
174
|
+
constructor: Function;
|
|
175
|
+
toString: () => string;
|
|
176
|
+
toLocaleString: () => string;
|
|
177
|
+
valueOf: () => Object;
|
|
178
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
179
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
180
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
181
|
+
};
|
|
182
|
+
Calendar?: {
|
|
183
|
+
constructor: Function;
|
|
184
|
+
toString: () => string;
|
|
185
|
+
toLocaleString: () => string;
|
|
186
|
+
valueOf: () => Object;
|
|
187
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
188
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
189
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
190
|
+
};
|
|
191
|
+
Table?: {
|
|
192
|
+
constructor: Function;
|
|
193
|
+
toString: () => string;
|
|
194
|
+
toLocaleString: () => string;
|
|
195
|
+
valueOf: () => Object;
|
|
196
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
197
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
198
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
199
|
+
};
|
|
200
|
+
Modal?: {
|
|
201
|
+
okText: string;
|
|
202
|
+
cancelText: string;
|
|
203
|
+
justOkText: string;
|
|
204
|
+
};
|
|
205
|
+
Popconfirm?: {
|
|
206
|
+
constructor: Function;
|
|
207
|
+
toString: () => string;
|
|
208
|
+
toLocaleString: () => string;
|
|
209
|
+
valueOf: () => Object;
|
|
210
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
211
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
212
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
213
|
+
};
|
|
214
|
+
Transfer?: {
|
|
215
|
+
constructor: Function;
|
|
216
|
+
toString: () => string;
|
|
217
|
+
toLocaleString: () => string;
|
|
218
|
+
valueOf: () => Object;
|
|
219
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
220
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
221
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
222
|
+
};
|
|
223
|
+
Select?: {
|
|
224
|
+
constructor: Function;
|
|
225
|
+
toString: () => string;
|
|
226
|
+
toLocaleString: () => string;
|
|
227
|
+
valueOf: () => Object;
|
|
228
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
229
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
230
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
231
|
+
};
|
|
232
|
+
Upload?: {
|
|
233
|
+
constructor: Function;
|
|
234
|
+
toString: () => string;
|
|
235
|
+
toLocaleString: () => string;
|
|
236
|
+
valueOf: () => Object;
|
|
237
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
238
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
239
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
240
|
+
};
|
|
241
|
+
Form?: {
|
|
242
|
+
optional?: string;
|
|
243
|
+
defaultValidateMessages: {
|
|
244
|
+
default?: string | (() => string);
|
|
245
|
+
required?: string | (() => string);
|
|
246
|
+
enum?: string | (() => string);
|
|
247
|
+
whitespace?: string | (() => string);
|
|
248
|
+
date?: {
|
|
249
|
+
format?: string | (() => string);
|
|
250
|
+
parse?: string | (() => string);
|
|
251
|
+
invalid?: string | (() => string);
|
|
252
|
+
};
|
|
253
|
+
types?: {
|
|
254
|
+
string?: string | (() => string);
|
|
255
|
+
method?: string | (() => string);
|
|
256
|
+
array?: string | (() => string);
|
|
257
|
+
object?: string | (() => string);
|
|
258
|
+
number?: string | (() => string);
|
|
259
|
+
date?: string | (() => string);
|
|
260
|
+
boolean?: string | (() => string);
|
|
261
|
+
integer?: string | (() => string);
|
|
262
|
+
float?: string | (() => string);
|
|
263
|
+
regexp?: string | (() => string);
|
|
264
|
+
email?: string | (() => string);
|
|
265
|
+
url?: string | (() => string);
|
|
266
|
+
hex?: string | (() => string);
|
|
267
|
+
};
|
|
268
|
+
string?: {
|
|
269
|
+
len?: string | (() => string);
|
|
270
|
+
min?: string | (() => string);
|
|
271
|
+
max?: string | (() => string);
|
|
272
|
+
range?: string | (() => string);
|
|
273
|
+
};
|
|
274
|
+
number?: {
|
|
275
|
+
len?: string | (() => string);
|
|
276
|
+
min?: string | (() => string);
|
|
277
|
+
max?: string | (() => string);
|
|
278
|
+
range?: string | (() => string);
|
|
279
|
+
};
|
|
280
|
+
array?: {
|
|
281
|
+
len?: string | (() => string);
|
|
282
|
+
min?: string | (() => string);
|
|
283
|
+
max?: string | (() => string);
|
|
284
|
+
range?: string | (() => string);
|
|
285
|
+
};
|
|
286
|
+
pattern?: {
|
|
287
|
+
mismatch?: string | (() => string);
|
|
288
|
+
};
|
|
289
|
+
};
|
|
290
|
+
};
|
|
291
|
+
Image?: {
|
|
292
|
+
preview: string;
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
pageHeader?: {
|
|
296
|
+
ghost: boolean;
|
|
297
|
+
};
|
|
298
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
299
|
+
direction?: "ltr" | "rtl";
|
|
300
|
+
space?: {
|
|
301
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
302
|
+
};
|
|
303
|
+
virtual?: boolean;
|
|
304
|
+
dropdownMatchSelectWidth?: boolean;
|
|
305
|
+
form?: unknown;
|
|
306
|
+
};
|
|
307
|
+
}, unknown, {}, {
|
|
308
|
+
removeTab(targetKey: string, e: MouseEvent): void;
|
|
309
|
+
handleChange(activeKey: string): void;
|
|
310
|
+
createNewTab(targetKey: MouseEvent): void;
|
|
311
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:activeKey" | "edit")[], string, {
|
|
312
|
+
prefixCls: string;
|
|
313
|
+
centered: boolean;
|
|
314
|
+
tabBarStyle: {
|
|
315
|
+
[key: string]: any;
|
|
316
|
+
};
|
|
317
|
+
tabPosition: string;
|
|
318
|
+
renderTabBar: (...args: any[]) => any;
|
|
319
|
+
tabBarGutter: number;
|
|
320
|
+
destroyInactiveTabPane: boolean;
|
|
321
|
+
hideAdd: boolean;
|
|
322
|
+
onTabClick: (...args: any[]) => any;
|
|
323
|
+
}> & {
|
|
324
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
325
|
+
created?: (() => void) | (() => void)[];
|
|
326
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
327
|
+
mounted?: (() => void) | (() => void)[];
|
|
328
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
329
|
+
updated?: (() => void) | (() => void)[];
|
|
330
|
+
activated?: (() => void) | (() => void)[];
|
|
331
|
+
deactivated?: (() => void) | (() => void)[];
|
|
332
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
333
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
334
|
+
destroyed?: (() => void) | (() => void)[];
|
|
335
|
+
unmounted?: (() => void) | (() => void)[];
|
|
336
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
337
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
338
|
+
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)[];
|
|
339
|
+
};
|
|
340
|
+
$forceUpdate: () => void;
|
|
341
|
+
$nextTick: typeof import("vue").nextTick;
|
|
342
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
343
|
+
} & Readonly<{
|
|
344
|
+
prefixCls?: unknown;
|
|
345
|
+
activeKey?: unknown;
|
|
346
|
+
defaultActiveKey?: unknown;
|
|
347
|
+
hideAdd?: unknown;
|
|
348
|
+
centered?: unknown;
|
|
349
|
+
tabBarStyle?: unknown;
|
|
350
|
+
tabBarExtraContent?: unknown;
|
|
351
|
+
destroyInactiveTabPane?: unknown;
|
|
352
|
+
type?: unknown;
|
|
353
|
+
tabPosition?: unknown;
|
|
354
|
+
size?: unknown;
|
|
355
|
+
animated?: unknown;
|
|
356
|
+
tabBarGutter?: unknown;
|
|
357
|
+
renderTabBar?: unknown;
|
|
358
|
+
onChange?: unknown;
|
|
359
|
+
onTabClick?: unknown;
|
|
360
|
+
onPrevClick?: unknown;
|
|
361
|
+
onNextClick?: unknown;
|
|
362
|
+
onEdit?: unknown;
|
|
363
|
+
} & {
|
|
364
|
+
prefixCls: string;
|
|
365
|
+
centered: boolean;
|
|
366
|
+
tabBarStyle: {
|
|
367
|
+
[key: string]: any;
|
|
368
|
+
};
|
|
369
|
+
tabPosition: string;
|
|
370
|
+
tabBarGutter: number;
|
|
371
|
+
destroyInactiveTabPane: boolean;
|
|
372
|
+
hideAdd: boolean;
|
|
373
|
+
} & {
|
|
374
|
+
type?: "line" | "card" | "editable-card";
|
|
375
|
+
onChange?: (activeKey: string) => void;
|
|
376
|
+
onEdit?: (targetKey: string | MouseEvent, action: "add" | "remove") => void;
|
|
377
|
+
size?: string;
|
|
378
|
+
activeKey?: string | number;
|
|
379
|
+
tabBarExtraContent?: any;
|
|
380
|
+
animated?: boolean | {
|
|
381
|
+
[key: string]: any;
|
|
382
|
+
};
|
|
383
|
+
renderTabBar?: (...args: any[]) => any;
|
|
384
|
+
defaultActiveKey?: string | number;
|
|
385
|
+
onTabClick?: (...args: any[]) => any;
|
|
386
|
+
onPrevClick?: (e: MouseEvent) => void;
|
|
387
|
+
onNextClick?: (e: MouseEvent) => void;
|
|
388
|
+
}> & {
|
|
389
|
+
onChange?: (...args: any[]) => any;
|
|
390
|
+
onEdit?: (...args: any[]) => any;
|
|
391
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
392
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
393
|
+
configProvider: {
|
|
394
|
+
getTargetContainer?: () => HTMLElement;
|
|
395
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
396
|
+
prefixCls?: string;
|
|
397
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
398
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
399
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
400
|
+
csp?: unknown;
|
|
401
|
+
autoInsertSpaceInButton?: boolean;
|
|
402
|
+
locale?: {
|
|
403
|
+
locale: string;
|
|
404
|
+
Pagination?: {
|
|
405
|
+
constructor: Function;
|
|
406
|
+
toString: () => string;
|
|
407
|
+
toLocaleString: () => string;
|
|
408
|
+
valueOf: () => Object;
|
|
409
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
410
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
411
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
412
|
+
};
|
|
413
|
+
DatePicker?: {
|
|
414
|
+
constructor: Function;
|
|
415
|
+
toString: () => string;
|
|
416
|
+
toLocaleString: () => string;
|
|
417
|
+
valueOf: () => Object;
|
|
418
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
419
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
420
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
421
|
+
};
|
|
422
|
+
TimePicker?: {
|
|
423
|
+
constructor: Function;
|
|
424
|
+
toString: () => string;
|
|
425
|
+
toLocaleString: () => string;
|
|
426
|
+
valueOf: () => Object;
|
|
427
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
428
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
429
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
430
|
+
};
|
|
431
|
+
Calendar?: {
|
|
432
|
+
constructor: Function;
|
|
433
|
+
toString: () => string;
|
|
434
|
+
toLocaleString: () => string;
|
|
435
|
+
valueOf: () => Object;
|
|
436
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
437
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
438
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
439
|
+
};
|
|
440
|
+
Table?: {
|
|
441
|
+
constructor: Function;
|
|
442
|
+
toString: () => string;
|
|
443
|
+
toLocaleString: () => string;
|
|
444
|
+
valueOf: () => Object;
|
|
445
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
446
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
447
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
448
|
+
};
|
|
449
|
+
Modal?: {
|
|
450
|
+
okText: string;
|
|
451
|
+
cancelText: string;
|
|
452
|
+
justOkText: string;
|
|
453
|
+
};
|
|
454
|
+
Popconfirm?: {
|
|
455
|
+
constructor: Function;
|
|
456
|
+
toString: () => string;
|
|
457
|
+
toLocaleString: () => string;
|
|
458
|
+
valueOf: () => Object;
|
|
459
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
460
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
461
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
462
|
+
};
|
|
463
|
+
Transfer?: {
|
|
464
|
+
constructor: Function;
|
|
465
|
+
toString: () => string;
|
|
466
|
+
toLocaleString: () => string;
|
|
467
|
+
valueOf: () => Object;
|
|
468
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
469
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
470
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
471
|
+
};
|
|
472
|
+
Select?: {
|
|
473
|
+
constructor: Function;
|
|
474
|
+
toString: () => string;
|
|
475
|
+
toLocaleString: () => string;
|
|
476
|
+
valueOf: () => Object;
|
|
477
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
478
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
479
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
480
|
+
};
|
|
481
|
+
Upload?: {
|
|
482
|
+
constructor: Function;
|
|
483
|
+
toString: () => string;
|
|
484
|
+
toLocaleString: () => string;
|
|
485
|
+
valueOf: () => Object;
|
|
486
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
487
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
488
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
489
|
+
};
|
|
490
|
+
Form?: {
|
|
491
|
+
optional?: string;
|
|
492
|
+
defaultValidateMessages: {
|
|
493
|
+
default?: string | (() => string);
|
|
494
|
+
required?: string | (() => string);
|
|
495
|
+
enum?: string | (() => string);
|
|
496
|
+
whitespace?: string | (() => string);
|
|
497
|
+
date?: {
|
|
498
|
+
format?: string | (() => string);
|
|
499
|
+
parse?: string | (() => string);
|
|
500
|
+
invalid?: string | (() => string);
|
|
501
|
+
};
|
|
502
|
+
types?: {
|
|
503
|
+
string?: string | (() => string);
|
|
504
|
+
method?: string | (() => string);
|
|
505
|
+
array?: string | (() => string);
|
|
506
|
+
object?: string | (() => string);
|
|
507
|
+
number?: string | (() => string);
|
|
508
|
+
date?: string | (() => string);
|
|
509
|
+
boolean?: string | (() => string);
|
|
510
|
+
integer?: string | (() => string);
|
|
511
|
+
float?: string | (() => string);
|
|
512
|
+
regexp?: string | (() => string);
|
|
513
|
+
email?: string | (() => string);
|
|
514
|
+
url?: string | (() => string);
|
|
515
|
+
hex?: string | (() => string);
|
|
516
|
+
};
|
|
517
|
+
string?: {
|
|
518
|
+
len?: string | (() => string);
|
|
519
|
+
min?: string | (() => string);
|
|
520
|
+
max?: string | (() => string);
|
|
521
|
+
range?: string | (() => string);
|
|
522
|
+
};
|
|
523
|
+
number?: {
|
|
524
|
+
len?: string | (() => string);
|
|
525
|
+
min?: string | (() => string);
|
|
526
|
+
max?: string | (() => string);
|
|
527
|
+
range?: string | (() => string);
|
|
528
|
+
};
|
|
529
|
+
array?: {
|
|
530
|
+
len?: string | (() => string);
|
|
531
|
+
min?: string | (() => string);
|
|
532
|
+
max?: string | (() => string);
|
|
533
|
+
range?: string | (() => string);
|
|
534
|
+
};
|
|
535
|
+
pattern?: {
|
|
536
|
+
mismatch?: string | (() => string);
|
|
537
|
+
};
|
|
538
|
+
};
|
|
539
|
+
};
|
|
540
|
+
Image?: {
|
|
541
|
+
preview: string;
|
|
542
|
+
};
|
|
543
|
+
};
|
|
544
|
+
pageHeader?: {
|
|
545
|
+
ghost: boolean;
|
|
546
|
+
};
|
|
547
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
548
|
+
direction?: "ltr" | "rtl";
|
|
549
|
+
space?: {
|
|
550
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
551
|
+
};
|
|
552
|
+
virtual?: boolean;
|
|
553
|
+
dropdownMatchSelectWidth?: boolean;
|
|
554
|
+
form?: unknown;
|
|
555
|
+
};
|
|
556
|
+
}> & {
|
|
557
|
+
removeTab(targetKey: string, e: MouseEvent): void;
|
|
558
|
+
handleChange(activeKey: string): void;
|
|
559
|
+
createNewTab(targetKey: MouseEvent): void;
|
|
560
|
+
} & import("vue").ComponentCustomProperties;
|
|
561
|
+
__isFragment?: never;
|
|
562
|
+
__isTeleport?: never;
|
|
563
|
+
__isSuspense?: never;
|
|
564
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
565
|
+
prefixCls?: unknown;
|
|
566
|
+
activeKey?: unknown;
|
|
567
|
+
defaultActiveKey?: unknown;
|
|
568
|
+
hideAdd?: unknown;
|
|
569
|
+
centered?: unknown;
|
|
570
|
+
tabBarStyle?: unknown;
|
|
571
|
+
tabBarExtraContent?: unknown;
|
|
572
|
+
destroyInactiveTabPane?: unknown;
|
|
573
|
+
type?: unknown;
|
|
574
|
+
tabPosition?: unknown;
|
|
575
|
+
size?: unknown;
|
|
576
|
+
animated?: unknown;
|
|
577
|
+
tabBarGutter?: unknown;
|
|
578
|
+
renderTabBar?: unknown;
|
|
579
|
+
onChange?: unknown;
|
|
580
|
+
onTabClick?: unknown;
|
|
581
|
+
onPrevClick?: unknown;
|
|
582
|
+
onNextClick?: unknown;
|
|
583
|
+
onEdit?: unknown;
|
|
584
|
+
} & {
|
|
585
|
+
prefixCls: string;
|
|
586
|
+
centered: boolean;
|
|
587
|
+
tabBarStyle: {
|
|
588
|
+
[key: string]: any;
|
|
589
|
+
};
|
|
590
|
+
tabPosition: string;
|
|
591
|
+
tabBarGutter: number;
|
|
592
|
+
destroyInactiveTabPane: boolean;
|
|
593
|
+
hideAdd: boolean;
|
|
594
|
+
} & {
|
|
595
|
+
type?: "line" | "card" | "editable-card";
|
|
596
|
+
onChange?: (activeKey: string) => void;
|
|
597
|
+
onEdit?: (targetKey: string | MouseEvent, action: "add" | "remove") => void;
|
|
598
|
+
size?: string;
|
|
599
|
+
activeKey?: string | number;
|
|
600
|
+
tabBarExtraContent?: any;
|
|
601
|
+
animated?: boolean | {
|
|
602
|
+
[key: string]: any;
|
|
603
|
+
};
|
|
604
|
+
renderTabBar?: (...args: any[]) => any;
|
|
605
|
+
defaultActiveKey?: string | number;
|
|
606
|
+
onTabClick?: (...args: any[]) => any;
|
|
607
|
+
onPrevClick?: (e: MouseEvent) => void;
|
|
608
|
+
onNextClick?: (e: MouseEvent) => void;
|
|
609
|
+
}> & {
|
|
610
|
+
onChange?: (...args: any[]) => any;
|
|
611
|
+
onEdit?: (...args: any[]) => any;
|
|
612
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
613
|
+
}, {
|
|
614
|
+
configProvider: {
|
|
615
|
+
getTargetContainer?: () => HTMLElement;
|
|
616
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
617
|
+
prefixCls?: string;
|
|
618
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
619
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
620
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
621
|
+
csp?: unknown;
|
|
622
|
+
autoInsertSpaceInButton?: boolean;
|
|
623
|
+
locale?: {
|
|
624
|
+
locale: string;
|
|
625
|
+
Pagination?: {
|
|
626
|
+
constructor: Function;
|
|
627
|
+
toString: () => string;
|
|
628
|
+
toLocaleString: () => string;
|
|
629
|
+
valueOf: () => Object;
|
|
630
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
631
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
632
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
633
|
+
};
|
|
634
|
+
DatePicker?: {
|
|
635
|
+
constructor: Function;
|
|
636
|
+
toString: () => string;
|
|
637
|
+
toLocaleString: () => string;
|
|
638
|
+
valueOf: () => Object;
|
|
639
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
640
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
641
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
642
|
+
};
|
|
643
|
+
TimePicker?: {
|
|
644
|
+
constructor: Function;
|
|
645
|
+
toString: () => string;
|
|
646
|
+
toLocaleString: () => string;
|
|
647
|
+
valueOf: () => Object;
|
|
648
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
649
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
650
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
651
|
+
};
|
|
652
|
+
Calendar?: {
|
|
653
|
+
constructor: Function;
|
|
654
|
+
toString: () => string;
|
|
655
|
+
toLocaleString: () => string;
|
|
656
|
+
valueOf: () => Object;
|
|
657
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
658
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
659
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
660
|
+
};
|
|
661
|
+
Table?: {
|
|
662
|
+
constructor: Function;
|
|
663
|
+
toString: () => string;
|
|
664
|
+
toLocaleString: () => string;
|
|
665
|
+
valueOf: () => Object;
|
|
666
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
667
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
668
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
669
|
+
};
|
|
670
|
+
Modal?: {
|
|
671
|
+
okText: string;
|
|
672
|
+
cancelText: string;
|
|
673
|
+
justOkText: string;
|
|
674
|
+
};
|
|
675
|
+
Popconfirm?: {
|
|
676
|
+
constructor: Function;
|
|
677
|
+
toString: () => string;
|
|
678
|
+
toLocaleString: () => string;
|
|
679
|
+
valueOf: () => Object;
|
|
680
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
681
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
682
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
683
|
+
};
|
|
684
|
+
Transfer?: {
|
|
685
|
+
constructor: Function;
|
|
686
|
+
toString: () => string;
|
|
687
|
+
toLocaleString: () => string;
|
|
688
|
+
valueOf: () => Object;
|
|
689
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
690
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
691
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
692
|
+
};
|
|
693
|
+
Select?: {
|
|
694
|
+
constructor: Function;
|
|
695
|
+
toString: () => string;
|
|
696
|
+
toLocaleString: () => string;
|
|
697
|
+
valueOf: () => Object;
|
|
698
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
699
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
700
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
701
|
+
};
|
|
702
|
+
Upload?: {
|
|
703
|
+
constructor: Function;
|
|
704
|
+
toString: () => string;
|
|
705
|
+
toLocaleString: () => string;
|
|
706
|
+
valueOf: () => Object;
|
|
707
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
708
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
709
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
710
|
+
};
|
|
711
|
+
Form?: {
|
|
712
|
+
optional?: string;
|
|
713
|
+
defaultValidateMessages: {
|
|
714
|
+
default?: string | (() => string);
|
|
715
|
+
required?: string | (() => string);
|
|
716
|
+
enum?: string | (() => string);
|
|
717
|
+
whitespace?: string | (() => string);
|
|
718
|
+
date?: {
|
|
719
|
+
format?: string | (() => string);
|
|
720
|
+
parse?: string | (() => string);
|
|
721
|
+
invalid?: string | (() => string);
|
|
722
|
+
};
|
|
723
|
+
types?: {
|
|
724
|
+
string?: string | (() => string);
|
|
725
|
+
method?: string | (() => string);
|
|
726
|
+
array?: string | (() => string);
|
|
727
|
+
object?: string | (() => string);
|
|
728
|
+
number?: string | (() => string);
|
|
729
|
+
date?: string | (() => string);
|
|
730
|
+
boolean?: string | (() => string);
|
|
731
|
+
integer?: string | (() => string);
|
|
732
|
+
float?: string | (() => string);
|
|
733
|
+
regexp?: string | (() => string);
|
|
734
|
+
email?: string | (() => string);
|
|
735
|
+
url?: string | (() => string);
|
|
736
|
+
hex?: string | (() => string);
|
|
737
|
+
};
|
|
738
|
+
string?: {
|
|
739
|
+
len?: string | (() => string);
|
|
740
|
+
min?: string | (() => string);
|
|
741
|
+
max?: string | (() => string);
|
|
742
|
+
range?: string | (() => string);
|
|
743
|
+
};
|
|
744
|
+
number?: {
|
|
745
|
+
len?: string | (() => string);
|
|
746
|
+
min?: string | (() => string);
|
|
747
|
+
max?: string | (() => string);
|
|
748
|
+
range?: string | (() => string);
|
|
749
|
+
};
|
|
750
|
+
array?: {
|
|
751
|
+
len?: string | (() => string);
|
|
752
|
+
min?: string | (() => string);
|
|
753
|
+
max?: string | (() => string);
|
|
754
|
+
range?: string | (() => string);
|
|
755
|
+
};
|
|
756
|
+
pattern?: {
|
|
757
|
+
mismatch?: string | (() => string);
|
|
758
|
+
};
|
|
759
|
+
};
|
|
760
|
+
};
|
|
761
|
+
Image?: {
|
|
762
|
+
preview: string;
|
|
763
|
+
};
|
|
764
|
+
};
|
|
765
|
+
pageHeader?: {
|
|
766
|
+
ghost: boolean;
|
|
767
|
+
};
|
|
768
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
769
|
+
direction?: "ltr" | "rtl";
|
|
770
|
+
space?: {
|
|
771
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
772
|
+
};
|
|
773
|
+
virtual?: boolean;
|
|
774
|
+
dropdownMatchSelectWidth?: boolean;
|
|
775
|
+
form?: unknown;
|
|
776
|
+
};
|
|
777
|
+
}, unknown, {}, {
|
|
778
|
+
removeTab(targetKey: string, e: MouseEvent): void;
|
|
779
|
+
handleChange(activeKey: string): void;
|
|
780
|
+
createNewTab(targetKey: MouseEvent): void;
|
|
781
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("change" | "update:activeKey" | "edit")[], "change" | "update:activeKey" | "edit", {
|
|
782
|
+
prefixCls: string;
|
|
783
|
+
centered: boolean;
|
|
784
|
+
tabBarStyle: {
|
|
785
|
+
[key: string]: any;
|
|
786
|
+
};
|
|
787
|
+
tabPosition: string;
|
|
788
|
+
renderTabBar: (...args: any[]) => any;
|
|
789
|
+
tabBarGutter: number;
|
|
790
|
+
destroyInactiveTabPane: boolean;
|
|
791
|
+
hideAdd: boolean;
|
|
792
|
+
onTabClick: (...args: any[]) => any;
|
|
793
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
794
|
+
readonly TabPane: import("vue").DefineComponent<{
|
|
795
|
+
active: import("vue-types").VueTypeValidableDef<boolean>;
|
|
796
|
+
destroyInactiveTabPane: import("vue-types").VueTypeValidableDef<boolean>;
|
|
797
|
+
forceRender: import("vue-types").VueTypeValidableDef<boolean>;
|
|
798
|
+
placeholder: import("vue-types").VueTypeValidableDef<any>;
|
|
799
|
+
rootPrefixCls: import("vue-types").VueTypeValidableDef<string> & {
|
|
800
|
+
default: string;
|
|
801
|
+
};
|
|
802
|
+
tab: import("vue-types").VueTypeValidableDef<any>;
|
|
803
|
+
closable: import("vue-types").VueTypeValidableDef<boolean>;
|
|
804
|
+
disabled: import("vue-types").VueTypeValidableDef<boolean>;
|
|
805
|
+
}, {
|
|
806
|
+
isActived: any;
|
|
807
|
+
sentinelContext: {};
|
|
808
|
+
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
809
|
+
active?: unknown;
|
|
810
|
+
destroyInactiveTabPane?: unknown;
|
|
811
|
+
forceRender?: unknown;
|
|
812
|
+
placeholder?: unknown;
|
|
813
|
+
rootPrefixCls?: unknown;
|
|
814
|
+
tab?: unknown;
|
|
815
|
+
closable?: unknown;
|
|
816
|
+
disabled?: unknown;
|
|
817
|
+
} & {
|
|
818
|
+
rootPrefixCls: string;
|
|
819
|
+
} & {
|
|
820
|
+
tab?: any;
|
|
821
|
+
active?: boolean;
|
|
822
|
+
disabled?: boolean;
|
|
823
|
+
placeholder?: any;
|
|
824
|
+
forceRender?: boolean;
|
|
825
|
+
closable?: boolean;
|
|
826
|
+
destroyInactiveTabPane?: boolean;
|
|
827
|
+
}>, {
|
|
828
|
+
rootPrefixCls: string;
|
|
829
|
+
}>;
|
|
830
|
+
readonly TabContent: import("vue").DefineComponent<{
|
|
831
|
+
animated: import("vue-types").VueTypeValidableDef<boolean> & {
|
|
832
|
+
default: boolean;
|
|
833
|
+
};
|
|
834
|
+
animatedWithMargin: import("vue-types").VueTypeValidableDef<boolean> & {
|
|
835
|
+
default: boolean;
|
|
836
|
+
};
|
|
837
|
+
prefixCls: import("vue-types").VueTypeValidableDef<string> & {
|
|
838
|
+
default: string;
|
|
839
|
+
} & {
|
|
840
|
+
default: string;
|
|
841
|
+
};
|
|
842
|
+
activeKey: import("vue-types").VueTypeDef<string | number>;
|
|
843
|
+
tabBarPosition: import("vue-types").VueTypeValidableDef<string> & {
|
|
844
|
+
default: string;
|
|
845
|
+
};
|
|
846
|
+
direction: import("vue-types").VueTypeValidableDef<string> & {
|
|
847
|
+
default: string;
|
|
848
|
+
};
|
|
849
|
+
destroyInactiveTabPane: import("vue-types").VueTypeValidableDef<boolean>;
|
|
850
|
+
children: import("vue-types").VueTypeValidableDef<any>;
|
|
851
|
+
}, any, any, {
|
|
852
|
+
classes(): {
|
|
853
|
+
[x: string]: boolean;
|
|
854
|
+
[x: number]: boolean;
|
|
855
|
+
};
|
|
856
|
+
}, {
|
|
857
|
+
getTabPanes(children: any): any[];
|
|
858
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
859
|
+
animated?: unknown;
|
|
860
|
+
animatedWithMargin?: unknown;
|
|
861
|
+
prefixCls?: unknown;
|
|
862
|
+
activeKey?: unknown;
|
|
863
|
+
tabBarPosition?: unknown;
|
|
864
|
+
direction?: unknown;
|
|
865
|
+
destroyInactiveTabPane?: unknown;
|
|
866
|
+
children?: unknown;
|
|
867
|
+
} & {
|
|
868
|
+
prefixCls: string;
|
|
869
|
+
direction: string;
|
|
870
|
+
tabBarPosition: string;
|
|
871
|
+
animated: boolean;
|
|
872
|
+
animatedWithMargin: boolean;
|
|
873
|
+
} & {
|
|
874
|
+
children?: any;
|
|
875
|
+
activeKey?: string | number;
|
|
876
|
+
destroyInactiveTabPane?: boolean;
|
|
877
|
+
}>, {
|
|
878
|
+
prefixCls: string;
|
|
879
|
+
direction: string;
|
|
880
|
+
tabBarPosition: string;
|
|
881
|
+
animated: boolean;
|
|
882
|
+
animatedWithMargin: boolean;
|
|
883
|
+
}>;
|
|
884
|
+
};
|
|
885
|
+
TabPane: import("vue").DefineComponent<{
|
|
886
|
+
active: import("vue-types").VueTypeValidableDef<boolean>;
|
|
887
|
+
destroyInactiveTabPane: import("vue-types").VueTypeValidableDef<boolean>;
|
|
888
|
+
forceRender: import("vue-types").VueTypeValidableDef<boolean>;
|
|
889
|
+
placeholder: import("vue-types").VueTypeValidableDef<any>;
|
|
890
|
+
rootPrefixCls: import("vue-types").VueTypeValidableDef<string> & {
|
|
891
|
+
default: string;
|
|
892
|
+
};
|
|
893
|
+
tab: import("vue-types").VueTypeValidableDef<any>;
|
|
894
|
+
closable: import("vue-types").VueTypeValidableDef<boolean>;
|
|
895
|
+
disabled: import("vue-types").VueTypeValidableDef<boolean>;
|
|
896
|
+
}, {
|
|
897
|
+
isActived: any;
|
|
898
|
+
sentinelContext: {};
|
|
899
|
+
}, any, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
900
|
+
active?: unknown;
|
|
901
|
+
destroyInactiveTabPane?: unknown;
|
|
902
|
+
forceRender?: unknown;
|
|
903
|
+
placeholder?: unknown;
|
|
904
|
+
rootPrefixCls?: unknown;
|
|
905
|
+
tab?: unknown;
|
|
906
|
+
closable?: unknown;
|
|
907
|
+
disabled?: unknown;
|
|
908
|
+
} & {
|
|
909
|
+
rootPrefixCls: string;
|
|
910
|
+
} & {
|
|
911
|
+
tab?: any;
|
|
912
|
+
active?: boolean;
|
|
913
|
+
disabled?: boolean;
|
|
914
|
+
placeholder?: any;
|
|
915
|
+
forceRender?: boolean;
|
|
916
|
+
closable?: boolean;
|
|
917
|
+
destroyInactiveTabPane?: boolean;
|
|
918
|
+
}>, {
|
|
919
|
+
rootPrefixCls: string;
|
|
920
|
+
}>;
|
|
921
|
+
TabContent: import("vue").DefineComponent<{}, {
|
|
922
|
+
getDropMenuList: import("vue").ComputedRef<import("./types/tabs.type").DropMenu[]>;
|
|
923
|
+
handleContext: (e: any) => void;
|
|
924
|
+
handleMenuEvent: (item: import("./types/tabs.type").DropMenu) => void;
|
|
925
|
+
Dropdown: {
|
|
926
|
+
new (...args: any[]): {
|
|
927
|
+
$: import("vue").ComponentInternalInstance;
|
|
928
|
+
$data: {};
|
|
929
|
+
$props: Partial<{
|
|
930
|
+
getPopupContainer: (...args: any[]) => any;
|
|
931
|
+
prefixCls: string;
|
|
932
|
+
align: {
|
|
933
|
+
[key: string]: any;
|
|
934
|
+
};
|
|
935
|
+
onVisibleChange: (...args: any[]) => any;
|
|
936
|
+
transitionName: string;
|
|
937
|
+
mouseEnterDelay: number;
|
|
938
|
+
mouseLeaveDelay: number;
|
|
939
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
940
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
941
|
+
overlayClassName: string;
|
|
942
|
+
openClassName: string;
|
|
943
|
+
"onUpdate:visible": (...args: any[]) => any;
|
|
944
|
+
}> & Omit<Readonly<{
|
|
945
|
+
prefixCls?: unknown;
|
|
946
|
+
mouseEnterDelay?: unknown;
|
|
947
|
+
mouseLeaveDelay?: unknown;
|
|
948
|
+
placement?: unknown;
|
|
949
|
+
onVisibleChange?: unknown;
|
|
950
|
+
'onUpdate:visible'?: unknown;
|
|
951
|
+
trigger?: unknown;
|
|
952
|
+
overlay?: unknown;
|
|
953
|
+
visible?: unknown;
|
|
954
|
+
disabled?: unknown;
|
|
955
|
+
align?: unknown;
|
|
956
|
+
getPopupContainer?: unknown;
|
|
957
|
+
transitionName?: unknown;
|
|
958
|
+
overlayClassName?: unknown;
|
|
959
|
+
overlayStyle?: unknown;
|
|
960
|
+
forceRender?: unknown;
|
|
961
|
+
openClassName?: unknown;
|
|
962
|
+
minOverlayWidthMatchTrigger?: unknown;
|
|
963
|
+
} & {
|
|
964
|
+
prefixCls: string;
|
|
965
|
+
align: {
|
|
966
|
+
[key: string]: any;
|
|
967
|
+
};
|
|
968
|
+
transitionName: string;
|
|
969
|
+
mouseEnterDelay: number;
|
|
970
|
+
mouseLeaveDelay: number;
|
|
971
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
972
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
973
|
+
overlayClassName: string;
|
|
974
|
+
openClassName: string;
|
|
975
|
+
} & {
|
|
976
|
+
getPopupContainer?: (...args: any[]) => any;
|
|
977
|
+
visible?: boolean;
|
|
978
|
+
overlay?: any;
|
|
979
|
+
disabled?: boolean;
|
|
980
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
981
|
+
forceRender?: boolean;
|
|
982
|
+
overlayStyle?: import("vue").CSSProperties;
|
|
983
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
984
|
+
minOverlayWidthMatchTrigger?: boolean;
|
|
985
|
+
}> & {
|
|
986
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
987
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
988
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "onUpdate:visible" | "prefixCls" | "align" | "getPopupContainer" | "trigger" | "transitionName" | "placement" | "overlayClassName" | "openClassName" | "mouseEnterDelay" | "mouseLeaveDelay" | "onVisibleChange">;
|
|
989
|
+
$attrs: {
|
|
990
|
+
[x: string]: unknown;
|
|
991
|
+
};
|
|
992
|
+
$refs: {
|
|
993
|
+
[x: string]: unknown;
|
|
994
|
+
};
|
|
995
|
+
$slots: Readonly<{
|
|
996
|
+
[name: string]: import("vue").Slot;
|
|
997
|
+
}>;
|
|
998
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
999
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
1000
|
+
$emit: (event: "update:visible" | "visibleChange", ...args: any[]) => void;
|
|
1001
|
+
$el: any;
|
|
1002
|
+
$options: import("vue").ComponentOptionsBase<Readonly<{
|
|
1003
|
+
prefixCls?: unknown;
|
|
1004
|
+
mouseEnterDelay?: unknown;
|
|
1005
|
+
mouseLeaveDelay?: unknown;
|
|
1006
|
+
placement?: unknown;
|
|
1007
|
+
onVisibleChange?: unknown;
|
|
1008
|
+
'onUpdate:visible'?: unknown;
|
|
1009
|
+
trigger?: unknown;
|
|
1010
|
+
overlay?: unknown;
|
|
1011
|
+
visible?: unknown;
|
|
1012
|
+
disabled?: unknown;
|
|
1013
|
+
align?: unknown;
|
|
1014
|
+
getPopupContainer?: unknown;
|
|
1015
|
+
transitionName?: unknown;
|
|
1016
|
+
overlayClassName?: unknown;
|
|
1017
|
+
overlayStyle?: unknown;
|
|
1018
|
+
forceRender?: unknown;
|
|
1019
|
+
openClassName?: unknown;
|
|
1020
|
+
minOverlayWidthMatchTrigger?: unknown;
|
|
1021
|
+
} & {
|
|
1022
|
+
prefixCls: string;
|
|
1023
|
+
align: {
|
|
1024
|
+
[key: string]: any;
|
|
1025
|
+
};
|
|
1026
|
+
transitionName: string;
|
|
1027
|
+
mouseEnterDelay: number;
|
|
1028
|
+
mouseLeaveDelay: number;
|
|
1029
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1030
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1031
|
+
overlayClassName: string;
|
|
1032
|
+
openClassName: string;
|
|
1033
|
+
} & {
|
|
1034
|
+
getPopupContainer?: (...args: any[]) => any;
|
|
1035
|
+
visible?: boolean;
|
|
1036
|
+
overlay?: any;
|
|
1037
|
+
disabled?: boolean;
|
|
1038
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1039
|
+
forceRender?: boolean;
|
|
1040
|
+
overlayStyle?: import("vue").CSSProperties;
|
|
1041
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1042
|
+
minOverlayWidthMatchTrigger?: boolean;
|
|
1043
|
+
}> & {
|
|
1044
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1045
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1046
|
+
}, {
|
|
1047
|
+
configProvider: {
|
|
1048
|
+
getTargetContainer?: () => HTMLElement;
|
|
1049
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
1050
|
+
prefixCls?: string;
|
|
1051
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
1052
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
1053
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
1054
|
+
csp?: unknown;
|
|
1055
|
+
autoInsertSpaceInButton?: boolean;
|
|
1056
|
+
locale?: {
|
|
1057
|
+
locale: string;
|
|
1058
|
+
Pagination?: {
|
|
1059
|
+
constructor: Function;
|
|
1060
|
+
toString: () => string;
|
|
1061
|
+
toLocaleString: () => string;
|
|
1062
|
+
valueOf: () => Object;
|
|
1063
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1064
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1065
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1066
|
+
};
|
|
1067
|
+
DatePicker?: {
|
|
1068
|
+
constructor: Function;
|
|
1069
|
+
toString: () => string;
|
|
1070
|
+
toLocaleString: () => string;
|
|
1071
|
+
valueOf: () => Object;
|
|
1072
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1073
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1074
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1075
|
+
};
|
|
1076
|
+
TimePicker?: {
|
|
1077
|
+
constructor: Function;
|
|
1078
|
+
toString: () => string;
|
|
1079
|
+
toLocaleString: () => string;
|
|
1080
|
+
valueOf: () => Object;
|
|
1081
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1082
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1083
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1084
|
+
};
|
|
1085
|
+
Calendar?: {
|
|
1086
|
+
constructor: Function;
|
|
1087
|
+
toString: () => string;
|
|
1088
|
+
toLocaleString: () => string;
|
|
1089
|
+
valueOf: () => Object;
|
|
1090
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1091
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1092
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1093
|
+
};
|
|
1094
|
+
Table?: {
|
|
1095
|
+
constructor: Function;
|
|
1096
|
+
toString: () => string;
|
|
1097
|
+
toLocaleString: () => string;
|
|
1098
|
+
valueOf: () => Object;
|
|
1099
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1100
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1101
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1102
|
+
};
|
|
1103
|
+
Modal?: {
|
|
1104
|
+
okText: string;
|
|
1105
|
+
cancelText: string;
|
|
1106
|
+
justOkText: string;
|
|
1107
|
+
};
|
|
1108
|
+
Popconfirm?: {
|
|
1109
|
+
constructor: Function;
|
|
1110
|
+
toString: () => string;
|
|
1111
|
+
toLocaleString: () => string;
|
|
1112
|
+
valueOf: () => Object;
|
|
1113
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1114
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1115
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1116
|
+
};
|
|
1117
|
+
Transfer?: {
|
|
1118
|
+
constructor: Function;
|
|
1119
|
+
toString: () => string;
|
|
1120
|
+
toLocaleString: () => string;
|
|
1121
|
+
valueOf: () => Object;
|
|
1122
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1123
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1124
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1125
|
+
};
|
|
1126
|
+
Select?: {
|
|
1127
|
+
constructor: Function;
|
|
1128
|
+
toString: () => string;
|
|
1129
|
+
toLocaleString: () => string;
|
|
1130
|
+
valueOf: () => Object;
|
|
1131
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1132
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1133
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1134
|
+
};
|
|
1135
|
+
Upload?: {
|
|
1136
|
+
constructor: Function;
|
|
1137
|
+
toString: () => string;
|
|
1138
|
+
toLocaleString: () => string;
|
|
1139
|
+
valueOf: () => Object;
|
|
1140
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1141
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1142
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1143
|
+
};
|
|
1144
|
+
Form?: {
|
|
1145
|
+
optional?: string;
|
|
1146
|
+
defaultValidateMessages: {
|
|
1147
|
+
default?: string | (() => string);
|
|
1148
|
+
required?: string | (() => string);
|
|
1149
|
+
enum?: string | (() => string);
|
|
1150
|
+
whitespace?: string | (() => string);
|
|
1151
|
+
date?: {
|
|
1152
|
+
format?: string | (() => string);
|
|
1153
|
+
parse?: string | (() => string);
|
|
1154
|
+
invalid?: string | (() => string);
|
|
1155
|
+
};
|
|
1156
|
+
types?: {
|
|
1157
|
+
string?: string | (() => string);
|
|
1158
|
+
method?: string | (() => string);
|
|
1159
|
+
array?: string | (() => string);
|
|
1160
|
+
object?: string | (() => string);
|
|
1161
|
+
number?: string | (() => string);
|
|
1162
|
+
date?: string | (() => string);
|
|
1163
|
+
boolean?: string | (() => string);
|
|
1164
|
+
integer?: string | (() => string);
|
|
1165
|
+
float?: string | (() => string);
|
|
1166
|
+
regexp?: string | (() => string);
|
|
1167
|
+
email?: string | (() => string);
|
|
1168
|
+
url?: string | (() => string);
|
|
1169
|
+
hex?: string | (() => string);
|
|
1170
|
+
};
|
|
1171
|
+
string?: {
|
|
1172
|
+
len?: string | (() => string);
|
|
1173
|
+
min?: string | (() => string);
|
|
1174
|
+
max?: string | (() => string);
|
|
1175
|
+
range?: string | (() => string);
|
|
1176
|
+
};
|
|
1177
|
+
number?: {
|
|
1178
|
+
len?: string | (() => string);
|
|
1179
|
+
min?: string | (() => string);
|
|
1180
|
+
max?: string | (() => string);
|
|
1181
|
+
range?: string | (() => string);
|
|
1182
|
+
};
|
|
1183
|
+
array?: {
|
|
1184
|
+
len?: string | (() => string);
|
|
1185
|
+
min?: string | (() => string);
|
|
1186
|
+
max?: string | (() => string);
|
|
1187
|
+
range?: string | (() => string);
|
|
1188
|
+
};
|
|
1189
|
+
pattern?: {
|
|
1190
|
+
mismatch?: string | (() => string);
|
|
1191
|
+
};
|
|
1192
|
+
};
|
|
1193
|
+
};
|
|
1194
|
+
Image?: {
|
|
1195
|
+
preview: string;
|
|
1196
|
+
};
|
|
1197
|
+
};
|
|
1198
|
+
pageHeader?: {
|
|
1199
|
+
ghost: boolean;
|
|
1200
|
+
};
|
|
1201
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
1202
|
+
direction?: "ltr" | "rtl";
|
|
1203
|
+
space?: {
|
|
1204
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
1205
|
+
};
|
|
1206
|
+
virtual?: boolean;
|
|
1207
|
+
dropdownMatchSelectWidth?: boolean;
|
|
1208
|
+
form?: unknown;
|
|
1209
|
+
};
|
|
1210
|
+
popupRef: any;
|
|
1211
|
+
}, unknown, {}, {
|
|
1212
|
+
savePopupRef(ref: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1213
|
+
[key: string]: any;
|
|
1214
|
+
}>): void;
|
|
1215
|
+
getTransitionName(): any;
|
|
1216
|
+
renderOverlay(prefixCls: string): any;
|
|
1217
|
+
handleVisibleChange(val: boolean): void;
|
|
1218
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "visibleChange")[], string, {
|
|
1219
|
+
getPopupContainer: (...args: any[]) => any;
|
|
1220
|
+
prefixCls: string;
|
|
1221
|
+
align: {
|
|
1222
|
+
[key: string]: any;
|
|
1223
|
+
};
|
|
1224
|
+
onVisibleChange: (...args: any[]) => any;
|
|
1225
|
+
transitionName: string;
|
|
1226
|
+
mouseEnterDelay: number;
|
|
1227
|
+
mouseLeaveDelay: number;
|
|
1228
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1229
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1230
|
+
overlayClassName: string;
|
|
1231
|
+
openClassName: string;
|
|
1232
|
+
"onUpdate:visible": (...args: any[]) => any;
|
|
1233
|
+
}> & {
|
|
1234
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1235
|
+
created?: (() => void) | (() => void)[];
|
|
1236
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1237
|
+
mounted?: (() => void) | (() => void)[];
|
|
1238
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1239
|
+
updated?: (() => void) | (() => void)[];
|
|
1240
|
+
activated?: (() => void) | (() => void)[];
|
|
1241
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1242
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1243
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1244
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1245
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1246
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1247
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
1248
|
+
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)[];
|
|
1249
|
+
};
|
|
1250
|
+
$forceUpdate: () => void;
|
|
1251
|
+
$nextTick: typeof import("vue").nextTick;
|
|
1252
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
1253
|
+
} & Readonly<{
|
|
1254
|
+
prefixCls?: unknown;
|
|
1255
|
+
mouseEnterDelay?: unknown;
|
|
1256
|
+
mouseLeaveDelay?: unknown;
|
|
1257
|
+
placement?: unknown;
|
|
1258
|
+
onVisibleChange?: unknown;
|
|
1259
|
+
'onUpdate:visible'?: unknown;
|
|
1260
|
+
trigger?: unknown;
|
|
1261
|
+
overlay?: unknown;
|
|
1262
|
+
visible?: unknown;
|
|
1263
|
+
disabled?: unknown;
|
|
1264
|
+
align?: unknown;
|
|
1265
|
+
getPopupContainer?: unknown;
|
|
1266
|
+
transitionName?: unknown;
|
|
1267
|
+
overlayClassName?: unknown;
|
|
1268
|
+
overlayStyle?: unknown;
|
|
1269
|
+
forceRender?: unknown;
|
|
1270
|
+
openClassName?: unknown;
|
|
1271
|
+
minOverlayWidthMatchTrigger?: unknown;
|
|
1272
|
+
} & {
|
|
1273
|
+
prefixCls: string;
|
|
1274
|
+
align: {
|
|
1275
|
+
[key: string]: any;
|
|
1276
|
+
};
|
|
1277
|
+
transitionName: string;
|
|
1278
|
+
mouseEnterDelay: number;
|
|
1279
|
+
mouseLeaveDelay: number;
|
|
1280
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1281
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1282
|
+
overlayClassName: string;
|
|
1283
|
+
openClassName: string;
|
|
1284
|
+
} & {
|
|
1285
|
+
getPopupContainer?: (...args: any[]) => any;
|
|
1286
|
+
visible?: boolean;
|
|
1287
|
+
overlay?: any;
|
|
1288
|
+
disabled?: boolean;
|
|
1289
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1290
|
+
forceRender?: boolean;
|
|
1291
|
+
overlayStyle?: import("vue").CSSProperties;
|
|
1292
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1293
|
+
minOverlayWidthMatchTrigger?: boolean;
|
|
1294
|
+
}> & {
|
|
1295
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1296
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1297
|
+
} & import("vue").ShallowUnwrapRef<{
|
|
1298
|
+
configProvider: {
|
|
1299
|
+
getTargetContainer?: () => HTMLElement;
|
|
1300
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
1301
|
+
prefixCls?: string;
|
|
1302
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
1303
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
1304
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
1305
|
+
csp?: unknown;
|
|
1306
|
+
autoInsertSpaceInButton?: boolean;
|
|
1307
|
+
locale?: {
|
|
1308
|
+
locale: string;
|
|
1309
|
+
Pagination?: {
|
|
1310
|
+
constructor: Function;
|
|
1311
|
+
toString: () => string;
|
|
1312
|
+
toLocaleString: () => string;
|
|
1313
|
+
valueOf: () => Object;
|
|
1314
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1315
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1316
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1317
|
+
};
|
|
1318
|
+
DatePicker?: {
|
|
1319
|
+
constructor: Function;
|
|
1320
|
+
toString: () => string;
|
|
1321
|
+
toLocaleString: () => string;
|
|
1322
|
+
valueOf: () => Object;
|
|
1323
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1324
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1325
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1326
|
+
};
|
|
1327
|
+
TimePicker?: {
|
|
1328
|
+
constructor: Function;
|
|
1329
|
+
toString: () => string;
|
|
1330
|
+
toLocaleString: () => string;
|
|
1331
|
+
valueOf: () => Object;
|
|
1332
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1333
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1334
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1335
|
+
};
|
|
1336
|
+
Calendar?: {
|
|
1337
|
+
constructor: Function;
|
|
1338
|
+
toString: () => string;
|
|
1339
|
+
toLocaleString: () => string;
|
|
1340
|
+
valueOf: () => Object;
|
|
1341
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1342
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1343
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1344
|
+
};
|
|
1345
|
+
Table?: {
|
|
1346
|
+
constructor: Function;
|
|
1347
|
+
toString: () => string;
|
|
1348
|
+
toLocaleString: () => string;
|
|
1349
|
+
valueOf: () => Object;
|
|
1350
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1351
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1352
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1353
|
+
};
|
|
1354
|
+
Modal?: {
|
|
1355
|
+
okText: string;
|
|
1356
|
+
cancelText: string;
|
|
1357
|
+
justOkText: string;
|
|
1358
|
+
};
|
|
1359
|
+
Popconfirm?: {
|
|
1360
|
+
constructor: Function;
|
|
1361
|
+
toString: () => string;
|
|
1362
|
+
toLocaleString: () => string;
|
|
1363
|
+
valueOf: () => Object;
|
|
1364
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1365
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1366
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1367
|
+
};
|
|
1368
|
+
Transfer?: {
|
|
1369
|
+
constructor: Function;
|
|
1370
|
+
toString: () => string;
|
|
1371
|
+
toLocaleString: () => string;
|
|
1372
|
+
valueOf: () => Object;
|
|
1373
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1374
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1375
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1376
|
+
};
|
|
1377
|
+
Select?: {
|
|
1378
|
+
constructor: Function;
|
|
1379
|
+
toString: () => string;
|
|
1380
|
+
toLocaleString: () => string;
|
|
1381
|
+
valueOf: () => Object;
|
|
1382
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1383
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1384
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1385
|
+
};
|
|
1386
|
+
Upload?: {
|
|
1387
|
+
constructor: Function;
|
|
1388
|
+
toString: () => string;
|
|
1389
|
+
toLocaleString: () => string;
|
|
1390
|
+
valueOf: () => Object;
|
|
1391
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1392
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1393
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1394
|
+
};
|
|
1395
|
+
Form?: {
|
|
1396
|
+
optional?: string;
|
|
1397
|
+
defaultValidateMessages: {
|
|
1398
|
+
default?: string | (() => string);
|
|
1399
|
+
required?: string | (() => string);
|
|
1400
|
+
enum?: string | (() => string);
|
|
1401
|
+
whitespace?: string | (() => string);
|
|
1402
|
+
date?: {
|
|
1403
|
+
format?: string | (() => string);
|
|
1404
|
+
parse?: string | (() => string);
|
|
1405
|
+
invalid?: string | (() => string);
|
|
1406
|
+
};
|
|
1407
|
+
types?: {
|
|
1408
|
+
string?: string | (() => string);
|
|
1409
|
+
method?: string | (() => string);
|
|
1410
|
+
array?: string | (() => string);
|
|
1411
|
+
object?: string | (() => string);
|
|
1412
|
+
number?: string | (() => string);
|
|
1413
|
+
date?: string | (() => string);
|
|
1414
|
+
boolean?: string | (() => string);
|
|
1415
|
+
integer?: string | (() => string);
|
|
1416
|
+
float?: string | (() => string);
|
|
1417
|
+
regexp?: string | (() => string);
|
|
1418
|
+
email?: string | (() => string);
|
|
1419
|
+
url?: string | (() => string);
|
|
1420
|
+
hex?: string | (() => string);
|
|
1421
|
+
};
|
|
1422
|
+
string?: {
|
|
1423
|
+
len?: string | (() => string);
|
|
1424
|
+
min?: string | (() => string);
|
|
1425
|
+
max?: string | (() => string);
|
|
1426
|
+
range?: string | (() => string);
|
|
1427
|
+
};
|
|
1428
|
+
number?: {
|
|
1429
|
+
len?: string | (() => string);
|
|
1430
|
+
min?: string | (() => string);
|
|
1431
|
+
max?: string | (() => string);
|
|
1432
|
+
range?: string | (() => string);
|
|
1433
|
+
};
|
|
1434
|
+
array?: {
|
|
1435
|
+
len?: string | (() => string);
|
|
1436
|
+
min?: string | (() => string);
|
|
1437
|
+
max?: string | (() => string);
|
|
1438
|
+
range?: string | (() => string);
|
|
1439
|
+
};
|
|
1440
|
+
pattern?: {
|
|
1441
|
+
mismatch?: string | (() => string);
|
|
1442
|
+
};
|
|
1443
|
+
};
|
|
1444
|
+
};
|
|
1445
|
+
Image?: {
|
|
1446
|
+
preview: string;
|
|
1447
|
+
};
|
|
1448
|
+
};
|
|
1449
|
+
pageHeader?: {
|
|
1450
|
+
ghost: boolean;
|
|
1451
|
+
};
|
|
1452
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
1453
|
+
direction?: "ltr" | "rtl";
|
|
1454
|
+
space?: {
|
|
1455
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
1456
|
+
};
|
|
1457
|
+
virtual?: boolean;
|
|
1458
|
+
dropdownMatchSelectWidth?: boolean;
|
|
1459
|
+
form?: unknown;
|
|
1460
|
+
};
|
|
1461
|
+
popupRef: any;
|
|
1462
|
+
}> & {
|
|
1463
|
+
savePopupRef(ref: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1464
|
+
[key: string]: any;
|
|
1465
|
+
}>): void;
|
|
1466
|
+
getTransitionName(): any;
|
|
1467
|
+
renderOverlay(prefixCls: string): any;
|
|
1468
|
+
handleVisibleChange(val: boolean): void;
|
|
1469
|
+
} & import("vue").ComponentCustomProperties;
|
|
1470
|
+
__isFragment?: never;
|
|
1471
|
+
__isTeleport?: never;
|
|
1472
|
+
__isSuspense?: never;
|
|
1473
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
1474
|
+
prefixCls?: unknown;
|
|
1475
|
+
mouseEnterDelay?: unknown;
|
|
1476
|
+
mouseLeaveDelay?: unknown;
|
|
1477
|
+
placement?: unknown;
|
|
1478
|
+
onVisibleChange?: unknown;
|
|
1479
|
+
'onUpdate:visible'?: unknown;
|
|
1480
|
+
trigger?: unknown;
|
|
1481
|
+
overlay?: unknown;
|
|
1482
|
+
visible?: unknown;
|
|
1483
|
+
disabled?: unknown;
|
|
1484
|
+
align?: unknown;
|
|
1485
|
+
getPopupContainer?: unknown;
|
|
1486
|
+
transitionName?: unknown;
|
|
1487
|
+
overlayClassName?: unknown;
|
|
1488
|
+
overlayStyle?: unknown;
|
|
1489
|
+
forceRender?: unknown;
|
|
1490
|
+
openClassName?: unknown;
|
|
1491
|
+
minOverlayWidthMatchTrigger?: unknown;
|
|
1492
|
+
} & {
|
|
1493
|
+
prefixCls: string;
|
|
1494
|
+
align: {
|
|
1495
|
+
[key: string]: any;
|
|
1496
|
+
};
|
|
1497
|
+
transitionName: string;
|
|
1498
|
+
mouseEnterDelay: number;
|
|
1499
|
+
mouseLeaveDelay: number;
|
|
1500
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1501
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1502
|
+
overlayClassName: string;
|
|
1503
|
+
openClassName: string;
|
|
1504
|
+
} & {
|
|
1505
|
+
getPopupContainer?: (...args: any[]) => any;
|
|
1506
|
+
visible?: boolean;
|
|
1507
|
+
overlay?: any;
|
|
1508
|
+
disabled?: boolean;
|
|
1509
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1510
|
+
forceRender?: boolean;
|
|
1511
|
+
overlayStyle?: import("vue").CSSProperties;
|
|
1512
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1513
|
+
minOverlayWidthMatchTrigger?: boolean;
|
|
1514
|
+
}> & {
|
|
1515
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1516
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1517
|
+
}, {
|
|
1518
|
+
configProvider: {
|
|
1519
|
+
getTargetContainer?: () => HTMLElement;
|
|
1520
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
1521
|
+
prefixCls?: string;
|
|
1522
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
1523
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
1524
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
1525
|
+
csp?: unknown;
|
|
1526
|
+
autoInsertSpaceInButton?: boolean;
|
|
1527
|
+
locale?: {
|
|
1528
|
+
locale: string;
|
|
1529
|
+
Pagination?: {
|
|
1530
|
+
constructor: Function;
|
|
1531
|
+
toString: () => string;
|
|
1532
|
+
toLocaleString: () => string;
|
|
1533
|
+
valueOf: () => Object;
|
|
1534
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1535
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1536
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1537
|
+
};
|
|
1538
|
+
DatePicker?: {
|
|
1539
|
+
constructor: Function;
|
|
1540
|
+
toString: () => string;
|
|
1541
|
+
toLocaleString: () => string;
|
|
1542
|
+
valueOf: () => Object;
|
|
1543
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1544
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1545
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1546
|
+
};
|
|
1547
|
+
TimePicker?: {
|
|
1548
|
+
constructor: Function;
|
|
1549
|
+
toString: () => string;
|
|
1550
|
+
toLocaleString: () => string;
|
|
1551
|
+
valueOf: () => Object;
|
|
1552
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1553
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1554
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1555
|
+
};
|
|
1556
|
+
Calendar?: {
|
|
1557
|
+
constructor: Function;
|
|
1558
|
+
toString: () => string;
|
|
1559
|
+
toLocaleString: () => string;
|
|
1560
|
+
valueOf: () => Object;
|
|
1561
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1562
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1563
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1564
|
+
};
|
|
1565
|
+
Table?: {
|
|
1566
|
+
constructor: Function;
|
|
1567
|
+
toString: () => string;
|
|
1568
|
+
toLocaleString: () => string;
|
|
1569
|
+
valueOf: () => Object;
|
|
1570
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1571
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1572
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1573
|
+
};
|
|
1574
|
+
Modal?: {
|
|
1575
|
+
okText: string;
|
|
1576
|
+
cancelText: string;
|
|
1577
|
+
justOkText: string;
|
|
1578
|
+
};
|
|
1579
|
+
Popconfirm?: {
|
|
1580
|
+
constructor: Function;
|
|
1581
|
+
toString: () => string;
|
|
1582
|
+
toLocaleString: () => string;
|
|
1583
|
+
valueOf: () => Object;
|
|
1584
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1585
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1586
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1587
|
+
};
|
|
1588
|
+
Transfer?: {
|
|
1589
|
+
constructor: Function;
|
|
1590
|
+
toString: () => string;
|
|
1591
|
+
toLocaleString: () => string;
|
|
1592
|
+
valueOf: () => Object;
|
|
1593
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1594
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1595
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1596
|
+
};
|
|
1597
|
+
Select?: {
|
|
1598
|
+
constructor: Function;
|
|
1599
|
+
toString: () => string;
|
|
1600
|
+
toLocaleString: () => string;
|
|
1601
|
+
valueOf: () => Object;
|
|
1602
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1603
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1604
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1605
|
+
};
|
|
1606
|
+
Upload?: {
|
|
1607
|
+
constructor: Function;
|
|
1608
|
+
toString: () => string;
|
|
1609
|
+
toLocaleString: () => string;
|
|
1610
|
+
valueOf: () => Object;
|
|
1611
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1612
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1613
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1614
|
+
};
|
|
1615
|
+
Form?: {
|
|
1616
|
+
optional?: string;
|
|
1617
|
+
defaultValidateMessages: {
|
|
1618
|
+
default?: string | (() => string);
|
|
1619
|
+
required?: string | (() => string);
|
|
1620
|
+
enum?: string | (() => string);
|
|
1621
|
+
whitespace?: string | (() => string);
|
|
1622
|
+
date?: {
|
|
1623
|
+
format?: string | (() => string);
|
|
1624
|
+
parse?: string | (() => string);
|
|
1625
|
+
invalid?: string | (() => string);
|
|
1626
|
+
};
|
|
1627
|
+
types?: {
|
|
1628
|
+
string?: string | (() => string);
|
|
1629
|
+
method?: string | (() => string);
|
|
1630
|
+
array?: string | (() => string);
|
|
1631
|
+
object?: string | (() => string);
|
|
1632
|
+
number?: string | (() => string);
|
|
1633
|
+
date?: string | (() => string);
|
|
1634
|
+
boolean?: string | (() => string);
|
|
1635
|
+
integer?: string | (() => string);
|
|
1636
|
+
float?: string | (() => string);
|
|
1637
|
+
regexp?: string | (() => string);
|
|
1638
|
+
email?: string | (() => string);
|
|
1639
|
+
url?: string | (() => string);
|
|
1640
|
+
hex?: string | (() => string);
|
|
1641
|
+
};
|
|
1642
|
+
string?: {
|
|
1643
|
+
len?: string | (() => string);
|
|
1644
|
+
min?: string | (() => string);
|
|
1645
|
+
max?: string | (() => string);
|
|
1646
|
+
range?: string | (() => string);
|
|
1647
|
+
};
|
|
1648
|
+
number?: {
|
|
1649
|
+
len?: string | (() => string);
|
|
1650
|
+
min?: string | (() => string);
|
|
1651
|
+
max?: string | (() => string);
|
|
1652
|
+
range?: string | (() => string);
|
|
1653
|
+
};
|
|
1654
|
+
array?: {
|
|
1655
|
+
len?: string | (() => string);
|
|
1656
|
+
min?: string | (() => string);
|
|
1657
|
+
max?: string | (() => string);
|
|
1658
|
+
range?: string | (() => string);
|
|
1659
|
+
};
|
|
1660
|
+
pattern?: {
|
|
1661
|
+
mismatch?: string | (() => string);
|
|
1662
|
+
};
|
|
1663
|
+
};
|
|
1664
|
+
};
|
|
1665
|
+
Image?: {
|
|
1666
|
+
preview: string;
|
|
1667
|
+
};
|
|
1668
|
+
};
|
|
1669
|
+
pageHeader?: {
|
|
1670
|
+
ghost: boolean;
|
|
1671
|
+
};
|
|
1672
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
1673
|
+
direction?: "ltr" | "rtl";
|
|
1674
|
+
space?: {
|
|
1675
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
1676
|
+
};
|
|
1677
|
+
virtual?: boolean;
|
|
1678
|
+
dropdownMatchSelectWidth?: boolean;
|
|
1679
|
+
form?: unknown;
|
|
1680
|
+
};
|
|
1681
|
+
popupRef: any;
|
|
1682
|
+
}, unknown, {}, {
|
|
1683
|
+
savePopupRef(ref: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1684
|
+
[key: string]: any;
|
|
1685
|
+
}>): void;
|
|
1686
|
+
getTransitionName(): any;
|
|
1687
|
+
renderOverlay(prefixCls: string): any;
|
|
1688
|
+
handleVisibleChange(val: boolean): void;
|
|
1689
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "visibleChange")[], "update:visible" | "visibleChange", {
|
|
1690
|
+
getPopupContainer: (...args: any[]) => any;
|
|
1691
|
+
prefixCls: string;
|
|
1692
|
+
align: {
|
|
1693
|
+
[key: string]: any;
|
|
1694
|
+
};
|
|
1695
|
+
onVisibleChange: (...args: any[]) => any;
|
|
1696
|
+
transitionName: string;
|
|
1697
|
+
mouseEnterDelay: number;
|
|
1698
|
+
mouseLeaveDelay: number;
|
|
1699
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1700
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1701
|
+
overlayClassName: string;
|
|
1702
|
+
openClassName: string;
|
|
1703
|
+
"onUpdate:visible": (...args: any[]) => any;
|
|
1704
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
1705
|
+
readonly Button: import("vue").DefineComponent<{
|
|
1706
|
+
type: import("vue-types").VueTypeDef<"default" | "dashed" | "ghost" | "primary" | "danger"> & {
|
|
1707
|
+
default: "default" | "dashed" | "ghost" | "primary" | "danger";
|
|
1708
|
+
};
|
|
1709
|
+
size: import("vue-types").VueTypeDef<"small" | "default" | "large"> & {
|
|
1710
|
+
default: "small" | "default" | "large";
|
|
1711
|
+
};
|
|
1712
|
+
htmlType: import("vue-types").VueTypeDef<"reset" | "button" | "submit"> & {
|
|
1713
|
+
default: "reset" | "button" | "submit";
|
|
1714
|
+
};
|
|
1715
|
+
href: import("vue-types").VueTypeValidableDef<string> & {
|
|
1716
|
+
default: string;
|
|
1717
|
+
};
|
|
1718
|
+
disabled: import("vue-types").VueTypeValidableDef<boolean>;
|
|
1719
|
+
prefixCls: import("vue-types").VueTypeValidableDef<string> & {
|
|
1720
|
+
default: string;
|
|
1721
|
+
};
|
|
1722
|
+
placement: import("vue-types").VueTypeDef<"bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter"> & {
|
|
1723
|
+
default: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1724
|
+
};
|
|
1725
|
+
icon: import("vue-types").VueTypeValidableDef<any>;
|
|
1726
|
+
title: import("vue-types").VueTypeValidableDef<string> & {
|
|
1727
|
+
default: string;
|
|
1728
|
+
};
|
|
1729
|
+
onClick: import("vue-types").VueTypeValidableDef<(...args: any[]) => any> & {
|
|
1730
|
+
default: (...args: any[]) => any;
|
|
1731
|
+
};
|
|
1732
|
+
onVisibleChange: import("vue-types").VueTypeValidableDef<(...args: any[]) => any> & {
|
|
1733
|
+
default: (...args: any[]) => any;
|
|
1734
|
+
};
|
|
1735
|
+
'onUpdate:visible': import("vue-types").VueTypeValidableDef<(...args: any[]) => any> & {
|
|
1736
|
+
default: (...args: any[]) => any;
|
|
1737
|
+
};
|
|
1738
|
+
trigger: {
|
|
1739
|
+
type: import("vue").PropType<"click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[]>;
|
|
1740
|
+
default: string;
|
|
1741
|
+
};
|
|
1742
|
+
overlay: import("vue-types").VueTypeValidableDef<any>;
|
|
1743
|
+
visible: import("vue-types").VueTypeValidableDef<boolean>;
|
|
1744
|
+
align: import("vue-types").VueTypeValidableDef<{
|
|
1745
|
+
[key: string]: any;
|
|
1746
|
+
}> & {
|
|
1747
|
+
default: () => {
|
|
1748
|
+
[key: string]: any;
|
|
1749
|
+
};
|
|
1750
|
+
};
|
|
1751
|
+
getPopupContainer: import("vue-types").VueTypeValidableDef<(...args: any[]) => any> & {
|
|
1752
|
+
default: (...args: any[]) => any;
|
|
1753
|
+
};
|
|
1754
|
+
transitionName: import("vue-types").VueTypeValidableDef<string> & {
|
|
1755
|
+
default: string;
|
|
1756
|
+
};
|
|
1757
|
+
overlayClassName: import("vue-types").VueTypeValidableDef<string> & {
|
|
1758
|
+
default: string;
|
|
1759
|
+
};
|
|
1760
|
+
overlayStyle: import("vue-types").VueTypeValidableDef<import("vue").CSSProperties>;
|
|
1761
|
+
forceRender: import("vue-types").VueTypeValidableDef<boolean>;
|
|
1762
|
+
mouseEnterDelay: import("vue-types").VueTypeValidableDef<number> & {
|
|
1763
|
+
default: number;
|
|
1764
|
+
};
|
|
1765
|
+
mouseLeaveDelay: import("vue-types").VueTypeValidableDef<number> & {
|
|
1766
|
+
default: number;
|
|
1767
|
+
};
|
|
1768
|
+
openClassName: import("vue-types").VueTypeValidableDef<string> & {
|
|
1769
|
+
default: string;
|
|
1770
|
+
};
|
|
1771
|
+
minOverlayWidthMatchTrigger: import("vue-types").VueTypeValidableDef<boolean>;
|
|
1772
|
+
}, {
|
|
1773
|
+
configProvider: {
|
|
1774
|
+
getTargetContainer?: () => HTMLElement;
|
|
1775
|
+
getPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
|
|
1776
|
+
prefixCls?: string;
|
|
1777
|
+
getPrefixCls?: (suffixCls?: string, customizePrefixCls?: string) => string;
|
|
1778
|
+
renderEmpty?: typeof import("ant-design-vue/lib/config-provider/renderEmpty").default;
|
|
1779
|
+
transformCellText?: (tableProps: import("ant-design-vue/lib/table/interface").TransformCellTextProps) => any;
|
|
1780
|
+
csp?: unknown;
|
|
1781
|
+
autoInsertSpaceInButton?: boolean;
|
|
1782
|
+
locale?: {
|
|
1783
|
+
locale: string;
|
|
1784
|
+
Pagination?: {
|
|
1785
|
+
constructor: Function;
|
|
1786
|
+
toString: () => string;
|
|
1787
|
+
toLocaleString: () => string;
|
|
1788
|
+
valueOf: () => Object;
|
|
1789
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1790
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1791
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1792
|
+
};
|
|
1793
|
+
DatePicker?: {
|
|
1794
|
+
constructor: Function;
|
|
1795
|
+
toString: () => string;
|
|
1796
|
+
toLocaleString: () => string;
|
|
1797
|
+
valueOf: () => Object;
|
|
1798
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1799
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1800
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1801
|
+
};
|
|
1802
|
+
TimePicker?: {
|
|
1803
|
+
constructor: Function;
|
|
1804
|
+
toString: () => string;
|
|
1805
|
+
toLocaleString: () => string;
|
|
1806
|
+
valueOf: () => Object;
|
|
1807
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1808
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1809
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1810
|
+
};
|
|
1811
|
+
Calendar?: {
|
|
1812
|
+
constructor: Function;
|
|
1813
|
+
toString: () => string;
|
|
1814
|
+
toLocaleString: () => string;
|
|
1815
|
+
valueOf: () => Object;
|
|
1816
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1817
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1818
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1819
|
+
};
|
|
1820
|
+
Table?: {
|
|
1821
|
+
constructor: Function;
|
|
1822
|
+
toString: () => string;
|
|
1823
|
+
toLocaleString: () => string;
|
|
1824
|
+
valueOf: () => Object;
|
|
1825
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1826
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1827
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1828
|
+
};
|
|
1829
|
+
Modal?: {
|
|
1830
|
+
okText: string;
|
|
1831
|
+
cancelText: string;
|
|
1832
|
+
justOkText: string;
|
|
1833
|
+
};
|
|
1834
|
+
Popconfirm?: {
|
|
1835
|
+
constructor: Function;
|
|
1836
|
+
toString: () => string;
|
|
1837
|
+
toLocaleString: () => string;
|
|
1838
|
+
valueOf: () => Object;
|
|
1839
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1840
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1841
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1842
|
+
};
|
|
1843
|
+
Transfer?: {
|
|
1844
|
+
constructor: Function;
|
|
1845
|
+
toString: () => string;
|
|
1846
|
+
toLocaleString: () => string;
|
|
1847
|
+
valueOf: () => Object;
|
|
1848
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1849
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1850
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1851
|
+
};
|
|
1852
|
+
Select?: {
|
|
1853
|
+
constructor: Function;
|
|
1854
|
+
toString: () => string;
|
|
1855
|
+
toLocaleString: () => string;
|
|
1856
|
+
valueOf: () => Object;
|
|
1857
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1858
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1859
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1860
|
+
};
|
|
1861
|
+
Upload?: {
|
|
1862
|
+
constructor: Function;
|
|
1863
|
+
toString: () => string;
|
|
1864
|
+
toLocaleString: () => string;
|
|
1865
|
+
valueOf: () => Object;
|
|
1866
|
+
hasOwnProperty: (v: PropertyKey) => boolean;
|
|
1867
|
+
isPrototypeOf: (v: Object) => boolean;
|
|
1868
|
+
propertyIsEnumerable: (v: PropertyKey) => boolean;
|
|
1869
|
+
};
|
|
1870
|
+
Form?: {
|
|
1871
|
+
optional?: string;
|
|
1872
|
+
defaultValidateMessages: {
|
|
1873
|
+
default?: string | (() => string);
|
|
1874
|
+
required?: string | (() => string);
|
|
1875
|
+
enum?: string | (() => string);
|
|
1876
|
+
whitespace?: string | (() => string);
|
|
1877
|
+
date?: {
|
|
1878
|
+
format?: string | (() => string);
|
|
1879
|
+
parse?: string | (() => string);
|
|
1880
|
+
invalid?: string | (() => string);
|
|
1881
|
+
};
|
|
1882
|
+
types?: {
|
|
1883
|
+
string?: string | (() => string);
|
|
1884
|
+
method?: string | (() => string);
|
|
1885
|
+
array?: string | (() => string);
|
|
1886
|
+
object?: string | (() => string);
|
|
1887
|
+
number?: string | (() => string);
|
|
1888
|
+
date?: string | (() => string);
|
|
1889
|
+
boolean?: string | (() => string);
|
|
1890
|
+
integer?: string | (() => string);
|
|
1891
|
+
float?: string | (() => string);
|
|
1892
|
+
regexp?: string | (() => string);
|
|
1893
|
+
email?: string | (() => string);
|
|
1894
|
+
url?: string | (() => string);
|
|
1895
|
+
hex?: string | (() => string);
|
|
1896
|
+
};
|
|
1897
|
+
string?: {
|
|
1898
|
+
len?: string | (() => string);
|
|
1899
|
+
min?: string | (() => string);
|
|
1900
|
+
max?: string | (() => string);
|
|
1901
|
+
range?: string | (() => string);
|
|
1902
|
+
};
|
|
1903
|
+
number?: {
|
|
1904
|
+
len?: string | (() => string);
|
|
1905
|
+
min?: string | (() => string);
|
|
1906
|
+
max?: string | (() => string);
|
|
1907
|
+
range?: string | (() => string);
|
|
1908
|
+
};
|
|
1909
|
+
array?: {
|
|
1910
|
+
len?: string | (() => string);
|
|
1911
|
+
min?: string | (() => string);
|
|
1912
|
+
max?: string | (() => string);
|
|
1913
|
+
range?: string | (() => string);
|
|
1914
|
+
};
|
|
1915
|
+
pattern?: {
|
|
1916
|
+
mismatch?: string | (() => string);
|
|
1917
|
+
};
|
|
1918
|
+
};
|
|
1919
|
+
};
|
|
1920
|
+
Image?: {
|
|
1921
|
+
preview: string;
|
|
1922
|
+
};
|
|
1923
|
+
};
|
|
1924
|
+
pageHeader?: {
|
|
1925
|
+
ghost: boolean;
|
|
1926
|
+
};
|
|
1927
|
+
componentSize?: import("ant-design-vue/lib/config-provider").SizeType;
|
|
1928
|
+
direction?: "ltr" | "rtl";
|
|
1929
|
+
space?: {
|
|
1930
|
+
size: number | import("ant-design-vue/lib/config-provider").SizeType;
|
|
1931
|
+
};
|
|
1932
|
+
virtual?: boolean;
|
|
1933
|
+
dropdownMatchSelectWidth?: boolean;
|
|
1934
|
+
form?: unknown;
|
|
1935
|
+
};
|
|
1936
|
+
popupRef: any;
|
|
1937
|
+
}, unknown, {}, {
|
|
1938
|
+
savePopupRef(ref: import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
1939
|
+
[key: string]: any;
|
|
1940
|
+
}>): void;
|
|
1941
|
+
handleClick(e: Event): void;
|
|
1942
|
+
handleVisibleChange(val: boolean): void;
|
|
1943
|
+
}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:visible" | "click" | "visibleChange")[], "update:visible" | "click" | "visibleChange", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
1944
|
+
type?: unknown;
|
|
1945
|
+
size?: unknown;
|
|
1946
|
+
htmlType?: unknown;
|
|
1947
|
+
href?: unknown;
|
|
1948
|
+
disabled?: unknown;
|
|
1949
|
+
prefixCls?: unknown;
|
|
1950
|
+
placement?: unknown;
|
|
1951
|
+
icon?: unknown;
|
|
1952
|
+
title?: unknown;
|
|
1953
|
+
onClick?: unknown;
|
|
1954
|
+
onVisibleChange?: unknown;
|
|
1955
|
+
'onUpdate:visible'?: unknown;
|
|
1956
|
+
trigger?: unknown;
|
|
1957
|
+
overlay?: unknown;
|
|
1958
|
+
visible?: unknown;
|
|
1959
|
+
align?: unknown;
|
|
1960
|
+
getPopupContainer?: unknown;
|
|
1961
|
+
transitionName?: unknown;
|
|
1962
|
+
overlayClassName?: unknown;
|
|
1963
|
+
overlayStyle?: unknown;
|
|
1964
|
+
forceRender?: unknown;
|
|
1965
|
+
mouseEnterDelay?: unknown;
|
|
1966
|
+
mouseLeaveDelay?: unknown;
|
|
1967
|
+
openClassName?: unknown;
|
|
1968
|
+
minOverlayWidthMatchTrigger?: unknown;
|
|
1969
|
+
} & {
|
|
1970
|
+
type: "default" | "dashed" | "ghost" | "primary" | "danger";
|
|
1971
|
+
prefixCls: string;
|
|
1972
|
+
title: string;
|
|
1973
|
+
size: "small" | "default" | "large";
|
|
1974
|
+
align: {
|
|
1975
|
+
[key: string]: any;
|
|
1976
|
+
};
|
|
1977
|
+
transitionName: string;
|
|
1978
|
+
mouseEnterDelay: number;
|
|
1979
|
+
mouseLeaveDelay: number;
|
|
1980
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
1981
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
1982
|
+
overlayClassName: string;
|
|
1983
|
+
openClassName: string;
|
|
1984
|
+
href: string;
|
|
1985
|
+
htmlType: "reset" | "button" | "submit";
|
|
1986
|
+
} & {
|
|
1987
|
+
icon?: any;
|
|
1988
|
+
getPopupContainer?: (...args: any[]) => any;
|
|
1989
|
+
onClick?: (...args: any[]) => any;
|
|
1990
|
+
visible?: boolean;
|
|
1991
|
+
overlay?: any;
|
|
1992
|
+
disabled?: boolean;
|
|
1993
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
1994
|
+
forceRender?: boolean;
|
|
1995
|
+
overlayStyle?: import("vue").CSSProperties;
|
|
1996
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
1997
|
+
minOverlayWidthMatchTrigger?: boolean;
|
|
1998
|
+
}> & {
|
|
1999
|
+
onClick?: (...args: any[]) => any;
|
|
2000
|
+
onVisibleChange?: (...args: any[]) => any;
|
|
2001
|
+
"onUpdate:visible"?: (...args: any[]) => any;
|
|
2002
|
+
}, {
|
|
2003
|
+
type: "default" | "dashed" | "ghost" | "primary" | "danger";
|
|
2004
|
+
getPopupContainer: (...args: any[]) => any;
|
|
2005
|
+
prefixCls: string;
|
|
2006
|
+
title: string;
|
|
2007
|
+
onClick: (...args: any[]) => any;
|
|
2008
|
+
size: "small" | "default" | "large";
|
|
2009
|
+
align: {
|
|
2010
|
+
[key: string]: any;
|
|
2011
|
+
};
|
|
2012
|
+
onVisibleChange: (...args: any[]) => any;
|
|
2013
|
+
transitionName: string;
|
|
2014
|
+
mouseEnterDelay: number;
|
|
2015
|
+
mouseLeaveDelay: number;
|
|
2016
|
+
trigger: "click" | "contextmenu" | "hover" | ("click" | "contextmenu" | "hover")[];
|
|
2017
|
+
placement: "bottomRight" | "bottomLeft" | "topLeft" | "topRight" | "topCenter" | "bottomCenter";
|
|
2018
|
+
overlayClassName: string;
|
|
2019
|
+
openClassName: string;
|
|
2020
|
+
"onUpdate:visible": (...args: any[]) => any;
|
|
2021
|
+
href: string;
|
|
2022
|
+
htmlType: "reset" | "button" | "submit";
|
|
2023
|
+
}>;
|
|
2024
|
+
};
|
|
2025
|
+
Menu: {
|
|
2026
|
+
new (...args: any[]): {
|
|
2027
|
+
$: import("vue").ComponentInternalInstance;
|
|
2028
|
+
$data: {};
|
|
2029
|
+
$props: Partial<{
|
|
2030
|
+
multiple: boolean;
|
|
2031
|
+
disabled: boolean;
|
|
2032
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2033
|
+
inlineIndent: number;
|
|
2034
|
+
inlineCollapsed: boolean;
|
|
2035
|
+
subMenuOpenDelay: number;
|
|
2036
|
+
subMenuCloseDelay: number;
|
|
2037
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2038
|
+
disabledOverflow: boolean;
|
|
2039
|
+
selectable: boolean;
|
|
2040
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2041
|
+
}> & Omit<Readonly<{
|
|
2042
|
+
prefixCls?: unknown;
|
|
2043
|
+
disabled?: unknown;
|
|
2044
|
+
inlineCollapsed?: unknown;
|
|
2045
|
+
disabledOverflow?: unknown;
|
|
2046
|
+
openKeys?: unknown;
|
|
2047
|
+
selectedKeys?: unknown;
|
|
2048
|
+
activeKey?: unknown;
|
|
2049
|
+
selectable?: unknown;
|
|
2050
|
+
multiple?: unknown;
|
|
2051
|
+
motion?: unknown;
|
|
2052
|
+
theme?: unknown;
|
|
2053
|
+
mode?: unknown;
|
|
2054
|
+
inlineIndent?: unknown;
|
|
2055
|
+
subMenuOpenDelay?: unknown;
|
|
2056
|
+
subMenuCloseDelay?: unknown;
|
|
2057
|
+
builtinPlacements?: unknown;
|
|
2058
|
+
triggerSubMenuAction?: unknown;
|
|
2059
|
+
getPopupContainer?: unknown;
|
|
2060
|
+
expandIcon?: unknown;
|
|
2061
|
+
} & {
|
|
2062
|
+
multiple: boolean;
|
|
2063
|
+
disabled: boolean;
|
|
2064
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2065
|
+
inlineIndent: number;
|
|
2066
|
+
inlineCollapsed: boolean;
|
|
2067
|
+
subMenuOpenDelay: number;
|
|
2068
|
+
subMenuCloseDelay: number;
|
|
2069
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2070
|
+
disabledOverflow: boolean;
|
|
2071
|
+
selectable: boolean;
|
|
2072
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2073
|
+
} & {
|
|
2074
|
+
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
2075
|
+
prefixCls?: string;
|
|
2076
|
+
builtinPlacements?: unknown;
|
|
2077
|
+
expandIcon?: (p?: {
|
|
2078
|
+
[key: string]: any;
|
|
2079
|
+
isOpen: boolean;
|
|
2080
|
+
}) => any;
|
|
2081
|
+
selectedKeys?: unknown[];
|
|
2082
|
+
motion?: unknown;
|
|
2083
|
+
openKeys?: unknown[];
|
|
2084
|
+
activeKey?: string;
|
|
2085
|
+
}> & {
|
|
2086
|
+
onClick?: (...args: any[]) => any;
|
|
2087
|
+
onSelect?: (...args: any[]) => any;
|
|
2088
|
+
onDeselect?: (...args: any[]) => any;
|
|
2089
|
+
onOpenChange?: (...args: any[]) => any;
|
|
2090
|
+
"onUpdate:openKeys"?: (...args: any[]) => any;
|
|
2091
|
+
"onUpdate:selectedKeys"?: (...args: any[]) => any;
|
|
2092
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
2093
|
+
} & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "mode" | "disabled" | "theme" | "inlineCollapsed" | "disabledOverflow" | "selectable" | "multiple" | "inlineIndent" | "subMenuOpenDelay" | "subMenuCloseDelay" | "triggerSubMenuAction">;
|
|
2094
|
+
$attrs: {
|
|
2095
|
+
[x: string]: unknown;
|
|
2096
|
+
};
|
|
2097
|
+
$refs: {
|
|
2098
|
+
[x: string]: unknown;
|
|
2099
|
+
};
|
|
2100
|
+
$slots: Readonly<{
|
|
2101
|
+
[name: string]: import("vue").Slot;
|
|
2102
|
+
}>;
|
|
2103
|
+
$root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
2104
|
+
$parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>>;
|
|
2105
|
+
$emit: (event: "click" | "select" | "update:openKeys" | "openChange" | "deselect" | "update:selectedKeys" | "update:activeKey", ...args: any[]) => void;
|
|
2106
|
+
$el: any;
|
|
2107
|
+
$options: import("vue").ComponentOptionsBase<Readonly<{
|
|
2108
|
+
prefixCls?: unknown;
|
|
2109
|
+
disabled?: unknown;
|
|
2110
|
+
inlineCollapsed?: unknown;
|
|
2111
|
+
disabledOverflow?: unknown;
|
|
2112
|
+
openKeys?: unknown;
|
|
2113
|
+
selectedKeys?: unknown;
|
|
2114
|
+
activeKey?: unknown;
|
|
2115
|
+
selectable?: unknown;
|
|
2116
|
+
multiple?: unknown;
|
|
2117
|
+
motion?: unknown;
|
|
2118
|
+
theme?: unknown;
|
|
2119
|
+
mode?: unknown;
|
|
2120
|
+
inlineIndent?: unknown;
|
|
2121
|
+
subMenuOpenDelay?: unknown;
|
|
2122
|
+
subMenuCloseDelay?: unknown;
|
|
2123
|
+
builtinPlacements?: unknown;
|
|
2124
|
+
triggerSubMenuAction?: unknown;
|
|
2125
|
+
getPopupContainer?: unknown;
|
|
2126
|
+
expandIcon?: unknown;
|
|
2127
|
+
} & {
|
|
2128
|
+
multiple: boolean;
|
|
2129
|
+
disabled: boolean;
|
|
2130
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2131
|
+
inlineIndent: number;
|
|
2132
|
+
inlineCollapsed: boolean;
|
|
2133
|
+
subMenuOpenDelay: number;
|
|
2134
|
+
subMenuCloseDelay: number;
|
|
2135
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2136
|
+
disabledOverflow: boolean;
|
|
2137
|
+
selectable: boolean;
|
|
2138
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2139
|
+
} & {
|
|
2140
|
+
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
2141
|
+
prefixCls?: string;
|
|
2142
|
+
builtinPlacements?: unknown;
|
|
2143
|
+
expandIcon?: (p?: {
|
|
2144
|
+
[key: string]: any;
|
|
2145
|
+
isOpen: boolean;
|
|
2146
|
+
}) => any;
|
|
2147
|
+
selectedKeys?: unknown[];
|
|
2148
|
+
motion?: unknown;
|
|
2149
|
+
openKeys?: unknown[];
|
|
2150
|
+
activeKey?: string;
|
|
2151
|
+
}> & {
|
|
2152
|
+
onClick?: (...args: any[]) => any;
|
|
2153
|
+
onSelect?: (...args: any[]) => any;
|
|
2154
|
+
onDeselect?: (...args: any[]) => any;
|
|
2155
|
+
onOpenChange?: (...args: any[]) => any;
|
|
2156
|
+
"onUpdate:openKeys"?: (...args: any[]) => any;
|
|
2157
|
+
"onUpdate:selectedKeys"?: (...args: any[]) => any;
|
|
2158
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
2159
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "select" | "update:openKeys" | "openChange" | "deselect" | "update:selectedKeys" | "update:activeKey")[], string, {
|
|
2160
|
+
multiple: boolean;
|
|
2161
|
+
disabled: boolean;
|
|
2162
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2163
|
+
inlineIndent: number;
|
|
2164
|
+
inlineCollapsed: boolean;
|
|
2165
|
+
subMenuOpenDelay: number;
|
|
2166
|
+
subMenuCloseDelay: number;
|
|
2167
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2168
|
+
disabledOverflow: boolean;
|
|
2169
|
+
selectable: boolean;
|
|
2170
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2171
|
+
}> & {
|
|
2172
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
2173
|
+
created?: (() => void) | (() => void)[];
|
|
2174
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
2175
|
+
mounted?: (() => void) | (() => void)[];
|
|
2176
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
2177
|
+
updated?: (() => void) | (() => void)[];
|
|
2178
|
+
activated?: (() => void) | (() => void)[];
|
|
2179
|
+
deactivated?: (() => void) | (() => void)[];
|
|
2180
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
2181
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
2182
|
+
destroyed?: (() => void) | (() => void)[];
|
|
2183
|
+
unmounted?: (() => void) | (() => void)[];
|
|
2184
|
+
renderTracked?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
2185
|
+
renderTriggered?: ((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[];
|
|
2186
|
+
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)[];
|
|
2187
|
+
};
|
|
2188
|
+
$forceUpdate: () => void;
|
|
2189
|
+
$nextTick: typeof import("vue").nextTick;
|
|
2190
|
+
$watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean>): import("vue").WatchStopHandle;
|
|
2191
|
+
} & Readonly<{
|
|
2192
|
+
prefixCls?: unknown;
|
|
2193
|
+
disabled?: unknown;
|
|
2194
|
+
inlineCollapsed?: unknown;
|
|
2195
|
+
disabledOverflow?: unknown;
|
|
2196
|
+
openKeys?: unknown;
|
|
2197
|
+
selectedKeys?: unknown;
|
|
2198
|
+
activeKey?: unknown;
|
|
2199
|
+
selectable?: unknown;
|
|
2200
|
+
multiple?: unknown;
|
|
2201
|
+
motion?: unknown;
|
|
2202
|
+
theme?: unknown;
|
|
2203
|
+
mode?: unknown;
|
|
2204
|
+
inlineIndent?: unknown;
|
|
2205
|
+
subMenuOpenDelay?: unknown;
|
|
2206
|
+
subMenuCloseDelay?: unknown;
|
|
2207
|
+
builtinPlacements?: unknown;
|
|
2208
|
+
triggerSubMenuAction?: unknown;
|
|
2209
|
+
getPopupContainer?: unknown;
|
|
2210
|
+
expandIcon?: unknown;
|
|
2211
|
+
} & {
|
|
2212
|
+
multiple: boolean;
|
|
2213
|
+
disabled: boolean;
|
|
2214
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2215
|
+
inlineIndent: number;
|
|
2216
|
+
inlineCollapsed: boolean;
|
|
2217
|
+
subMenuOpenDelay: number;
|
|
2218
|
+
subMenuCloseDelay: number;
|
|
2219
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2220
|
+
disabledOverflow: boolean;
|
|
2221
|
+
selectable: boolean;
|
|
2222
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2223
|
+
} & {
|
|
2224
|
+
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
2225
|
+
prefixCls?: string;
|
|
2226
|
+
builtinPlacements?: unknown;
|
|
2227
|
+
expandIcon?: (p?: {
|
|
2228
|
+
[key: string]: any;
|
|
2229
|
+
isOpen: boolean;
|
|
2230
|
+
}) => any;
|
|
2231
|
+
selectedKeys?: unknown[];
|
|
2232
|
+
motion?: unknown;
|
|
2233
|
+
openKeys?: unknown[];
|
|
2234
|
+
activeKey?: string;
|
|
2235
|
+
}> & {
|
|
2236
|
+
onClick?: (...args: any[]) => any;
|
|
2237
|
+
onSelect?: (...args: any[]) => any;
|
|
2238
|
+
onDeselect?: (...args: any[]) => any;
|
|
2239
|
+
onOpenChange?: (...args: any[]) => any;
|
|
2240
|
+
"onUpdate:openKeys"?: (...args: any[]) => any;
|
|
2241
|
+
"onUpdate:selectedKeys"?: (...args: any[]) => any;
|
|
2242
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
2243
|
+
} & import("vue").ShallowUnwrapRef<() => JSX.Element> & import("vue").ComponentCustomProperties;
|
|
2244
|
+
__isFragment?: never;
|
|
2245
|
+
__isTeleport?: never;
|
|
2246
|
+
__isSuspense?: never;
|
|
2247
|
+
} & import("vue").ComponentOptionsBase<Readonly<{
|
|
2248
|
+
prefixCls?: unknown;
|
|
2249
|
+
disabled?: unknown;
|
|
2250
|
+
inlineCollapsed?: unknown;
|
|
2251
|
+
disabledOverflow?: unknown;
|
|
2252
|
+
openKeys?: unknown;
|
|
2253
|
+
selectedKeys?: unknown;
|
|
2254
|
+
activeKey?: unknown;
|
|
2255
|
+
selectable?: unknown;
|
|
2256
|
+
multiple?: unknown;
|
|
2257
|
+
motion?: unknown;
|
|
2258
|
+
theme?: unknown;
|
|
2259
|
+
mode?: unknown;
|
|
2260
|
+
inlineIndent?: unknown;
|
|
2261
|
+
subMenuOpenDelay?: unknown;
|
|
2262
|
+
subMenuCloseDelay?: unknown;
|
|
2263
|
+
builtinPlacements?: unknown;
|
|
2264
|
+
triggerSubMenuAction?: unknown;
|
|
2265
|
+
getPopupContainer?: unknown;
|
|
2266
|
+
expandIcon?: unknown;
|
|
2267
|
+
} & {
|
|
2268
|
+
multiple: boolean;
|
|
2269
|
+
disabled: boolean;
|
|
2270
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2271
|
+
inlineIndent: number;
|
|
2272
|
+
inlineCollapsed: boolean;
|
|
2273
|
+
subMenuOpenDelay: number;
|
|
2274
|
+
subMenuCloseDelay: number;
|
|
2275
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2276
|
+
disabledOverflow: boolean;
|
|
2277
|
+
selectable: boolean;
|
|
2278
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2279
|
+
} & {
|
|
2280
|
+
getPopupContainer?: (node: HTMLElement) => HTMLElement;
|
|
2281
|
+
prefixCls?: string;
|
|
2282
|
+
builtinPlacements?: unknown;
|
|
2283
|
+
expandIcon?: (p?: {
|
|
2284
|
+
[key: string]: any;
|
|
2285
|
+
isOpen: boolean;
|
|
2286
|
+
}) => any;
|
|
2287
|
+
selectedKeys?: unknown[];
|
|
2288
|
+
motion?: unknown;
|
|
2289
|
+
openKeys?: unknown[];
|
|
2290
|
+
activeKey?: string;
|
|
2291
|
+
}> & {
|
|
2292
|
+
onClick?: (...args: any[]) => any;
|
|
2293
|
+
onSelect?: (...args: any[]) => any;
|
|
2294
|
+
onDeselect?: (...args: any[]) => any;
|
|
2295
|
+
onOpenChange?: (...args: any[]) => any;
|
|
2296
|
+
"onUpdate:openKeys"?: (...args: any[]) => any;
|
|
2297
|
+
"onUpdate:selectedKeys"?: (...args: any[]) => any;
|
|
2298
|
+
"onUpdate:activeKey"?: (...args: any[]) => any;
|
|
2299
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "select" | "update:openKeys" | "openChange" | "deselect" | "update:selectedKeys" | "update:activeKey")[], "click" | "select" | "update:openKeys" | "openChange" | "deselect" | "update:selectedKeys" | "update:activeKey", {
|
|
2300
|
+
multiple: boolean;
|
|
2301
|
+
disabled: boolean;
|
|
2302
|
+
mode: import("ant-design-vue/lib/menu/src/interface").MenuMode;
|
|
2303
|
+
inlineIndent: number;
|
|
2304
|
+
inlineCollapsed: boolean;
|
|
2305
|
+
subMenuOpenDelay: number;
|
|
2306
|
+
subMenuCloseDelay: number;
|
|
2307
|
+
triggerSubMenuAction: import("ant-design-vue/lib/menu/src/interface").TriggerSubMenuAction;
|
|
2308
|
+
disabledOverflow: boolean;
|
|
2309
|
+
selectable: boolean;
|
|
2310
|
+
theme: import("ant-design-vue").MenuTheme;
|
|
2311
|
+
}> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & import("@vue/runtime-core").Plugin & {
|
|
2312
|
+
readonly Item: import("vue").DefineComponent<{
|
|
2313
|
+
role: StringConstructor;
|
|
2314
|
+
disabled: BooleanConstructor;
|
|
2315
|
+
danger: BooleanConstructor;
|
|
2316
|
+
title: {
|
|
2317
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
2318
|
+
default: any;
|
|
2319
|
+
};
|
|
2320
|
+
icon: import("vue-types").VueTypeValidableDef<import("ant-design-vue/lib/_util/type").VueNode>;
|
|
2321
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "keydown" | "mouseenter" | "mouseleave")[], "click" | "focus" | "keydown" | "mouseenter" | "mouseleave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
2322
|
+
role?: unknown;
|
|
2323
|
+
disabled?: unknown;
|
|
2324
|
+
danger?: unknown;
|
|
2325
|
+
title?: unknown;
|
|
2326
|
+
icon?: unknown;
|
|
2327
|
+
} & {
|
|
2328
|
+
disabled: boolean;
|
|
2329
|
+
danger: boolean;
|
|
2330
|
+
} & {
|
|
2331
|
+
icon?: import("ant-design-vue/lib/_util/type").VueNode;
|
|
2332
|
+
title?: string | boolean;
|
|
2333
|
+
role?: string;
|
|
2334
|
+
}> & {
|
|
2335
|
+
onFocus?: (...args: any[]) => any;
|
|
2336
|
+
onKeydown?: (...args: any[]) => any;
|
|
2337
|
+
onClick?: (...args: any[]) => any;
|
|
2338
|
+
onMouseenter?: (...args: any[]) => any;
|
|
2339
|
+
onMouseleave?: (...args: any[]) => any;
|
|
2340
|
+
}, {
|
|
2341
|
+
title: string | boolean;
|
|
2342
|
+
disabled: boolean;
|
|
2343
|
+
danger: boolean;
|
|
2344
|
+
}>;
|
|
2345
|
+
readonly SubMenu: import("vue").DefineComponent<{
|
|
2346
|
+
icon: import("vue-types").VueTypeValidableDef<import("ant-design-vue/lib/_util/type").VueNode>;
|
|
2347
|
+
title: import("vue-types").VueTypeValidableDef<import("ant-design-vue/lib/_util/type").VueNode>;
|
|
2348
|
+
disabled: BooleanConstructor;
|
|
2349
|
+
level: NumberConstructor;
|
|
2350
|
+
popupClassName: StringConstructor;
|
|
2351
|
+
popupOffset: import("vue").PropType<number[]>;
|
|
2352
|
+
internalPopupClose: BooleanConstructor;
|
|
2353
|
+
eventKey: StringConstructor;
|
|
2354
|
+
expandIcon: import("vue").PropType<(p?: {
|
|
2355
|
+
[key: string]: any;
|
|
2356
|
+
isOpen: boolean;
|
|
2357
|
+
}) => any>;
|
|
2358
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("mouseenter" | "mouseleave" | "titleClick")[], "mouseenter" | "mouseleave" | "titleClick", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
2359
|
+
icon?: unknown;
|
|
2360
|
+
title?: unknown;
|
|
2361
|
+
disabled?: unknown;
|
|
2362
|
+
level?: unknown;
|
|
2363
|
+
popupClassName?: unknown;
|
|
2364
|
+
popupOffset?: unknown;
|
|
2365
|
+
internalPopupClose?: unknown;
|
|
2366
|
+
eventKey?: unknown;
|
|
2367
|
+
expandIcon?: unknown;
|
|
2368
|
+
} & {
|
|
2369
|
+
disabled: boolean;
|
|
2370
|
+
internalPopupClose: boolean;
|
|
2371
|
+
} & {
|
|
2372
|
+
icon?: import("ant-design-vue/lib/_util/type").VueNode;
|
|
2373
|
+
title?: import("ant-design-vue/lib/_util/type").VueNode;
|
|
2374
|
+
popupClassName?: string;
|
|
2375
|
+
expandIcon?: (p?: {
|
|
2376
|
+
[key: string]: any;
|
|
2377
|
+
isOpen: boolean;
|
|
2378
|
+
}) => any;
|
|
2379
|
+
popupOffset?: number[];
|
|
2380
|
+
level?: number;
|
|
2381
|
+
eventKey?: string;
|
|
2382
|
+
}> & {
|
|
2383
|
+
onMouseenter?: (...args: any[]) => any;
|
|
2384
|
+
onMouseleave?: (...args: any[]) => any;
|
|
2385
|
+
onTitleClick?: (...args: any[]) => any;
|
|
2386
|
+
}, {
|
|
2387
|
+
disabled: boolean;
|
|
2388
|
+
internalPopupClose: boolean;
|
|
2389
|
+
}>;
|
|
2390
|
+
readonly Divider: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{}>, {}>;
|
|
2391
|
+
readonly ItemGroup: import("vue").DefineComponent<{
|
|
2392
|
+
title: import("vue-types").VueTypeValidableDef<import("ant-design-vue/lib/_util/type").VueNode>;
|
|
2393
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
2394
|
+
title?: unknown;
|
|
2395
|
+
} & {
|
|
2396
|
+
title?: import("ant-design-vue/lib/_util/type").VueNode;
|
|
2397
|
+
}>, {}>;
|
|
2398
|
+
};
|
|
2399
|
+
MenuDivider: import("vue").DefineComponent<{}, () => JSX.Element, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{}>, {}>;
|
|
2400
|
+
MenuItem: import("vue").DefineComponent<{
|
|
2401
|
+
role: StringConstructor;
|
|
2402
|
+
disabled: BooleanConstructor;
|
|
2403
|
+
danger: BooleanConstructor;
|
|
2404
|
+
title: {
|
|
2405
|
+
type: (BooleanConstructor | StringConstructor)[];
|
|
2406
|
+
default: any;
|
|
2407
|
+
};
|
|
2408
|
+
icon: import("vue-types").VueTypeValidableDef<import("ant-design-vue/lib/_util/type").VueNode>;
|
|
2409
|
+
}, () => JSX.Element, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "focus" | "keydown" | "mouseenter" | "mouseleave")[], "click" | "focus" | "keydown" | "mouseenter" | "mouseleave", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<{
|
|
2410
|
+
role?: unknown;
|
|
2411
|
+
disabled?: unknown;
|
|
2412
|
+
danger?: unknown;
|
|
2413
|
+
title?: unknown;
|
|
2414
|
+
icon?: unknown;
|
|
2415
|
+
} & {
|
|
2416
|
+
disabled: boolean;
|
|
2417
|
+
danger: boolean;
|
|
2418
|
+
} & {
|
|
2419
|
+
icon?: import("ant-design-vue/lib/_util/type").VueNode;
|
|
2420
|
+
title?: string | boolean;
|
|
2421
|
+
role?: string;
|
|
2422
|
+
}> & {
|
|
2423
|
+
onFocus?: (...args: any[]) => any;
|
|
2424
|
+
onKeydown?: (...args: any[]) => any;
|
|
2425
|
+
onClick?: (...args: any[]) => any;
|
|
2426
|
+
onMouseenter?: (...args: any[]) => any;
|
|
2427
|
+
onMouseleave?: (...args: any[]) => any;
|
|
2428
|
+
}, {
|
|
2429
|
+
title: string | boolean;
|
|
2430
|
+
disabled: boolean;
|
|
2431
|
+
danger: boolean;
|
|
2432
|
+
}>;
|
|
2433
|
+
DtIcon: import("vue").DefineComponent<{
|
|
2434
|
+
iconClass: {
|
|
2435
|
+
type: StringConstructor;
|
|
2436
|
+
required: true;
|
|
2437
|
+
};
|
|
2438
|
+
className: {
|
|
2439
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
2440
|
+
default: string;
|
|
2441
|
+
};
|
|
2442
|
+
color: {
|
|
2443
|
+
type: StringConstructor;
|
|
2444
|
+
default: string;
|
|
2445
|
+
};
|
|
2446
|
+
size: {
|
|
2447
|
+
type: NumberConstructor;
|
|
2448
|
+
default: number;
|
|
2449
|
+
};
|
|
2450
|
+
}, {
|
|
2451
|
+
isSvgIcon: import("vue").ComputedRef<boolean>;
|
|
2452
|
+
iconName: import("vue").ComputedRef<string>;
|
|
2453
|
+
clsName: import("vue").ComputedRef<string>;
|
|
2454
|
+
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
2455
|
+
iconClass: {
|
|
2456
|
+
type: StringConstructor;
|
|
2457
|
+
required: true;
|
|
2458
|
+
};
|
|
2459
|
+
className: {
|
|
2460
|
+
type: (StringConstructor | ArrayConstructor)[];
|
|
2461
|
+
default: string;
|
|
2462
|
+
};
|
|
2463
|
+
color: {
|
|
2464
|
+
type: StringConstructor;
|
|
2465
|
+
default: string;
|
|
2466
|
+
};
|
|
2467
|
+
size: {
|
|
2468
|
+
type: NumberConstructor;
|
|
2469
|
+
default: number;
|
|
2470
|
+
};
|
|
2471
|
+
}>>, {
|
|
2472
|
+
className: string | unknown[];
|
|
2473
|
+
color: string;
|
|
2474
|
+
size: number;
|
|
2475
|
+
}>;
|
|
2476
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2477
|
+
}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, import("vue").EmitsOptions, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
|
|
2478
|
+
export default _sfc_main;
|