@deot/vc-components 1.0.6 → 1.0.7
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 +2096 -1334
- package/dist/index.d.ts +703 -134
- package/dist/index.iife.js +2422 -1660
- package/dist/index.js +2094 -1335
- package/dist/index.style.css +1 -1
- package/dist/index.umd.cjs +2422 -1660
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -94,7 +94,7 @@ icon: string | boolean;
|
|
|
94
94
|
closable: boolean;
|
|
95
95
|
}, {}>;
|
|
96
96
|
|
|
97
|
-
declare const alert_2: (options:
|
|
97
|
+
declare const alert_2: (options: Options_4) => PortalLeaf;
|
|
98
98
|
|
|
99
99
|
export declare const Artboard: DefineComponent< {
|
|
100
100
|
tag: {
|
|
@@ -363,11 +363,69 @@ tag: {
|
|
|
363
363
|
type: StringConstructor;
|
|
364
364
|
default: string;
|
|
365
365
|
};
|
|
366
|
+
accordion: {
|
|
367
|
+
type: BooleanConstructor;
|
|
368
|
+
default: boolean;
|
|
369
|
+
};
|
|
370
|
+
modelValue: {
|
|
371
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
372
|
+
};
|
|
373
|
+
alive: {
|
|
374
|
+
type: BooleanConstructor;
|
|
375
|
+
default: boolean;
|
|
376
|
+
};
|
|
377
|
+
styleless: {
|
|
378
|
+
type: BooleanConstructor;
|
|
379
|
+
default: boolean;
|
|
380
|
+
};
|
|
381
|
+
}, () => VNode<RendererNode, RendererElement, {
|
|
382
|
+
[key: string]: any;
|
|
383
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:moodelValue")[], "change" | "update:moodelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
384
|
+
tag: {
|
|
385
|
+
type: StringConstructor;
|
|
386
|
+
default: string;
|
|
387
|
+
};
|
|
388
|
+
accordion: {
|
|
389
|
+
type: BooleanConstructor;
|
|
390
|
+
default: boolean;
|
|
391
|
+
};
|
|
392
|
+
modelValue: {
|
|
393
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
394
|
+
};
|
|
395
|
+
alive: {
|
|
396
|
+
type: BooleanConstructor;
|
|
397
|
+
default: boolean;
|
|
398
|
+
};
|
|
399
|
+
styleless: {
|
|
400
|
+
type: BooleanConstructor;
|
|
401
|
+
default: boolean;
|
|
402
|
+
};
|
|
403
|
+
}>> & {
|
|
404
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
405
|
+
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
406
|
+
}, {
|
|
407
|
+
tag: string;
|
|
408
|
+
accordion: boolean;
|
|
409
|
+
alive: boolean;
|
|
410
|
+
styleless: boolean;
|
|
411
|
+
}, {}>;
|
|
412
|
+
|
|
413
|
+
export declare const CollapseItem: DefineComponent< {
|
|
414
|
+
tag: {
|
|
415
|
+
type: StringConstructor;
|
|
416
|
+
default: string;
|
|
417
|
+
};
|
|
418
|
+
value: {
|
|
419
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
420
|
+
};
|
|
366
421
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
367
422
|
tag: {
|
|
368
423
|
type: StringConstructor;
|
|
369
424
|
default: string;
|
|
370
425
|
};
|
|
426
|
+
value: {
|
|
427
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
428
|
+
};
|
|
371
429
|
}>>, {
|
|
372
430
|
tag: string;
|
|
373
431
|
}, {}>;
|
|
@@ -478,6 +536,8 @@ declare const destroy_4: () => void;
|
|
|
478
536
|
|
|
479
537
|
declare const destroy_5: () => void;
|
|
480
538
|
|
|
539
|
+
declare const destroy_6: () => void;
|
|
540
|
+
|
|
481
541
|
export declare const Divider: DefineComponent< {
|
|
482
542
|
tag: {
|
|
483
543
|
type: StringConstructor;
|
|
@@ -492,18 +552,149 @@ default: string;
|
|
|
492
552
|
tag: string;
|
|
493
553
|
}, {}>;
|
|
494
554
|
|
|
495
|
-
|
|
496
|
-
|
|
555
|
+
declare namespace Drawer {
|
|
556
|
+
export {
|
|
557
|
+
destroy,
|
|
558
|
+
open_2 as open
|
|
559
|
+
}
|
|
560
|
+
}
|
|
561
|
+
export { Drawer }
|
|
562
|
+
|
|
563
|
+
export declare const DrawerView: DefineComponent< {
|
|
564
|
+
title: StringConstructor;
|
|
565
|
+
content: {
|
|
566
|
+
type: PropType<string | Props_2["render"]>;
|
|
567
|
+
default: string;
|
|
568
|
+
};
|
|
569
|
+
modelValue: {
|
|
570
|
+
type: BooleanConstructor;
|
|
571
|
+
default: boolean;
|
|
572
|
+
};
|
|
573
|
+
width: {
|
|
574
|
+
type: NumberConstructor;
|
|
575
|
+
default: number;
|
|
576
|
+
};
|
|
577
|
+
height: {
|
|
578
|
+
type: NumberConstructor;
|
|
579
|
+
default: number;
|
|
580
|
+
};
|
|
581
|
+
mask: {
|
|
582
|
+
type: BooleanConstructor;
|
|
583
|
+
default: boolean;
|
|
584
|
+
};
|
|
585
|
+
maskClosable: {
|
|
586
|
+
type: BooleanConstructor;
|
|
587
|
+
default: boolean;
|
|
588
|
+
};
|
|
589
|
+
scrollable: {
|
|
590
|
+
type: BooleanConstructor;
|
|
591
|
+
default: boolean;
|
|
592
|
+
};
|
|
593
|
+
placement: {
|
|
497
594
|
type: StringConstructor;
|
|
498
595
|
default: string;
|
|
499
596
|
};
|
|
500
|
-
|
|
501
|
-
|
|
597
|
+
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
598
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
599
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
600
|
+
closeWithCancel: {
|
|
601
|
+
type: BooleanConstructor;
|
|
602
|
+
default: boolean;
|
|
603
|
+
};
|
|
604
|
+
okText: {
|
|
605
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
606
|
+
default: string;
|
|
607
|
+
};
|
|
608
|
+
cancelText: {
|
|
609
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
610
|
+
default: string;
|
|
611
|
+
};
|
|
612
|
+
footer: {
|
|
613
|
+
type: BooleanConstructor;
|
|
614
|
+
default: boolean;
|
|
615
|
+
};
|
|
616
|
+
onOk: {
|
|
617
|
+
type: FunctionConstructor;
|
|
618
|
+
};
|
|
619
|
+
onCancel: {
|
|
620
|
+
type: FunctionConstructor;
|
|
621
|
+
};
|
|
622
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
623
|
+
title: StringConstructor;
|
|
624
|
+
content: {
|
|
625
|
+
type: PropType<string | Props_2["render"]>;
|
|
626
|
+
default: string;
|
|
627
|
+
};
|
|
628
|
+
modelValue: {
|
|
629
|
+
type: BooleanConstructor;
|
|
630
|
+
default: boolean;
|
|
631
|
+
};
|
|
632
|
+
width: {
|
|
633
|
+
type: NumberConstructor;
|
|
634
|
+
default: number;
|
|
635
|
+
};
|
|
636
|
+
height: {
|
|
637
|
+
type: NumberConstructor;
|
|
638
|
+
default: number;
|
|
639
|
+
};
|
|
640
|
+
mask: {
|
|
641
|
+
type: BooleanConstructor;
|
|
642
|
+
default: boolean;
|
|
643
|
+
};
|
|
644
|
+
maskClosable: {
|
|
645
|
+
type: BooleanConstructor;
|
|
646
|
+
default: boolean;
|
|
647
|
+
};
|
|
648
|
+
scrollable: {
|
|
649
|
+
type: BooleanConstructor;
|
|
650
|
+
default: boolean;
|
|
651
|
+
};
|
|
652
|
+
placement: {
|
|
502
653
|
type: StringConstructor;
|
|
503
654
|
default: string;
|
|
504
655
|
};
|
|
505
|
-
|
|
506
|
-
|
|
656
|
+
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
657
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
658
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
659
|
+
closeWithCancel: {
|
|
660
|
+
type: BooleanConstructor;
|
|
661
|
+
default: boolean;
|
|
662
|
+
};
|
|
663
|
+
okText: {
|
|
664
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
665
|
+
default: string;
|
|
666
|
+
};
|
|
667
|
+
cancelText: {
|
|
668
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
669
|
+
default: string;
|
|
670
|
+
};
|
|
671
|
+
footer: {
|
|
672
|
+
type: BooleanConstructor;
|
|
673
|
+
default: boolean;
|
|
674
|
+
};
|
|
675
|
+
onOk: {
|
|
676
|
+
type: FunctionConstructor;
|
|
677
|
+
};
|
|
678
|
+
onCancel: {
|
|
679
|
+
type: FunctionConstructor;
|
|
680
|
+
};
|
|
681
|
+
}>> & {
|
|
682
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
683
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
684
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
685
|
+
}, {
|
|
686
|
+
footer: boolean;
|
|
687
|
+
mask: boolean;
|
|
688
|
+
modelValue: boolean;
|
|
689
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
690
|
+
width: number;
|
|
691
|
+
height: number;
|
|
692
|
+
maskClosable: boolean;
|
|
693
|
+
scrollable: boolean;
|
|
694
|
+
placement: string;
|
|
695
|
+
closeWithCancel: boolean;
|
|
696
|
+
okText: string | boolean;
|
|
697
|
+
cancelText: string | boolean;
|
|
507
698
|
}, {}>;
|
|
508
699
|
|
|
509
700
|
export declare const Dropdown: DefineComponent< {
|
|
@@ -534,26 +725,44 @@ default: string;
|
|
|
534
725
|
tag: string;
|
|
535
726
|
}, {}>;
|
|
536
727
|
|
|
537
|
-
declare const error: (...params: Array<
|
|
728
|
+
declare const error: (...params: Array<Options_2[keyof Options_2] | Options_2>) => PortalLeaf;
|
|
538
729
|
|
|
539
|
-
declare const error_2: (options:
|
|
730
|
+
declare const error_2: (options: Options_3) => PortalLeaf;
|
|
540
731
|
|
|
541
|
-
declare const error_3: (options:
|
|
732
|
+
declare const error_3: (options: Options_5) => PortalLeaf;
|
|
542
733
|
|
|
543
|
-
declare const error_4: (...params: Array<
|
|
734
|
+
declare const error_4: (...params: Array<Options_6[keyof Options_6] | Options_6>) => PortalLeaf;
|
|
544
735
|
|
|
545
736
|
export declare const Expand: DefineComponent< {
|
|
546
737
|
tag: {
|
|
547
738
|
type: StringConstructor;
|
|
548
739
|
default: string;
|
|
549
740
|
};
|
|
741
|
+
modelValue: {
|
|
742
|
+
type: BooleanConstructor;
|
|
743
|
+
default: boolean;
|
|
744
|
+
};
|
|
745
|
+
alive: {
|
|
746
|
+
type: BooleanConstructor;
|
|
747
|
+
default: boolean;
|
|
748
|
+
};
|
|
550
749
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
551
750
|
tag: {
|
|
552
751
|
type: StringConstructor;
|
|
553
752
|
default: string;
|
|
554
753
|
};
|
|
754
|
+
modelValue: {
|
|
755
|
+
type: BooleanConstructor;
|
|
756
|
+
default: boolean;
|
|
757
|
+
};
|
|
758
|
+
alive: {
|
|
759
|
+
type: BooleanConstructor;
|
|
760
|
+
default: boolean;
|
|
761
|
+
};
|
|
555
762
|
}>>, {
|
|
556
763
|
tag: string;
|
|
764
|
+
modelValue: boolean;
|
|
765
|
+
alive: boolean;
|
|
557
766
|
}, {}>;
|
|
558
767
|
|
|
559
768
|
export declare const Form: DefineComponent< {
|
|
@@ -628,11 +837,11 @@ default: boolean;
|
|
|
628
837
|
};
|
|
629
838
|
}>>, {
|
|
630
839
|
tag: string;
|
|
840
|
+
styleless: boolean;
|
|
631
841
|
showMessage: boolean;
|
|
632
842
|
inline: boolean;
|
|
633
843
|
labelPosition: "left" | "right" | "top";
|
|
634
844
|
autocomplete: "on" | "off";
|
|
635
|
-
styleless: boolean;
|
|
636
845
|
}, {}>;
|
|
637
846
|
|
|
638
847
|
export declare const FormItem: DefineComponent< {
|
|
@@ -650,6 +859,10 @@ required: {
|
|
|
650
859
|
type: (StringConstructor | BooleanConstructor)[];
|
|
651
860
|
default: boolean;
|
|
652
861
|
};
|
|
862
|
+
asterisk: {
|
|
863
|
+
type: BooleanConstructor;
|
|
864
|
+
default: boolean;
|
|
865
|
+
};
|
|
653
866
|
error: {
|
|
654
867
|
type: StringConstructor;
|
|
655
868
|
};
|
|
@@ -693,6 +906,10 @@ required: {
|
|
|
693
906
|
type: (StringConstructor | BooleanConstructor)[];
|
|
694
907
|
default: boolean;
|
|
695
908
|
};
|
|
909
|
+
asterisk: {
|
|
910
|
+
type: BooleanConstructor;
|
|
911
|
+
default: boolean;
|
|
912
|
+
};
|
|
696
913
|
error: {
|
|
697
914
|
type: StringConstructor;
|
|
698
915
|
};
|
|
@@ -721,10 +938,11 @@ default: string;
|
|
|
721
938
|
contentStyle: StringConstructor;
|
|
722
939
|
}>>, {
|
|
723
940
|
label: string;
|
|
941
|
+
styleless: boolean;
|
|
724
942
|
showMessage: boolean;
|
|
725
943
|
labelPosition: "left" | "right" | "top";
|
|
726
|
-
styleless: boolean;
|
|
727
944
|
required: string | boolean;
|
|
945
|
+
asterisk: boolean;
|
|
728
946
|
resetByRulesChanged: boolean;
|
|
729
947
|
}, {}>;
|
|
730
948
|
|
|
@@ -738,7 +956,7 @@ export declare interface FormItemProvide {
|
|
|
738
956
|
}
|
|
739
957
|
|
|
740
958
|
export declare interface FormProvide {
|
|
741
|
-
props:
|
|
959
|
+
props: Props_3;
|
|
742
960
|
add: (item: ComponentInternalInstance) => any;
|
|
743
961
|
remove: (item: ComponentInternalInstance) => any;
|
|
744
962
|
}
|
|
@@ -840,13 +1058,13 @@ default: string;
|
|
|
840
1058
|
tag: string;
|
|
841
1059
|
}, {}>;
|
|
842
1060
|
|
|
843
|
-
declare const info: (...params: Array<
|
|
1061
|
+
declare const info: (...params: Array<Options_2[keyof Options_2] | Options_2>) => PortalLeaf;
|
|
844
1062
|
|
|
845
|
-
declare const info_2: (options:
|
|
1063
|
+
declare const info_2: (options: Options_3) => PortalLeaf;
|
|
846
1064
|
|
|
847
|
-
declare const info_3: (options:
|
|
1065
|
+
declare const info_3: (options: Options_5) => PortalLeaf;
|
|
848
1066
|
|
|
849
|
-
declare const info_4: (...params: Array<
|
|
1067
|
+
declare const info_4: (...params: Array<Options_6[keyof Options_6] | Options_6>) => PortalLeaf;
|
|
850
1068
|
|
|
851
1069
|
export declare const Input: DefineComponent< {
|
|
852
1070
|
indicator: {
|
|
@@ -909,7 +1127,7 @@ controllable: {
|
|
|
909
1127
|
type: BooleanConstructor;
|
|
910
1128
|
default: boolean;
|
|
911
1129
|
};
|
|
912
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "
|
|
1130
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "enter" | "clear" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "enter" | "clear" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
913
1131
|
indicator: {
|
|
914
1132
|
type: PropType<boolean | ({
|
|
915
1133
|
inline: boolean;
|
|
@@ -1313,9 +1531,9 @@ declare class Instance {
|
|
|
1313
1531
|
configure(options?: VcOptions): this;
|
|
1314
1532
|
}
|
|
1315
1533
|
|
|
1316
|
-
declare const loading: (...params: Array<
|
|
1534
|
+
declare const loading: (...params: Array<Options_2[keyof Options_2] | Options_2>) => PortalLeaf;
|
|
1317
1535
|
|
|
1318
|
-
declare const loading_2: (...params: Array<
|
|
1536
|
+
declare const loading_2: (...params: Array<Options_6[keyof Options_6] | Options_6>) => PortalLeaf;
|
|
1319
1537
|
|
|
1320
1538
|
export declare const MActionSheet: DefineComponent< {
|
|
1321
1539
|
tag: {
|
|
@@ -1692,11 +1910,69 @@ tag: {
|
|
|
1692
1910
|
type: StringConstructor;
|
|
1693
1911
|
default: string;
|
|
1694
1912
|
};
|
|
1913
|
+
accordion: {
|
|
1914
|
+
type: BooleanConstructor;
|
|
1915
|
+
default: boolean;
|
|
1916
|
+
};
|
|
1917
|
+
modelValue: {
|
|
1918
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1919
|
+
};
|
|
1920
|
+
alive: {
|
|
1921
|
+
type: BooleanConstructor;
|
|
1922
|
+
default: boolean;
|
|
1923
|
+
};
|
|
1924
|
+
styleless: {
|
|
1925
|
+
type: BooleanConstructor;
|
|
1926
|
+
default: boolean;
|
|
1927
|
+
};
|
|
1928
|
+
}, () => VNode<RendererNode, RendererElement, {
|
|
1929
|
+
[key: string]: any;
|
|
1930
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "update:moodelValue")[], "change" | "update:moodelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1931
|
+
tag: {
|
|
1932
|
+
type: StringConstructor;
|
|
1933
|
+
default: string;
|
|
1934
|
+
};
|
|
1935
|
+
accordion: {
|
|
1936
|
+
type: BooleanConstructor;
|
|
1937
|
+
default: boolean;
|
|
1938
|
+
};
|
|
1939
|
+
modelValue: {
|
|
1940
|
+
type: (StringConstructor | NumberConstructor | ArrayConstructor)[];
|
|
1941
|
+
};
|
|
1942
|
+
alive: {
|
|
1943
|
+
type: BooleanConstructor;
|
|
1944
|
+
default: boolean;
|
|
1945
|
+
};
|
|
1946
|
+
styleless: {
|
|
1947
|
+
type: BooleanConstructor;
|
|
1948
|
+
default: boolean;
|
|
1949
|
+
};
|
|
1950
|
+
}>> & {
|
|
1951
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1952
|
+
"onUpdate:moodelValue"?: ((...args: any[]) => any) | undefined;
|
|
1953
|
+
}, {
|
|
1954
|
+
tag: string;
|
|
1955
|
+
accordion: boolean;
|
|
1956
|
+
alive: boolean;
|
|
1957
|
+
styleless: boolean;
|
|
1958
|
+
}, {}>;
|
|
1959
|
+
|
|
1960
|
+
export declare const MCollapseItem: DefineComponent< {
|
|
1961
|
+
tag: {
|
|
1962
|
+
type: StringConstructor;
|
|
1963
|
+
default: string;
|
|
1964
|
+
};
|
|
1965
|
+
value: {
|
|
1966
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1967
|
+
};
|
|
1695
1968
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1696
1969
|
tag: {
|
|
1697
1970
|
type: StringConstructor;
|
|
1698
1971
|
default: string;
|
|
1699
1972
|
};
|
|
1973
|
+
value: {
|
|
1974
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
1975
|
+
};
|
|
1700
1976
|
}>>, {
|
|
1701
1977
|
tag: string;
|
|
1702
1978
|
}, {}>;
|
|
@@ -1773,18 +2049,141 @@ default: string;
|
|
|
1773
2049
|
tag: string;
|
|
1774
2050
|
}, {}>;
|
|
1775
2051
|
|
|
1776
|
-
export declare const
|
|
1777
|
-
|
|
2052
|
+
export declare const MDrawerView: DefineComponent< {
|
|
2053
|
+
title: StringConstructor;
|
|
2054
|
+
content: {
|
|
2055
|
+
type: PropType<string | Props_2["render"]>;
|
|
2056
|
+
default: string;
|
|
2057
|
+
};
|
|
2058
|
+
modelValue: {
|
|
2059
|
+
type: BooleanConstructor;
|
|
2060
|
+
default: boolean;
|
|
2061
|
+
};
|
|
2062
|
+
width: {
|
|
2063
|
+
type: NumberConstructor;
|
|
2064
|
+
default: number;
|
|
2065
|
+
};
|
|
2066
|
+
height: {
|
|
2067
|
+
type: NumberConstructor;
|
|
2068
|
+
default: number;
|
|
2069
|
+
};
|
|
2070
|
+
mask: {
|
|
2071
|
+
type: BooleanConstructor;
|
|
2072
|
+
default: boolean;
|
|
2073
|
+
};
|
|
2074
|
+
maskClosable: {
|
|
2075
|
+
type: BooleanConstructor;
|
|
2076
|
+
default: boolean;
|
|
2077
|
+
};
|
|
2078
|
+
scrollable: {
|
|
2079
|
+
type: BooleanConstructor;
|
|
2080
|
+
default: boolean;
|
|
2081
|
+
};
|
|
2082
|
+
placement: {
|
|
1778
2083
|
type: StringConstructor;
|
|
1779
2084
|
default: string;
|
|
1780
2085
|
};
|
|
1781
|
-
|
|
1782
|
-
|
|
2086
|
+
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2087
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2088
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2089
|
+
closeWithCancel: {
|
|
2090
|
+
type: BooleanConstructor;
|
|
2091
|
+
default: boolean;
|
|
2092
|
+
};
|
|
2093
|
+
okText: {
|
|
2094
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
2095
|
+
default: string;
|
|
2096
|
+
};
|
|
2097
|
+
cancelText: {
|
|
2098
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
2099
|
+
default: string;
|
|
2100
|
+
};
|
|
2101
|
+
footer: {
|
|
2102
|
+
type: BooleanConstructor;
|
|
2103
|
+
default: boolean;
|
|
2104
|
+
};
|
|
2105
|
+
onOk: {
|
|
2106
|
+
type: FunctionConstructor;
|
|
2107
|
+
};
|
|
2108
|
+
onCancel: {
|
|
2109
|
+
type: FunctionConstructor;
|
|
2110
|
+
};
|
|
2111
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2112
|
+
title: StringConstructor;
|
|
2113
|
+
content: {
|
|
2114
|
+
type: PropType<string | Props_2["render"]>;
|
|
2115
|
+
default: string;
|
|
2116
|
+
};
|
|
2117
|
+
modelValue: {
|
|
2118
|
+
type: BooleanConstructor;
|
|
2119
|
+
default: boolean;
|
|
2120
|
+
};
|
|
2121
|
+
width: {
|
|
2122
|
+
type: NumberConstructor;
|
|
2123
|
+
default: number;
|
|
2124
|
+
};
|
|
2125
|
+
height: {
|
|
2126
|
+
type: NumberConstructor;
|
|
2127
|
+
default: number;
|
|
2128
|
+
};
|
|
2129
|
+
mask: {
|
|
2130
|
+
type: BooleanConstructor;
|
|
2131
|
+
default: boolean;
|
|
2132
|
+
};
|
|
2133
|
+
maskClosable: {
|
|
2134
|
+
type: BooleanConstructor;
|
|
2135
|
+
default: boolean;
|
|
2136
|
+
};
|
|
2137
|
+
scrollable: {
|
|
2138
|
+
type: BooleanConstructor;
|
|
2139
|
+
default: boolean;
|
|
2140
|
+
};
|
|
2141
|
+
placement: {
|
|
1783
2142
|
type: StringConstructor;
|
|
1784
2143
|
default: string;
|
|
1785
2144
|
};
|
|
1786
|
-
|
|
1787
|
-
|
|
2145
|
+
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2146
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2147
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2148
|
+
closeWithCancel: {
|
|
2149
|
+
type: BooleanConstructor;
|
|
2150
|
+
default: boolean;
|
|
2151
|
+
};
|
|
2152
|
+
okText: {
|
|
2153
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
2154
|
+
default: string;
|
|
2155
|
+
};
|
|
2156
|
+
cancelText: {
|
|
2157
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
2158
|
+
default: string;
|
|
2159
|
+
};
|
|
2160
|
+
footer: {
|
|
2161
|
+
type: BooleanConstructor;
|
|
2162
|
+
default: boolean;
|
|
2163
|
+
};
|
|
2164
|
+
onOk: {
|
|
2165
|
+
type: FunctionConstructor;
|
|
2166
|
+
};
|
|
2167
|
+
onCancel: {
|
|
2168
|
+
type: FunctionConstructor;
|
|
2169
|
+
};
|
|
2170
|
+
}>> & {
|
|
2171
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
2172
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2173
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
2174
|
+
}, {
|
|
2175
|
+
footer: boolean;
|
|
2176
|
+
mask: boolean;
|
|
2177
|
+
modelValue: boolean;
|
|
2178
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2179
|
+
width: number;
|
|
2180
|
+
height: number;
|
|
2181
|
+
maskClosable: boolean;
|
|
2182
|
+
scrollable: boolean;
|
|
2183
|
+
placement: string;
|
|
2184
|
+
closeWithCancel: boolean;
|
|
2185
|
+
okText: string | boolean;
|
|
2186
|
+
cancelText: string | boolean;
|
|
1788
2187
|
}, {}>;
|
|
1789
2188
|
|
|
1790
2189
|
export declare const MDropdown: DefineComponent< {
|
|
@@ -1817,7 +2216,7 @@ tag: string;
|
|
|
1817
2216
|
|
|
1818
2217
|
declare namespace Message {
|
|
1819
2218
|
export {
|
|
1820
|
-
destroy,
|
|
2219
|
+
destroy_2 as destroy,
|
|
1821
2220
|
info,
|
|
1822
2221
|
success,
|
|
1823
2222
|
loading,
|
|
@@ -1828,7 +2227,7 @@ declare namespace Message {
|
|
|
1828
2227
|
export { Message }
|
|
1829
2228
|
|
|
1830
2229
|
export declare const MessageView: DefineComponent< {
|
|
1831
|
-
content: PropType<string |
|
|
2230
|
+
content: PropType<string | Props_2["render"]>;
|
|
1832
2231
|
mask: {
|
|
1833
2232
|
type: BooleanConstructor;
|
|
1834
2233
|
default: boolean;
|
|
@@ -1860,7 +2259,7 @@ validator: (v: string) => boolean;
|
|
|
1860
2259
|
};
|
|
1861
2260
|
onBeforeClose: FunctionConstructor;
|
|
1862
2261
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1863
|
-
content: PropType<string |
|
|
2262
|
+
content: PropType<string | Props_2["render"]>;
|
|
1864
2263
|
mask: {
|
|
1865
2264
|
type: BooleanConstructor;
|
|
1866
2265
|
default: boolean;
|
|
@@ -1901,8 +2300,8 @@ mask: boolean;
|
|
|
1901
2300
|
closable: boolean;
|
|
1902
2301
|
duration: number;
|
|
1903
2302
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
1904
|
-
top: number;
|
|
1905
2303
|
maskClosable: boolean;
|
|
2304
|
+
top: number;
|
|
1906
2305
|
}, {}>;
|
|
1907
2306
|
|
|
1908
2307
|
export declare const MExpand: DefineComponent< {
|
|
@@ -1910,13 +2309,31 @@ tag: {
|
|
|
1910
2309
|
type: StringConstructor;
|
|
1911
2310
|
default: string;
|
|
1912
2311
|
};
|
|
2312
|
+
modelValue: {
|
|
2313
|
+
type: BooleanConstructor;
|
|
2314
|
+
default: boolean;
|
|
2315
|
+
};
|
|
2316
|
+
alive: {
|
|
2317
|
+
type: BooleanConstructor;
|
|
2318
|
+
default: boolean;
|
|
2319
|
+
};
|
|
1913
2320
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1914
2321
|
tag: {
|
|
1915
2322
|
type: StringConstructor;
|
|
1916
2323
|
default: string;
|
|
1917
2324
|
};
|
|
2325
|
+
modelValue: {
|
|
2326
|
+
type: BooleanConstructor;
|
|
2327
|
+
default: boolean;
|
|
2328
|
+
};
|
|
2329
|
+
alive: {
|
|
2330
|
+
type: BooleanConstructor;
|
|
2331
|
+
default: boolean;
|
|
2332
|
+
};
|
|
1918
2333
|
}>>, {
|
|
1919
2334
|
tag: string;
|
|
2335
|
+
modelValue: boolean;
|
|
2336
|
+
alive: boolean;
|
|
1920
2337
|
}, {}>;
|
|
1921
2338
|
|
|
1922
2339
|
export declare const MForm: DefineComponent< {
|
|
@@ -2008,11 +2425,11 @@ default: boolean;
|
|
|
2008
2425
|
}>>, {
|
|
2009
2426
|
tag: string;
|
|
2010
2427
|
border: boolean;
|
|
2428
|
+
styleless: boolean;
|
|
2011
2429
|
showMessage: boolean;
|
|
2012
2430
|
inline: boolean;
|
|
2013
2431
|
labelPosition: "left" | "right" | "top";
|
|
2014
2432
|
autocomplete: "on" | "off";
|
|
2015
|
-
styleless: boolean;
|
|
2016
2433
|
showToast: boolean;
|
|
2017
2434
|
}, {}>;
|
|
2018
2435
|
|
|
@@ -2035,6 +2452,10 @@ required: {
|
|
|
2035
2452
|
type: (StringConstructor | BooleanConstructor)[];
|
|
2036
2453
|
default: boolean;
|
|
2037
2454
|
};
|
|
2455
|
+
asterisk: {
|
|
2456
|
+
type: BooleanConstructor;
|
|
2457
|
+
default: boolean;
|
|
2458
|
+
};
|
|
2038
2459
|
error: {
|
|
2039
2460
|
type: StringConstructor;
|
|
2040
2461
|
};
|
|
@@ -2082,6 +2503,10 @@ required: {
|
|
|
2082
2503
|
type: (StringConstructor | BooleanConstructor)[];
|
|
2083
2504
|
default: boolean;
|
|
2084
2505
|
};
|
|
2506
|
+
asterisk: {
|
|
2507
|
+
type: BooleanConstructor;
|
|
2508
|
+
default: boolean;
|
|
2509
|
+
};
|
|
2085
2510
|
error: {
|
|
2086
2511
|
type: StringConstructor;
|
|
2087
2512
|
};
|
|
@@ -2110,10 +2535,11 @@ default: string;
|
|
|
2110
2535
|
contentStyle: StringConstructor;
|
|
2111
2536
|
}>>, {
|
|
2112
2537
|
label: string;
|
|
2538
|
+
styleless: boolean;
|
|
2113
2539
|
showMessage: boolean;
|
|
2114
2540
|
labelPosition: "left" | "right" | "top";
|
|
2115
|
-
styleless: boolean;
|
|
2116
2541
|
required: string | boolean;
|
|
2542
|
+
asterisk: boolean;
|
|
2117
2543
|
resetByRulesChanged: boolean;
|
|
2118
2544
|
indent: number;
|
|
2119
2545
|
}, {}>;
|
|
@@ -2265,7 +2691,7 @@ controllable: {
|
|
|
2265
2691
|
type: BooleanConstructor;
|
|
2266
2692
|
default: boolean;
|
|
2267
2693
|
};
|
|
2268
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "
|
|
2694
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "enter" | "clear" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "enter" | "clear" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2269
2695
|
right: {
|
|
2270
2696
|
type: BooleanConstructor;
|
|
2271
2697
|
default: boolean;
|
|
@@ -2338,8 +2764,8 @@ onTip?: ((...args: any[]) => any) | undefined;
|
|
|
2338
2764
|
}, {
|
|
2339
2765
|
modelValue: string | number | any[];
|
|
2340
2766
|
disabled: boolean;
|
|
2341
|
-
right: boolean;
|
|
2342
2767
|
styleless: boolean;
|
|
2768
|
+
right: boolean;
|
|
2343
2769
|
focusEnd: boolean;
|
|
2344
2770
|
clearable: boolean;
|
|
2345
2771
|
afloat: boolean;
|
|
@@ -2646,6 +3072,7 @@ default: boolean;
|
|
|
2646
3072
|
modelValue: string | number | any[];
|
|
2647
3073
|
disabled: boolean;
|
|
2648
3074
|
styleless: boolean;
|
|
3075
|
+
cancelText: string;
|
|
2649
3076
|
focusEnd: boolean;
|
|
2650
3077
|
clearable: boolean;
|
|
2651
3078
|
afloat: boolean;
|
|
@@ -2653,7 +3080,6 @@ allowDispatch: boolean;
|
|
|
2653
3080
|
bytes: boolean;
|
|
2654
3081
|
controllable: boolean;
|
|
2655
3082
|
enterText: string | boolean;
|
|
2656
|
-
cancelText: string;
|
|
2657
3083
|
}, {}>;
|
|
2658
3084
|
|
|
2659
3085
|
declare const MList: DefineComponent< {
|
|
@@ -2748,8 +3174,8 @@ alone: BooleanConstructor;
|
|
|
2748
3174
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2749
3175
|
}, {
|
|
2750
3176
|
tag: string;
|
|
2751
|
-
labelWidth: string | number;
|
|
2752
3177
|
multiple: boolean;
|
|
3178
|
+
labelWidth: string | number;
|
|
2753
3179
|
indent: number;
|
|
2754
3180
|
arrow: string | boolean;
|
|
2755
3181
|
alone: boolean;
|
|
@@ -2775,7 +3201,7 @@ export declare const MMessage: typeof Message;
|
|
|
2775
3201
|
|
|
2776
3202
|
declare namespace MModal {
|
|
2777
3203
|
export {
|
|
2778
|
-
|
|
3204
|
+
destroy_4 as destroy,
|
|
2779
3205
|
alert_2 as alert,
|
|
2780
3206
|
operation
|
|
2781
3207
|
}
|
|
@@ -2789,7 +3215,7 @@ validator: (v: any) => boolean;
|
|
|
2789
3215
|
default: string;
|
|
2790
3216
|
};
|
|
2791
3217
|
content: {
|
|
2792
|
-
type: PropType<boolean | string |
|
|
3218
|
+
type: PropType<boolean | string | Props_2["render"]>;
|
|
2793
3219
|
};
|
|
2794
3220
|
width: {
|
|
2795
3221
|
type: NumberConstructor;
|
|
@@ -2841,7 +3267,7 @@ validator: (v: any) => boolean;
|
|
|
2841
3267
|
default: string;
|
|
2842
3268
|
};
|
|
2843
3269
|
content: {
|
|
2844
|
-
type: PropType<boolean | string |
|
|
3270
|
+
type: PropType<boolean | string | Props_2["render"]>;
|
|
2845
3271
|
};
|
|
2846
3272
|
width: {
|
|
2847
3273
|
type: NumberConstructor;
|
|
@@ -2887,11 +3313,11 @@ onCancel: {
|
|
|
2887
3313
|
type: FunctionConstructor;
|
|
2888
3314
|
};
|
|
2889
3315
|
}>> & {
|
|
2890
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
2891
|
-
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
2892
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2893
3316
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
2894
3317
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
3318
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3319
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3320
|
+
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
2895
3321
|
}, {
|
|
2896
3322
|
footer: boolean;
|
|
2897
3323
|
mask: boolean;
|
|
@@ -2899,16 +3325,16 @@ modelValue: boolean;
|
|
|
2899
3325
|
mode: "alert" | "operation";
|
|
2900
3326
|
width: number;
|
|
2901
3327
|
maskClosable: boolean;
|
|
2902
|
-
cancelText: string | boolean;
|
|
2903
3328
|
closeWithCancel: boolean;
|
|
2904
3329
|
okText: string | boolean;
|
|
3330
|
+
cancelText: string | boolean;
|
|
2905
3331
|
}, {}>;
|
|
2906
3332
|
|
|
2907
3333
|
export declare const MNotice: typeof Notice;
|
|
2908
3334
|
|
|
2909
3335
|
declare namespace Modal {
|
|
2910
3336
|
export {
|
|
2911
|
-
|
|
3337
|
+
destroy_3 as destroy,
|
|
2912
3338
|
info_2 as info,
|
|
2913
3339
|
success_2 as success,
|
|
2914
3340
|
warning_2 as warning,
|
|
@@ -2927,7 +3353,7 @@ type: PropType<"info" | "success" | "error" | "warning">;
|
|
|
2927
3353
|
validator: (v: string) => boolean;
|
|
2928
3354
|
};
|
|
2929
3355
|
content: {
|
|
2930
|
-
type: PropType<string |
|
|
3356
|
+
type: PropType<string | Props_2["render"]>;
|
|
2931
3357
|
default: string;
|
|
2932
3358
|
};
|
|
2933
3359
|
size: {
|
|
@@ -2999,7 +3425,7 @@ type: PropType<"info" | "success" | "error" | "warning">;
|
|
|
2999
3425
|
validator: (v: string) => boolean;
|
|
3000
3426
|
};
|
|
3001
3427
|
content: {
|
|
3002
|
-
type: PropType<string |
|
|
3428
|
+
type: PropType<string | Props_2["render"]>;
|
|
3003
3429
|
default: string;
|
|
3004
3430
|
};
|
|
3005
3431
|
size: {
|
|
@@ -3062,12 +3488,12 @@ onCancel: {
|
|
|
3062
3488
|
type: FunctionConstructor;
|
|
3063
3489
|
};
|
|
3064
3490
|
}>> & {
|
|
3065
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
3066
|
-
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
3067
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3068
3491
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
3069
3492
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
3493
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3494
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3070
3495
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3496
|
+
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
3071
3497
|
}, {
|
|
3072
3498
|
footer: boolean;
|
|
3073
3499
|
mask: boolean;
|
|
@@ -3076,12 +3502,12 @@ closable: boolean;
|
|
|
3076
3502
|
size: "small" | "large" | "medium";
|
|
3077
3503
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3078
3504
|
maskClosable: boolean;
|
|
3505
|
+
scrollable: boolean;
|
|
3506
|
+
closeWithCancel: boolean;
|
|
3507
|
+
okText: string | boolean;
|
|
3079
3508
|
cancelText: string | boolean;
|
|
3080
3509
|
escClosable: boolean;
|
|
3081
|
-
closeWithCancel: boolean;
|
|
3082
|
-
scrollable: boolean;
|
|
3083
3510
|
draggable: boolean;
|
|
3084
|
-
okText: string | boolean;
|
|
3085
3511
|
}, {}>;
|
|
3086
3512
|
|
|
3087
3513
|
export declare const MOption: DefineComponent< {
|
|
@@ -3152,6 +3578,11 @@ portal: {
|
|
|
3152
3578
|
type: BooleanConstructor;
|
|
3153
3579
|
default: boolean;
|
|
3154
3580
|
};
|
|
3581
|
+
placement: {
|
|
3582
|
+
type: StringConstructor;
|
|
3583
|
+
default: string;
|
|
3584
|
+
validator: (value: string) => boolean;
|
|
3585
|
+
};
|
|
3155
3586
|
always: BooleanConstructor;
|
|
3156
3587
|
animation: StringConstructor;
|
|
3157
3588
|
arrow: {
|
|
@@ -3159,11 +3590,6 @@ type: BooleanConstructor;
|
|
|
3159
3590
|
default: boolean;
|
|
3160
3591
|
};
|
|
3161
3592
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
3162
|
-
placement: {
|
|
3163
|
-
type: StringConstructor;
|
|
3164
|
-
default: string;
|
|
3165
|
-
validator: (value: string) => boolean;
|
|
3166
|
-
};
|
|
3167
3593
|
getPopupContainer: FunctionConstructor;
|
|
3168
3594
|
autoWidth: {
|
|
3169
3595
|
type: BooleanConstructor;
|
|
@@ -3201,6 +3627,11 @@ portal: {
|
|
|
3201
3627
|
type: BooleanConstructor;
|
|
3202
3628
|
default: boolean;
|
|
3203
3629
|
};
|
|
3630
|
+
placement: {
|
|
3631
|
+
type: StringConstructor;
|
|
3632
|
+
default: string;
|
|
3633
|
+
validator: (value: string) => boolean;
|
|
3634
|
+
};
|
|
3204
3635
|
always: BooleanConstructor;
|
|
3205
3636
|
animation: StringConstructor;
|
|
3206
3637
|
arrow: {
|
|
@@ -3208,11 +3639,6 @@ type: BooleanConstructor;
|
|
|
3208
3639
|
default: boolean;
|
|
3209
3640
|
};
|
|
3210
3641
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
3211
|
-
placement: {
|
|
3212
|
-
type: StringConstructor;
|
|
3213
|
-
default: string;
|
|
3214
|
-
validator: (value: string) => boolean;
|
|
3215
|
-
};
|
|
3216
3642
|
getPopupContainer: FunctionConstructor;
|
|
3217
3643
|
autoWidth: {
|
|
3218
3644
|
type: BooleanConstructor;
|
|
@@ -3247,9 +3673,9 @@ modelValue: boolean;
|
|
|
3247
3673
|
disabled: boolean;
|
|
3248
3674
|
theme: string;
|
|
3249
3675
|
portal: boolean;
|
|
3676
|
+
placement: string;
|
|
3250
3677
|
always: boolean;
|
|
3251
3678
|
arrow: boolean;
|
|
3252
|
-
placement: string;
|
|
3253
3679
|
autoWidth: boolean;
|
|
3254
3680
|
trigger: string;
|
|
3255
3681
|
outsideClickable: boolean;
|
|
@@ -3581,16 +4007,16 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
3581
4007
|
}, {
|
|
3582
4008
|
tag: string;
|
|
3583
4009
|
autoResize: boolean;
|
|
3584
|
-
contentStyle: StyleValue;
|
|
3585
4010
|
height: string | number;
|
|
4011
|
+
wrapperClass: StyleValue;
|
|
4012
|
+
wrapperStyle: StyleValue;
|
|
4013
|
+
contentStyle: StyleValue;
|
|
3586
4014
|
always: boolean;
|
|
3587
4015
|
maxHeight: string | number;
|
|
3588
|
-
wrapperStyle: StyleValue;
|
|
3589
4016
|
thumbMinSize: number;
|
|
3590
4017
|
native: boolean;
|
|
3591
4018
|
trackOffsetX: number[];
|
|
3592
4019
|
trackOffsetY: number[];
|
|
3593
|
-
wrapperClass: StyleValue;
|
|
3594
4020
|
contentClass: StyleValue;
|
|
3595
4021
|
showBar: boolean;
|
|
3596
4022
|
}, {}>;
|
|
@@ -3721,6 +4147,39 @@ tag: string;
|
|
|
3721
4147
|
}, {}>;
|
|
3722
4148
|
|
|
3723
4149
|
export declare const MTabs: DefineComponent< {
|
|
4150
|
+
theme: {
|
|
4151
|
+
type: StringConstructor;
|
|
4152
|
+
default: string;
|
|
4153
|
+
validator: (v: string) => boolean;
|
|
4154
|
+
};
|
|
4155
|
+
barStyle: {
|
|
4156
|
+
type: (ObjectConstructor | ArrayConstructor)[];
|
|
4157
|
+
default: () => {};
|
|
4158
|
+
};
|
|
4159
|
+
autoAfloatWidth: {
|
|
4160
|
+
type: BooleanConstructor;
|
|
4161
|
+
default: boolean;
|
|
4162
|
+
};
|
|
4163
|
+
average: {
|
|
4164
|
+
type: BooleanConstructor;
|
|
4165
|
+
default: boolean;
|
|
4166
|
+
};
|
|
4167
|
+
showWrapper: {
|
|
4168
|
+
type: BooleanConstructor;
|
|
4169
|
+
default: boolean;
|
|
4170
|
+
};
|
|
4171
|
+
sticky: {
|
|
4172
|
+
type: BooleanConstructor;
|
|
4173
|
+
default: boolean;
|
|
4174
|
+
};
|
|
4175
|
+
offsetTop: {
|
|
4176
|
+
type: NumberConstructor;
|
|
4177
|
+
default: number;
|
|
4178
|
+
};
|
|
4179
|
+
showStep: {
|
|
4180
|
+
type: BooleanConstructor;
|
|
4181
|
+
default: boolean;
|
|
4182
|
+
};
|
|
3724
4183
|
type: {
|
|
3725
4184
|
type: StringConstructor;
|
|
3726
4185
|
validator: (v: string) => boolean;
|
|
@@ -3742,6 +4201,39 @@ type: BooleanConstructor;
|
|
|
3742
4201
|
default: boolean;
|
|
3743
4202
|
};
|
|
3744
4203
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
4204
|
+
theme: {
|
|
4205
|
+
type: StringConstructor;
|
|
4206
|
+
default: string;
|
|
4207
|
+
validator: (v: string) => boolean;
|
|
4208
|
+
};
|
|
4209
|
+
barStyle: {
|
|
4210
|
+
type: (ObjectConstructor | ArrayConstructor)[];
|
|
4211
|
+
default: () => {};
|
|
4212
|
+
};
|
|
4213
|
+
autoAfloatWidth: {
|
|
4214
|
+
type: BooleanConstructor;
|
|
4215
|
+
default: boolean;
|
|
4216
|
+
};
|
|
4217
|
+
average: {
|
|
4218
|
+
type: BooleanConstructor;
|
|
4219
|
+
default: boolean;
|
|
4220
|
+
};
|
|
4221
|
+
showWrapper: {
|
|
4222
|
+
type: BooleanConstructor;
|
|
4223
|
+
default: boolean;
|
|
4224
|
+
};
|
|
4225
|
+
sticky: {
|
|
4226
|
+
type: BooleanConstructor;
|
|
4227
|
+
default: boolean;
|
|
4228
|
+
};
|
|
4229
|
+
offsetTop: {
|
|
4230
|
+
type: NumberConstructor;
|
|
4231
|
+
default: number;
|
|
4232
|
+
};
|
|
4233
|
+
showStep: {
|
|
4234
|
+
type: BooleanConstructor;
|
|
4235
|
+
default: boolean;
|
|
4236
|
+
};
|
|
3745
4237
|
type: {
|
|
3746
4238
|
type: StringConstructor;
|
|
3747
4239
|
validator: (v: string) => boolean;
|
|
@@ -3769,8 +4261,16 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
3769
4261
|
}, {
|
|
3770
4262
|
type: string;
|
|
3771
4263
|
closable: boolean;
|
|
4264
|
+
theme: string;
|
|
4265
|
+
sticky: boolean;
|
|
3772
4266
|
afloat: boolean;
|
|
4267
|
+
offsetTop: number;
|
|
3773
4268
|
animated: boolean;
|
|
4269
|
+
barStyle: Record<string, any> | unknown[];
|
|
4270
|
+
autoAfloatWidth: boolean;
|
|
4271
|
+
average: boolean;
|
|
4272
|
+
showWrapper: boolean;
|
|
4273
|
+
showStep: boolean;
|
|
3774
4274
|
}, {}>;
|
|
3775
4275
|
|
|
3776
4276
|
export declare const MTabsPane: DefineComponent< {
|
|
@@ -3883,7 +4383,7 @@ tag: string;
|
|
|
3883
4383
|
|
|
3884
4384
|
declare namespace MToast {
|
|
3885
4385
|
export {
|
|
3886
|
-
|
|
4386
|
+
destroy_6 as destroy,
|
|
3887
4387
|
info_4 as info,
|
|
3888
4388
|
success_4 as success,
|
|
3889
4389
|
loading_2 as loading,
|
|
@@ -3894,7 +4394,7 @@ declare namespace MToast {
|
|
|
3894
4394
|
export { MToast }
|
|
3895
4395
|
|
|
3896
4396
|
export declare const MToastView: DefineComponent< {
|
|
3897
|
-
content: PropType<string |
|
|
4397
|
+
content: PropType<string | Props_2["render"]>;
|
|
3898
4398
|
maskClosable: {
|
|
3899
4399
|
type: BooleanConstructor;
|
|
3900
4400
|
default: boolean;
|
|
@@ -3909,7 +4409,7 @@ default: string;
|
|
|
3909
4409
|
validator: (val: string) => boolean;
|
|
3910
4410
|
};
|
|
3911
4411
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled")[], "close" | "portal-fulfilled", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3912
|
-
content: PropType<string |
|
|
4412
|
+
content: PropType<string | Props_2["render"]>;
|
|
3913
4413
|
maskClosable: {
|
|
3914
4414
|
type: BooleanConstructor;
|
|
3915
4415
|
default: boolean;
|
|
@@ -4470,8 +4970,8 @@ tag: string;
|
|
|
4470
4970
|
|
|
4471
4971
|
declare namespace Notice {
|
|
4472
4972
|
export {
|
|
4473
|
-
|
|
4474
|
-
|
|
4973
|
+
destroy_5 as destroy,
|
|
4974
|
+
open_3 as open,
|
|
4475
4975
|
info_3 as info,
|
|
4476
4976
|
success_3 as success,
|
|
4477
4977
|
warning_3 as warning,
|
|
@@ -4481,8 +4981,8 @@ declare namespace Notice {
|
|
|
4481
4981
|
export { Notice }
|
|
4482
4982
|
|
|
4483
4983
|
export declare const NoticeView: DefineComponent< {
|
|
4484
|
-
title: PropType<string |
|
|
4485
|
-
content: PropType<string |
|
|
4984
|
+
title: PropType<string | Props_2["render"]>;
|
|
4985
|
+
content: PropType<string | Props_2["render"]>;
|
|
4486
4986
|
duration: {
|
|
4487
4987
|
type: NumberConstructor;
|
|
4488
4988
|
default: number;
|
|
@@ -4505,8 +5005,8 @@ default: boolean;
|
|
|
4505
5005
|
};
|
|
4506
5006
|
onBeforeClose: FunctionConstructor;
|
|
4507
5007
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
4508
|
-
title: PropType<string |
|
|
4509
|
-
content: PropType<string |
|
|
5008
|
+
title: PropType<string | Props_2["render"]>;
|
|
5009
|
+
content: PropType<string | Props_2["render"]>;
|
|
4510
5010
|
duration: {
|
|
4511
5011
|
type: NumberConstructor;
|
|
4512
5012
|
default: number;
|
|
@@ -4539,9 +5039,11 @@ duration: number;
|
|
|
4539
5039
|
top: number;
|
|
4540
5040
|
}, {}>;
|
|
4541
5041
|
|
|
4542
|
-
declare const open_2: (options:
|
|
5042
|
+
declare const open_2: (options: Options) => PortalLeaf;
|
|
4543
5043
|
|
|
4544
|
-
declare const
|
|
5044
|
+
declare const open_3: (options: Options_5) => PortalLeaf;
|
|
5045
|
+
|
|
5046
|
+
declare const operation: (options: Options_4) => PortalLeaf;
|
|
4545
5047
|
|
|
4546
5048
|
declare const Option_2: DefineComponent< {
|
|
4547
5049
|
tag: {
|
|
@@ -4558,7 +5060,7 @@ tag: string;
|
|
|
4558
5060
|
}, {}>;
|
|
4559
5061
|
export { Option_2 as Option }
|
|
4560
5062
|
|
|
4561
|
-
declare type Options = Partial<
|
|
5063
|
+
declare type Options = Partial<Props & {
|
|
4562
5064
|
onClose: (...args: any[]) => any;
|
|
4563
5065
|
}>;
|
|
4564
5066
|
|
|
@@ -4571,11 +5073,15 @@ declare type Options_3 = Partial<Props_5 & {
|
|
|
4571
5073
|
}>;
|
|
4572
5074
|
|
|
4573
5075
|
declare type Options_4 = Partial<Props_6 & {
|
|
4574
|
-
insertion: PortalOptions['insertion'];
|
|
4575
5076
|
onClose: (...args: any[]) => any;
|
|
4576
5077
|
}>;
|
|
4577
5078
|
|
|
4578
5079
|
declare type Options_5 = Partial<Props_7 & {
|
|
5080
|
+
insertion: PortalOptions['insertion'];
|
|
5081
|
+
onClose: (...args: any[]) => any;
|
|
5082
|
+
}>;
|
|
5083
|
+
|
|
5084
|
+
declare type Options_6 = Partial<Props_8 & {
|
|
4579
5085
|
onClose: (...args: any[]) => any;
|
|
4580
5086
|
}>;
|
|
4581
5087
|
|
|
@@ -4633,6 +5139,11 @@ portal: {
|
|
|
4633
5139
|
type: BooleanConstructor;
|
|
4634
5140
|
default: boolean;
|
|
4635
5141
|
};
|
|
5142
|
+
placement: {
|
|
5143
|
+
type: StringConstructor;
|
|
5144
|
+
default: string;
|
|
5145
|
+
validator: (value: string) => boolean;
|
|
5146
|
+
};
|
|
4636
5147
|
always: BooleanConstructor;
|
|
4637
5148
|
animation: StringConstructor;
|
|
4638
5149
|
arrow: {
|
|
@@ -4640,11 +5151,6 @@ type: BooleanConstructor;
|
|
|
4640
5151
|
default: boolean;
|
|
4641
5152
|
};
|
|
4642
5153
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
4643
|
-
placement: {
|
|
4644
|
-
type: StringConstructor;
|
|
4645
|
-
default: string;
|
|
4646
|
-
validator: (value: string) => boolean;
|
|
4647
|
-
};
|
|
4648
5154
|
getPopupContainer: FunctionConstructor;
|
|
4649
5155
|
autoWidth: {
|
|
4650
5156
|
type: BooleanConstructor;
|
|
@@ -4682,6 +5188,11 @@ portal: {
|
|
|
4682
5188
|
type: BooleanConstructor;
|
|
4683
5189
|
default: boolean;
|
|
4684
5190
|
};
|
|
5191
|
+
placement: {
|
|
5192
|
+
type: StringConstructor;
|
|
5193
|
+
default: string;
|
|
5194
|
+
validator: (value: string) => boolean;
|
|
5195
|
+
};
|
|
4685
5196
|
always: BooleanConstructor;
|
|
4686
5197
|
animation: StringConstructor;
|
|
4687
5198
|
arrow: {
|
|
@@ -4689,11 +5200,6 @@ type: BooleanConstructor;
|
|
|
4689
5200
|
default: boolean;
|
|
4690
5201
|
};
|
|
4691
5202
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
4692
|
-
placement: {
|
|
4693
|
-
type: StringConstructor;
|
|
4694
|
-
default: string;
|
|
4695
|
-
validator: (value: string) => boolean;
|
|
4696
|
-
};
|
|
4697
5203
|
getPopupContainer: FunctionConstructor;
|
|
4698
5204
|
autoWidth: {
|
|
4699
5205
|
type: BooleanConstructor;
|
|
@@ -4728,9 +5234,9 @@ modelValue: boolean;
|
|
|
4728
5234
|
disabled: boolean;
|
|
4729
5235
|
theme: string;
|
|
4730
5236
|
portal: boolean;
|
|
5237
|
+
placement: string;
|
|
4731
5238
|
always: boolean;
|
|
4732
5239
|
arrow: boolean;
|
|
4733
|
-
placement: string;
|
|
4734
5240
|
autoWidth: boolean;
|
|
4735
5241
|
trigger: string;
|
|
4736
5242
|
outsideClickable: boolean;
|
|
@@ -4857,6 +5363,78 @@ tag: string;
|
|
|
4857
5363
|
declare type Props = ExtractPropTypes<typeof props>;
|
|
4858
5364
|
|
|
4859
5365
|
declare const props: {
|
|
5366
|
+
title: StringConstructor;
|
|
5367
|
+
content: {
|
|
5368
|
+
type: PropType<string | Props_2["render"]>;
|
|
5369
|
+
default: string;
|
|
5370
|
+
};
|
|
5371
|
+
modelValue: {
|
|
5372
|
+
type: BooleanConstructor;
|
|
5373
|
+
default: boolean;
|
|
5374
|
+
};
|
|
5375
|
+
width: {
|
|
5376
|
+
type: NumberConstructor;
|
|
5377
|
+
default: number;
|
|
5378
|
+
};
|
|
5379
|
+
height: {
|
|
5380
|
+
type: NumberConstructor;
|
|
5381
|
+
default: number;
|
|
5382
|
+
};
|
|
5383
|
+
mask: {
|
|
5384
|
+
type: BooleanConstructor;
|
|
5385
|
+
default: boolean;
|
|
5386
|
+
};
|
|
5387
|
+
maskClosable: {
|
|
5388
|
+
type: BooleanConstructor;
|
|
5389
|
+
default: boolean;
|
|
5390
|
+
};
|
|
5391
|
+
scrollable: {
|
|
5392
|
+
type: BooleanConstructor;
|
|
5393
|
+
default: boolean;
|
|
5394
|
+
};
|
|
5395
|
+
placement: {
|
|
5396
|
+
type: StringConstructor;
|
|
5397
|
+
default: string;
|
|
5398
|
+
};
|
|
5399
|
+
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
5400
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
5401
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
5402
|
+
closeWithCancel: {
|
|
5403
|
+
type: BooleanConstructor;
|
|
5404
|
+
default: boolean;
|
|
5405
|
+
};
|
|
5406
|
+
okText: {
|
|
5407
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
5408
|
+
default: string;
|
|
5409
|
+
};
|
|
5410
|
+
cancelText: {
|
|
5411
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
5412
|
+
default: string;
|
|
5413
|
+
};
|
|
5414
|
+
footer: {
|
|
5415
|
+
type: BooleanConstructor;
|
|
5416
|
+
default: boolean;
|
|
5417
|
+
};
|
|
5418
|
+
onOk: {
|
|
5419
|
+
type: FunctionConstructor;
|
|
5420
|
+
};
|
|
5421
|
+
onCancel: {
|
|
5422
|
+
type: FunctionConstructor;
|
|
5423
|
+
};
|
|
5424
|
+
};
|
|
5425
|
+
|
|
5426
|
+
declare type Props_2 = ExtractPropTypes<typeof props_2>;
|
|
5427
|
+
|
|
5428
|
+
declare const props_2: {
|
|
5429
|
+
render: {
|
|
5430
|
+
type: Render;
|
|
5431
|
+
default: () => null;
|
|
5432
|
+
};
|
|
5433
|
+
};
|
|
5434
|
+
|
|
5435
|
+
declare type Props_3 = ExtractPropTypes<typeof props_3>;
|
|
5436
|
+
|
|
5437
|
+
declare const props_3: {
|
|
4860
5438
|
tag: {
|
|
4861
5439
|
type: StringConstructor;
|
|
4862
5440
|
default: string;
|
|
@@ -4892,10 +5470,10 @@ declare const props: {
|
|
|
4892
5470
|
};
|
|
4893
5471
|
};
|
|
4894
5472
|
|
|
4895
|
-
declare type
|
|
5473
|
+
declare type Props_4 = ExtractPropTypes<typeof props_4>;
|
|
4896
5474
|
|
|
4897
|
-
declare const
|
|
4898
|
-
content: PropType<string |
|
|
5475
|
+
declare const props_4: {
|
|
5476
|
+
content: PropType<string | Props_2["render"]>;
|
|
4899
5477
|
mask: {
|
|
4900
5478
|
type: BooleanConstructor;
|
|
4901
5479
|
default: boolean;
|
|
@@ -4928,18 +5506,9 @@ declare const props_2: {
|
|
|
4928
5506
|
onBeforeClose: FunctionConstructor;
|
|
4929
5507
|
};
|
|
4930
5508
|
|
|
4931
|
-
declare type
|
|
4932
|
-
|
|
4933
|
-
declare const props_3: {
|
|
4934
|
-
render: {
|
|
4935
|
-
type: Render;
|
|
4936
|
-
default: () => null;
|
|
4937
|
-
};
|
|
4938
|
-
};
|
|
4939
|
-
|
|
4940
|
-
declare type Props_4 = ExtractPropTypes<typeof props_4>;
|
|
5509
|
+
declare type Props_5 = ExtractPropTypes<typeof props_5>;
|
|
4941
5510
|
|
|
4942
|
-
declare const
|
|
5511
|
+
declare const props_5: {
|
|
4943
5512
|
modelValue: {
|
|
4944
5513
|
type: BooleanConstructor;
|
|
4945
5514
|
default: boolean;
|
|
@@ -4949,7 +5518,7 @@ declare const props_4: {
|
|
|
4949
5518
|
validator: (v: string) => boolean;
|
|
4950
5519
|
};
|
|
4951
5520
|
content: {
|
|
4952
|
-
type: PropType<string |
|
|
5521
|
+
type: PropType<string | Props_2["render"]>;
|
|
4953
5522
|
default: string;
|
|
4954
5523
|
};
|
|
4955
5524
|
size: {
|
|
@@ -5013,16 +5582,16 @@ declare const props_4: {
|
|
|
5013
5582
|
};
|
|
5014
5583
|
};
|
|
5015
5584
|
|
|
5016
|
-
declare type
|
|
5585
|
+
declare type Props_6 = ExtractPropTypes<typeof props_6>;
|
|
5017
5586
|
|
|
5018
|
-
declare const
|
|
5587
|
+
declare const props_6: {
|
|
5019
5588
|
mode: {
|
|
5020
5589
|
type: PropType<"alert" | "operation">;
|
|
5021
5590
|
validator: (v: any) => boolean;
|
|
5022
5591
|
default: string;
|
|
5023
5592
|
};
|
|
5024
5593
|
content: {
|
|
5025
|
-
type: PropType<boolean | string |
|
|
5594
|
+
type: PropType<boolean | string | Props_2["render"]>;
|
|
5026
5595
|
};
|
|
5027
5596
|
width: {
|
|
5028
5597
|
type: NumberConstructor;
|
|
@@ -5069,11 +5638,11 @@ declare const props_5: {
|
|
|
5069
5638
|
};
|
|
5070
5639
|
};
|
|
5071
5640
|
|
|
5072
|
-
declare type
|
|
5641
|
+
declare type Props_7 = ExtractPropTypes<typeof props_7>;
|
|
5073
5642
|
|
|
5074
|
-
declare const
|
|
5075
|
-
title: PropType<string |
|
|
5076
|
-
content: PropType<string |
|
|
5643
|
+
declare const props_7: {
|
|
5644
|
+
title: PropType<string | Props_2["render"]>;
|
|
5645
|
+
content: PropType<string | Props_2["render"]>;
|
|
5077
5646
|
duration: {
|
|
5078
5647
|
type: NumberConstructor;
|
|
5079
5648
|
default: number;
|
|
@@ -5097,9 +5666,9 @@ declare const props_6: {
|
|
|
5097
5666
|
onBeforeClose: FunctionConstructor;
|
|
5098
5667
|
};
|
|
5099
5668
|
|
|
5100
|
-
declare type
|
|
5669
|
+
declare type Props_8 = ExtractPropTypes<typeof props_9>;
|
|
5101
5670
|
|
|
5102
|
-
declare const
|
|
5671
|
+
declare const props_8: {
|
|
5103
5672
|
autoResize: {
|
|
5104
5673
|
type: BooleanConstructor;
|
|
5105
5674
|
default: boolean;
|
|
@@ -5163,8 +5732,8 @@ declare const props_7: {
|
|
|
5163
5732
|
barTo: StringConstructor;
|
|
5164
5733
|
};
|
|
5165
5734
|
|
|
5166
|
-
declare const
|
|
5167
|
-
content: PropType<string |
|
|
5735
|
+
declare const props_9: {
|
|
5736
|
+
content: PropType<string | Props_2["render"]>;
|
|
5168
5737
|
maskClosable: {
|
|
5169
5738
|
type: BooleanConstructor;
|
|
5170
5739
|
default: boolean;
|
|
@@ -5464,16 +6033,16 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
5464
6033
|
}, {
|
|
5465
6034
|
tag: string;
|
|
5466
6035
|
autoResize: boolean;
|
|
5467
|
-
contentStyle: StyleValue;
|
|
5468
6036
|
height: string | number;
|
|
6037
|
+
wrapperClass: StyleValue;
|
|
6038
|
+
wrapperStyle: StyleValue;
|
|
6039
|
+
contentStyle: StyleValue;
|
|
5469
6040
|
always: boolean;
|
|
5470
6041
|
maxHeight: string | number;
|
|
5471
|
-
wrapperStyle: StyleValue;
|
|
5472
6042
|
thumbMinSize: number;
|
|
5473
6043
|
native: boolean;
|
|
5474
6044
|
trackOffsetX: number[];
|
|
5475
6045
|
trackOffsetY: number[];
|
|
5476
|
-
wrapperClass: StyleValue;
|
|
5477
6046
|
contentClass: StyleValue;
|
|
5478
6047
|
showBar: boolean;
|
|
5479
6048
|
}, {}>;
|
|
@@ -5484,7 +6053,7 @@ export declare type ScrollerExposed = {
|
|
|
5484
6053
|
setScrollLeft: (v: number) => void;
|
|
5485
6054
|
};
|
|
5486
6055
|
|
|
5487
|
-
export declare type ScrollerProps = ExtractPropTypes<typeof
|
|
6056
|
+
export declare type ScrollerProps = ExtractPropTypes<typeof props_8>;
|
|
5488
6057
|
|
|
5489
6058
|
export declare const ScrollerWheel: DefineComponent< {
|
|
5490
6059
|
autoResize: {
|
|
@@ -5615,16 +6184,16 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
5615
6184
|
}, {
|
|
5616
6185
|
tag: string;
|
|
5617
6186
|
autoResize: boolean;
|
|
5618
|
-
contentStyle: StyleValue;
|
|
5619
6187
|
height: string | number;
|
|
6188
|
+
wrapperClass: StyleValue;
|
|
6189
|
+
wrapperStyle: StyleValue;
|
|
6190
|
+
contentStyle: StyleValue;
|
|
5620
6191
|
always: boolean;
|
|
5621
6192
|
maxHeight: string | number;
|
|
5622
|
-
wrapperStyle: StyleValue;
|
|
5623
6193
|
thumbMinSize: number;
|
|
5624
6194
|
native: boolean;
|
|
5625
6195
|
trackOffsetX: number[];
|
|
5626
6196
|
trackOffsetY: number[];
|
|
5627
|
-
wrapperClass: StyleValue;
|
|
5628
6197
|
contentClass: StyleValue;
|
|
5629
6198
|
showBar: boolean;
|
|
5630
6199
|
}, {}>;
|
|
@@ -5726,13 +6295,13 @@ default: string;
|
|
|
5726
6295
|
tag: string;
|
|
5727
6296
|
}, {}>;
|
|
5728
6297
|
|
|
5729
|
-
declare const success: (...params: Array<
|
|
6298
|
+
declare const success: (...params: Array<Options_2[keyof Options_2] | Options_2>) => PortalLeaf;
|
|
5730
6299
|
|
|
5731
|
-
declare const success_2: (options:
|
|
6300
|
+
declare const success_2: (options: Options_3) => PortalLeaf;
|
|
5732
6301
|
|
|
5733
|
-
declare const success_3: (options:
|
|
6302
|
+
declare const success_3: (options: Options_5) => PortalLeaf;
|
|
5734
6303
|
|
|
5735
|
-
declare const success_4: (...params: Array<
|
|
6304
|
+
declare const success_4: (...params: Array<Options_6[keyof Options_6] | Options_6>) => PortalLeaf;
|
|
5736
6305
|
|
|
5737
6306
|
export declare const Switch: DefineComponent< {
|
|
5738
6307
|
tag: {
|
|
@@ -6207,7 +6776,7 @@ tag: string;
|
|
|
6207
6776
|
export declare const Toast: typeof MToast;
|
|
6208
6777
|
|
|
6209
6778
|
export declare const ToastView: DefineComponent< {
|
|
6210
|
-
content: PropType<string |
|
|
6779
|
+
content: PropType<string | Props_2["render"]>;
|
|
6211
6780
|
maskClosable: {
|
|
6212
6781
|
type: BooleanConstructor;
|
|
6213
6782
|
default: boolean;
|
|
@@ -6222,7 +6791,7 @@ default: string;
|
|
|
6222
6791
|
validator: (val: string) => boolean;
|
|
6223
6792
|
};
|
|
6224
6793
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled")[], "close" | "portal-fulfilled", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
6225
|
-
content: PropType<string |
|
|
6794
|
+
content: PropType<string | Props_2["render"]>;
|
|
6226
6795
|
maskClosable: {
|
|
6227
6796
|
type: BooleanConstructor;
|
|
6228
6797
|
default: boolean;
|
|
@@ -6799,12 +7368,12 @@ export declare type VcOptions = Partial<{
|
|
|
6799
7368
|
};
|
|
6800
7369
|
}>;
|
|
6801
7370
|
|
|
6802
|
-
declare const warning: (...params: Array<
|
|
7371
|
+
declare const warning: (...params: Array<Options_2[keyof Options_2] | Options_2>) => PortalLeaf;
|
|
6803
7372
|
|
|
6804
|
-
declare const warning_2: (options:
|
|
7373
|
+
declare const warning_2: (options: Options_3) => PortalLeaf;
|
|
6805
7374
|
|
|
6806
|
-
declare const warning_3: (options:
|
|
7375
|
+
declare const warning_3: (options: Options_5) => PortalLeaf;
|
|
6807
7376
|
|
|
6808
|
-
declare const warning_4: (...params: Array<
|
|
7377
|
+
declare const warning_4: (...params: Array<Options_6[keyof Options_6] | Options_6>) => PortalLeaf;
|
|
6809
7378
|
|
|
6810
7379
|
export { }
|