@deot/vc 1.0.62 → 1.0.64
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 +2 -2
- package/dist/index.d.ts +389 -106
- package/dist/index.iife.js +1414 -406
- package/dist/index.js +3 -3
- package/dist/index.umd.cjs +1414 -406
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -696,30 +696,295 @@ export declare const Components: {
|
|
|
696
696
|
padding: number;
|
|
697
697
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
698
698
|
Carousel: DefineComponent<ExtractPropTypes< {
|
|
699
|
-
|
|
699
|
+
t: {
|
|
700
|
+
type: NumberConstructor;
|
|
701
|
+
default: number;
|
|
702
|
+
};
|
|
703
|
+
card: BooleanConstructor;
|
|
704
|
+
gutter: {
|
|
705
|
+
type: NumberConstructor;
|
|
706
|
+
default: number;
|
|
707
|
+
};
|
|
708
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
709
|
+
initialIndex: {
|
|
710
|
+
type: NumberConstructor;
|
|
711
|
+
default: number;
|
|
712
|
+
};
|
|
713
|
+
trigger: {
|
|
700
714
|
type: StringConstructor;
|
|
701
715
|
default: string;
|
|
702
716
|
};
|
|
717
|
+
autoplay: {
|
|
718
|
+
type: BooleanConstructor;
|
|
719
|
+
default: boolean;
|
|
720
|
+
};
|
|
721
|
+
dots: {
|
|
722
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
723
|
+
default: string;
|
|
724
|
+
};
|
|
725
|
+
arrow: {
|
|
726
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
727
|
+
default: string;
|
|
728
|
+
};
|
|
729
|
+
loop: {
|
|
730
|
+
type: BooleanConstructor;
|
|
731
|
+
default: boolean;
|
|
732
|
+
};
|
|
733
|
+
vertical: {
|
|
734
|
+
type: BooleanConstructor;
|
|
735
|
+
default: boolean;
|
|
736
|
+
};
|
|
737
|
+
draggable: {
|
|
738
|
+
type: BooleanConstructor;
|
|
739
|
+
default: boolean;
|
|
740
|
+
};
|
|
703
741
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
704
|
-
|
|
742
|
+
t: {
|
|
743
|
+
type: NumberConstructor;
|
|
744
|
+
default: number;
|
|
745
|
+
};
|
|
746
|
+
card: BooleanConstructor;
|
|
747
|
+
gutter: {
|
|
748
|
+
type: NumberConstructor;
|
|
749
|
+
default: number;
|
|
750
|
+
};
|
|
751
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
752
|
+
initialIndex: {
|
|
753
|
+
type: NumberConstructor;
|
|
754
|
+
default: number;
|
|
755
|
+
};
|
|
756
|
+
trigger: {
|
|
705
757
|
type: StringConstructor;
|
|
706
758
|
default: string;
|
|
707
759
|
};
|
|
760
|
+
autoplay: {
|
|
761
|
+
type: BooleanConstructor;
|
|
762
|
+
default: boolean;
|
|
763
|
+
};
|
|
764
|
+
dots: {
|
|
765
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
766
|
+
default: string;
|
|
767
|
+
};
|
|
768
|
+
arrow: {
|
|
769
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
770
|
+
default: string;
|
|
771
|
+
};
|
|
772
|
+
loop: {
|
|
773
|
+
type: BooleanConstructor;
|
|
774
|
+
default: boolean;
|
|
775
|
+
};
|
|
776
|
+
vertical: {
|
|
777
|
+
type: BooleanConstructor;
|
|
778
|
+
default: boolean;
|
|
779
|
+
};
|
|
780
|
+
draggable: {
|
|
781
|
+
type: BooleanConstructor;
|
|
782
|
+
default: boolean;
|
|
783
|
+
};
|
|
708
784
|
}>> & Readonly<{}>, {
|
|
709
|
-
|
|
785
|
+
vertical: boolean;
|
|
786
|
+
t: number;
|
|
787
|
+
card: boolean;
|
|
788
|
+
gutter: number;
|
|
789
|
+
initialIndex: number;
|
|
790
|
+
trigger: string;
|
|
791
|
+
autoplay: boolean;
|
|
792
|
+
dots: string | boolean;
|
|
793
|
+
arrow: string | boolean;
|
|
794
|
+
loop: boolean;
|
|
795
|
+
draggable: boolean;
|
|
710
796
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
711
797
|
MCarousel: DefineComponent<ExtractPropTypes< {
|
|
712
|
-
|
|
798
|
+
dots: {
|
|
799
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
800
|
+
default: boolean;
|
|
801
|
+
};
|
|
802
|
+
indicator: {
|
|
803
|
+
type: BooleanConstructor;
|
|
804
|
+
default: boolean;
|
|
805
|
+
};
|
|
806
|
+
t: {
|
|
807
|
+
type: NumberConstructor;
|
|
808
|
+
default: number;
|
|
809
|
+
};
|
|
810
|
+
card: BooleanConstructor;
|
|
811
|
+
gutter: {
|
|
812
|
+
type: NumberConstructor;
|
|
813
|
+
default: number;
|
|
814
|
+
};
|
|
815
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
816
|
+
initialIndex: {
|
|
817
|
+
type: NumberConstructor;
|
|
818
|
+
default: number;
|
|
819
|
+
};
|
|
820
|
+
trigger: {
|
|
713
821
|
type: StringConstructor;
|
|
714
822
|
default: string;
|
|
715
823
|
};
|
|
824
|
+
autoplay: {
|
|
825
|
+
type: BooleanConstructor;
|
|
826
|
+
default: boolean;
|
|
827
|
+
};
|
|
828
|
+
arrow: {
|
|
829
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
830
|
+
default: string;
|
|
831
|
+
};
|
|
832
|
+
loop: {
|
|
833
|
+
type: BooleanConstructor;
|
|
834
|
+
default: boolean;
|
|
835
|
+
};
|
|
836
|
+
vertical: {
|
|
837
|
+
type: BooleanConstructor;
|
|
838
|
+
default: boolean;
|
|
839
|
+
};
|
|
840
|
+
draggable: {
|
|
841
|
+
type: BooleanConstructor;
|
|
842
|
+
default: boolean;
|
|
843
|
+
};
|
|
716
844
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
717
|
-
|
|
845
|
+
dots: {
|
|
846
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
847
|
+
default: boolean;
|
|
848
|
+
};
|
|
849
|
+
indicator: {
|
|
850
|
+
type: BooleanConstructor;
|
|
851
|
+
default: boolean;
|
|
852
|
+
};
|
|
853
|
+
t: {
|
|
854
|
+
type: NumberConstructor;
|
|
855
|
+
default: number;
|
|
856
|
+
};
|
|
857
|
+
card: BooleanConstructor;
|
|
858
|
+
gutter: {
|
|
859
|
+
type: NumberConstructor;
|
|
860
|
+
default: number;
|
|
861
|
+
};
|
|
862
|
+
height: (StringConstructor | NumberConstructor)[];
|
|
863
|
+
initialIndex: {
|
|
864
|
+
type: NumberConstructor;
|
|
865
|
+
default: number;
|
|
866
|
+
};
|
|
867
|
+
trigger: {
|
|
718
868
|
type: StringConstructor;
|
|
719
869
|
default: string;
|
|
720
870
|
};
|
|
871
|
+
autoplay: {
|
|
872
|
+
type: BooleanConstructor;
|
|
873
|
+
default: boolean;
|
|
874
|
+
};
|
|
875
|
+
arrow: {
|
|
876
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
877
|
+
default: string;
|
|
878
|
+
};
|
|
879
|
+
loop: {
|
|
880
|
+
type: BooleanConstructor;
|
|
881
|
+
default: boolean;
|
|
882
|
+
};
|
|
883
|
+
vertical: {
|
|
884
|
+
type: BooleanConstructor;
|
|
885
|
+
default: boolean;
|
|
886
|
+
};
|
|
887
|
+
draggable: {
|
|
888
|
+
type: BooleanConstructor;
|
|
889
|
+
default: boolean;
|
|
890
|
+
};
|
|
721
891
|
}>> & Readonly<{}>, {
|
|
722
|
-
|
|
892
|
+
vertical: boolean;
|
|
893
|
+
t: number;
|
|
894
|
+
card: boolean;
|
|
895
|
+
gutter: number;
|
|
896
|
+
initialIndex: number;
|
|
897
|
+
trigger: string;
|
|
898
|
+
autoplay: boolean;
|
|
899
|
+
dots: string | boolean;
|
|
900
|
+
arrow: string | boolean;
|
|
901
|
+
loop: boolean;
|
|
902
|
+
draggable: boolean;
|
|
903
|
+
indicator: boolean;
|
|
904
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
905
|
+
CarouselItem: DefineComponent<ExtractPropTypes< {
|
|
906
|
+
name: StringConstructor;
|
|
907
|
+
label: {
|
|
908
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
909
|
+
default: string;
|
|
910
|
+
};
|
|
911
|
+
width: {
|
|
912
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
913
|
+
default: string;
|
|
914
|
+
};
|
|
915
|
+
gutter: {
|
|
916
|
+
type: NumberConstructor;
|
|
917
|
+
default: number;
|
|
918
|
+
};
|
|
919
|
+
scale: {
|
|
920
|
+
type: NumberConstructor;
|
|
921
|
+
default: number;
|
|
922
|
+
};
|
|
923
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
924
|
+
name: StringConstructor;
|
|
925
|
+
label: {
|
|
926
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
927
|
+
default: string;
|
|
928
|
+
};
|
|
929
|
+
width: {
|
|
930
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
931
|
+
default: string;
|
|
932
|
+
};
|
|
933
|
+
gutter: {
|
|
934
|
+
type: NumberConstructor;
|
|
935
|
+
default: number;
|
|
936
|
+
};
|
|
937
|
+
scale: {
|
|
938
|
+
type: NumberConstructor;
|
|
939
|
+
default: number;
|
|
940
|
+
};
|
|
941
|
+
}>> & Readonly<{}>, {
|
|
942
|
+
label: string | number;
|
|
943
|
+
width: string | number;
|
|
944
|
+
gutter: number;
|
|
945
|
+
scale: number;
|
|
946
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
947
|
+
MCarouselItem: DefineComponent<ExtractPropTypes< {
|
|
948
|
+
name: StringConstructor;
|
|
949
|
+
label: {
|
|
950
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
951
|
+
default: string;
|
|
952
|
+
};
|
|
953
|
+
width: {
|
|
954
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
955
|
+
default: string;
|
|
956
|
+
};
|
|
957
|
+
gutter: {
|
|
958
|
+
type: NumberConstructor;
|
|
959
|
+
default: number;
|
|
960
|
+
};
|
|
961
|
+
scale: {
|
|
962
|
+
type: NumberConstructor;
|
|
963
|
+
default: number;
|
|
964
|
+
};
|
|
965
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
966
|
+
name: StringConstructor;
|
|
967
|
+
label: {
|
|
968
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
969
|
+
default: string;
|
|
970
|
+
};
|
|
971
|
+
width: {
|
|
972
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
973
|
+
default: string;
|
|
974
|
+
};
|
|
975
|
+
gutter: {
|
|
976
|
+
type: NumberConstructor;
|
|
977
|
+
default: number;
|
|
978
|
+
};
|
|
979
|
+
scale: {
|
|
980
|
+
type: NumberConstructor;
|
|
981
|
+
default: number;
|
|
982
|
+
};
|
|
983
|
+
}>> & Readonly<{}>, {
|
|
984
|
+
label: string | number;
|
|
985
|
+
width: string | number;
|
|
986
|
+
gutter: number;
|
|
987
|
+
scale: number;
|
|
723
988
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
724
989
|
Cascader: DefineComponent<ExtractPropTypes< {
|
|
725
990
|
data: {
|
|
@@ -905,15 +1170,15 @@ export declare const Components: {
|
|
|
905
1170
|
placement: string;
|
|
906
1171
|
disabled: boolean;
|
|
907
1172
|
extra: string;
|
|
1173
|
+
trigger: string;
|
|
1174
|
+
arrow: boolean;
|
|
908
1175
|
numerable: boolean;
|
|
909
1176
|
separator: string;
|
|
910
1177
|
max: number;
|
|
911
1178
|
nullValue: string | number | Record<string, any>;
|
|
912
1179
|
clearable: boolean;
|
|
913
1180
|
portal: boolean;
|
|
914
|
-
arrow: boolean;
|
|
915
1181
|
autoWidth: boolean;
|
|
916
|
-
trigger: string;
|
|
917
1182
|
searchPlaceholder: string;
|
|
918
1183
|
searchable: boolean;
|
|
919
1184
|
format: Function;
|
|
@@ -1103,15 +1368,15 @@ export declare const Components: {
|
|
|
1103
1368
|
placement: string;
|
|
1104
1369
|
disabled: boolean;
|
|
1105
1370
|
extra: string;
|
|
1371
|
+
trigger: string;
|
|
1372
|
+
arrow: boolean;
|
|
1106
1373
|
numerable: boolean;
|
|
1107
1374
|
separator: string;
|
|
1108
1375
|
max: number;
|
|
1109
1376
|
nullValue: string | number | Record<string, any>;
|
|
1110
1377
|
clearable: boolean;
|
|
1111
1378
|
portal: boolean;
|
|
1112
|
-
arrow: boolean;
|
|
1113
1379
|
autoWidth: boolean;
|
|
1114
|
-
trigger: string;
|
|
1115
1380
|
searchPlaceholder: string;
|
|
1116
1381
|
searchable: boolean;
|
|
1117
1382
|
format: Function;
|
|
@@ -1694,8 +1959,8 @@ export declare const Components: {
|
|
|
1694
1959
|
}>, {
|
|
1695
1960
|
tag: string;
|
|
1696
1961
|
trim: boolean;
|
|
1697
|
-
format: string;
|
|
1698
1962
|
t: number;
|
|
1963
|
+
format: string;
|
|
1699
1964
|
targetTime: string | number | Date;
|
|
1700
1965
|
serverTime: string | number | Date;
|
|
1701
1966
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1758,8 +2023,8 @@ export declare const Components: {
|
|
|
1758
2023
|
}>, {
|
|
1759
2024
|
tag: string;
|
|
1760
2025
|
trim: boolean;
|
|
1761
|
-
format: string;
|
|
1762
2026
|
t: number;
|
|
2027
|
+
format: string;
|
|
1763
2028
|
targetTime: string | number | Date;
|
|
1764
2029
|
serverTime: string | number | Date;
|
|
1765
2030
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -2165,14 +2430,14 @@ export declare const Components: {
|
|
|
2165
2430
|
tag: string;
|
|
2166
2431
|
placement: string;
|
|
2167
2432
|
disabled: boolean;
|
|
2433
|
+
trigger: string;
|
|
2434
|
+
arrow: boolean;
|
|
2168
2435
|
separator: string;
|
|
2169
2436
|
nullValue: string | number | Record<string, any>;
|
|
2170
2437
|
clearable: boolean;
|
|
2171
2438
|
open: boolean;
|
|
2172
2439
|
multiple: boolean;
|
|
2173
2440
|
portal: boolean;
|
|
2174
|
-
arrow: boolean;
|
|
2175
|
-
trigger: string;
|
|
2176
2441
|
changeOnSelect: boolean;
|
|
2177
2442
|
confirm: boolean;
|
|
2178
2443
|
splitPanels: boolean;
|
|
@@ -2324,14 +2589,14 @@ export declare const Components: {
|
|
|
2324
2589
|
tag: string;
|
|
2325
2590
|
placement: string;
|
|
2326
2591
|
disabled: boolean;
|
|
2592
|
+
trigger: string;
|
|
2593
|
+
arrow: boolean;
|
|
2327
2594
|
separator: string;
|
|
2328
2595
|
nullValue: string | number | Record<string, any>;
|
|
2329
2596
|
clearable: boolean;
|
|
2330
2597
|
open: boolean;
|
|
2331
2598
|
multiple: boolean;
|
|
2332
2599
|
portal: boolean;
|
|
2333
|
-
arrow: boolean;
|
|
2334
|
-
trigger: string;
|
|
2335
2600
|
changeOnSelect: boolean;
|
|
2336
2601
|
confirm: boolean;
|
|
2337
2602
|
splitPanels: boolean;
|
|
@@ -3428,8 +3693,8 @@ export declare const Components: {
|
|
|
3428
3693
|
}>, {
|
|
3429
3694
|
modelValue: boolean;
|
|
3430
3695
|
placement: string;
|
|
3431
|
-
arrow: boolean;
|
|
3432
3696
|
trigger: string;
|
|
3697
|
+
arrow: boolean;
|
|
3433
3698
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3434
3699
|
MDropdown: DefineComponent<ExtractPropTypes< {
|
|
3435
3700
|
modelValue: {
|
|
@@ -3476,8 +3741,8 @@ export declare const Components: {
|
|
|
3476
3741
|
}>, {
|
|
3477
3742
|
modelValue: boolean;
|
|
3478
3743
|
placement: string;
|
|
3479
|
-
arrow: boolean;
|
|
3480
3744
|
trigger: string;
|
|
3745
|
+
arrow: boolean;
|
|
3481
3746
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3482
3747
|
DropdownItem: DefineComponent<ExtractPropTypes< {
|
|
3483
3748
|
value: {
|
|
@@ -4785,6 +5050,10 @@ export declare const Components: {
|
|
|
4785
5050
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
4786
5051
|
}>, {
|
|
4787
5052
|
disabled: boolean;
|
|
5053
|
+
indicator: boolean | {
|
|
5054
|
+
inline: boolean;
|
|
5055
|
+
inverted: boolean;
|
|
5056
|
+
};
|
|
4788
5057
|
focusEnd: boolean;
|
|
4789
5058
|
clearable: boolean;
|
|
4790
5059
|
afloat: boolean;
|
|
@@ -4792,10 +5061,6 @@ export declare const Components: {
|
|
|
4792
5061
|
bytes: boolean;
|
|
4793
5062
|
styleless: boolean;
|
|
4794
5063
|
controllable: boolean;
|
|
4795
|
-
indicator: boolean | {
|
|
4796
|
-
inline: boolean;
|
|
4797
|
-
inverted: boolean;
|
|
4798
|
-
};
|
|
4799
5064
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4800
5065
|
MInput: DefineComponent<ExtractPropTypes< {
|
|
4801
5066
|
right: {
|
|
@@ -4920,6 +5185,7 @@ export declare const Components: {
|
|
|
4920
5185
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
4921
5186
|
}>, {
|
|
4922
5187
|
disabled: boolean;
|
|
5188
|
+
right: boolean;
|
|
4923
5189
|
focusEnd: boolean;
|
|
4924
5190
|
clearable: boolean;
|
|
4925
5191
|
afloat: boolean;
|
|
@@ -4927,7 +5193,6 @@ export declare const Components: {
|
|
|
4927
5193
|
bytes: boolean;
|
|
4928
5194
|
styleless: boolean;
|
|
4929
5195
|
controllable: boolean;
|
|
4930
|
-
right: boolean;
|
|
4931
5196
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4932
5197
|
InputNumber: DefineComponent<ExtractPropTypes< {
|
|
4933
5198
|
min: {
|
|
@@ -5644,8 +5909,8 @@ export declare const Components: {
|
|
|
5644
5909
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
5645
5910
|
}>, {
|
|
5646
5911
|
tag: string;
|
|
5647
|
-
multiple: boolean;
|
|
5648
5912
|
arrow: string | boolean;
|
|
5913
|
+
multiple: boolean;
|
|
5649
5914
|
alone: boolean;
|
|
5650
5915
|
labelWidth: string | number;
|
|
5651
5916
|
indent: number;
|
|
@@ -5706,8 +5971,8 @@ export declare const Components: {
|
|
|
5706
5971
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
5707
5972
|
}>, {
|
|
5708
5973
|
tag: string;
|
|
5709
|
-
multiple: boolean;
|
|
5710
5974
|
arrow: string | boolean;
|
|
5975
|
+
multiple: boolean;
|
|
5711
5976
|
alone: boolean;
|
|
5712
5977
|
labelWidth: string | number;
|
|
5713
5978
|
indent: number;
|
|
@@ -5741,9 +6006,9 @@ export declare const Components: {
|
|
|
5741
6006
|
default: boolean;
|
|
5742
6007
|
};
|
|
5743
6008
|
}>> & Readonly<{}>, {
|
|
6009
|
+
autoplay: boolean;
|
|
5744
6010
|
speed: number;
|
|
5745
6011
|
animated: boolean;
|
|
5746
|
-
autoplay: boolean;
|
|
5747
6012
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5748
6013
|
MMarquee: DefineComponent<ExtractPropTypes< {
|
|
5749
6014
|
speed: {
|
|
@@ -5774,9 +6039,9 @@ export declare const Components: {
|
|
|
5774
6039
|
default: boolean;
|
|
5775
6040
|
};
|
|
5776
6041
|
}>> & Readonly<{}>, {
|
|
6042
|
+
autoplay: boolean;
|
|
5777
6043
|
speed: number;
|
|
5778
6044
|
animated: boolean;
|
|
5779
|
-
autoplay: boolean;
|
|
5780
6045
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
5781
6046
|
Modal: {
|
|
5782
6047
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
@@ -5882,6 +6147,7 @@ export declare const Components: {
|
|
|
5882
6147
|
modelValue: boolean;
|
|
5883
6148
|
closable: boolean;
|
|
5884
6149
|
border: boolean;
|
|
6150
|
+
draggable: boolean;
|
|
5885
6151
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
5886
6152
|
maskClosable: boolean;
|
|
5887
6153
|
scrollable: boolean;
|
|
@@ -5891,7 +6157,6 @@ export declare const Components: {
|
|
|
5891
6157
|
okDisabled: boolean;
|
|
5892
6158
|
cancelDisabled: boolean;
|
|
5893
6159
|
escClosable: boolean;
|
|
5894
|
-
draggable: boolean;
|
|
5895
6160
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5896
6161
|
P: {};
|
|
5897
6162
|
B: {};
|
|
@@ -6002,6 +6267,7 @@ export declare const Components: {
|
|
|
6002
6267
|
modelValue: boolean;
|
|
6003
6268
|
closable: boolean;
|
|
6004
6269
|
border: boolean;
|
|
6270
|
+
draggable: boolean;
|
|
6005
6271
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6006
6272
|
maskClosable: boolean;
|
|
6007
6273
|
scrollable: boolean;
|
|
@@ -6011,7 +6277,6 @@ export declare const Components: {
|
|
|
6011
6277
|
okDisabled: boolean;
|
|
6012
6278
|
cancelDisabled: boolean;
|
|
6013
6279
|
escClosable: boolean;
|
|
6014
|
-
draggable: boolean;
|
|
6015
6280
|
}>;
|
|
6016
6281
|
__isFragment?: never;
|
|
6017
6282
|
__isTeleport?: never;
|
|
@@ -6119,6 +6384,7 @@ export declare const Components: {
|
|
|
6119
6384
|
modelValue: boolean;
|
|
6120
6385
|
closable: boolean;
|
|
6121
6386
|
border: boolean;
|
|
6387
|
+
draggable: boolean;
|
|
6122
6388
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6123
6389
|
maskClosable: boolean;
|
|
6124
6390
|
scrollable: boolean;
|
|
@@ -6128,7 +6394,6 @@ export declare const Components: {
|
|
|
6128
6394
|
okDisabled: boolean;
|
|
6129
6395
|
cancelDisabled: boolean;
|
|
6130
6396
|
escClosable: boolean;
|
|
6131
|
-
draggable: boolean;
|
|
6132
6397
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
6133
6398
|
destroy: () => void;
|
|
6134
6399
|
info: (options: Partial<{
|
|
@@ -6138,6 +6403,7 @@ export declare const Components: {
|
|
|
6138
6403
|
modelValue: boolean;
|
|
6139
6404
|
closable: boolean;
|
|
6140
6405
|
border: boolean;
|
|
6406
|
+
draggable: boolean;
|
|
6141
6407
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6142
6408
|
maskClosable: boolean;
|
|
6143
6409
|
scrollable: boolean;
|
|
@@ -6147,7 +6413,6 @@ export declare const Components: {
|
|
|
6147
6413
|
okDisabled: boolean;
|
|
6148
6414
|
cancelDisabled: boolean;
|
|
6149
6415
|
escClosable: boolean;
|
|
6150
|
-
draggable: boolean;
|
|
6151
6416
|
} & {
|
|
6152
6417
|
title?: string | undefined;
|
|
6153
6418
|
width?: number | undefined;
|
|
@@ -6171,6 +6436,7 @@ export declare const Components: {
|
|
|
6171
6436
|
modelValue: boolean;
|
|
6172
6437
|
closable: boolean;
|
|
6173
6438
|
border: boolean;
|
|
6439
|
+
draggable: boolean;
|
|
6174
6440
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6175
6441
|
maskClosable: boolean;
|
|
6176
6442
|
scrollable: boolean;
|
|
@@ -6180,7 +6446,6 @@ export declare const Components: {
|
|
|
6180
6446
|
okDisabled: boolean;
|
|
6181
6447
|
cancelDisabled: boolean;
|
|
6182
6448
|
escClosable: boolean;
|
|
6183
|
-
draggable: boolean;
|
|
6184
6449
|
} & {
|
|
6185
6450
|
title?: string | undefined;
|
|
6186
6451
|
width?: number | undefined;
|
|
@@ -6204,6 +6469,7 @@ export declare const Components: {
|
|
|
6204
6469
|
modelValue: boolean;
|
|
6205
6470
|
closable: boolean;
|
|
6206
6471
|
border: boolean;
|
|
6472
|
+
draggable: boolean;
|
|
6207
6473
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6208
6474
|
maskClosable: boolean;
|
|
6209
6475
|
scrollable: boolean;
|
|
@@ -6213,7 +6479,6 @@ export declare const Components: {
|
|
|
6213
6479
|
okDisabled: boolean;
|
|
6214
6480
|
cancelDisabled: boolean;
|
|
6215
6481
|
escClosable: boolean;
|
|
6216
|
-
draggable: boolean;
|
|
6217
6482
|
} & {
|
|
6218
6483
|
title?: string | undefined;
|
|
6219
6484
|
width?: number | undefined;
|
|
@@ -6237,6 +6502,7 @@ export declare const Components: {
|
|
|
6237
6502
|
modelValue: boolean;
|
|
6238
6503
|
closable: boolean;
|
|
6239
6504
|
border: boolean;
|
|
6505
|
+
draggable: boolean;
|
|
6240
6506
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6241
6507
|
maskClosable: boolean;
|
|
6242
6508
|
scrollable: boolean;
|
|
@@ -6246,7 +6512,6 @@ export declare const Components: {
|
|
|
6246
6512
|
okDisabled: boolean;
|
|
6247
6513
|
cancelDisabled: boolean;
|
|
6248
6514
|
escClosable: boolean;
|
|
6249
|
-
draggable: boolean;
|
|
6250
6515
|
} & {
|
|
6251
6516
|
title?: string | undefined;
|
|
6252
6517
|
width?: number | undefined;
|
|
@@ -6457,6 +6722,7 @@ export declare const Components: {
|
|
|
6457
6722
|
modelValue: boolean;
|
|
6458
6723
|
closable: boolean;
|
|
6459
6724
|
border: boolean;
|
|
6725
|
+
draggable: boolean;
|
|
6460
6726
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6461
6727
|
maskClosable: boolean;
|
|
6462
6728
|
scrollable: boolean;
|
|
@@ -6466,7 +6732,6 @@ export declare const Components: {
|
|
|
6466
6732
|
okDisabled: boolean;
|
|
6467
6733
|
cancelDisabled: boolean;
|
|
6468
6734
|
escClosable: boolean;
|
|
6469
|
-
draggable: boolean;
|
|
6470
6735
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
6471
6736
|
MModalView: DefineComponent<ExtractPropTypes< {
|
|
6472
6737
|
mode: {
|
|
@@ -7287,8 +7552,8 @@ export declare const Components: {
|
|
|
7287
7552
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7288
7553
|
modelValue: boolean;
|
|
7289
7554
|
placement: string;
|
|
7290
|
-
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7291
7555
|
trigger: string;
|
|
7556
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7292
7557
|
okText: string;
|
|
7293
7558
|
cancelText: string;
|
|
7294
7559
|
okType: string;
|
|
@@ -7394,8 +7659,8 @@ export declare const Components: {
|
|
|
7394
7659
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7395
7660
|
modelValue: boolean;
|
|
7396
7661
|
placement: string;
|
|
7397
|
-
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7398
7662
|
trigger: string;
|
|
7663
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7399
7664
|
okText: string;
|
|
7400
7665
|
cancelText: string;
|
|
7401
7666
|
okType: string;
|
|
@@ -7409,6 +7674,10 @@ export declare const Components: {
|
|
|
7409
7674
|
default: string;
|
|
7410
7675
|
validator: (value: string) => boolean;
|
|
7411
7676
|
};
|
|
7677
|
+
arrow: {
|
|
7678
|
+
type: BooleanConstructor;
|
|
7679
|
+
default: boolean;
|
|
7680
|
+
};
|
|
7412
7681
|
always: BooleanConstructor;
|
|
7413
7682
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7414
7683
|
animation: StringConstructor;
|
|
@@ -7422,10 +7691,6 @@ export declare const Components: {
|
|
|
7422
7691
|
type: BooleanConstructor;
|
|
7423
7692
|
default: boolean;
|
|
7424
7693
|
};
|
|
7425
|
-
arrow: {
|
|
7426
|
-
type: BooleanConstructor;
|
|
7427
|
-
default: boolean;
|
|
7428
|
-
};
|
|
7429
7694
|
autoWidth: {
|
|
7430
7695
|
type: BooleanConstructor;
|
|
7431
7696
|
default: boolean;
|
|
@@ -7461,12 +7726,12 @@ export declare const Components: {
|
|
|
7461
7726
|
modelValue: boolean;
|
|
7462
7727
|
placement: string;
|
|
7463
7728
|
disabled: boolean;
|
|
7729
|
+
trigger: string;
|
|
7730
|
+
arrow: boolean;
|
|
7464
7731
|
always: boolean;
|
|
7465
7732
|
theme: string;
|
|
7466
7733
|
portal: boolean;
|
|
7467
|
-
arrow: boolean;
|
|
7468
7734
|
autoWidth: boolean;
|
|
7469
|
-
trigger: string;
|
|
7470
7735
|
outsideClickable: boolean;
|
|
7471
7736
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
7472
7737
|
P: {};
|
|
@@ -7482,6 +7747,10 @@ export declare const Components: {
|
|
|
7482
7747
|
default: string;
|
|
7483
7748
|
validator: (value: string) => boolean;
|
|
7484
7749
|
};
|
|
7750
|
+
arrow: {
|
|
7751
|
+
type: BooleanConstructor;
|
|
7752
|
+
default: boolean;
|
|
7753
|
+
};
|
|
7485
7754
|
always: BooleanConstructor;
|
|
7486
7755
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7487
7756
|
animation: StringConstructor;
|
|
@@ -7495,10 +7764,6 @@ export declare const Components: {
|
|
|
7495
7764
|
type: BooleanConstructor;
|
|
7496
7765
|
default: boolean;
|
|
7497
7766
|
};
|
|
7498
|
-
arrow: {
|
|
7499
|
-
type: BooleanConstructor;
|
|
7500
|
-
default: boolean;
|
|
7501
|
-
};
|
|
7502
7767
|
autoWidth: {
|
|
7503
7768
|
type: BooleanConstructor;
|
|
7504
7769
|
default: boolean;
|
|
@@ -7534,12 +7799,12 @@ export declare const Components: {
|
|
|
7534
7799
|
modelValue: boolean;
|
|
7535
7800
|
placement: string;
|
|
7536
7801
|
disabled: boolean;
|
|
7802
|
+
trigger: string;
|
|
7803
|
+
arrow: boolean;
|
|
7537
7804
|
always: boolean;
|
|
7538
7805
|
theme: string;
|
|
7539
7806
|
portal: boolean;
|
|
7540
|
-
arrow: boolean;
|
|
7541
7807
|
autoWidth: boolean;
|
|
7542
|
-
trigger: string;
|
|
7543
7808
|
outsideClickable: boolean;
|
|
7544
7809
|
}>;
|
|
7545
7810
|
__isFragment?: never;
|
|
@@ -7552,6 +7817,10 @@ export declare const Components: {
|
|
|
7552
7817
|
default: string;
|
|
7553
7818
|
validator: (value: string) => boolean;
|
|
7554
7819
|
};
|
|
7820
|
+
arrow: {
|
|
7821
|
+
type: BooleanConstructor;
|
|
7822
|
+
default: boolean;
|
|
7823
|
+
};
|
|
7555
7824
|
always: BooleanConstructor;
|
|
7556
7825
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7557
7826
|
animation: StringConstructor;
|
|
@@ -7565,10 +7834,6 @@ export declare const Components: {
|
|
|
7565
7834
|
type: BooleanConstructor;
|
|
7566
7835
|
default: boolean;
|
|
7567
7836
|
};
|
|
7568
|
-
arrow: {
|
|
7569
|
-
type: BooleanConstructor;
|
|
7570
|
-
default: boolean;
|
|
7571
|
-
};
|
|
7572
7837
|
autoWidth: {
|
|
7573
7838
|
type: BooleanConstructor;
|
|
7574
7839
|
default: boolean;
|
|
@@ -7604,12 +7869,12 @@ export declare const Components: {
|
|
|
7604
7869
|
modelValue: boolean;
|
|
7605
7870
|
placement: string;
|
|
7606
7871
|
disabled: boolean;
|
|
7872
|
+
trigger: string;
|
|
7873
|
+
arrow: boolean;
|
|
7607
7874
|
always: boolean;
|
|
7608
7875
|
theme: string;
|
|
7609
7876
|
portal: boolean;
|
|
7610
|
-
arrow: boolean;
|
|
7611
7877
|
autoWidth: boolean;
|
|
7612
|
-
trigger: string;
|
|
7613
7878
|
outsideClickable: boolean;
|
|
7614
7879
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
7615
7880
|
open: {
|
|
@@ -7626,6 +7891,10 @@ export declare const Components: {
|
|
|
7626
7891
|
default: string;
|
|
7627
7892
|
validator: (value: string) => boolean;
|
|
7628
7893
|
};
|
|
7894
|
+
arrow: {
|
|
7895
|
+
type: BooleanConstructor;
|
|
7896
|
+
default: boolean;
|
|
7897
|
+
};
|
|
7629
7898
|
always: BooleanConstructor;
|
|
7630
7899
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7631
7900
|
animation: StringConstructor;
|
|
@@ -7639,10 +7908,6 @@ export declare const Components: {
|
|
|
7639
7908
|
type: BooleanConstructor;
|
|
7640
7909
|
default: boolean;
|
|
7641
7910
|
};
|
|
7642
|
-
arrow: {
|
|
7643
|
-
type: BooleanConstructor;
|
|
7644
|
-
default: boolean;
|
|
7645
|
-
};
|
|
7646
7911
|
autoWidth: {
|
|
7647
7912
|
type: BooleanConstructor;
|
|
7648
7913
|
default: boolean;
|
|
@@ -7678,12 +7943,12 @@ export declare const Components: {
|
|
|
7678
7943
|
modelValue: boolean;
|
|
7679
7944
|
placement: string;
|
|
7680
7945
|
disabled: boolean;
|
|
7946
|
+
trigger: string;
|
|
7947
|
+
arrow: boolean;
|
|
7681
7948
|
always: boolean;
|
|
7682
7949
|
theme: string;
|
|
7683
7950
|
portal: boolean;
|
|
7684
|
-
arrow: boolean;
|
|
7685
7951
|
autoWidth: boolean;
|
|
7686
|
-
trigger: string;
|
|
7687
7952
|
outsideClickable: boolean;
|
|
7688
7953
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
7689
7954
|
P: {};
|
|
@@ -7699,6 +7964,10 @@ export declare const Components: {
|
|
|
7699
7964
|
default: string;
|
|
7700
7965
|
validator: (value: string) => boolean;
|
|
7701
7966
|
};
|
|
7967
|
+
arrow: {
|
|
7968
|
+
type: BooleanConstructor;
|
|
7969
|
+
default: boolean;
|
|
7970
|
+
};
|
|
7702
7971
|
always: BooleanConstructor;
|
|
7703
7972
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7704
7973
|
animation: StringConstructor;
|
|
@@ -7712,10 +7981,6 @@ export declare const Components: {
|
|
|
7712
7981
|
type: BooleanConstructor;
|
|
7713
7982
|
default: boolean;
|
|
7714
7983
|
};
|
|
7715
|
-
arrow: {
|
|
7716
|
-
type: BooleanConstructor;
|
|
7717
|
-
default: boolean;
|
|
7718
|
-
};
|
|
7719
7984
|
autoWidth: {
|
|
7720
7985
|
type: BooleanConstructor;
|
|
7721
7986
|
default: boolean;
|
|
@@ -7751,12 +8016,12 @@ export declare const Components: {
|
|
|
7751
8016
|
modelValue: boolean;
|
|
7752
8017
|
placement: string;
|
|
7753
8018
|
disabled: boolean;
|
|
8019
|
+
trigger: string;
|
|
8020
|
+
arrow: boolean;
|
|
7754
8021
|
always: boolean;
|
|
7755
8022
|
theme: string;
|
|
7756
8023
|
portal: boolean;
|
|
7757
|
-
arrow: boolean;
|
|
7758
8024
|
autoWidth: boolean;
|
|
7759
|
-
trigger: string;
|
|
7760
8025
|
outsideClickable: boolean;
|
|
7761
8026
|
}>;
|
|
7762
8027
|
__isFragment?: never;
|
|
@@ -7769,6 +8034,10 @@ export declare const Components: {
|
|
|
7769
8034
|
default: string;
|
|
7770
8035
|
validator: (value: string) => boolean;
|
|
7771
8036
|
};
|
|
8037
|
+
arrow: {
|
|
8038
|
+
type: BooleanConstructor;
|
|
8039
|
+
default: boolean;
|
|
8040
|
+
};
|
|
7772
8041
|
always: BooleanConstructor;
|
|
7773
8042
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7774
8043
|
animation: StringConstructor;
|
|
@@ -7782,10 +8051,6 @@ export declare const Components: {
|
|
|
7782
8051
|
type: BooleanConstructor;
|
|
7783
8052
|
default: boolean;
|
|
7784
8053
|
};
|
|
7785
|
-
arrow: {
|
|
7786
|
-
type: BooleanConstructor;
|
|
7787
|
-
default: boolean;
|
|
7788
|
-
};
|
|
7789
8054
|
autoWidth: {
|
|
7790
8055
|
type: BooleanConstructor;
|
|
7791
8056
|
default: boolean;
|
|
@@ -7821,12 +8086,12 @@ export declare const Components: {
|
|
|
7821
8086
|
modelValue: boolean;
|
|
7822
8087
|
placement: string;
|
|
7823
8088
|
disabled: boolean;
|
|
8089
|
+
trigger: string;
|
|
8090
|
+
arrow: boolean;
|
|
7824
8091
|
always: boolean;
|
|
7825
8092
|
theme: string;
|
|
7826
8093
|
portal: boolean;
|
|
7827
|
-
arrow: boolean;
|
|
7828
8094
|
autoWidth: boolean;
|
|
7829
|
-
trigger: string;
|
|
7830
8095
|
outsideClickable: boolean;
|
|
7831
8096
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
7832
8097
|
open: {
|
|
@@ -8945,10 +9210,10 @@ export declare const Components: {
|
|
|
8945
9210
|
disabled: boolean;
|
|
8946
9211
|
offset: number;
|
|
8947
9212
|
vertical: boolean;
|
|
9213
|
+
gutter: number;
|
|
8948
9214
|
loadData: Function;
|
|
8949
9215
|
pageSize: number;
|
|
8950
9216
|
cols: number;
|
|
8951
|
-
gutter: number;
|
|
8952
9217
|
inverted: boolean;
|
|
8953
9218
|
pullable: boolean;
|
|
8954
9219
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -9054,10 +9319,10 @@ export declare const Components: {
|
|
|
9054
9319
|
disabled: boolean;
|
|
9055
9320
|
offset: number;
|
|
9056
9321
|
vertical: boolean;
|
|
9322
|
+
gutter: number;
|
|
9057
9323
|
loadData: Function;
|
|
9058
9324
|
pageSize: number;
|
|
9059
9325
|
cols: number;
|
|
9060
|
-
gutter: number;
|
|
9061
9326
|
inverted: boolean;
|
|
9062
9327
|
pullable: boolean;
|
|
9063
9328
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -9566,15 +9831,15 @@ export declare const Components: {
|
|
|
9566
9831
|
placement: string;
|
|
9567
9832
|
disabled: boolean;
|
|
9568
9833
|
extra: string;
|
|
9834
|
+
trigger: string;
|
|
9835
|
+
arrow: boolean;
|
|
9569
9836
|
numerable: boolean;
|
|
9570
9837
|
separator: string;
|
|
9571
9838
|
max: number;
|
|
9572
9839
|
nullValue: string | number | Record<string, any>;
|
|
9573
9840
|
clearable: boolean;
|
|
9574
9841
|
portal: boolean;
|
|
9575
|
-
arrow: boolean;
|
|
9576
9842
|
autoWidth: boolean;
|
|
9577
|
-
trigger: string;
|
|
9578
9843
|
searchPlaceholder: string;
|
|
9579
9844
|
searchable: boolean;
|
|
9580
9845
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -9747,15 +10012,15 @@ export declare const Components: {
|
|
|
9747
10012
|
placement: string;
|
|
9748
10013
|
disabled: boolean;
|
|
9749
10014
|
extra: string;
|
|
10015
|
+
trigger: string;
|
|
10016
|
+
arrow: boolean;
|
|
9750
10017
|
numerable: boolean;
|
|
9751
10018
|
separator: string;
|
|
9752
10019
|
max: number;
|
|
9753
10020
|
nullValue: string | number | Record<string, any>;
|
|
9754
10021
|
clearable: boolean;
|
|
9755
10022
|
portal: boolean;
|
|
9756
|
-
arrow: boolean;
|
|
9757
10023
|
autoWidth: boolean;
|
|
9758
|
-
trigger: string;
|
|
9759
10024
|
searchPlaceholder: string;
|
|
9760
10025
|
searchable: boolean;
|
|
9761
10026
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -11341,10 +11606,10 @@ export declare const Components: {
|
|
|
11341
11606
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
11342
11607
|
}>, {
|
|
11343
11608
|
disabled: boolean;
|
|
11609
|
+
indicator: boolean | Record<string, any>;
|
|
11344
11610
|
allowDispatch: boolean;
|
|
11345
11611
|
bytes: boolean;
|
|
11346
11612
|
controllable: boolean;
|
|
11347
|
-
indicator: boolean | Record<string, any>;
|
|
11348
11613
|
wrap: string;
|
|
11349
11614
|
rows: number;
|
|
11350
11615
|
autosize: boolean | Record<string, any>;
|
|
@@ -11631,14 +11896,14 @@ export declare const Components: {
|
|
|
11631
11896
|
tag: string;
|
|
11632
11897
|
placement: string;
|
|
11633
11898
|
disabled: boolean;
|
|
11899
|
+
trigger: string;
|
|
11900
|
+
arrow: boolean;
|
|
11634
11901
|
separator: string;
|
|
11635
11902
|
nullValue: string | number | Record<string, any>;
|
|
11636
11903
|
clearable: boolean;
|
|
11637
11904
|
open: boolean;
|
|
11638
11905
|
multiple: boolean;
|
|
11639
11906
|
portal: boolean;
|
|
11640
|
-
arrow: boolean;
|
|
11641
|
-
trigger: string;
|
|
11642
11907
|
changeOnSelect: boolean;
|
|
11643
11908
|
confirm: boolean;
|
|
11644
11909
|
splitPanels: boolean;
|
|
@@ -11790,14 +12055,14 @@ export declare const Components: {
|
|
|
11790
12055
|
tag: string;
|
|
11791
12056
|
placement: string;
|
|
11792
12057
|
disabled: boolean;
|
|
12058
|
+
trigger: string;
|
|
12059
|
+
arrow: boolean;
|
|
11793
12060
|
separator: string;
|
|
11794
12061
|
nullValue: string | number | Record<string, any>;
|
|
11795
12062
|
clearable: boolean;
|
|
11796
12063
|
open: boolean;
|
|
11797
12064
|
multiple: boolean;
|
|
11798
12065
|
portal: boolean;
|
|
11799
|
-
arrow: boolean;
|
|
11800
|
-
trigger: string;
|
|
11801
12066
|
changeOnSelect: boolean;
|
|
11802
12067
|
confirm: boolean;
|
|
11803
12068
|
splitPanels: boolean;
|
|
@@ -12985,6 +13250,7 @@ export declare const Components: {
|
|
|
12985
13250
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
12986
13251
|
}>, {
|
|
12987
13252
|
data: unknown[];
|
|
13253
|
+
draggable: boolean;
|
|
12988
13254
|
numerable: boolean;
|
|
12989
13255
|
separator: string;
|
|
12990
13256
|
max: number;
|
|
@@ -12993,7 +13259,6 @@ export declare const Components: {
|
|
|
12993
13259
|
accordion: boolean;
|
|
12994
13260
|
indent: number;
|
|
12995
13261
|
lazy: boolean;
|
|
12996
|
-
draggable: boolean;
|
|
12997
13262
|
defaultExpandAll: boolean;
|
|
12998
13263
|
emptyText: string;
|
|
12999
13264
|
keyValue: {
|
|
@@ -13221,6 +13486,7 @@ export declare const Components: {
|
|
|
13221
13486
|
"onNode-drop"?: ((...args: any[]) => any) | undefined;
|
|
13222
13487
|
}>, {
|
|
13223
13488
|
data: unknown[];
|
|
13489
|
+
draggable: boolean;
|
|
13224
13490
|
numerable: boolean;
|
|
13225
13491
|
separator: string;
|
|
13226
13492
|
max: number;
|
|
@@ -13229,7 +13495,6 @@ export declare const Components: {
|
|
|
13229
13495
|
accordion: boolean;
|
|
13230
13496
|
indent: number;
|
|
13231
13497
|
lazy: boolean;
|
|
13232
|
-
draggable: boolean;
|
|
13233
13498
|
defaultExpandAll: boolean;
|
|
13234
13499
|
emptyText: string;
|
|
13235
13500
|
keyValue: {
|
|
@@ -13250,6 +13515,14 @@ export declare const Components: {
|
|
|
13250
13515
|
highlightCurrent: boolean;
|
|
13251
13516
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13252
13517
|
TreeSelect: DefineComponent<ExtractPropTypes< {
|
|
13518
|
+
autoWidth: {
|
|
13519
|
+
type: BooleanConstructor;
|
|
13520
|
+
default: undefined;
|
|
13521
|
+
};
|
|
13522
|
+
cascader: {
|
|
13523
|
+
type: BooleanConstructor;
|
|
13524
|
+
default: boolean;
|
|
13525
|
+
};
|
|
13253
13526
|
data: {
|
|
13254
13527
|
type: ArrayConstructor;
|
|
13255
13528
|
default: () => never[];
|
|
@@ -13286,10 +13559,6 @@ export declare const Components: {
|
|
|
13286
13559
|
type: BooleanConstructor;
|
|
13287
13560
|
default: boolean;
|
|
13288
13561
|
};
|
|
13289
|
-
autoWidth: {
|
|
13290
|
-
type: BooleanConstructor;
|
|
13291
|
-
default: boolean;
|
|
13292
|
-
};
|
|
13293
13562
|
maxTags: NumberConstructor;
|
|
13294
13563
|
searchable: {
|
|
13295
13564
|
type: BooleanConstructor;
|
|
@@ -13333,6 +13602,14 @@ export declare const Components: {
|
|
|
13333
13602
|
};
|
|
13334
13603
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13335
13604
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
13605
|
+
autoWidth: {
|
|
13606
|
+
type: BooleanConstructor;
|
|
13607
|
+
default: undefined;
|
|
13608
|
+
};
|
|
13609
|
+
cascader: {
|
|
13610
|
+
type: BooleanConstructor;
|
|
13611
|
+
default: boolean;
|
|
13612
|
+
};
|
|
13336
13613
|
data: {
|
|
13337
13614
|
type: ArrayConstructor;
|
|
13338
13615
|
default: () => never[];
|
|
@@ -13369,10 +13646,6 @@ export declare const Components: {
|
|
|
13369
13646
|
type: BooleanConstructor;
|
|
13370
13647
|
default: boolean;
|
|
13371
13648
|
};
|
|
13372
|
-
autoWidth: {
|
|
13373
|
-
type: BooleanConstructor;
|
|
13374
|
-
default: boolean;
|
|
13375
|
-
};
|
|
13376
13649
|
maxTags: NumberConstructor;
|
|
13377
13650
|
searchable: {
|
|
13378
13651
|
type: BooleanConstructor;
|
|
@@ -13428,20 +13701,29 @@ export declare const Components: {
|
|
|
13428
13701
|
placement: string;
|
|
13429
13702
|
disabled: boolean;
|
|
13430
13703
|
extra: string;
|
|
13704
|
+
trigger: string;
|
|
13705
|
+
arrow: boolean;
|
|
13431
13706
|
numerable: boolean;
|
|
13432
13707
|
separator: string;
|
|
13433
13708
|
max: number;
|
|
13434
13709
|
nullValue: string | number | Record<string, any>;
|
|
13435
13710
|
clearable: boolean;
|
|
13436
13711
|
portal: boolean;
|
|
13437
|
-
arrow: boolean;
|
|
13438
13712
|
autoWidth: boolean;
|
|
13439
|
-
trigger: string;
|
|
13440
13713
|
searchPlaceholder: string;
|
|
13441
13714
|
searchable: boolean;
|
|
13715
|
+
cascader: boolean;
|
|
13442
13716
|
checkStrictly: boolean;
|
|
13443
13717
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13444
13718
|
MTreeSelect: DefineComponent<ExtractPropTypes< {
|
|
13719
|
+
autoWidth: {
|
|
13720
|
+
type: BooleanConstructor;
|
|
13721
|
+
default: undefined;
|
|
13722
|
+
};
|
|
13723
|
+
cascader: {
|
|
13724
|
+
type: BooleanConstructor;
|
|
13725
|
+
default: boolean;
|
|
13726
|
+
};
|
|
13445
13727
|
data: {
|
|
13446
13728
|
type: ArrayConstructor;
|
|
13447
13729
|
default: () => never[];
|
|
@@ -13478,10 +13760,6 @@ export declare const Components: {
|
|
|
13478
13760
|
type: BooleanConstructor;
|
|
13479
13761
|
default: boolean;
|
|
13480
13762
|
};
|
|
13481
|
-
autoWidth: {
|
|
13482
|
-
type: BooleanConstructor;
|
|
13483
|
-
default: boolean;
|
|
13484
|
-
};
|
|
13485
13763
|
maxTags: NumberConstructor;
|
|
13486
13764
|
searchable: {
|
|
13487
13765
|
type: BooleanConstructor;
|
|
@@ -13525,6 +13803,14 @@ export declare const Components: {
|
|
|
13525
13803
|
};
|
|
13526
13804
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13527
13805
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready")[], "clear" | "change" | "close" | "update:modelValue" | "visible-change" | "ready", PublicProps, Readonly<ExtractPropTypes< {
|
|
13806
|
+
autoWidth: {
|
|
13807
|
+
type: BooleanConstructor;
|
|
13808
|
+
default: undefined;
|
|
13809
|
+
};
|
|
13810
|
+
cascader: {
|
|
13811
|
+
type: BooleanConstructor;
|
|
13812
|
+
default: boolean;
|
|
13813
|
+
};
|
|
13528
13814
|
data: {
|
|
13529
13815
|
type: ArrayConstructor;
|
|
13530
13816
|
default: () => never[];
|
|
@@ -13561,10 +13847,6 @@ export declare const Components: {
|
|
|
13561
13847
|
type: BooleanConstructor;
|
|
13562
13848
|
default: boolean;
|
|
13563
13849
|
};
|
|
13564
|
-
autoWidth: {
|
|
13565
|
-
type: BooleanConstructor;
|
|
13566
|
-
default: boolean;
|
|
13567
|
-
};
|
|
13568
13850
|
maxTags: NumberConstructor;
|
|
13569
13851
|
searchable: {
|
|
13570
13852
|
type: BooleanConstructor;
|
|
@@ -13620,17 +13902,18 @@ export declare const Components: {
|
|
|
13620
13902
|
placement: string;
|
|
13621
13903
|
disabled: boolean;
|
|
13622
13904
|
extra: string;
|
|
13905
|
+
trigger: string;
|
|
13906
|
+
arrow: boolean;
|
|
13623
13907
|
numerable: boolean;
|
|
13624
13908
|
separator: string;
|
|
13625
13909
|
max: number;
|
|
13626
13910
|
nullValue: string | number | Record<string, any>;
|
|
13627
13911
|
clearable: boolean;
|
|
13628
13912
|
portal: boolean;
|
|
13629
|
-
arrow: boolean;
|
|
13630
13913
|
autoWidth: boolean;
|
|
13631
|
-
trigger: string;
|
|
13632
13914
|
searchPlaceholder: string;
|
|
13633
13915
|
searchable: boolean;
|
|
13916
|
+
cascader: boolean;
|
|
13634
13917
|
checkStrictly: boolean;
|
|
13635
13918
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13636
13919
|
Upload: {
|