@baosight/er4j 0.0.62 → 0.0.65
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/er4j-dist/ErLayoutDesign-CC0yvsjD.js +509 -0
- package/er4j-dist/ErLayoutDesign-CC0yvsjD.js.map +1 -0
- package/er4j-dist/ErPopFree-C3uuZUuH.js +5 -0
- package/er4j-dist/ErPopFree-C3uuZUuH.js.map +1 -0
- package/er4j-dist/ErPopQuery-ClFrpsZp.js +5 -0
- package/er4j-dist/ErPopQuery-ClFrpsZp.js.map +1 -0
- package/er4j-dist/ErPopRichEditor-TmGNQykK.js +5 -0
- package/er4j-dist/ErPopRichEditor-TmGNQykK.js.map +1 -0
- package/er4j-dist/ErPopTree-bOqqtvvs.js +5 -0
- package/er4j-dist/ErPopTree-bOqqtvvs.js.map +1 -0
- package/er4j-dist/er4j.css +1 -1
- package/er4j-dist/er4j.es.js +19 -48372
- package/er4j-dist/er4j.es.js.map +1 -1
- package/er4j-dist/er4j.umd.js +52 -52
- package/er4j-dist/er4j.umd.js.map +1 -1
- package/er4j-dist/index-B5COEF9u.js +48903 -0
- package/er4j-dist/index-B5COEF9u.js.map +1 -0
- package/er4j-dist/types/components/ErDialog/DialogBase.vue.d.ts +1 -1
- package/er4j-dist/types/components/ErDialog/ErDialog.vue.d.ts +1 -1
- package/er4j-dist/types/components/ErGridCellEditor/DropdownEditor.vue.d.ts +1 -0
- package/er4j-dist/types/components/ErGridCellEditor/NumberEditor.vue.d.ts +3 -3
- package/er4j-dist/types/components/ErLayout/ErLayout.vue.d.ts +2283 -8
- package/er4j-dist/types/components/ErLayoutDesign/ErLayoutDesign.vue.d.ts +3040 -0
- package/er4j-dist/types/components/ErMemoEditor/ErMemoEditor.vue.d.ts +2 -2
- package/er4j-dist/types/components/ErPanel/ErPanel.vue.d.ts +1323 -24
- package/er4j-dist/types/components/ErPopFree/ErPopFree.vue.d.ts +2 -2
- package/er4j-dist/types/components/ErPopQuery/ErPopQuery.vue.d.ts +1301 -3
- package/er4j-dist/types/components/ErPopRichEditor/ErPopRichEditor.vue.d.ts +99 -6
- package/er4j-dist/types/components/ErPopTree/ErPopTree.vue.d.ts +1301 -3
- package/er4j-dist/types/utils/er.d.ts +12 -20
- package/er4j-dist/types/utils/theme.d.ts +5 -0
- package/package.json +8 -7
- package/src/views/JA/ER/JAER02.vue +10 -3
- package/er4j-dist/ErPopFree-D0387she.js +0 -5
- package/er4j-dist/ErPopFree-D0387she.js.map +0 -1
- package/er4j-dist/ErPopQuery-DWj-lb5u.js +0 -5
- package/er4j-dist/ErPopQuery-DWj-lb5u.js.map +0 -1
- package/er4j-dist/ErPopRichEditor-CdDc0Cvo.js +0 -5
- package/er4j-dist/ErPopRichEditor-CdDc0Cvo.js.map +0 -1
- package/er4j-dist/ErPopTree-2Ab-Nxgb.js +0 -5
- package/er4j-dist/ErPopTree-2Ab-Nxgb.js.map +0 -1
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
1
2
|
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
2
3
|
showHeader: {
|
|
3
4
|
type: BooleanConstructor;
|
|
@@ -55,6 +56,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
55
56
|
default: boolean;
|
|
56
57
|
require: boolean;
|
|
57
58
|
};
|
|
59
|
+
componentSize: {
|
|
60
|
+
type: PropType<"small" | "middle" | "large">;
|
|
61
|
+
default: string;
|
|
62
|
+
require: boolean;
|
|
63
|
+
};
|
|
58
64
|
}>, {
|
|
59
65
|
tI18n: {
|
|
60
66
|
<Key extends string, DefinedLocaleMessage extends import('@intlify/core-base').RemoveIndexSignature<{
|
|
@@ -153,6 +159,786 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
153
159
|
[x: string]: import('vue-i18n').LocaleMessageValue<import('vue-i18n').VueMessageType>;
|
|
154
160
|
}>, Keys_18 = import('vue-i18n').IsEmptyObject<DefinedLocaleMessage_18> extends false ? import('vue-i18n').PickupPaths<{ [K_18 in keyof DefinedLocaleMessage_18]: DefinedLocaleMessage_18[K_18]; }> : never, ResourceKeys_18 extends Keys_18 = import('vue-i18n').IsNever<Keys_18> extends false ? Keys_18 : never>(key: string | Key_18 | ResourceKeys_18, named: Record<string, unknown>, options: import('vue-i18n').TranslateOptions<string>): string;
|
|
155
161
|
};
|
|
162
|
+
antdLocale: import('vue').Ref<{
|
|
163
|
+
locale: string;
|
|
164
|
+
Pagination?: {
|
|
165
|
+
items_per_page?: string | undefined;
|
|
166
|
+
jump_to?: string | undefined;
|
|
167
|
+
jump_to_confirm?: string | undefined;
|
|
168
|
+
page?: string | undefined;
|
|
169
|
+
prev_page?: string | undefined;
|
|
170
|
+
next_page?: string | undefined;
|
|
171
|
+
prev_5?: string | undefined;
|
|
172
|
+
next_5?: string | undefined;
|
|
173
|
+
prev_3?: string | undefined;
|
|
174
|
+
next_3?: string | undefined;
|
|
175
|
+
} | undefined;
|
|
176
|
+
Table?: {
|
|
177
|
+
filterTitle?: string | undefined;
|
|
178
|
+
filterConfirm?: any;
|
|
179
|
+
filterReset?: any;
|
|
180
|
+
filterEmptyText?: any;
|
|
181
|
+
filterCheckall?: any;
|
|
182
|
+
filterSearchPlaceholder?: any;
|
|
183
|
+
emptyText?: any;
|
|
184
|
+
selectAll?: any;
|
|
185
|
+
selectNone?: any;
|
|
186
|
+
selectInvert?: any;
|
|
187
|
+
selectionAll?: any;
|
|
188
|
+
sortTitle?: string | undefined;
|
|
189
|
+
expand?: string | undefined;
|
|
190
|
+
collapse?: string | undefined;
|
|
191
|
+
triggerDesc?: string | undefined;
|
|
192
|
+
triggerAsc?: string | undefined;
|
|
193
|
+
cancelSort?: string | undefined;
|
|
194
|
+
} | undefined;
|
|
195
|
+
Popconfirm?: Record<string, any> | undefined;
|
|
196
|
+
Form?: {
|
|
197
|
+
optional?: string | undefined;
|
|
198
|
+
defaultValidateMessages: {
|
|
199
|
+
default?: (string | (() => string)) | undefined;
|
|
200
|
+
required?: (string | (() => string)) | undefined;
|
|
201
|
+
enum?: (string | (() => string)) | undefined;
|
|
202
|
+
whitespace?: (string | (() => string)) | undefined;
|
|
203
|
+
date?: {
|
|
204
|
+
format?: (string | (() => string)) | undefined;
|
|
205
|
+
parse?: (string | (() => string)) | undefined;
|
|
206
|
+
invalid?: (string | (() => string)) | undefined;
|
|
207
|
+
} | undefined;
|
|
208
|
+
types?: {
|
|
209
|
+
string?: (string | (() => string)) | undefined;
|
|
210
|
+
method?: (string | (() => string)) | undefined;
|
|
211
|
+
array?: (string | (() => string)) | undefined;
|
|
212
|
+
object?: (string | (() => string)) | undefined;
|
|
213
|
+
number?: (string | (() => string)) | undefined;
|
|
214
|
+
date?: (string | (() => string)) | undefined;
|
|
215
|
+
boolean?: (string | (() => string)) | undefined;
|
|
216
|
+
integer?: (string | (() => string)) | undefined;
|
|
217
|
+
float?: (string | (() => string)) | undefined;
|
|
218
|
+
regexp?: (string | (() => string)) | undefined;
|
|
219
|
+
email?: (string | (() => string)) | undefined;
|
|
220
|
+
url?: (string | (() => string)) | undefined;
|
|
221
|
+
hex?: (string | (() => string)) | undefined;
|
|
222
|
+
} | undefined;
|
|
223
|
+
string?: {
|
|
224
|
+
len?: (string | (() => string)) | undefined;
|
|
225
|
+
min?: (string | (() => string)) | undefined;
|
|
226
|
+
max?: (string | (() => string)) | undefined;
|
|
227
|
+
range?: (string | (() => string)) | undefined;
|
|
228
|
+
} | undefined;
|
|
229
|
+
number?: {
|
|
230
|
+
len?: (string | (() => string)) | undefined;
|
|
231
|
+
min?: (string | (() => string)) | undefined;
|
|
232
|
+
max?: (string | (() => string)) | undefined;
|
|
233
|
+
range?: (string | (() => string)) | undefined;
|
|
234
|
+
} | undefined;
|
|
235
|
+
array?: {
|
|
236
|
+
len?: (string | (() => string)) | undefined;
|
|
237
|
+
min?: (string | (() => string)) | undefined;
|
|
238
|
+
max?: (string | (() => string)) | undefined;
|
|
239
|
+
range?: (string | (() => string)) | undefined;
|
|
240
|
+
} | undefined;
|
|
241
|
+
pattern?: {
|
|
242
|
+
mismatch?: (string | (() => string)) | undefined;
|
|
243
|
+
} | undefined;
|
|
244
|
+
};
|
|
245
|
+
} | undefined;
|
|
246
|
+
Image?: {
|
|
247
|
+
preview: string;
|
|
248
|
+
} | undefined;
|
|
249
|
+
DatePicker?: {
|
|
250
|
+
lang: {
|
|
251
|
+
locale: string;
|
|
252
|
+
monthBeforeYear?: boolean | undefined;
|
|
253
|
+
yearFormat: string;
|
|
254
|
+
monthFormat?: string | undefined;
|
|
255
|
+
quarterFormat?: string | undefined;
|
|
256
|
+
today: string;
|
|
257
|
+
now: string;
|
|
258
|
+
backToToday: string;
|
|
259
|
+
ok: string;
|
|
260
|
+
timeSelect: string;
|
|
261
|
+
dateSelect: string;
|
|
262
|
+
weekSelect?: string | undefined;
|
|
263
|
+
clear: string;
|
|
264
|
+
month: string;
|
|
265
|
+
year: string;
|
|
266
|
+
previousMonth: string;
|
|
267
|
+
nextMonth: string;
|
|
268
|
+
monthSelect: string;
|
|
269
|
+
yearSelect: string;
|
|
270
|
+
decadeSelect: string;
|
|
271
|
+
dayFormat: string;
|
|
272
|
+
dateFormat: string;
|
|
273
|
+
dateTimeFormat: string;
|
|
274
|
+
previousYear: string;
|
|
275
|
+
nextYear: string;
|
|
276
|
+
previousDecade: string;
|
|
277
|
+
nextDecade: string;
|
|
278
|
+
previousCentury: string;
|
|
279
|
+
nextCentury: string;
|
|
280
|
+
shortWeekDays?: string[] | undefined;
|
|
281
|
+
shortMonths?: string[] | undefined;
|
|
282
|
+
placeholder: string;
|
|
283
|
+
yearPlaceholder?: string | undefined;
|
|
284
|
+
quarterPlaceholder?: string | undefined;
|
|
285
|
+
monthPlaceholder?: string | undefined;
|
|
286
|
+
weekPlaceholder?: string | undefined;
|
|
287
|
+
rangeYearPlaceholder?: [string, string] | undefined;
|
|
288
|
+
rangeQuarterPlaceholder?: [string, string] | undefined;
|
|
289
|
+
rangeMonthPlaceholder?: [string, string] | undefined;
|
|
290
|
+
rangeWeekPlaceholder?: [string, string] | undefined;
|
|
291
|
+
rangePlaceholder?: [string, string] | undefined;
|
|
292
|
+
};
|
|
293
|
+
timePickerLocale: {
|
|
294
|
+
placeholder?: string | undefined;
|
|
295
|
+
rangePlaceholder?: [string, string] | undefined;
|
|
296
|
+
};
|
|
297
|
+
dateFormat?: string | undefined;
|
|
298
|
+
dateTimeFormat?: string | undefined;
|
|
299
|
+
weekFormat?: string | undefined;
|
|
300
|
+
monthFormat?: string | undefined;
|
|
301
|
+
} | undefined;
|
|
302
|
+
TimePicker?: Record<string, any> | undefined;
|
|
303
|
+
Calendar?: Record<string, any> | undefined;
|
|
304
|
+
Modal?: {
|
|
305
|
+
okText: string;
|
|
306
|
+
cancelText: string;
|
|
307
|
+
justOkText: string;
|
|
308
|
+
} | undefined;
|
|
309
|
+
Transfer?: {
|
|
310
|
+
titles?: any[] | undefined;
|
|
311
|
+
notFoundContent?: any;
|
|
312
|
+
searchPlaceholder?: string | undefined;
|
|
313
|
+
itemUnit?: string | undefined;
|
|
314
|
+
itemsUnit?: string | undefined;
|
|
315
|
+
remove?: string | undefined;
|
|
316
|
+
selectAll?: string | undefined;
|
|
317
|
+
selectCurrent?: string | undefined;
|
|
318
|
+
selectInvert?: string | undefined;
|
|
319
|
+
removeAll?: string | undefined;
|
|
320
|
+
removeCurrent?: string | undefined;
|
|
321
|
+
} | undefined;
|
|
322
|
+
Select?: Record<string, any> | undefined;
|
|
323
|
+
Upload?: {
|
|
324
|
+
uploading?: string | undefined;
|
|
325
|
+
removeFile?: string | undefined;
|
|
326
|
+
downloadFile?: string | undefined;
|
|
327
|
+
uploadError?: string | undefined;
|
|
328
|
+
previewFile?: string | undefined;
|
|
329
|
+
} | undefined;
|
|
330
|
+
Empty?: {
|
|
331
|
+
description: string;
|
|
332
|
+
} | undefined;
|
|
333
|
+
global?: Record<string, any> | undefined;
|
|
334
|
+
PageHeader?: {
|
|
335
|
+
back: string;
|
|
336
|
+
} | undefined;
|
|
337
|
+
Icon?: Record<string, any> | undefined;
|
|
338
|
+
Text?: {
|
|
339
|
+
edit?: any;
|
|
340
|
+
copy?: any;
|
|
341
|
+
copied?: any;
|
|
342
|
+
expand?: any;
|
|
343
|
+
} | undefined;
|
|
344
|
+
Tour?: {
|
|
345
|
+
Next: string;
|
|
346
|
+
Previous: string;
|
|
347
|
+
Finish: string;
|
|
348
|
+
} | undefined;
|
|
349
|
+
QRCode?: {
|
|
350
|
+
expired?: string | undefined;
|
|
351
|
+
refresh?: string | undefined;
|
|
352
|
+
} | undefined;
|
|
353
|
+
}, import('ant-design-vue/es/locale').Locale | {
|
|
354
|
+
locale: string;
|
|
355
|
+
Pagination?: {
|
|
356
|
+
items_per_page?: string | undefined;
|
|
357
|
+
jump_to?: string | undefined;
|
|
358
|
+
jump_to_confirm?: string | undefined;
|
|
359
|
+
page?: string | undefined;
|
|
360
|
+
prev_page?: string | undefined;
|
|
361
|
+
next_page?: string | undefined;
|
|
362
|
+
prev_5?: string | undefined;
|
|
363
|
+
next_5?: string | undefined;
|
|
364
|
+
prev_3?: string | undefined;
|
|
365
|
+
next_3?: string | undefined;
|
|
366
|
+
} | undefined;
|
|
367
|
+
Table?: {
|
|
368
|
+
filterTitle?: string | undefined;
|
|
369
|
+
filterConfirm?: any;
|
|
370
|
+
filterReset?: any;
|
|
371
|
+
filterEmptyText?: any;
|
|
372
|
+
filterCheckall?: any;
|
|
373
|
+
filterSearchPlaceholder?: any;
|
|
374
|
+
emptyText?: any;
|
|
375
|
+
selectAll?: any;
|
|
376
|
+
selectNone?: any;
|
|
377
|
+
selectInvert?: any;
|
|
378
|
+
selectionAll?: any;
|
|
379
|
+
sortTitle?: string | undefined;
|
|
380
|
+
expand?: string | undefined;
|
|
381
|
+
collapse?: string | undefined;
|
|
382
|
+
triggerDesc?: string | undefined;
|
|
383
|
+
triggerAsc?: string | undefined;
|
|
384
|
+
cancelSort?: string | undefined;
|
|
385
|
+
} | undefined;
|
|
386
|
+
Popconfirm?: Record<string, any> | undefined;
|
|
387
|
+
Form?: {
|
|
388
|
+
optional?: string | undefined;
|
|
389
|
+
defaultValidateMessages: {
|
|
390
|
+
default?: (string | (() => string)) | undefined;
|
|
391
|
+
required?: (string | (() => string)) | undefined;
|
|
392
|
+
enum?: (string | (() => string)) | undefined;
|
|
393
|
+
whitespace?: (string | (() => string)) | undefined;
|
|
394
|
+
date?: {
|
|
395
|
+
format?: (string | (() => string)) | undefined;
|
|
396
|
+
parse?: (string | (() => string)) | undefined;
|
|
397
|
+
invalid?: (string | (() => string)) | undefined;
|
|
398
|
+
} | undefined;
|
|
399
|
+
types?: {
|
|
400
|
+
string?: (string | (() => string)) | undefined;
|
|
401
|
+
method?: (string | (() => string)) | undefined;
|
|
402
|
+
array?: (string | (() => string)) | undefined;
|
|
403
|
+
object?: (string | (() => string)) | undefined;
|
|
404
|
+
number?: (string | (() => string)) | undefined;
|
|
405
|
+
date?: (string | (() => string)) | undefined;
|
|
406
|
+
boolean?: (string | (() => string)) | undefined;
|
|
407
|
+
integer?: (string | (() => string)) | undefined;
|
|
408
|
+
float?: (string | (() => string)) | undefined;
|
|
409
|
+
regexp?: (string | (() => string)) | undefined;
|
|
410
|
+
email?: (string | (() => string)) | undefined;
|
|
411
|
+
url?: (string | (() => string)) | undefined;
|
|
412
|
+
hex?: (string | (() => string)) | undefined;
|
|
413
|
+
} | undefined;
|
|
414
|
+
string?: {
|
|
415
|
+
len?: (string | (() => string)) | undefined;
|
|
416
|
+
min?: (string | (() => string)) | undefined;
|
|
417
|
+
max?: (string | (() => string)) | undefined;
|
|
418
|
+
range?: (string | (() => string)) | undefined;
|
|
419
|
+
} | undefined;
|
|
420
|
+
number?: {
|
|
421
|
+
len?: (string | (() => string)) | undefined;
|
|
422
|
+
min?: (string | (() => string)) | undefined;
|
|
423
|
+
max?: (string | (() => string)) | undefined;
|
|
424
|
+
range?: (string | (() => string)) | undefined;
|
|
425
|
+
} | undefined;
|
|
426
|
+
array?: {
|
|
427
|
+
len?: (string | (() => string)) | undefined;
|
|
428
|
+
min?: (string | (() => string)) | undefined;
|
|
429
|
+
max?: (string | (() => string)) | undefined;
|
|
430
|
+
range?: (string | (() => string)) | undefined;
|
|
431
|
+
} | undefined;
|
|
432
|
+
pattern?: {
|
|
433
|
+
mismatch?: (string | (() => string)) | undefined;
|
|
434
|
+
} | undefined;
|
|
435
|
+
};
|
|
436
|
+
} | undefined;
|
|
437
|
+
Image?: {
|
|
438
|
+
preview: string;
|
|
439
|
+
} | undefined;
|
|
440
|
+
DatePicker?: {
|
|
441
|
+
lang: {
|
|
442
|
+
locale: string;
|
|
443
|
+
monthBeforeYear?: boolean | undefined;
|
|
444
|
+
yearFormat: string;
|
|
445
|
+
monthFormat?: string | undefined;
|
|
446
|
+
quarterFormat?: string | undefined;
|
|
447
|
+
today: string;
|
|
448
|
+
now: string;
|
|
449
|
+
backToToday: string;
|
|
450
|
+
ok: string;
|
|
451
|
+
timeSelect: string;
|
|
452
|
+
dateSelect: string;
|
|
453
|
+
weekSelect?: string | undefined;
|
|
454
|
+
clear: string;
|
|
455
|
+
month: string;
|
|
456
|
+
year: string;
|
|
457
|
+
previousMonth: string;
|
|
458
|
+
nextMonth: string;
|
|
459
|
+
monthSelect: string;
|
|
460
|
+
yearSelect: string;
|
|
461
|
+
decadeSelect: string;
|
|
462
|
+
dayFormat: string;
|
|
463
|
+
dateFormat: string;
|
|
464
|
+
dateTimeFormat: string;
|
|
465
|
+
previousYear: string;
|
|
466
|
+
nextYear: string;
|
|
467
|
+
previousDecade: string;
|
|
468
|
+
nextDecade: string;
|
|
469
|
+
previousCentury: string;
|
|
470
|
+
nextCentury: string;
|
|
471
|
+
shortWeekDays?: string[] | undefined;
|
|
472
|
+
shortMonths?: string[] | undefined;
|
|
473
|
+
placeholder: string;
|
|
474
|
+
yearPlaceholder?: string | undefined;
|
|
475
|
+
quarterPlaceholder?: string | undefined;
|
|
476
|
+
monthPlaceholder?: string | undefined;
|
|
477
|
+
weekPlaceholder?: string | undefined;
|
|
478
|
+
rangeYearPlaceholder?: [string, string] | undefined;
|
|
479
|
+
rangeQuarterPlaceholder?: [string, string] | undefined;
|
|
480
|
+
rangeMonthPlaceholder?: [string, string] | undefined;
|
|
481
|
+
rangeWeekPlaceholder?: [string, string] | undefined;
|
|
482
|
+
rangePlaceholder?: [string, string] | undefined;
|
|
483
|
+
};
|
|
484
|
+
timePickerLocale: {
|
|
485
|
+
placeholder?: string | undefined;
|
|
486
|
+
rangePlaceholder?: [string, string] | undefined;
|
|
487
|
+
};
|
|
488
|
+
dateFormat?: string | undefined;
|
|
489
|
+
dateTimeFormat?: string | undefined;
|
|
490
|
+
weekFormat?: string | undefined;
|
|
491
|
+
monthFormat?: string | undefined;
|
|
492
|
+
} | undefined;
|
|
493
|
+
TimePicker?: Record<string, any> | undefined;
|
|
494
|
+
Calendar?: Record<string, any> | undefined;
|
|
495
|
+
Modal?: {
|
|
496
|
+
okText: string;
|
|
497
|
+
cancelText: string;
|
|
498
|
+
justOkText: string;
|
|
499
|
+
} | undefined;
|
|
500
|
+
Transfer?: {
|
|
501
|
+
titles?: any[] | undefined;
|
|
502
|
+
notFoundContent?: any;
|
|
503
|
+
searchPlaceholder?: string | undefined;
|
|
504
|
+
itemUnit?: string | undefined;
|
|
505
|
+
itemsUnit?: string | undefined;
|
|
506
|
+
remove?: string | undefined;
|
|
507
|
+
selectAll?: string | undefined;
|
|
508
|
+
selectCurrent?: string | undefined;
|
|
509
|
+
selectInvert?: string | undefined;
|
|
510
|
+
removeAll?: string | undefined;
|
|
511
|
+
removeCurrent?: string | undefined;
|
|
512
|
+
} | undefined;
|
|
513
|
+
Select?: Record<string, any> | undefined;
|
|
514
|
+
Upload?: {
|
|
515
|
+
uploading?: string | undefined;
|
|
516
|
+
removeFile?: string | undefined;
|
|
517
|
+
downloadFile?: string | undefined;
|
|
518
|
+
uploadError?: string | undefined;
|
|
519
|
+
previewFile?: string | undefined;
|
|
520
|
+
} | undefined;
|
|
521
|
+
Empty?: {
|
|
522
|
+
description: string;
|
|
523
|
+
} | undefined;
|
|
524
|
+
global?: Record<string, any> | undefined;
|
|
525
|
+
PageHeader?: {
|
|
526
|
+
back: string;
|
|
527
|
+
} | undefined;
|
|
528
|
+
Icon?: Record<string, any> | undefined;
|
|
529
|
+
Text?: {
|
|
530
|
+
edit?: any;
|
|
531
|
+
copy?: any;
|
|
532
|
+
copied?: any;
|
|
533
|
+
expand?: any;
|
|
534
|
+
} | undefined;
|
|
535
|
+
Tour?: {
|
|
536
|
+
Next: string;
|
|
537
|
+
Previous: string;
|
|
538
|
+
Finish: string;
|
|
539
|
+
} | undefined;
|
|
540
|
+
QRCode?: {
|
|
541
|
+
expired?: string | undefined;
|
|
542
|
+
refresh?: string | undefined;
|
|
543
|
+
} | undefined;
|
|
544
|
+
}>;
|
|
545
|
+
antdTheme: import('vue').Ref<{
|
|
546
|
+
token: {
|
|
547
|
+
fontSize: number;
|
|
548
|
+
sizeStep: number;
|
|
549
|
+
borderRadius: number;
|
|
550
|
+
wireframe: boolean;
|
|
551
|
+
colorPrimary: string;
|
|
552
|
+
};
|
|
553
|
+
components: {
|
|
554
|
+
Form: {
|
|
555
|
+
marginLG: number;
|
|
556
|
+
};
|
|
557
|
+
Button: {
|
|
558
|
+
lineHeight: number;
|
|
559
|
+
};
|
|
560
|
+
Tabs: {
|
|
561
|
+
margin: number;
|
|
562
|
+
colorBgContainer: string;
|
|
563
|
+
colorPrimary: string;
|
|
564
|
+
colorText: string;
|
|
565
|
+
colorSplit: string;
|
|
566
|
+
colorBorder: string;
|
|
567
|
+
colorPrimaryBorder: string;
|
|
568
|
+
lineHeight: number;
|
|
569
|
+
};
|
|
570
|
+
DatePicker: {
|
|
571
|
+
colorPrimary: string;
|
|
572
|
+
};
|
|
573
|
+
};
|
|
574
|
+
} | {
|
|
575
|
+
token: {
|
|
576
|
+
fontSize: number;
|
|
577
|
+
sizeStep: number;
|
|
578
|
+
borderRadius: number;
|
|
579
|
+
wireframe: boolean;
|
|
580
|
+
colorBgBase: string;
|
|
581
|
+
colorTextBase: string;
|
|
582
|
+
colorPrimary: string;
|
|
583
|
+
colorPrimaryBorder: string;
|
|
584
|
+
colorPrimaryBorderHover: string;
|
|
585
|
+
colorPrimaryText: string;
|
|
586
|
+
};
|
|
587
|
+
components: {
|
|
588
|
+
Button: {
|
|
589
|
+
colorBgContainer: string;
|
|
590
|
+
colorBorder: string;
|
|
591
|
+
colorText: string;
|
|
592
|
+
lineHeight: number;
|
|
593
|
+
};
|
|
594
|
+
Form: {
|
|
595
|
+
marginLG: number;
|
|
596
|
+
colorPrimary: string;
|
|
597
|
+
colorTextHeading: string;
|
|
598
|
+
colorTextDescription: string;
|
|
599
|
+
colorText: string;
|
|
600
|
+
colorBorder: string;
|
|
601
|
+
controlOutline: string;
|
|
602
|
+
colorError: string;
|
|
603
|
+
};
|
|
604
|
+
Input: {
|
|
605
|
+
colorBgContainer: string;
|
|
606
|
+
colorBorder: string;
|
|
607
|
+
colorIconHover: string;
|
|
608
|
+
colorPrimaryActive: string;
|
|
609
|
+
colorBgContainerDisabled: string;
|
|
610
|
+
colorText: string;
|
|
611
|
+
};
|
|
612
|
+
Checkbox: {
|
|
613
|
+
colorBgContainer: string;
|
|
614
|
+
colorBorder: string;
|
|
615
|
+
};
|
|
616
|
+
InputNumber: {
|
|
617
|
+
colorBgContainer: string;
|
|
618
|
+
colorBorder: string;
|
|
619
|
+
colorIconHover: string;
|
|
620
|
+
colorPrimaryActive: string;
|
|
621
|
+
colorBgContainerDisabled: string;
|
|
622
|
+
colorText: string;
|
|
623
|
+
};
|
|
624
|
+
Radio: {
|
|
625
|
+
colorBgContainer: string;
|
|
626
|
+
colorBgContainerDisabled: string;
|
|
627
|
+
};
|
|
628
|
+
Switch: {
|
|
629
|
+
colorPrimary: string;
|
|
630
|
+
colorBgContainer: string;
|
|
631
|
+
};
|
|
632
|
+
TreeSelect: {
|
|
633
|
+
colorBgContainer: string;
|
|
634
|
+
};
|
|
635
|
+
Tabs: {
|
|
636
|
+
margin: number;
|
|
637
|
+
colorPrimaryActive: string;
|
|
638
|
+
colorBgContainer: string;
|
|
639
|
+
colorPrimary: string;
|
|
640
|
+
colorFillAlter: string;
|
|
641
|
+
colorSplit: string;
|
|
642
|
+
colorText: string;
|
|
643
|
+
lineHeight: number;
|
|
644
|
+
};
|
|
645
|
+
Select: {
|
|
646
|
+
colorBgContainer: string;
|
|
647
|
+
colorBgContainerDisabled: string;
|
|
648
|
+
colorBgElevated: string;
|
|
649
|
+
controlItemBgActive: string;
|
|
650
|
+
colorBorder: string;
|
|
651
|
+
colorText: string;
|
|
652
|
+
};
|
|
653
|
+
DatePicker: {
|
|
654
|
+
colorBgContainer: string;
|
|
655
|
+
colorBgContainerDisabled: string;
|
|
656
|
+
colorBorder: string;
|
|
657
|
+
colorText: string;
|
|
658
|
+
colorBgElevated: string;
|
|
659
|
+
colorTextHeading: string;
|
|
660
|
+
colorIcon: string;
|
|
661
|
+
colorIconHover: string;
|
|
662
|
+
colorTextDisabled: string;
|
|
663
|
+
controlItemBgHover: string;
|
|
664
|
+
controlItemBgActive: string;
|
|
665
|
+
};
|
|
666
|
+
Calendar: {
|
|
667
|
+
colorBgContainer: string;
|
|
668
|
+
};
|
|
669
|
+
Modal: {
|
|
670
|
+
colorBgElevated: string;
|
|
671
|
+
colorTextHeading: string;
|
|
672
|
+
};
|
|
673
|
+
Tree: {
|
|
674
|
+
colorBgContainer: string;
|
|
675
|
+
};
|
|
676
|
+
};
|
|
677
|
+
}, {
|
|
678
|
+
token: {
|
|
679
|
+
fontSize: number;
|
|
680
|
+
sizeStep: number;
|
|
681
|
+
borderRadius: number;
|
|
682
|
+
wireframe: boolean;
|
|
683
|
+
colorPrimary: string;
|
|
684
|
+
};
|
|
685
|
+
components: {
|
|
686
|
+
Form: {
|
|
687
|
+
marginLG: number;
|
|
688
|
+
};
|
|
689
|
+
Button: {
|
|
690
|
+
lineHeight: number;
|
|
691
|
+
};
|
|
692
|
+
Tabs: {
|
|
693
|
+
margin: number;
|
|
694
|
+
colorBgContainer: string;
|
|
695
|
+
colorPrimary: string;
|
|
696
|
+
colorText: string;
|
|
697
|
+
colorSplit: string;
|
|
698
|
+
colorBorder: string;
|
|
699
|
+
colorPrimaryBorder: string;
|
|
700
|
+
lineHeight: number;
|
|
701
|
+
};
|
|
702
|
+
DatePicker: {
|
|
703
|
+
colorPrimary: string;
|
|
704
|
+
};
|
|
705
|
+
};
|
|
706
|
+
} | {
|
|
707
|
+
token: {
|
|
708
|
+
fontSize: number;
|
|
709
|
+
sizeStep: number;
|
|
710
|
+
borderRadius: number;
|
|
711
|
+
wireframe: boolean;
|
|
712
|
+
colorBgBase: string;
|
|
713
|
+
colorTextBase: string;
|
|
714
|
+
colorPrimary: string;
|
|
715
|
+
colorPrimaryBorder: string;
|
|
716
|
+
colorPrimaryBorderHover: string;
|
|
717
|
+
colorPrimaryText: string;
|
|
718
|
+
};
|
|
719
|
+
components: {
|
|
720
|
+
Button: {
|
|
721
|
+
colorBgContainer: string;
|
|
722
|
+
colorBorder: string;
|
|
723
|
+
colorText: string;
|
|
724
|
+
lineHeight: number;
|
|
725
|
+
};
|
|
726
|
+
Form: {
|
|
727
|
+
marginLG: number;
|
|
728
|
+
colorPrimary: string;
|
|
729
|
+
colorTextHeading: string;
|
|
730
|
+
colorTextDescription: string;
|
|
731
|
+
colorText: string;
|
|
732
|
+
colorBorder: string;
|
|
733
|
+
controlOutline: string;
|
|
734
|
+
colorError: string;
|
|
735
|
+
};
|
|
736
|
+
Input: {
|
|
737
|
+
colorBgContainer: string;
|
|
738
|
+
colorBorder: string;
|
|
739
|
+
colorIconHover: string;
|
|
740
|
+
colorPrimaryActive: string;
|
|
741
|
+
colorBgContainerDisabled: string;
|
|
742
|
+
colorText: string;
|
|
743
|
+
};
|
|
744
|
+
Checkbox: {
|
|
745
|
+
colorBgContainer: string;
|
|
746
|
+
colorBorder: string;
|
|
747
|
+
};
|
|
748
|
+
InputNumber: {
|
|
749
|
+
colorBgContainer: string;
|
|
750
|
+
colorBorder: string;
|
|
751
|
+
colorIconHover: string;
|
|
752
|
+
colorPrimaryActive: string;
|
|
753
|
+
colorBgContainerDisabled: string;
|
|
754
|
+
colorText: string;
|
|
755
|
+
};
|
|
756
|
+
Radio: {
|
|
757
|
+
colorBgContainer: string;
|
|
758
|
+
colorBgContainerDisabled: string;
|
|
759
|
+
};
|
|
760
|
+
Switch: {
|
|
761
|
+
colorPrimary: string;
|
|
762
|
+
colorBgContainer: string;
|
|
763
|
+
};
|
|
764
|
+
TreeSelect: {
|
|
765
|
+
colorBgContainer: string;
|
|
766
|
+
};
|
|
767
|
+
Tabs: {
|
|
768
|
+
margin: number;
|
|
769
|
+
colorPrimaryActive: string;
|
|
770
|
+
colorBgContainer: string;
|
|
771
|
+
colorPrimary: string;
|
|
772
|
+
colorFillAlter: string;
|
|
773
|
+
colorSplit: string;
|
|
774
|
+
colorText: string;
|
|
775
|
+
lineHeight: number;
|
|
776
|
+
};
|
|
777
|
+
Select: {
|
|
778
|
+
colorBgContainer: string;
|
|
779
|
+
colorBgContainerDisabled: string;
|
|
780
|
+
colorBgElevated: string;
|
|
781
|
+
controlItemBgActive: string;
|
|
782
|
+
colorBorder: string;
|
|
783
|
+
colorText: string;
|
|
784
|
+
};
|
|
785
|
+
DatePicker: {
|
|
786
|
+
colorBgContainer: string;
|
|
787
|
+
colorBgContainerDisabled: string;
|
|
788
|
+
colorBorder: string;
|
|
789
|
+
colorText: string;
|
|
790
|
+
colorBgElevated: string;
|
|
791
|
+
colorTextHeading: string;
|
|
792
|
+
colorIcon: string;
|
|
793
|
+
colorIconHover: string;
|
|
794
|
+
colorTextDisabled: string;
|
|
795
|
+
controlItemBgHover: string;
|
|
796
|
+
controlItemBgActive: string;
|
|
797
|
+
};
|
|
798
|
+
Calendar: {
|
|
799
|
+
colorBgContainer: string;
|
|
800
|
+
};
|
|
801
|
+
Modal: {
|
|
802
|
+
colorBgElevated: string;
|
|
803
|
+
colorTextHeading: string;
|
|
804
|
+
};
|
|
805
|
+
Tree: {
|
|
806
|
+
colorBgContainer: string;
|
|
807
|
+
};
|
|
808
|
+
};
|
|
809
|
+
} | {
|
|
810
|
+
token: {
|
|
811
|
+
fontSize: number;
|
|
812
|
+
sizeStep: number;
|
|
813
|
+
borderRadius: number;
|
|
814
|
+
wireframe: boolean;
|
|
815
|
+
colorPrimary: string;
|
|
816
|
+
};
|
|
817
|
+
components: {
|
|
818
|
+
Form: {
|
|
819
|
+
marginLG: number;
|
|
820
|
+
};
|
|
821
|
+
Button: {
|
|
822
|
+
lineHeight: number;
|
|
823
|
+
};
|
|
824
|
+
Tabs: {
|
|
825
|
+
margin: number;
|
|
826
|
+
colorBgContainer: string;
|
|
827
|
+
colorPrimary: string;
|
|
828
|
+
colorText: string;
|
|
829
|
+
colorSplit: string;
|
|
830
|
+
colorBorder: string;
|
|
831
|
+
colorPrimaryBorder: string;
|
|
832
|
+
lineHeight: number;
|
|
833
|
+
};
|
|
834
|
+
DatePicker: {
|
|
835
|
+
colorPrimary: string;
|
|
836
|
+
};
|
|
837
|
+
};
|
|
838
|
+
} | {
|
|
839
|
+
token: {
|
|
840
|
+
fontSize: number;
|
|
841
|
+
sizeStep: number;
|
|
842
|
+
borderRadius: number;
|
|
843
|
+
wireframe: boolean;
|
|
844
|
+
colorBgBase: string;
|
|
845
|
+
colorTextBase: string;
|
|
846
|
+
colorPrimary: string;
|
|
847
|
+
colorPrimaryBorder: string;
|
|
848
|
+
colorPrimaryBorderHover: string;
|
|
849
|
+
colorPrimaryText: string;
|
|
850
|
+
};
|
|
851
|
+
components: {
|
|
852
|
+
Button: {
|
|
853
|
+
colorBgContainer: string;
|
|
854
|
+
colorBorder: string;
|
|
855
|
+
colorText: string;
|
|
856
|
+
lineHeight: number;
|
|
857
|
+
};
|
|
858
|
+
Form: {
|
|
859
|
+
marginLG: number;
|
|
860
|
+
colorPrimary: string;
|
|
861
|
+
colorTextHeading: string;
|
|
862
|
+
colorTextDescription: string;
|
|
863
|
+
colorText: string;
|
|
864
|
+
colorBorder: string;
|
|
865
|
+
controlOutline: string;
|
|
866
|
+
colorError: string;
|
|
867
|
+
};
|
|
868
|
+
Input: {
|
|
869
|
+
colorBgContainer: string;
|
|
870
|
+
colorBorder: string;
|
|
871
|
+
colorIconHover: string;
|
|
872
|
+
colorPrimaryActive: string;
|
|
873
|
+
colorBgContainerDisabled: string;
|
|
874
|
+
colorText: string;
|
|
875
|
+
};
|
|
876
|
+
Checkbox: {
|
|
877
|
+
colorBgContainer: string;
|
|
878
|
+
colorBorder: string;
|
|
879
|
+
};
|
|
880
|
+
InputNumber: {
|
|
881
|
+
colorBgContainer: string;
|
|
882
|
+
colorBorder: string;
|
|
883
|
+
colorIconHover: string;
|
|
884
|
+
colorPrimaryActive: string;
|
|
885
|
+
colorBgContainerDisabled: string;
|
|
886
|
+
colorText: string;
|
|
887
|
+
};
|
|
888
|
+
Radio: {
|
|
889
|
+
colorBgContainer: string;
|
|
890
|
+
colorBgContainerDisabled: string;
|
|
891
|
+
};
|
|
892
|
+
Switch: {
|
|
893
|
+
colorPrimary: string;
|
|
894
|
+
colorBgContainer: string;
|
|
895
|
+
};
|
|
896
|
+
TreeSelect: {
|
|
897
|
+
colorBgContainer: string;
|
|
898
|
+
};
|
|
899
|
+
Tabs: {
|
|
900
|
+
margin: number;
|
|
901
|
+
colorPrimaryActive: string;
|
|
902
|
+
colorBgContainer: string;
|
|
903
|
+
colorPrimary: string;
|
|
904
|
+
colorFillAlter: string;
|
|
905
|
+
colorSplit: string;
|
|
906
|
+
colorText: string;
|
|
907
|
+
lineHeight: number;
|
|
908
|
+
};
|
|
909
|
+
Select: {
|
|
910
|
+
colorBgContainer: string;
|
|
911
|
+
colorBgContainerDisabled: string;
|
|
912
|
+
colorBgElevated: string;
|
|
913
|
+
controlItemBgActive: string;
|
|
914
|
+
colorBorder: string;
|
|
915
|
+
colorText: string;
|
|
916
|
+
};
|
|
917
|
+
DatePicker: {
|
|
918
|
+
colorBgContainer: string;
|
|
919
|
+
colorBgContainerDisabled: string;
|
|
920
|
+
colorBorder: string;
|
|
921
|
+
colorText: string;
|
|
922
|
+
colorBgElevated: string;
|
|
923
|
+
colorTextHeading: string;
|
|
924
|
+
colorIcon: string;
|
|
925
|
+
colorIconHover: string;
|
|
926
|
+
colorTextDisabled: string;
|
|
927
|
+
controlItemBgHover: string;
|
|
928
|
+
controlItemBgActive: string;
|
|
929
|
+
};
|
|
930
|
+
Calendar: {
|
|
931
|
+
colorBgContainer: string;
|
|
932
|
+
};
|
|
933
|
+
Modal: {
|
|
934
|
+
colorBgElevated: string;
|
|
935
|
+
colorTextHeading: string;
|
|
936
|
+
};
|
|
937
|
+
Tree: {
|
|
938
|
+
colorBgContainer: string;
|
|
939
|
+
};
|
|
940
|
+
};
|
|
941
|
+
}>;
|
|
156
942
|
openHeader: import('vue').Ref<boolean, boolean>;
|
|
157
943
|
flexStyle: import('vue').Ref<string, string>;
|
|
158
944
|
heightStyle: import('vue').Ref<string, string>;
|
|
@@ -218,6 +1004,11 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
218
1004
|
default: boolean;
|
|
219
1005
|
require: boolean;
|
|
220
1006
|
};
|
|
1007
|
+
componentSize: {
|
|
1008
|
+
type: PropType<"small" | "middle" | "large">;
|
|
1009
|
+
default: string;
|
|
1010
|
+
require: boolean;
|
|
1011
|
+
};
|
|
221
1012
|
}>> & Readonly<{
|
|
222
1013
|
onQueryClick?: ((...args: any[]) => any) | undefined;
|
|
223
1014
|
onOpenHeaderChange?: ((...args: any[]) => any) | undefined;
|
|
@@ -225,9 +1016,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
225
1016
|
}>, {
|
|
226
1017
|
id: string;
|
|
227
1018
|
title: string;
|
|
1019
|
+
componentSize: "small" | "middle" | "large";
|
|
228
1020
|
padding: string;
|
|
229
|
-
height: string;
|
|
230
1021
|
flex: number;
|
|
1022
|
+
height: string;
|
|
231
1023
|
showHeader: boolean;
|
|
232
1024
|
showBorder: boolean;
|
|
233
1025
|
innerPadding: string;
|
|
@@ -324,19 +1116,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
324
1116
|
$el: any;
|
|
325
1117
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
326
1118
|
prefixCls: StringConstructor;
|
|
327
|
-
type:
|
|
1119
|
+
type: PropType<import('ant-design-vue/es/button').ButtonType>;
|
|
328
1120
|
htmlType: {
|
|
329
|
-
type:
|
|
1121
|
+
type: PropType<import('ant-design-vue/es/button/buttonTypes').ButtonHTMLType>;
|
|
330
1122
|
default: string;
|
|
331
1123
|
};
|
|
332
1124
|
shape: {
|
|
333
|
-
type:
|
|
1125
|
+
type: PropType<import('ant-design-vue/es/button').ButtonShape>;
|
|
334
1126
|
};
|
|
335
1127
|
size: {
|
|
336
|
-
type:
|
|
1128
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
337
1129
|
};
|
|
338
1130
|
loading: {
|
|
339
|
-
type:
|
|
1131
|
+
type: PropType<boolean | {
|
|
340
1132
|
delay?: number | undefined;
|
|
341
1133
|
}>;
|
|
342
1134
|
default: () => boolean | {
|
|
@@ -364,10 +1156,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
364
1156
|
target: StringConstructor;
|
|
365
1157
|
title: StringConstructor;
|
|
366
1158
|
onClick: {
|
|
367
|
-
type:
|
|
1159
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
368
1160
|
};
|
|
369
1161
|
onMousedown: {
|
|
370
|
-
type:
|
|
1162
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
371
1163
|
};
|
|
372
1164
|
}>>, () => any, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
373
1165
|
block: boolean;
|
|
@@ -403,19 +1195,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
403
1195
|
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (args_0: R, args_1: R) => any : (...args: any) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
404
1196
|
} & Readonly<import('vue').ExtractPropTypes<{
|
|
405
1197
|
prefixCls: StringConstructor;
|
|
406
|
-
type:
|
|
1198
|
+
type: PropType<import('ant-design-vue/es/button').ButtonType>;
|
|
407
1199
|
htmlType: {
|
|
408
|
-
type:
|
|
1200
|
+
type: PropType<import('ant-design-vue/es/button/buttonTypes').ButtonHTMLType>;
|
|
409
1201
|
default: string;
|
|
410
1202
|
};
|
|
411
1203
|
shape: {
|
|
412
|
-
type:
|
|
1204
|
+
type: PropType<import('ant-design-vue/es/button').ButtonShape>;
|
|
413
1205
|
};
|
|
414
1206
|
size: {
|
|
415
|
-
type:
|
|
1207
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
416
1208
|
};
|
|
417
1209
|
loading: {
|
|
418
|
-
type:
|
|
1210
|
+
type: PropType<boolean | {
|
|
419
1211
|
delay?: number | undefined;
|
|
420
1212
|
}>;
|
|
421
1213
|
default: () => boolean | {
|
|
@@ -443,10 +1235,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
443
1235
|
target: StringConstructor;
|
|
444
1236
|
title: StringConstructor;
|
|
445
1237
|
onClick: {
|
|
446
|
-
type:
|
|
1238
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
447
1239
|
};
|
|
448
1240
|
onMousedown: {
|
|
449
|
-
type:
|
|
1241
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
450
1242
|
};
|
|
451
1243
|
}>> & import('vue').ShallowUnwrapRef<() => any> & import('vue').ComponentCustomProperties;
|
|
452
1244
|
__isFragment?: undefined;
|
|
@@ -454,19 +1246,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
454
1246
|
__isSuspense?: undefined;
|
|
455
1247
|
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
456
1248
|
prefixCls: StringConstructor;
|
|
457
|
-
type:
|
|
1249
|
+
type: PropType<import('ant-design-vue/es/button').ButtonType>;
|
|
458
1250
|
htmlType: {
|
|
459
|
-
type:
|
|
1251
|
+
type: PropType<import('ant-design-vue/es/button/buttonTypes').ButtonHTMLType>;
|
|
460
1252
|
default: string;
|
|
461
1253
|
};
|
|
462
1254
|
shape: {
|
|
463
|
-
type:
|
|
1255
|
+
type: PropType<import('ant-design-vue/es/button').ButtonShape>;
|
|
464
1256
|
};
|
|
465
1257
|
size: {
|
|
466
|
-
type:
|
|
1258
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
467
1259
|
};
|
|
468
1260
|
loading: {
|
|
469
|
-
type:
|
|
1261
|
+
type: PropType<boolean | {
|
|
470
1262
|
delay?: number | undefined;
|
|
471
1263
|
}>;
|
|
472
1264
|
default: () => boolean | {
|
|
@@ -494,10 +1286,10 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
494
1286
|
target: StringConstructor;
|
|
495
1287
|
title: StringConstructor;
|
|
496
1288
|
onClick: {
|
|
497
|
-
type:
|
|
1289
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
498
1290
|
};
|
|
499
1291
|
onMousedown: {
|
|
500
|
-
type:
|
|
1292
|
+
type: PropType<import('ant-design-vue/es/_util/EventInterface').MouseEventHandler | import('ant-design-vue/es/_util/EventInterface').MouseEventHandler[]>;
|
|
501
1293
|
};
|
|
502
1294
|
}>>, () => any, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
503
1295
|
block: boolean;
|
|
@@ -515,14 +1307,521 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
515
1307
|
readonly Group: import('vue').DefineComponent<{
|
|
516
1308
|
prefixCls: StringConstructor;
|
|
517
1309
|
size: {
|
|
518
|
-
type:
|
|
1310
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
519
1311
|
};
|
|
520
1312
|
}, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, Readonly<import('vue').ExtractPropTypes<{
|
|
521
1313
|
prefixCls: StringConstructor;
|
|
522
1314
|
size: {
|
|
523
|
-
type:
|
|
1315
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
524
1316
|
};
|
|
525
1317
|
}>>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
526
1318
|
};
|
|
1319
|
+
'a-config-providver': {
|
|
1320
|
+
new (...args: any[]): {
|
|
1321
|
+
$: import('vue').ComponentInternalInstance;
|
|
1322
|
+
$data: {};
|
|
1323
|
+
$props: {
|
|
1324
|
+
form?: {
|
|
1325
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1326
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1327
|
+
colon?: boolean | undefined;
|
|
1328
|
+
} | undefined;
|
|
1329
|
+
input?: {
|
|
1330
|
+
autocomplete?: string | undefined;
|
|
1331
|
+
} | undefined;
|
|
1332
|
+
select?: {
|
|
1333
|
+
showSearch?: boolean | undefined;
|
|
1334
|
+
} | undefined;
|
|
1335
|
+
space?: {
|
|
1336
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1337
|
+
} | undefined;
|
|
1338
|
+
direction?: "rtl" | "ltr" | undefined;
|
|
1339
|
+
csp?: import('ant-design-vue/es/config-provider').CSPConfig | undefined;
|
|
1340
|
+
theme?: import('ant-design-vue/es/config-provider/context').ThemeConfig | undefined;
|
|
1341
|
+
virtual?: boolean | undefined;
|
|
1342
|
+
dropdownMatchSelectWidth?: number | boolean | undefined;
|
|
1343
|
+
locale?: import('ant-design-vue/es/locale').Locale | undefined;
|
|
1344
|
+
pagination?: {
|
|
1345
|
+
showSizeChanger?: boolean | undefined;
|
|
1346
|
+
} | undefined;
|
|
1347
|
+
autoInsertSpaceInButton?: boolean | undefined;
|
|
1348
|
+
pageHeader?: {
|
|
1349
|
+
ghost?: boolean | undefined;
|
|
1350
|
+
} | undefined;
|
|
1351
|
+
componentDisabled?: boolean | undefined;
|
|
1352
|
+
style?: unknown;
|
|
1353
|
+
ref?: import('vue').VNodeRef | undefined;
|
|
1354
|
+
key?: string | number | symbol | undefined;
|
|
1355
|
+
ref_for?: boolean | undefined;
|
|
1356
|
+
ref_key?: string | undefined;
|
|
1357
|
+
onVnodeBeforeMount?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1358
|
+
[key: string]: any;
|
|
1359
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1360
|
+
[key: string]: any;
|
|
1361
|
+
}>) => void)[] | undefined;
|
|
1362
|
+
onVnodeMounted?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1363
|
+
[key: string]: any;
|
|
1364
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1365
|
+
[key: string]: any;
|
|
1366
|
+
}>) => void)[] | undefined;
|
|
1367
|
+
onVnodeBeforeUpdate?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1368
|
+
[key: string]: any;
|
|
1369
|
+
}>, oldVNode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1370
|
+
[key: string]: any;
|
|
1371
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1372
|
+
[key: string]: any;
|
|
1373
|
+
}>, oldVNode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1374
|
+
[key: string]: any;
|
|
1375
|
+
}>) => void)[] | undefined;
|
|
1376
|
+
onVnodeUpdated?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1377
|
+
[key: string]: any;
|
|
1378
|
+
}>, oldVNode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1379
|
+
[key: string]: any;
|
|
1380
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1381
|
+
[key: string]: any;
|
|
1382
|
+
}>, oldVNode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1383
|
+
[key: string]: any;
|
|
1384
|
+
}>) => void)[] | undefined;
|
|
1385
|
+
onVnodeBeforeUnmount?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1386
|
+
[key: string]: any;
|
|
1387
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1388
|
+
[key: string]: any;
|
|
1389
|
+
}>) => void)[] | undefined;
|
|
1390
|
+
onVnodeUnmounted?: ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1391
|
+
[key: string]: any;
|
|
1392
|
+
}>) => void) | ((vnode: import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
1393
|
+
[key: string]: any;
|
|
1394
|
+
}>) => void)[] | undefined;
|
|
1395
|
+
class?: unknown;
|
|
1396
|
+
tabindex?: string | number | undefined;
|
|
1397
|
+
readonly getPrefixCls?: ((suffixCls?: string | undefined, customizePrefixCls?: string | undefined) => string) | undefined;
|
|
1398
|
+
readonly iconPrefixCls?: string | undefined;
|
|
1399
|
+
readonly prefixCls?: string | undefined;
|
|
1400
|
+
readonly renderEmpty?: typeof import('ant-design-vue/es/config-provider/renderEmpty').default | undefined;
|
|
1401
|
+
readonly getTargetContainer?: (() => Window | HTMLElement) | undefined;
|
|
1402
|
+
readonly getPopupContainer?: ((triggerNode?: HTMLElement | undefined) => HTMLElement) | undefined;
|
|
1403
|
+
role?: string | undefined;
|
|
1404
|
+
readonly transformCellText?: ((tableProps: import('ant-design-vue/es/table/interface').TransformCellTextProps) => any) | undefined;
|
|
1405
|
+
readonly componentSize?: import('ant-design-vue/es/button').ButtonSize;
|
|
1406
|
+
};
|
|
1407
|
+
$attrs: {
|
|
1408
|
+
[x: string]: unknown;
|
|
1409
|
+
};
|
|
1410
|
+
$refs: {
|
|
1411
|
+
[x: string]: unknown;
|
|
1412
|
+
};
|
|
1413
|
+
$slots: Readonly<{
|
|
1414
|
+
[name: string]: import('vue').Slot<any>;
|
|
1415
|
+
}>;
|
|
1416
|
+
$root: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
1417
|
+
$parent: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any>;
|
|
1418
|
+
$emit: (event: string, ...args: any[]) => void;
|
|
1419
|
+
$el: any;
|
|
1420
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1421
|
+
iconPrefixCls: StringConstructor;
|
|
1422
|
+
getTargetContainer: {
|
|
1423
|
+
type: PropType<() => Window | HTMLElement>;
|
|
1424
|
+
};
|
|
1425
|
+
getPopupContainer: {
|
|
1426
|
+
type: PropType<(triggerNode?: HTMLElement | undefined) => HTMLElement>;
|
|
1427
|
+
};
|
|
1428
|
+
prefixCls: StringConstructor;
|
|
1429
|
+
getPrefixCls: {
|
|
1430
|
+
type: PropType<(suffixCls?: string | undefined, customizePrefixCls?: string | undefined) => string>;
|
|
1431
|
+
};
|
|
1432
|
+
renderEmpty: {
|
|
1433
|
+
type: PropType<typeof import('ant-design-vue/es/config-provider/renderEmpty').default>;
|
|
1434
|
+
};
|
|
1435
|
+
transformCellText: {
|
|
1436
|
+
type: PropType<(tableProps: import('ant-design-vue/es/table/interface').TransformCellTextProps) => any>;
|
|
1437
|
+
};
|
|
1438
|
+
csp: {
|
|
1439
|
+
type: PropType<import('ant-design-vue/es/config-provider').CSPConfig>;
|
|
1440
|
+
default: import('ant-design-vue/es/config-provider').CSPConfig;
|
|
1441
|
+
};
|
|
1442
|
+
input: {
|
|
1443
|
+
type: PropType<{
|
|
1444
|
+
autocomplete?: string | undefined;
|
|
1445
|
+
}>;
|
|
1446
|
+
default: {
|
|
1447
|
+
autocomplete?: string | undefined;
|
|
1448
|
+
};
|
|
1449
|
+
};
|
|
1450
|
+
autoInsertSpaceInButton: {
|
|
1451
|
+
type: BooleanConstructor;
|
|
1452
|
+
default: any;
|
|
1453
|
+
};
|
|
1454
|
+
locale: {
|
|
1455
|
+
type: PropType<import('ant-design-vue/es/locale').Locale>;
|
|
1456
|
+
default: import('ant-design-vue/es/locale').Locale;
|
|
1457
|
+
};
|
|
1458
|
+
pageHeader: {
|
|
1459
|
+
type: PropType<{
|
|
1460
|
+
ghost?: boolean | undefined;
|
|
1461
|
+
}>;
|
|
1462
|
+
default: {
|
|
1463
|
+
ghost?: boolean | undefined;
|
|
1464
|
+
};
|
|
1465
|
+
};
|
|
1466
|
+
componentSize: {
|
|
1467
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
1468
|
+
};
|
|
1469
|
+
componentDisabled: {
|
|
1470
|
+
type: BooleanConstructor;
|
|
1471
|
+
default: any;
|
|
1472
|
+
};
|
|
1473
|
+
direction: {
|
|
1474
|
+
type: PropType<"rtl" | "ltr">;
|
|
1475
|
+
default: string;
|
|
1476
|
+
};
|
|
1477
|
+
space: {
|
|
1478
|
+
type: PropType<{
|
|
1479
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1480
|
+
}>;
|
|
1481
|
+
default: {
|
|
1482
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1483
|
+
};
|
|
1484
|
+
};
|
|
1485
|
+
virtual: {
|
|
1486
|
+
type: BooleanConstructor;
|
|
1487
|
+
default: any;
|
|
1488
|
+
};
|
|
1489
|
+
dropdownMatchSelectWidth: {
|
|
1490
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1491
|
+
default: boolean;
|
|
1492
|
+
};
|
|
1493
|
+
form: {
|
|
1494
|
+
type: PropType<{
|
|
1495
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1496
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1497
|
+
colon?: boolean | undefined;
|
|
1498
|
+
}>;
|
|
1499
|
+
default: {
|
|
1500
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1501
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1502
|
+
colon?: boolean | undefined;
|
|
1503
|
+
};
|
|
1504
|
+
};
|
|
1505
|
+
pagination: {
|
|
1506
|
+
type: PropType<{
|
|
1507
|
+
showSizeChanger?: boolean | undefined;
|
|
1508
|
+
}>;
|
|
1509
|
+
default: {
|
|
1510
|
+
showSizeChanger?: boolean | undefined;
|
|
1511
|
+
};
|
|
1512
|
+
};
|
|
1513
|
+
theme: {
|
|
1514
|
+
type: PropType<import('ant-design-vue/es/config-provider/context').ThemeConfig>;
|
|
1515
|
+
default: import('ant-design-vue/es/config-provider/context').ThemeConfig;
|
|
1516
|
+
};
|
|
1517
|
+
select: {
|
|
1518
|
+
type: PropType<{
|
|
1519
|
+
showSearch?: boolean | undefined;
|
|
1520
|
+
}>;
|
|
1521
|
+
default: {
|
|
1522
|
+
showSearch?: boolean | undefined;
|
|
1523
|
+
};
|
|
1524
|
+
};
|
|
1525
|
+
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1526
|
+
form: {
|
|
1527
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1528
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1529
|
+
colon?: boolean | undefined;
|
|
1530
|
+
};
|
|
1531
|
+
input: {
|
|
1532
|
+
autocomplete?: string | undefined;
|
|
1533
|
+
};
|
|
1534
|
+
select: {
|
|
1535
|
+
showSearch?: boolean | undefined;
|
|
1536
|
+
};
|
|
1537
|
+
space: {
|
|
1538
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1539
|
+
};
|
|
1540
|
+
direction: "rtl" | "ltr";
|
|
1541
|
+
csp: import('ant-design-vue/es/config-provider').CSPConfig;
|
|
1542
|
+
theme: import('ant-design-vue/es/config-provider/context').ThemeConfig;
|
|
1543
|
+
virtual: boolean;
|
|
1544
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
1545
|
+
locale: import('ant-design-vue/es/locale').Locale;
|
|
1546
|
+
pagination: {
|
|
1547
|
+
showSizeChanger?: boolean | undefined;
|
|
1548
|
+
};
|
|
1549
|
+
autoInsertSpaceInButton: boolean;
|
|
1550
|
+
pageHeader: {
|
|
1551
|
+
ghost?: boolean | undefined;
|
|
1552
|
+
};
|
|
1553
|
+
componentDisabled: boolean;
|
|
1554
|
+
}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & {
|
|
1555
|
+
beforeCreate?: (() => void) | (() => void)[] | undefined;
|
|
1556
|
+
created?: (() => void) | (() => void)[] | undefined;
|
|
1557
|
+
beforeMount?: (() => void) | (() => void)[] | undefined;
|
|
1558
|
+
mounted?: (() => void) | (() => void)[] | undefined;
|
|
1559
|
+
beforeUpdate?: (() => void) | (() => void)[] | undefined;
|
|
1560
|
+
updated?: (() => void) | (() => void)[] | undefined;
|
|
1561
|
+
activated?: (() => void) | (() => void)[] | undefined;
|
|
1562
|
+
deactivated?: (() => void) | (() => void)[] | undefined;
|
|
1563
|
+
beforeDestroy?: (() => void) | (() => void)[] | undefined;
|
|
1564
|
+
beforeUnmount?: (() => void) | (() => void)[] | undefined;
|
|
1565
|
+
destroyed?: (() => void) | (() => void)[] | undefined;
|
|
1566
|
+
unmounted?: (() => void) | (() => void)[] | undefined;
|
|
1567
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1568
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[] | undefined;
|
|
1569
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import('vue').ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions>, {}, {}, "", {}, any>, info: string) => boolean | void)[] | undefined;
|
|
1570
|
+
};
|
|
1571
|
+
$forceUpdate: () => void;
|
|
1572
|
+
$nextTick: typeof import('vue').nextTick;
|
|
1573
|
+
$watch<T_1 extends string | ((...args: any) => any)>(source: T_1, cb: T_1 extends (...args: any) => infer R_1 ? (args_0: R_1, args_1: R_1) => any : (...args: any) => any, options?: import('vue').WatchOptions<boolean> | undefined): import('vue').WatchStopHandle;
|
|
1574
|
+
} & Readonly<import('vue').ExtractPropTypes<{
|
|
1575
|
+
iconPrefixCls: StringConstructor;
|
|
1576
|
+
getTargetContainer: {
|
|
1577
|
+
type: PropType<() => Window | HTMLElement>;
|
|
1578
|
+
};
|
|
1579
|
+
getPopupContainer: {
|
|
1580
|
+
type: PropType<(triggerNode?: HTMLElement | undefined) => HTMLElement>;
|
|
1581
|
+
};
|
|
1582
|
+
prefixCls: StringConstructor;
|
|
1583
|
+
getPrefixCls: {
|
|
1584
|
+
type: PropType<(suffixCls?: string | undefined, customizePrefixCls?: string | undefined) => string>;
|
|
1585
|
+
};
|
|
1586
|
+
renderEmpty: {
|
|
1587
|
+
type: PropType<typeof import('ant-design-vue/es/config-provider/renderEmpty').default>;
|
|
1588
|
+
};
|
|
1589
|
+
transformCellText: {
|
|
1590
|
+
type: PropType<(tableProps: import('ant-design-vue/es/table/interface').TransformCellTextProps) => any>;
|
|
1591
|
+
};
|
|
1592
|
+
csp: {
|
|
1593
|
+
type: PropType<import('ant-design-vue/es/config-provider').CSPConfig>;
|
|
1594
|
+
default: import('ant-design-vue/es/config-provider').CSPConfig;
|
|
1595
|
+
};
|
|
1596
|
+
input: {
|
|
1597
|
+
type: PropType<{
|
|
1598
|
+
autocomplete?: string | undefined;
|
|
1599
|
+
}>;
|
|
1600
|
+
default: {
|
|
1601
|
+
autocomplete?: string | undefined;
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
autoInsertSpaceInButton: {
|
|
1605
|
+
type: BooleanConstructor;
|
|
1606
|
+
default: any;
|
|
1607
|
+
};
|
|
1608
|
+
locale: {
|
|
1609
|
+
type: PropType<import('ant-design-vue/es/locale').Locale>;
|
|
1610
|
+
default: import('ant-design-vue/es/locale').Locale;
|
|
1611
|
+
};
|
|
1612
|
+
pageHeader: {
|
|
1613
|
+
type: PropType<{
|
|
1614
|
+
ghost?: boolean | undefined;
|
|
1615
|
+
}>;
|
|
1616
|
+
default: {
|
|
1617
|
+
ghost?: boolean | undefined;
|
|
1618
|
+
};
|
|
1619
|
+
};
|
|
1620
|
+
componentSize: {
|
|
1621
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
1622
|
+
};
|
|
1623
|
+
componentDisabled: {
|
|
1624
|
+
type: BooleanConstructor;
|
|
1625
|
+
default: any;
|
|
1626
|
+
};
|
|
1627
|
+
direction: {
|
|
1628
|
+
type: PropType<"rtl" | "ltr">;
|
|
1629
|
+
default: string;
|
|
1630
|
+
};
|
|
1631
|
+
space: {
|
|
1632
|
+
type: PropType<{
|
|
1633
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1634
|
+
}>;
|
|
1635
|
+
default: {
|
|
1636
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1637
|
+
};
|
|
1638
|
+
};
|
|
1639
|
+
virtual: {
|
|
1640
|
+
type: BooleanConstructor;
|
|
1641
|
+
default: any;
|
|
1642
|
+
};
|
|
1643
|
+
dropdownMatchSelectWidth: {
|
|
1644
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1645
|
+
default: boolean;
|
|
1646
|
+
};
|
|
1647
|
+
form: {
|
|
1648
|
+
type: PropType<{
|
|
1649
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1650
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1651
|
+
colon?: boolean | undefined;
|
|
1652
|
+
}>;
|
|
1653
|
+
default: {
|
|
1654
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1655
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1656
|
+
colon?: boolean | undefined;
|
|
1657
|
+
};
|
|
1658
|
+
};
|
|
1659
|
+
pagination: {
|
|
1660
|
+
type: PropType<{
|
|
1661
|
+
showSizeChanger?: boolean | undefined;
|
|
1662
|
+
}>;
|
|
1663
|
+
default: {
|
|
1664
|
+
showSizeChanger?: boolean | undefined;
|
|
1665
|
+
};
|
|
1666
|
+
};
|
|
1667
|
+
theme: {
|
|
1668
|
+
type: PropType<import('ant-design-vue/es/config-provider/context').ThemeConfig>;
|
|
1669
|
+
default: import('ant-design-vue/es/config-provider/context').ThemeConfig;
|
|
1670
|
+
};
|
|
1671
|
+
select: {
|
|
1672
|
+
type: PropType<{
|
|
1673
|
+
showSearch?: boolean | undefined;
|
|
1674
|
+
}>;
|
|
1675
|
+
default: {
|
|
1676
|
+
showSearch?: boolean | undefined;
|
|
1677
|
+
};
|
|
1678
|
+
};
|
|
1679
|
+
}>> & import('vue').ShallowUnwrapRef<() => import("vue/jsx-runtime").JSX.Element> & import('vue').ComponentCustomProperties;
|
|
1680
|
+
__isFragment?: undefined;
|
|
1681
|
+
__isTeleport?: undefined;
|
|
1682
|
+
__isSuspense?: undefined;
|
|
1683
|
+
} & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
1684
|
+
iconPrefixCls: StringConstructor;
|
|
1685
|
+
getTargetContainer: {
|
|
1686
|
+
type: PropType<() => Window | HTMLElement>;
|
|
1687
|
+
};
|
|
1688
|
+
getPopupContainer: {
|
|
1689
|
+
type: PropType<(triggerNode?: HTMLElement | undefined) => HTMLElement>;
|
|
1690
|
+
};
|
|
1691
|
+
prefixCls: StringConstructor;
|
|
1692
|
+
getPrefixCls: {
|
|
1693
|
+
type: PropType<(suffixCls?: string | undefined, customizePrefixCls?: string | undefined) => string>;
|
|
1694
|
+
};
|
|
1695
|
+
renderEmpty: {
|
|
1696
|
+
type: PropType<typeof import('ant-design-vue/es/config-provider/renderEmpty').default>;
|
|
1697
|
+
};
|
|
1698
|
+
transformCellText: {
|
|
1699
|
+
type: PropType<(tableProps: import('ant-design-vue/es/table/interface').TransformCellTextProps) => any>;
|
|
1700
|
+
};
|
|
1701
|
+
csp: {
|
|
1702
|
+
type: PropType<import('ant-design-vue/es/config-provider').CSPConfig>;
|
|
1703
|
+
default: import('ant-design-vue/es/config-provider').CSPConfig;
|
|
1704
|
+
};
|
|
1705
|
+
input: {
|
|
1706
|
+
type: PropType<{
|
|
1707
|
+
autocomplete?: string | undefined;
|
|
1708
|
+
}>;
|
|
1709
|
+
default: {
|
|
1710
|
+
autocomplete?: string | undefined;
|
|
1711
|
+
};
|
|
1712
|
+
};
|
|
1713
|
+
autoInsertSpaceInButton: {
|
|
1714
|
+
type: BooleanConstructor;
|
|
1715
|
+
default: any;
|
|
1716
|
+
};
|
|
1717
|
+
locale: {
|
|
1718
|
+
type: PropType<import('ant-design-vue/es/locale').Locale>;
|
|
1719
|
+
default: import('ant-design-vue/es/locale').Locale;
|
|
1720
|
+
};
|
|
1721
|
+
pageHeader: {
|
|
1722
|
+
type: PropType<{
|
|
1723
|
+
ghost?: boolean | undefined;
|
|
1724
|
+
}>;
|
|
1725
|
+
default: {
|
|
1726
|
+
ghost?: boolean | undefined;
|
|
1727
|
+
};
|
|
1728
|
+
};
|
|
1729
|
+
componentSize: {
|
|
1730
|
+
type: PropType<import('ant-design-vue/es/button').ButtonSize>;
|
|
1731
|
+
};
|
|
1732
|
+
componentDisabled: {
|
|
1733
|
+
type: BooleanConstructor;
|
|
1734
|
+
default: any;
|
|
1735
|
+
};
|
|
1736
|
+
direction: {
|
|
1737
|
+
type: PropType<"rtl" | "ltr">;
|
|
1738
|
+
default: string;
|
|
1739
|
+
};
|
|
1740
|
+
space: {
|
|
1741
|
+
type: PropType<{
|
|
1742
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1743
|
+
}>;
|
|
1744
|
+
default: {
|
|
1745
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1746
|
+
};
|
|
1747
|
+
};
|
|
1748
|
+
virtual: {
|
|
1749
|
+
type: BooleanConstructor;
|
|
1750
|
+
default: any;
|
|
1751
|
+
};
|
|
1752
|
+
dropdownMatchSelectWidth: {
|
|
1753
|
+
type: (BooleanConstructor | NumberConstructor)[];
|
|
1754
|
+
default: boolean;
|
|
1755
|
+
};
|
|
1756
|
+
form: {
|
|
1757
|
+
type: PropType<{
|
|
1758
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1759
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1760
|
+
colon?: boolean | undefined;
|
|
1761
|
+
}>;
|
|
1762
|
+
default: {
|
|
1763
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1764
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1765
|
+
colon?: boolean | undefined;
|
|
1766
|
+
};
|
|
1767
|
+
};
|
|
1768
|
+
pagination: {
|
|
1769
|
+
type: PropType<{
|
|
1770
|
+
showSizeChanger?: boolean | undefined;
|
|
1771
|
+
}>;
|
|
1772
|
+
default: {
|
|
1773
|
+
showSizeChanger?: boolean | undefined;
|
|
1774
|
+
};
|
|
1775
|
+
};
|
|
1776
|
+
theme: {
|
|
1777
|
+
type: PropType<import('ant-design-vue/es/config-provider/context').ThemeConfig>;
|
|
1778
|
+
default: import('ant-design-vue/es/config-provider/context').ThemeConfig;
|
|
1779
|
+
};
|
|
1780
|
+
select: {
|
|
1781
|
+
type: PropType<{
|
|
1782
|
+
showSearch?: boolean | undefined;
|
|
1783
|
+
}>;
|
|
1784
|
+
default: {
|
|
1785
|
+
showSearch?: boolean | undefined;
|
|
1786
|
+
};
|
|
1787
|
+
};
|
|
1788
|
+
}>>, () => import("vue/jsx-runtime").JSX.Element, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, {
|
|
1789
|
+
form: {
|
|
1790
|
+
validateMessages?: import('ant-design-vue/es/form/interface').ValidateMessages | undefined;
|
|
1791
|
+
requiredMark?: import('ant-design-vue/es/form/Form').RequiredMark | undefined;
|
|
1792
|
+
colon?: boolean | undefined;
|
|
1793
|
+
};
|
|
1794
|
+
input: {
|
|
1795
|
+
autocomplete?: string | undefined;
|
|
1796
|
+
};
|
|
1797
|
+
select: {
|
|
1798
|
+
showSearch?: boolean | undefined;
|
|
1799
|
+
};
|
|
1800
|
+
space: {
|
|
1801
|
+
size?: number | import('ant-design-vue/es/button').ButtonSize;
|
|
1802
|
+
};
|
|
1803
|
+
direction: "rtl" | "ltr";
|
|
1804
|
+
csp: import('ant-design-vue/es/config-provider').CSPConfig;
|
|
1805
|
+
theme: import('ant-design-vue/es/config-provider/context').ThemeConfig;
|
|
1806
|
+
virtual: boolean;
|
|
1807
|
+
dropdownMatchSelectWidth: number | boolean;
|
|
1808
|
+
locale: import('ant-design-vue/es/locale').Locale;
|
|
1809
|
+
pagination: {
|
|
1810
|
+
showSizeChanger?: boolean | undefined;
|
|
1811
|
+
};
|
|
1812
|
+
autoInsertSpaceInButton: boolean;
|
|
1813
|
+
pageHeader: {
|
|
1814
|
+
ghost?: boolean | undefined;
|
|
1815
|
+
};
|
|
1816
|
+
componentDisabled: boolean;
|
|
1817
|
+
}, {}, string, {}, {}, {}, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin<any[]> & {
|
|
1818
|
+
readonly config: (params: {
|
|
1819
|
+
prefixCls?: import('ant-design-vue/es/_util/type').MaybeRef<string | undefined>;
|
|
1820
|
+
iconPrefixCls?: import('ant-design-vue/es/_util/type').MaybeRef<string | undefined>;
|
|
1821
|
+
getPopupContainer?: ((triggerNode?: HTMLElement | undefined) => HTMLElement) | undefined;
|
|
1822
|
+
} & {
|
|
1823
|
+
theme?: import('ant-design-vue/es/config-provider').Theme | undefined;
|
|
1824
|
+
}) => void;
|
|
1825
|
+
};
|
|
527
1826
|
}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
528
1827
|
export default _default;
|