@deot/vc-components 1.0.63 → 1.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/dist/index.cjs +1381 -339
- package/dist/index.d.ts +386 -101
- package/dist/index.iife.js +1443 -401
- package/dist/index.js +1383 -343
- package/dist/index.style.css +2 -2
- package/dist/index.umd.cjs +1443 -401
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -370,17 +370,146 @@ padding: number;
|
|
|
370
370
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
371
371
|
|
|
372
372
|
export declare const Carousel: DefineComponent<ExtractPropTypes< {
|
|
373
|
-
|
|
373
|
+
t: {
|
|
374
|
+
type: NumberConstructor;
|
|
375
|
+
default: number;
|
|
376
|
+
};
|
|
377
|
+
card: BooleanConstructor;
|
|
378
|
+
gutter: {
|
|
379
|
+
type: NumberConstructor;
|
|
380
|
+
default: number;
|
|
381
|
+
};
|
|
382
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
383
|
+
initialIndex: {
|
|
384
|
+
type: NumberConstructor;
|
|
385
|
+
default: number;
|
|
386
|
+
};
|
|
387
|
+
trigger: {
|
|
374
388
|
type: StringConstructor;
|
|
375
389
|
default: string;
|
|
376
390
|
};
|
|
391
|
+
autoplay: {
|
|
392
|
+
type: BooleanConstructor;
|
|
393
|
+
default: boolean;
|
|
394
|
+
};
|
|
395
|
+
dots: {
|
|
396
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
397
|
+
default: string;
|
|
398
|
+
};
|
|
399
|
+
arrow: {
|
|
400
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
401
|
+
default: string;
|
|
402
|
+
};
|
|
403
|
+
loop: {
|
|
404
|
+
type: BooleanConstructor;
|
|
405
|
+
default: boolean;
|
|
406
|
+
};
|
|
407
|
+
vertical: {
|
|
408
|
+
type: BooleanConstructor;
|
|
409
|
+
default: boolean;
|
|
410
|
+
};
|
|
411
|
+
draggable: {
|
|
412
|
+
type: BooleanConstructor;
|
|
413
|
+
default: boolean;
|
|
414
|
+
};
|
|
377
415
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
378
|
-
|
|
416
|
+
t: {
|
|
417
|
+
type: NumberConstructor;
|
|
418
|
+
default: number;
|
|
419
|
+
};
|
|
420
|
+
card: BooleanConstructor;
|
|
421
|
+
gutter: {
|
|
422
|
+
type: NumberConstructor;
|
|
423
|
+
default: number;
|
|
424
|
+
};
|
|
425
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
426
|
+
initialIndex: {
|
|
427
|
+
type: NumberConstructor;
|
|
428
|
+
default: number;
|
|
429
|
+
};
|
|
430
|
+
trigger: {
|
|
379
431
|
type: StringConstructor;
|
|
380
432
|
default: string;
|
|
381
433
|
};
|
|
434
|
+
autoplay: {
|
|
435
|
+
type: BooleanConstructor;
|
|
436
|
+
default: boolean;
|
|
437
|
+
};
|
|
438
|
+
dots: {
|
|
439
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
440
|
+
default: string;
|
|
441
|
+
};
|
|
442
|
+
arrow: {
|
|
443
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
444
|
+
default: string;
|
|
445
|
+
};
|
|
446
|
+
loop: {
|
|
447
|
+
type: BooleanConstructor;
|
|
448
|
+
default: boolean;
|
|
449
|
+
};
|
|
450
|
+
vertical: {
|
|
451
|
+
type: BooleanConstructor;
|
|
452
|
+
default: boolean;
|
|
453
|
+
};
|
|
454
|
+
draggable: {
|
|
455
|
+
type: BooleanConstructor;
|
|
456
|
+
default: boolean;
|
|
457
|
+
};
|
|
382
458
|
}>> & Readonly<{}>, {
|
|
383
|
-
|
|
459
|
+
vertical: boolean;
|
|
460
|
+
t: number;
|
|
461
|
+
card: boolean;
|
|
462
|
+
gutter: number;
|
|
463
|
+
initialIndex: number;
|
|
464
|
+
trigger: string;
|
|
465
|
+
autoplay: boolean;
|
|
466
|
+
dots: string | boolean;
|
|
467
|
+
arrow: string | boolean;
|
|
468
|
+
loop: boolean;
|
|
469
|
+
draggable: boolean;
|
|
470
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
471
|
+
|
|
472
|
+
export declare const CarouselItem: DefineComponent<ExtractPropTypes< {
|
|
473
|
+
name: StringConstructor;
|
|
474
|
+
label: {
|
|
475
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
476
|
+
default: string;
|
|
477
|
+
};
|
|
478
|
+
width: {
|
|
479
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
480
|
+
default: string;
|
|
481
|
+
};
|
|
482
|
+
gutter: {
|
|
483
|
+
type: NumberConstructor;
|
|
484
|
+
default: number;
|
|
485
|
+
};
|
|
486
|
+
scale: {
|
|
487
|
+
type: NumberConstructor;
|
|
488
|
+
default: number;
|
|
489
|
+
};
|
|
490
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
491
|
+
name: StringConstructor;
|
|
492
|
+
label: {
|
|
493
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
494
|
+
default: string;
|
|
495
|
+
};
|
|
496
|
+
width: {
|
|
497
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
498
|
+
default: string;
|
|
499
|
+
};
|
|
500
|
+
gutter: {
|
|
501
|
+
type: NumberConstructor;
|
|
502
|
+
default: number;
|
|
503
|
+
};
|
|
504
|
+
scale: {
|
|
505
|
+
type: NumberConstructor;
|
|
506
|
+
default: number;
|
|
507
|
+
};
|
|
508
|
+
}>> & Readonly<{}>, {
|
|
509
|
+
label: string | number;
|
|
510
|
+
width: string | number;
|
|
511
|
+
gutter: number;
|
|
512
|
+
scale: number;
|
|
384
513
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
385
514
|
|
|
386
515
|
export declare const Cascader: DefineComponent<ExtractPropTypes< {
|
|
@@ -567,15 +696,15 @@ data: TreeData[];
|
|
|
567
696
|
placement: string;
|
|
568
697
|
disabled: boolean;
|
|
569
698
|
extra: string;
|
|
699
|
+
trigger: string;
|
|
700
|
+
arrow: boolean;
|
|
570
701
|
numerable: boolean;
|
|
571
702
|
separator: string;
|
|
572
703
|
max: number;
|
|
573
704
|
nullValue: string | number | Record<string, any>;
|
|
574
705
|
clearable: boolean;
|
|
575
706
|
portal: boolean;
|
|
576
|
-
arrow: boolean;
|
|
577
707
|
autoWidth: boolean;
|
|
578
|
-
trigger: string;
|
|
579
708
|
searchPlaceholder: string;
|
|
580
709
|
searchable: boolean;
|
|
581
710
|
format: Function;
|
|
@@ -908,8 +1037,8 @@ onComplete?: ((...args: any[]) => any) | undefined;
|
|
|
908
1037
|
}>, {
|
|
909
1038
|
tag: string;
|
|
910
1039
|
trim: boolean;
|
|
911
|
-
format: string;
|
|
912
1040
|
t: number;
|
|
1041
|
+
format: string;
|
|
913
1042
|
targetTime: string | number | Date;
|
|
914
1043
|
serverTime: string | number | Date;
|
|
915
1044
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1190,14 +1319,14 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
1190
1319
|
tag: string;
|
|
1191
1320
|
placement: string;
|
|
1192
1321
|
disabled: boolean;
|
|
1322
|
+
trigger: string;
|
|
1323
|
+
arrow: boolean;
|
|
1193
1324
|
separator: string;
|
|
1194
1325
|
nullValue: string | number | Record<string, any>;
|
|
1195
1326
|
clearable: boolean;
|
|
1196
1327
|
open: boolean;
|
|
1197
1328
|
multiple: boolean;
|
|
1198
1329
|
portal: boolean;
|
|
1199
|
-
arrow: boolean;
|
|
1200
|
-
trigger: string;
|
|
1201
1330
|
changeOnSelect: boolean;
|
|
1202
1331
|
confirm: boolean;
|
|
1203
1332
|
splitPanels: boolean;
|
|
@@ -1754,8 +1883,8 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
1754
1883
|
}>, {
|
|
1755
1884
|
modelValue: boolean;
|
|
1756
1885
|
placement: string;
|
|
1757
|
-
arrow: boolean;
|
|
1758
1886
|
trigger: string;
|
|
1887
|
+
arrow: boolean;
|
|
1759
1888
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1760
1889
|
|
|
1761
1890
|
export declare const DropdownItem: DefineComponent<ExtractPropTypes< {
|
|
@@ -2441,6 +2570,10 @@ onClear?: ((...args: any[]) => any) | undefined;
|
|
|
2441
2570
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
2442
2571
|
}>, {
|
|
2443
2572
|
disabled: boolean;
|
|
2573
|
+
indicator: boolean | {
|
|
2574
|
+
inline: boolean;
|
|
2575
|
+
inverted: boolean;
|
|
2576
|
+
};
|
|
2444
2577
|
focusEnd: boolean;
|
|
2445
2578
|
clearable: boolean;
|
|
2446
2579
|
afloat: boolean;
|
|
@@ -2448,10 +2581,6 @@ allowDispatch: boolean;
|
|
|
2448
2581
|
bytes: boolean;
|
|
2449
2582
|
styleless: boolean;
|
|
2450
2583
|
controllable: boolean;
|
|
2451
|
-
indicator: boolean | {
|
|
2452
|
-
inline: boolean;
|
|
2453
|
-
inverted: boolean;
|
|
2454
|
-
};
|
|
2455
2584
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2456
2585
|
|
|
2457
2586
|
export declare const InputNumber: DefineComponent<ExtractPropTypes< {
|
|
@@ -2964,9 +3093,9 @@ type: BooleanConstructor;
|
|
|
2964
3093
|
default: boolean;
|
|
2965
3094
|
};
|
|
2966
3095
|
}>> & Readonly<{}>, {
|
|
3096
|
+
autoplay: boolean;
|
|
2967
3097
|
speed: number;
|
|
2968
3098
|
animated: boolean;
|
|
2969
|
-
autoplay: boolean;
|
|
2970
3099
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2971
3100
|
|
|
2972
3101
|
export declare const MArtboard: DefineComponent<ExtractPropTypes< {
|
|
@@ -3168,17 +3297,155 @@ padding: number;
|
|
|
3168
3297
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3169
3298
|
|
|
3170
3299
|
export declare const MCarousel: DefineComponent<ExtractPropTypes< {
|
|
3171
|
-
|
|
3300
|
+
dots: {
|
|
3301
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3302
|
+
default: boolean;
|
|
3303
|
+
};
|
|
3304
|
+
indicator: {
|
|
3305
|
+
type: BooleanConstructor;
|
|
3306
|
+
default: boolean;
|
|
3307
|
+
};
|
|
3308
|
+
t: {
|
|
3309
|
+
type: NumberConstructor;
|
|
3310
|
+
default: number;
|
|
3311
|
+
};
|
|
3312
|
+
card: BooleanConstructor;
|
|
3313
|
+
gutter: {
|
|
3314
|
+
type: NumberConstructor;
|
|
3315
|
+
default: number;
|
|
3316
|
+
};
|
|
3317
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
3318
|
+
initialIndex: {
|
|
3319
|
+
type: NumberConstructor;
|
|
3320
|
+
default: number;
|
|
3321
|
+
};
|
|
3322
|
+
trigger: {
|
|
3172
3323
|
type: StringConstructor;
|
|
3173
3324
|
default: string;
|
|
3174
3325
|
};
|
|
3326
|
+
autoplay: {
|
|
3327
|
+
type: BooleanConstructor;
|
|
3328
|
+
default: boolean;
|
|
3329
|
+
};
|
|
3330
|
+
arrow: {
|
|
3331
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3332
|
+
default: string;
|
|
3333
|
+
};
|
|
3334
|
+
loop: {
|
|
3335
|
+
type: BooleanConstructor;
|
|
3336
|
+
default: boolean;
|
|
3337
|
+
};
|
|
3338
|
+
vertical: {
|
|
3339
|
+
type: BooleanConstructor;
|
|
3340
|
+
default: boolean;
|
|
3341
|
+
};
|
|
3342
|
+
draggable: {
|
|
3343
|
+
type: BooleanConstructor;
|
|
3344
|
+
default: boolean;
|
|
3345
|
+
};
|
|
3175
3346
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3176
|
-
|
|
3347
|
+
dots: {
|
|
3348
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3349
|
+
default: boolean;
|
|
3350
|
+
};
|
|
3351
|
+
indicator: {
|
|
3352
|
+
type: BooleanConstructor;
|
|
3353
|
+
default: boolean;
|
|
3354
|
+
};
|
|
3355
|
+
t: {
|
|
3356
|
+
type: NumberConstructor;
|
|
3357
|
+
default: number;
|
|
3358
|
+
};
|
|
3359
|
+
card: BooleanConstructor;
|
|
3360
|
+
gutter: {
|
|
3361
|
+
type: NumberConstructor;
|
|
3362
|
+
default: number;
|
|
3363
|
+
};
|
|
3364
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
3365
|
+
initialIndex: {
|
|
3366
|
+
type: NumberConstructor;
|
|
3367
|
+
default: number;
|
|
3368
|
+
};
|
|
3369
|
+
trigger: {
|
|
3177
3370
|
type: StringConstructor;
|
|
3178
3371
|
default: string;
|
|
3179
3372
|
};
|
|
3373
|
+
autoplay: {
|
|
3374
|
+
type: BooleanConstructor;
|
|
3375
|
+
default: boolean;
|
|
3376
|
+
};
|
|
3377
|
+
arrow: {
|
|
3378
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
3379
|
+
default: string;
|
|
3380
|
+
};
|
|
3381
|
+
loop: {
|
|
3382
|
+
type: BooleanConstructor;
|
|
3383
|
+
default: boolean;
|
|
3384
|
+
};
|
|
3385
|
+
vertical: {
|
|
3386
|
+
type: BooleanConstructor;
|
|
3387
|
+
default: boolean;
|
|
3388
|
+
};
|
|
3389
|
+
draggable: {
|
|
3390
|
+
type: BooleanConstructor;
|
|
3391
|
+
default: boolean;
|
|
3392
|
+
};
|
|
3180
3393
|
}>> & Readonly<{}>, {
|
|
3181
|
-
|
|
3394
|
+
vertical: boolean;
|
|
3395
|
+
t: number;
|
|
3396
|
+
card: boolean;
|
|
3397
|
+
gutter: number;
|
|
3398
|
+
initialIndex: number;
|
|
3399
|
+
trigger: string;
|
|
3400
|
+
autoplay: boolean;
|
|
3401
|
+
dots: string | boolean;
|
|
3402
|
+
arrow: string | boolean;
|
|
3403
|
+
loop: boolean;
|
|
3404
|
+
draggable: boolean;
|
|
3405
|
+
indicator: boolean;
|
|
3406
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3407
|
+
|
|
3408
|
+
export declare const MCarouselItem: DefineComponent<ExtractPropTypes< {
|
|
3409
|
+
name: StringConstructor;
|
|
3410
|
+
label: {
|
|
3411
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3412
|
+
default: string;
|
|
3413
|
+
};
|
|
3414
|
+
width: {
|
|
3415
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3416
|
+
default: string;
|
|
3417
|
+
};
|
|
3418
|
+
gutter: {
|
|
3419
|
+
type: NumberConstructor;
|
|
3420
|
+
default: number;
|
|
3421
|
+
};
|
|
3422
|
+
scale: {
|
|
3423
|
+
type: NumberConstructor;
|
|
3424
|
+
default: number;
|
|
3425
|
+
};
|
|
3426
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
3427
|
+
name: StringConstructor;
|
|
3428
|
+
label: {
|
|
3429
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3430
|
+
default: string;
|
|
3431
|
+
};
|
|
3432
|
+
width: {
|
|
3433
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3434
|
+
default: string;
|
|
3435
|
+
};
|
|
3436
|
+
gutter: {
|
|
3437
|
+
type: NumberConstructor;
|
|
3438
|
+
default: number;
|
|
3439
|
+
};
|
|
3440
|
+
scale: {
|
|
3441
|
+
type: NumberConstructor;
|
|
3442
|
+
default: number;
|
|
3443
|
+
};
|
|
3444
|
+
}>> & Readonly<{}>, {
|
|
3445
|
+
label: string | number;
|
|
3446
|
+
width: string | number;
|
|
3447
|
+
gutter: number;
|
|
3448
|
+
scale: number;
|
|
3182
3449
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3183
3450
|
|
|
3184
3451
|
export declare const MCascader: DefineComponent<ExtractPropTypes< {
|
|
@@ -3365,15 +3632,15 @@ data: TreeData[];
|
|
|
3365
3632
|
placement: string;
|
|
3366
3633
|
disabled: boolean;
|
|
3367
3634
|
extra: string;
|
|
3635
|
+
trigger: string;
|
|
3636
|
+
arrow: boolean;
|
|
3368
3637
|
numerable: boolean;
|
|
3369
3638
|
separator: string;
|
|
3370
3639
|
max: number;
|
|
3371
3640
|
nullValue: string | number | Record<string, any>;
|
|
3372
3641
|
clearable: boolean;
|
|
3373
3642
|
portal: boolean;
|
|
3374
|
-
arrow: boolean;
|
|
3375
3643
|
autoWidth: boolean;
|
|
3376
|
-
trigger: string;
|
|
3377
3644
|
searchPlaceholder: string;
|
|
3378
3645
|
searchable: boolean;
|
|
3379
3646
|
format: Function;
|
|
@@ -3705,8 +3972,8 @@ onComplete?: ((...args: any[]) => any) | undefined;
|
|
|
3705
3972
|
}>, {
|
|
3706
3973
|
tag: string;
|
|
3707
3974
|
trim: boolean;
|
|
3708
|
-
format: string;
|
|
3709
3975
|
t: number;
|
|
3976
|
+
format: string;
|
|
3710
3977
|
targetTime: string | number | Date;
|
|
3711
3978
|
serverTime: string | number | Date;
|
|
3712
3979
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3987,14 +4254,14 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
3987
4254
|
tag: string;
|
|
3988
4255
|
placement: string;
|
|
3989
4256
|
disabled: boolean;
|
|
4257
|
+
trigger: string;
|
|
4258
|
+
arrow: boolean;
|
|
3990
4259
|
separator: string;
|
|
3991
4260
|
nullValue: string | number | Record<string, any>;
|
|
3992
4261
|
clearable: boolean;
|
|
3993
4262
|
open: boolean;
|
|
3994
4263
|
multiple: boolean;
|
|
3995
4264
|
portal: boolean;
|
|
3996
|
-
arrow: boolean;
|
|
3997
|
-
trigger: string;
|
|
3998
4265
|
changeOnSelect: boolean;
|
|
3999
4266
|
confirm: boolean;
|
|
4000
4267
|
splitPanels: boolean;
|
|
@@ -4537,8 +4804,8 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
4537
4804
|
}>, {
|
|
4538
4805
|
modelValue: boolean;
|
|
4539
4806
|
placement: string;
|
|
4540
|
-
arrow: boolean;
|
|
4541
4807
|
trigger: string;
|
|
4808
|
+
arrow: boolean;
|
|
4542
4809
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4543
4810
|
|
|
4544
4811
|
export declare const MDropdownItem: DefineComponent<ExtractPropTypes< {
|
|
@@ -5452,6 +5719,7 @@ onClear?: ((...args: any[]) => any) | undefined;
|
|
|
5452
5719
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
5453
5720
|
}>, {
|
|
5454
5721
|
disabled: boolean;
|
|
5722
|
+
right: boolean;
|
|
5455
5723
|
focusEnd: boolean;
|
|
5456
5724
|
clearable: boolean;
|
|
5457
5725
|
afloat: boolean;
|
|
@@ -5459,7 +5727,6 @@ allowDispatch: boolean;
|
|
|
5459
5727
|
bytes: boolean;
|
|
5460
5728
|
styleless: boolean;
|
|
5461
5729
|
controllable: boolean;
|
|
5462
|
-
right: boolean;
|
|
5463
5730
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5464
5731
|
|
|
5465
5732
|
export declare const MInputNumber: DefineComponent<ExtractPropTypes< {
|
|
@@ -5857,8 +6124,8 @@ alone: BooleanConstructor;
|
|
|
5857
6124
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
5858
6125
|
}>, {
|
|
5859
6126
|
tag: string;
|
|
5860
|
-
multiple: boolean;
|
|
5861
6127
|
arrow: string | boolean;
|
|
6128
|
+
multiple: boolean;
|
|
5862
6129
|
alone: boolean;
|
|
5863
6130
|
labelWidth: string | number;
|
|
5864
6131
|
indent: number;
|
|
@@ -5895,9 +6162,9 @@ type: BooleanConstructor;
|
|
|
5895
6162
|
default: boolean;
|
|
5896
6163
|
};
|
|
5897
6164
|
}>> & Readonly<{}>, {
|
|
6165
|
+
autoplay: boolean;
|
|
5898
6166
|
speed: number;
|
|
5899
6167
|
animated: boolean;
|
|
5900
|
-
autoplay: boolean;
|
|
5901
6168
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5902
6169
|
|
|
5903
6170
|
export declare const MMessage: {
|
|
@@ -6761,6 +7028,7 @@ export declare const Modal: {
|
|
|
6761
7028
|
modelValue: boolean;
|
|
6762
7029
|
closable: boolean;
|
|
6763
7030
|
border: boolean;
|
|
7031
|
+
draggable: boolean;
|
|
6764
7032
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6765
7033
|
maskClosable: boolean;
|
|
6766
7034
|
scrollable: boolean;
|
|
@@ -6770,7 +7038,6 @@ export declare const Modal: {
|
|
|
6770
7038
|
okDisabled: boolean;
|
|
6771
7039
|
cancelDisabled: boolean;
|
|
6772
7040
|
escClosable: boolean;
|
|
6773
|
-
draggable: boolean;
|
|
6774
7041
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6775
7042
|
P: {};
|
|
6776
7043
|
B: {};
|
|
@@ -6881,6 +7148,7 @@ export declare const Modal: {
|
|
|
6881
7148
|
modelValue: boolean;
|
|
6882
7149
|
closable: boolean;
|
|
6883
7150
|
border: boolean;
|
|
7151
|
+
draggable: boolean;
|
|
6884
7152
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6885
7153
|
maskClosable: boolean;
|
|
6886
7154
|
scrollable: boolean;
|
|
@@ -6890,7 +7158,6 @@ export declare const Modal: {
|
|
|
6890
7158
|
okDisabled: boolean;
|
|
6891
7159
|
cancelDisabled: boolean;
|
|
6892
7160
|
escClosable: boolean;
|
|
6893
|
-
draggable: boolean;
|
|
6894
7161
|
}>;
|
|
6895
7162
|
__isFragment?: never;
|
|
6896
7163
|
__isTeleport?: never;
|
|
@@ -6998,6 +7265,7 @@ mask: boolean;
|
|
|
6998
7265
|
modelValue: boolean;
|
|
6999
7266
|
closable: boolean;
|
|
7000
7267
|
border: boolean;
|
|
7268
|
+
draggable: boolean;
|
|
7001
7269
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7002
7270
|
maskClosable: boolean;
|
|
7003
7271
|
scrollable: boolean;
|
|
@@ -7007,7 +7275,6 @@ cancelText: string | boolean;
|
|
|
7007
7275
|
okDisabled: boolean;
|
|
7008
7276
|
cancelDisabled: boolean;
|
|
7009
7277
|
escClosable: boolean;
|
|
7010
|
-
draggable: boolean;
|
|
7011
7278
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
7012
7279
|
destroy: () => void;
|
|
7013
7280
|
info: (options: Options_3) => PortalLeaf;
|
|
@@ -7208,6 +7475,7 @@ mask: boolean;
|
|
|
7208
7475
|
modelValue: boolean;
|
|
7209
7476
|
closable: boolean;
|
|
7210
7477
|
border: boolean;
|
|
7478
|
+
draggable: boolean;
|
|
7211
7479
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7212
7480
|
maskClosable: boolean;
|
|
7213
7481
|
scrollable: boolean;
|
|
@@ -7217,7 +7485,6 @@ cancelText: string | boolean;
|
|
|
7217
7485
|
okDisabled: boolean;
|
|
7218
7486
|
cancelDisabled: boolean;
|
|
7219
7487
|
escClosable: boolean;
|
|
7220
|
-
draggable: boolean;
|
|
7221
7488
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
7222
7489
|
|
|
7223
7490
|
export declare const MOption: DefineComponent<ExtractPropTypes< {
|
|
@@ -7438,8 +7705,8 @@ title: string | ((props: Record<string, unknown>, context: SetupContext) => any)
|
|
|
7438
7705
|
modelValue: boolean;
|
|
7439
7706
|
placement: string;
|
|
7440
7707
|
type: string;
|
|
7441
|
-
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7442
7708
|
trigger: string;
|
|
7709
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7443
7710
|
okText: string;
|
|
7444
7711
|
cancelText: string;
|
|
7445
7712
|
okType: string;
|
|
@@ -7454,6 +7721,10 @@ export declare const MPopover: {
|
|
|
7454
7721
|
default: string;
|
|
7455
7722
|
validator: (value: string) => boolean;
|
|
7456
7723
|
};
|
|
7724
|
+
arrow: {
|
|
7725
|
+
type: BooleanConstructor;
|
|
7726
|
+
default: boolean;
|
|
7727
|
+
};
|
|
7457
7728
|
always: BooleanConstructor;
|
|
7458
7729
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7459
7730
|
animation: StringConstructor;
|
|
@@ -7467,10 +7738,6 @@ export declare const MPopover: {
|
|
|
7467
7738
|
type: BooleanConstructor;
|
|
7468
7739
|
default: boolean;
|
|
7469
7740
|
};
|
|
7470
|
-
arrow: {
|
|
7471
|
-
type: BooleanConstructor;
|
|
7472
|
-
default: boolean;
|
|
7473
|
-
};
|
|
7474
7741
|
autoWidth: {
|
|
7475
7742
|
type: BooleanConstructor;
|
|
7476
7743
|
default: boolean;
|
|
@@ -7506,12 +7773,12 @@ export declare const MPopover: {
|
|
|
7506
7773
|
modelValue: boolean;
|
|
7507
7774
|
placement: string;
|
|
7508
7775
|
disabled: boolean;
|
|
7776
|
+
trigger: string;
|
|
7777
|
+
arrow: boolean;
|
|
7509
7778
|
always: boolean;
|
|
7510
7779
|
theme: string;
|
|
7511
7780
|
portal: boolean;
|
|
7512
|
-
arrow: boolean;
|
|
7513
7781
|
autoWidth: boolean;
|
|
7514
|
-
trigger: string;
|
|
7515
7782
|
outsideClickable: boolean;
|
|
7516
7783
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
7517
7784
|
P: {};
|
|
@@ -7527,6 +7794,10 @@ export declare const MPopover: {
|
|
|
7527
7794
|
default: string;
|
|
7528
7795
|
validator: (value: string) => boolean;
|
|
7529
7796
|
};
|
|
7797
|
+
arrow: {
|
|
7798
|
+
type: BooleanConstructor;
|
|
7799
|
+
default: boolean;
|
|
7800
|
+
};
|
|
7530
7801
|
always: BooleanConstructor;
|
|
7531
7802
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7532
7803
|
animation: StringConstructor;
|
|
@@ -7540,10 +7811,6 @@ export declare const MPopover: {
|
|
|
7540
7811
|
type: BooleanConstructor;
|
|
7541
7812
|
default: boolean;
|
|
7542
7813
|
};
|
|
7543
|
-
arrow: {
|
|
7544
|
-
type: BooleanConstructor;
|
|
7545
|
-
default: boolean;
|
|
7546
|
-
};
|
|
7547
7814
|
autoWidth: {
|
|
7548
7815
|
type: BooleanConstructor;
|
|
7549
7816
|
default: boolean;
|
|
@@ -7579,12 +7846,12 @@ export declare const MPopover: {
|
|
|
7579
7846
|
modelValue: boolean;
|
|
7580
7847
|
placement: string;
|
|
7581
7848
|
disabled: boolean;
|
|
7849
|
+
trigger: string;
|
|
7850
|
+
arrow: boolean;
|
|
7582
7851
|
always: boolean;
|
|
7583
7852
|
theme: string;
|
|
7584
7853
|
portal: boolean;
|
|
7585
|
-
arrow: boolean;
|
|
7586
7854
|
autoWidth: boolean;
|
|
7587
|
-
trigger: string;
|
|
7588
7855
|
outsideClickable: boolean;
|
|
7589
7856
|
}>;
|
|
7590
7857
|
__isFragment?: never;
|
|
@@ -7597,6 +7864,10 @@ type: StringConstructor;
|
|
|
7597
7864
|
default: string;
|
|
7598
7865
|
validator: (value: string) => boolean;
|
|
7599
7866
|
};
|
|
7867
|
+
arrow: {
|
|
7868
|
+
type: BooleanConstructor;
|
|
7869
|
+
default: boolean;
|
|
7870
|
+
};
|
|
7600
7871
|
always: BooleanConstructor;
|
|
7601
7872
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7602
7873
|
animation: StringConstructor;
|
|
@@ -7610,10 +7881,6 @@ portal: {
|
|
|
7610
7881
|
type: BooleanConstructor;
|
|
7611
7882
|
default: boolean;
|
|
7612
7883
|
};
|
|
7613
|
-
arrow: {
|
|
7614
|
-
type: BooleanConstructor;
|
|
7615
|
-
default: boolean;
|
|
7616
|
-
};
|
|
7617
7884
|
autoWidth: {
|
|
7618
7885
|
type: BooleanConstructor;
|
|
7619
7886
|
default: boolean;
|
|
@@ -7649,12 +7916,12 @@ tag: string;
|
|
|
7649
7916
|
modelValue: boolean;
|
|
7650
7917
|
placement: string;
|
|
7651
7918
|
disabled: boolean;
|
|
7919
|
+
trigger: string;
|
|
7920
|
+
arrow: boolean;
|
|
7652
7921
|
always: boolean;
|
|
7653
7922
|
theme: string;
|
|
7654
7923
|
portal: boolean;
|
|
7655
|
-
arrow: boolean;
|
|
7656
7924
|
autoWidth: boolean;
|
|
7657
|
-
trigger: string;
|
|
7658
7925
|
outsideClickable: boolean;
|
|
7659
7926
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
7660
7927
|
open: {
|
|
@@ -8277,10 +8544,10 @@ data: unknown[];
|
|
|
8277
8544
|
disabled: boolean;
|
|
8278
8545
|
offset: number;
|
|
8279
8546
|
vertical: boolean;
|
|
8547
|
+
gutter: number;
|
|
8280
8548
|
loadData: Function;
|
|
8281
8549
|
pageSize: number;
|
|
8282
8550
|
cols: number;
|
|
8283
|
-
gutter: number;
|
|
8284
8551
|
inverted: boolean;
|
|
8285
8552
|
pullable: boolean;
|
|
8286
8553
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -8624,15 +8891,15 @@ data: unknown[];
|
|
|
8624
8891
|
placement: string;
|
|
8625
8892
|
disabled: boolean;
|
|
8626
8893
|
extra: string;
|
|
8894
|
+
trigger: string;
|
|
8895
|
+
arrow: boolean;
|
|
8627
8896
|
numerable: boolean;
|
|
8628
8897
|
separator: string;
|
|
8629
8898
|
max: number;
|
|
8630
8899
|
nullValue: string | number | Record<string, any>;
|
|
8631
8900
|
clearable: boolean;
|
|
8632
8901
|
portal: boolean;
|
|
8633
|
-
arrow: boolean;
|
|
8634
8902
|
autoWidth: boolean;
|
|
8635
|
-
trigger: string;
|
|
8636
8903
|
searchPlaceholder: string;
|
|
8637
8904
|
searchable: boolean;
|
|
8638
8905
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -9752,14 +10019,14 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
9752
10019
|
tag: string;
|
|
9753
10020
|
placement: string;
|
|
9754
10021
|
disabled: boolean;
|
|
10022
|
+
trigger: string;
|
|
10023
|
+
arrow: boolean;
|
|
9755
10024
|
separator: string;
|
|
9756
10025
|
nullValue: string | number | Record<string, any>;
|
|
9757
10026
|
clearable: boolean;
|
|
9758
10027
|
open: boolean;
|
|
9759
10028
|
multiple: boolean;
|
|
9760
10029
|
portal: boolean;
|
|
9761
|
-
arrow: boolean;
|
|
9762
|
-
trigger: string;
|
|
9763
10030
|
changeOnSelect: boolean;
|
|
9764
10031
|
confirm: boolean;
|
|
9765
10032
|
splitPanels: boolean;
|
|
@@ -10594,6 +10861,7 @@ onCheck?: ((...args: any[]) => any) | undefined;
|
|
|
10594
10861
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
10595
10862
|
}>, {
|
|
10596
10863
|
data: unknown[];
|
|
10864
|
+
draggable: boolean;
|
|
10597
10865
|
numerable: boolean;
|
|
10598
10866
|
separator: string;
|
|
10599
10867
|
max: number;
|
|
@@ -10602,7 +10870,6 @@ allowDispatch: boolean;
|
|
|
10602
10870
|
accordion: boolean;
|
|
10603
10871
|
indent: number;
|
|
10604
10872
|
lazy: boolean;
|
|
10605
|
-
draggable: boolean;
|
|
10606
10873
|
defaultExpandAll: boolean;
|
|
10607
10874
|
emptyText: string;
|
|
10608
10875
|
keyValue: {
|
|
@@ -10624,6 +10891,14 @@ highlightCurrent: boolean;
|
|
|
10624
10891
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10625
10892
|
|
|
10626
10893
|
export declare const MTreeSelect: DefineComponent<ExtractPropTypes< {
|
|
10894
|
+
autoWidth: {
|
|
10895
|
+
type: BooleanConstructor;
|
|
10896
|
+
default: undefined;
|
|
10897
|
+
};
|
|
10898
|
+
cascader: {
|
|
10899
|
+
type: BooleanConstructor;
|
|
10900
|
+
default: boolean;
|
|
10901
|
+
};
|
|
10627
10902
|
data: {
|
|
10628
10903
|
type: ArrayConstructor;
|
|
10629
10904
|
default: () => never[];
|
|
@@ -10660,10 +10935,6 @@ arrow: {
|
|
|
10660
10935
|
type: BooleanConstructor;
|
|
10661
10936
|
default: boolean;
|
|
10662
10937
|
};
|
|
10663
|
-
autoWidth: {
|
|
10664
|
-
type: BooleanConstructor;
|
|
10665
|
-
default: boolean;
|
|
10666
|
-
};
|
|
10667
10938
|
maxTags: NumberConstructor;
|
|
10668
10939
|
searchable: {
|
|
10669
10940
|
type: BooleanConstructor;
|
|
@@ -10707,6 +10978,14 @@ default: boolean;
|
|
|
10707
10978
|
};
|
|
10708
10979
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
10709
10980
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
10981
|
+
autoWidth: {
|
|
10982
|
+
type: BooleanConstructor;
|
|
10983
|
+
default: undefined;
|
|
10984
|
+
};
|
|
10985
|
+
cascader: {
|
|
10986
|
+
type: BooleanConstructor;
|
|
10987
|
+
default: boolean;
|
|
10988
|
+
};
|
|
10710
10989
|
data: {
|
|
10711
10990
|
type: ArrayConstructor;
|
|
10712
10991
|
default: () => never[];
|
|
@@ -10743,10 +11022,6 @@ arrow: {
|
|
|
10743
11022
|
type: BooleanConstructor;
|
|
10744
11023
|
default: boolean;
|
|
10745
11024
|
};
|
|
10746
|
-
autoWidth: {
|
|
10747
|
-
type: BooleanConstructor;
|
|
10748
|
-
default: boolean;
|
|
10749
|
-
};
|
|
10750
11025
|
maxTags: NumberConstructor;
|
|
10751
11026
|
searchable: {
|
|
10752
11027
|
type: BooleanConstructor;
|
|
@@ -10802,17 +11077,18 @@ data: unknown[];
|
|
|
10802
11077
|
placement: string;
|
|
10803
11078
|
disabled: boolean;
|
|
10804
11079
|
extra: string;
|
|
11080
|
+
trigger: string;
|
|
11081
|
+
arrow: boolean;
|
|
10805
11082
|
numerable: boolean;
|
|
10806
11083
|
separator: string;
|
|
10807
11084
|
max: number;
|
|
10808
11085
|
nullValue: string | number | Record<string, any>;
|
|
10809
11086
|
clearable: boolean;
|
|
10810
11087
|
portal: boolean;
|
|
10811
|
-
arrow: boolean;
|
|
10812
11088
|
autoWidth: boolean;
|
|
10813
|
-
trigger: string;
|
|
10814
11089
|
searchPlaceholder: string;
|
|
10815
11090
|
searchable: boolean;
|
|
11091
|
+
cascader: boolean;
|
|
10816
11092
|
checkStrictly: boolean;
|
|
10817
11093
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10818
11094
|
|
|
@@ -11676,8 +11952,8 @@ title: string | ((props: Record<string, unknown>, context: SetupContext) => any)
|
|
|
11676
11952
|
modelValue: boolean;
|
|
11677
11953
|
placement: string;
|
|
11678
11954
|
type: string;
|
|
11679
|
-
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11680
11955
|
trigger: string;
|
|
11956
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11681
11957
|
okText: string;
|
|
11682
11958
|
cancelText: string;
|
|
11683
11959
|
okType: string;
|
|
@@ -11692,6 +11968,10 @@ export declare const Popover: {
|
|
|
11692
11968
|
default: string;
|
|
11693
11969
|
validator: (value: string) => boolean;
|
|
11694
11970
|
};
|
|
11971
|
+
arrow: {
|
|
11972
|
+
type: BooleanConstructor;
|
|
11973
|
+
default: boolean;
|
|
11974
|
+
};
|
|
11695
11975
|
always: BooleanConstructor;
|
|
11696
11976
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11697
11977
|
animation: StringConstructor;
|
|
@@ -11705,10 +11985,6 @@ export declare const Popover: {
|
|
|
11705
11985
|
type: BooleanConstructor;
|
|
11706
11986
|
default: boolean;
|
|
11707
11987
|
};
|
|
11708
|
-
arrow: {
|
|
11709
|
-
type: BooleanConstructor;
|
|
11710
|
-
default: boolean;
|
|
11711
|
-
};
|
|
11712
11988
|
autoWidth: {
|
|
11713
11989
|
type: BooleanConstructor;
|
|
11714
11990
|
default: boolean;
|
|
@@ -11744,12 +12020,12 @@ export declare const Popover: {
|
|
|
11744
12020
|
modelValue: boolean;
|
|
11745
12021
|
placement: string;
|
|
11746
12022
|
disabled: boolean;
|
|
12023
|
+
trigger: string;
|
|
12024
|
+
arrow: boolean;
|
|
11747
12025
|
always: boolean;
|
|
11748
12026
|
theme: string;
|
|
11749
12027
|
portal: boolean;
|
|
11750
|
-
arrow: boolean;
|
|
11751
12028
|
autoWidth: boolean;
|
|
11752
|
-
trigger: string;
|
|
11753
12029
|
outsideClickable: boolean;
|
|
11754
12030
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
11755
12031
|
P: {};
|
|
@@ -11765,6 +12041,10 @@ export declare const Popover: {
|
|
|
11765
12041
|
default: string;
|
|
11766
12042
|
validator: (value: string) => boolean;
|
|
11767
12043
|
};
|
|
12044
|
+
arrow: {
|
|
12045
|
+
type: BooleanConstructor;
|
|
12046
|
+
default: boolean;
|
|
12047
|
+
};
|
|
11768
12048
|
always: BooleanConstructor;
|
|
11769
12049
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11770
12050
|
animation: StringConstructor;
|
|
@@ -11778,10 +12058,6 @@ export declare const Popover: {
|
|
|
11778
12058
|
type: BooleanConstructor;
|
|
11779
12059
|
default: boolean;
|
|
11780
12060
|
};
|
|
11781
|
-
arrow: {
|
|
11782
|
-
type: BooleanConstructor;
|
|
11783
|
-
default: boolean;
|
|
11784
|
-
};
|
|
11785
12061
|
autoWidth: {
|
|
11786
12062
|
type: BooleanConstructor;
|
|
11787
12063
|
default: boolean;
|
|
@@ -11817,12 +12093,12 @@ export declare const Popover: {
|
|
|
11817
12093
|
modelValue: boolean;
|
|
11818
12094
|
placement: string;
|
|
11819
12095
|
disabled: boolean;
|
|
12096
|
+
trigger: string;
|
|
12097
|
+
arrow: boolean;
|
|
11820
12098
|
always: boolean;
|
|
11821
12099
|
theme: string;
|
|
11822
12100
|
portal: boolean;
|
|
11823
|
-
arrow: boolean;
|
|
11824
12101
|
autoWidth: boolean;
|
|
11825
|
-
trigger: string;
|
|
11826
12102
|
outsideClickable: boolean;
|
|
11827
12103
|
}>;
|
|
11828
12104
|
__isFragment?: never;
|
|
@@ -11835,6 +12111,10 @@ type: StringConstructor;
|
|
|
11835
12111
|
default: string;
|
|
11836
12112
|
validator: (value: string) => boolean;
|
|
11837
12113
|
};
|
|
12114
|
+
arrow: {
|
|
12115
|
+
type: BooleanConstructor;
|
|
12116
|
+
default: boolean;
|
|
12117
|
+
};
|
|
11838
12118
|
always: BooleanConstructor;
|
|
11839
12119
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11840
12120
|
animation: StringConstructor;
|
|
@@ -11848,10 +12128,6 @@ portal: {
|
|
|
11848
12128
|
type: BooleanConstructor;
|
|
11849
12129
|
default: boolean;
|
|
11850
12130
|
};
|
|
11851
|
-
arrow: {
|
|
11852
|
-
type: BooleanConstructor;
|
|
11853
|
-
default: boolean;
|
|
11854
|
-
};
|
|
11855
12131
|
autoWidth: {
|
|
11856
12132
|
type: BooleanConstructor;
|
|
11857
12133
|
default: boolean;
|
|
@@ -11887,12 +12163,12 @@ tag: string;
|
|
|
11887
12163
|
modelValue: boolean;
|
|
11888
12164
|
placement: string;
|
|
11889
12165
|
disabled: boolean;
|
|
12166
|
+
trigger: string;
|
|
12167
|
+
arrow: boolean;
|
|
11890
12168
|
always: boolean;
|
|
11891
12169
|
theme: string;
|
|
11892
12170
|
portal: boolean;
|
|
11893
|
-
arrow: boolean;
|
|
11894
12171
|
autoWidth: boolean;
|
|
11895
|
-
trigger: string;
|
|
11896
12172
|
outsideClickable: boolean;
|
|
11897
12173
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
11898
12174
|
open: {
|
|
@@ -13023,10 +13299,10 @@ data: unknown[];
|
|
|
13023
13299
|
disabled: boolean;
|
|
13024
13300
|
offset: number;
|
|
13025
13301
|
vertical: boolean;
|
|
13302
|
+
gutter: number;
|
|
13026
13303
|
loadData: Function;
|
|
13027
13304
|
pageSize: number;
|
|
13028
13305
|
cols: number;
|
|
13029
|
-
gutter: number;
|
|
13030
13306
|
inverted: boolean;
|
|
13031
13307
|
pullable: boolean;
|
|
13032
13308
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -13534,15 +13810,15 @@ data: unknown[];
|
|
|
13534
13810
|
placement: string;
|
|
13535
13811
|
disabled: boolean;
|
|
13536
13812
|
extra: string;
|
|
13813
|
+
trigger: string;
|
|
13814
|
+
arrow: boolean;
|
|
13537
13815
|
numerable: boolean;
|
|
13538
13816
|
separator: string;
|
|
13539
13817
|
max: number;
|
|
13540
13818
|
nullValue: string | number | Record<string, any>;
|
|
13541
13819
|
clearable: boolean;
|
|
13542
13820
|
portal: boolean;
|
|
13543
|
-
arrow: boolean;
|
|
13544
13821
|
autoWidth: boolean;
|
|
13545
|
-
trigger: string;
|
|
13546
13822
|
searchPlaceholder: string;
|
|
13547
13823
|
searchable: boolean;
|
|
13548
13824
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -14424,10 +14700,10 @@ onEnter?: ((...args: any[]) => any) | undefined;
|
|
|
14424
14700
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
14425
14701
|
}>, {
|
|
14426
14702
|
disabled: boolean;
|
|
14703
|
+
indicator: boolean | Record<string, any>;
|
|
14427
14704
|
allowDispatch: boolean;
|
|
14428
14705
|
bytes: boolean;
|
|
14429
14706
|
controllable: boolean;
|
|
14430
|
-
indicator: boolean | Record<string, any>;
|
|
14431
14707
|
wrap: string;
|
|
14432
14708
|
rows: number;
|
|
14433
14709
|
autosize: boolean | Record<string, any>;
|
|
@@ -14873,14 +15149,14 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
14873
15149
|
tag: string;
|
|
14874
15150
|
placement: string;
|
|
14875
15151
|
disabled: boolean;
|
|
15152
|
+
trigger: string;
|
|
15153
|
+
arrow: boolean;
|
|
14876
15154
|
separator: string;
|
|
14877
15155
|
nullValue: string | number | Record<string, any>;
|
|
14878
15156
|
clearable: boolean;
|
|
14879
15157
|
open: boolean;
|
|
14880
15158
|
multiple: boolean;
|
|
14881
15159
|
portal: boolean;
|
|
14882
|
-
arrow: boolean;
|
|
14883
|
-
trigger: string;
|
|
14884
15160
|
changeOnSelect: boolean;
|
|
14885
15161
|
confirm: boolean;
|
|
14886
15162
|
splitPanels: boolean;
|
|
@@ -15756,6 +16032,7 @@ onCheck?: ((...args: any[]) => any) | undefined;
|
|
|
15756
16032
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
15757
16033
|
}>, {
|
|
15758
16034
|
data: unknown[];
|
|
16035
|
+
draggable: boolean;
|
|
15759
16036
|
numerable: boolean;
|
|
15760
16037
|
separator: string;
|
|
15761
16038
|
max: number;
|
|
@@ -15764,7 +16041,6 @@ allowDispatch: boolean;
|
|
|
15764
16041
|
accordion: boolean;
|
|
15765
16042
|
indent: number;
|
|
15766
16043
|
lazy: boolean;
|
|
15767
|
-
draggable: boolean;
|
|
15768
16044
|
defaultExpandAll: boolean;
|
|
15769
16045
|
emptyText: string;
|
|
15770
16046
|
keyValue: {
|
|
@@ -15796,6 +16072,14 @@ declare interface TreeData {
|
|
|
15796
16072
|
declare type TreeLabel = string;
|
|
15797
16073
|
|
|
15798
16074
|
export declare const TreeSelect: DefineComponent<ExtractPropTypes< {
|
|
16075
|
+
autoWidth: {
|
|
16076
|
+
type: BooleanConstructor;
|
|
16077
|
+
default: undefined;
|
|
16078
|
+
};
|
|
16079
|
+
cascader: {
|
|
16080
|
+
type: BooleanConstructor;
|
|
16081
|
+
default: boolean;
|
|
16082
|
+
};
|
|
15799
16083
|
data: {
|
|
15800
16084
|
type: ArrayConstructor;
|
|
15801
16085
|
default: () => never[];
|
|
@@ -15832,10 +16116,6 @@ arrow: {
|
|
|
15832
16116
|
type: BooleanConstructor;
|
|
15833
16117
|
default: boolean;
|
|
15834
16118
|
};
|
|
15835
|
-
autoWidth: {
|
|
15836
|
-
type: BooleanConstructor;
|
|
15837
|
-
default: boolean;
|
|
15838
|
-
};
|
|
15839
16119
|
maxTags: NumberConstructor;
|
|
15840
16120
|
searchable: {
|
|
15841
16121
|
type: BooleanConstructor;
|
|
@@ -15879,6 +16159,14 @@ default: boolean;
|
|
|
15879
16159
|
};
|
|
15880
16160
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
15881
16161
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
16162
|
+
autoWidth: {
|
|
16163
|
+
type: BooleanConstructor;
|
|
16164
|
+
default: undefined;
|
|
16165
|
+
};
|
|
16166
|
+
cascader: {
|
|
16167
|
+
type: BooleanConstructor;
|
|
16168
|
+
default: boolean;
|
|
16169
|
+
};
|
|
15882
16170
|
data: {
|
|
15883
16171
|
type: ArrayConstructor;
|
|
15884
16172
|
default: () => never[];
|
|
@@ -15915,10 +16203,6 @@ arrow: {
|
|
|
15915
16203
|
type: BooleanConstructor;
|
|
15916
16204
|
default: boolean;
|
|
15917
16205
|
};
|
|
15918
|
-
autoWidth: {
|
|
15919
|
-
type: BooleanConstructor;
|
|
15920
|
-
default: boolean;
|
|
15921
|
-
};
|
|
15922
16206
|
maxTags: NumberConstructor;
|
|
15923
16207
|
searchable: {
|
|
15924
16208
|
type: BooleanConstructor;
|
|
@@ -15974,17 +16258,18 @@ data: unknown[];
|
|
|
15974
16258
|
placement: string;
|
|
15975
16259
|
disabled: boolean;
|
|
15976
16260
|
extra: string;
|
|
16261
|
+
trigger: string;
|
|
16262
|
+
arrow: boolean;
|
|
15977
16263
|
numerable: boolean;
|
|
15978
16264
|
separator: string;
|
|
15979
16265
|
max: number;
|
|
15980
16266
|
nullValue: string | number | Record<string, any>;
|
|
15981
16267
|
clearable: boolean;
|
|
15982
16268
|
portal: boolean;
|
|
15983
|
-
arrow: boolean;
|
|
15984
16269
|
autoWidth: boolean;
|
|
15985
|
-
trigger: string;
|
|
15986
16270
|
searchPlaceholder: string;
|
|
15987
16271
|
searchable: boolean;
|
|
16272
|
+
cascader: boolean;
|
|
15988
16273
|
checkStrictly: boolean;
|
|
15989
16274
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
15990
16275
|
|