@deot/vc-components 1.0.43 → 1.0.45
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 +218 -16
- package/dist/index.d.ts +336 -188
- package/dist/index.iife.js +455 -265
- package/dist/index.js +218 -18
- package/dist/index.style.css +2 -2
- package/dist/index.umd.cjs +455 -265
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -41,6 +41,62 @@ default: string;
|
|
|
41
41
|
tag: string;
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
43
43
|
|
|
44
|
+
export declare const Affix: DefineComponent<ExtractPropTypes< {
|
|
45
|
+
zIndex: {
|
|
46
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
47
|
+
default: number;
|
|
48
|
+
};
|
|
49
|
+
placement: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
default: string;
|
|
52
|
+
};
|
|
53
|
+
disabled: {
|
|
54
|
+
type: BooleanConstructor;
|
|
55
|
+
default: boolean;
|
|
56
|
+
};
|
|
57
|
+
fixed: {
|
|
58
|
+
type: BooleanConstructor;
|
|
59
|
+
default: boolean;
|
|
60
|
+
};
|
|
61
|
+
offset: {
|
|
62
|
+
type: NumberConstructor;
|
|
63
|
+
default: number;
|
|
64
|
+
};
|
|
65
|
+
target: {
|
|
66
|
+
type: StringConstructor;
|
|
67
|
+
};
|
|
68
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
69
|
+
zIndex: {
|
|
70
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
71
|
+
default: number;
|
|
72
|
+
};
|
|
73
|
+
placement: {
|
|
74
|
+
type: StringConstructor;
|
|
75
|
+
default: string;
|
|
76
|
+
};
|
|
77
|
+
disabled: {
|
|
78
|
+
type: BooleanConstructor;
|
|
79
|
+
default: boolean;
|
|
80
|
+
};
|
|
81
|
+
fixed: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: boolean;
|
|
84
|
+
};
|
|
85
|
+
offset: {
|
|
86
|
+
type: NumberConstructor;
|
|
87
|
+
default: number;
|
|
88
|
+
};
|
|
89
|
+
target: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
};
|
|
92
|
+
}>> & Readonly<{}>, {
|
|
93
|
+
zIndex: string | number;
|
|
94
|
+
placement: string;
|
|
95
|
+
disabled: boolean;
|
|
96
|
+
fixed: boolean;
|
|
97
|
+
offset: number;
|
|
98
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
99
|
+
|
|
44
100
|
export declare const Alert: DefineComponent<ExtractPropTypes< {
|
|
45
101
|
modelValue: {
|
|
46
102
|
type: BooleanConstructor;
|
|
@@ -94,8 +150,8 @@ default: boolean;
|
|
|
94
150
|
}>> & Readonly<{}>, {
|
|
95
151
|
title: string;
|
|
96
152
|
desc: string;
|
|
97
|
-
modelValue: boolean;
|
|
98
153
|
type: "error" | "success" | "info" | "warning";
|
|
154
|
+
modelValue: boolean;
|
|
99
155
|
icon: string | boolean;
|
|
100
156
|
closable: boolean;
|
|
101
157
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -189,10 +245,10 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
189
245
|
size: "small" | "large" | "medium";
|
|
190
246
|
tag: string;
|
|
191
247
|
circle: boolean;
|
|
248
|
+
disabled: boolean;
|
|
192
249
|
type: "error" | "text" | "default" | "success" | "warning" | "primary";
|
|
193
250
|
round: boolean;
|
|
194
251
|
wait: number;
|
|
195
|
-
disabled: boolean;
|
|
196
252
|
long: boolean;
|
|
197
253
|
solid: boolean;
|
|
198
254
|
dashed: boolean;
|
|
@@ -382,11 +438,11 @@ nullValue: {
|
|
|
382
438
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
383
439
|
default: undefined;
|
|
384
440
|
};
|
|
385
|
-
modelValue: PropType<string | number | any[]>;
|
|
386
441
|
disabled: {
|
|
387
442
|
type: BooleanConstructor;
|
|
388
443
|
default: boolean;
|
|
389
444
|
};
|
|
445
|
+
modelValue: PropType<string | number | any[]>;
|
|
390
446
|
clearable: {
|
|
391
447
|
type: BooleanConstructor;
|
|
392
448
|
default: boolean;
|
|
@@ -467,11 +523,11 @@ nullValue: {
|
|
|
467
523
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
468
524
|
default: undefined;
|
|
469
525
|
};
|
|
470
|
-
modelValue: PropType<string | number | any[]>;
|
|
471
526
|
disabled: {
|
|
472
527
|
type: BooleanConstructor;
|
|
473
528
|
default: boolean;
|
|
474
529
|
};
|
|
530
|
+
modelValue: PropType<string | number | any[]>;
|
|
475
531
|
clearable: {
|
|
476
532
|
type: BooleanConstructor;
|
|
477
533
|
default: boolean;
|
|
@@ -493,6 +549,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
493
549
|
}>, {
|
|
494
550
|
tag: string;
|
|
495
551
|
data: TreeData[];
|
|
552
|
+
placement: string;
|
|
496
553
|
disabled: boolean;
|
|
497
554
|
extra: string;
|
|
498
555
|
numerable: boolean;
|
|
@@ -500,7 +557,6 @@ separator: string;
|
|
|
500
557
|
max: number;
|
|
501
558
|
nullValue: string | number | Record<string, any>;
|
|
502
559
|
clearable: boolean;
|
|
503
|
-
placement: string;
|
|
504
560
|
portal: boolean;
|
|
505
561
|
arrow: boolean;
|
|
506
562
|
autoWidth: boolean;
|
|
@@ -606,8 +662,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
606
662
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
607
663
|
}>, {
|
|
608
664
|
label: string | number | boolean;
|
|
609
|
-
modelValue: string | number | boolean;
|
|
610
665
|
disabled: boolean;
|
|
666
|
+
modelValue: string | number | boolean;
|
|
611
667
|
value: string | number | boolean;
|
|
612
668
|
indeterminate: boolean;
|
|
613
669
|
checkedValue: string | number | boolean;
|
|
@@ -792,11 +848,11 @@ type: NumberConstructor;
|
|
|
792
848
|
default: number;
|
|
793
849
|
};
|
|
794
850
|
targetTime: {
|
|
795
|
-
type: (StringConstructor |
|
|
851
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
796
852
|
default: string;
|
|
797
853
|
};
|
|
798
854
|
serverTime: {
|
|
799
|
-
type: (StringConstructor |
|
|
855
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
800
856
|
default: string;
|
|
801
857
|
};
|
|
802
858
|
render: FunctionConstructor;
|
|
@@ -818,11 +874,11 @@ type: NumberConstructor;
|
|
|
818
874
|
default: number;
|
|
819
875
|
};
|
|
820
876
|
targetTime: {
|
|
821
|
-
type: (StringConstructor |
|
|
877
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
822
878
|
default: string;
|
|
823
879
|
};
|
|
824
880
|
serverTime: {
|
|
825
|
-
type: (StringConstructor |
|
|
881
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
826
882
|
default: string;
|
|
827
883
|
};
|
|
828
884
|
render: FunctionConstructor;
|
|
@@ -1003,13 +1059,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
1003
1059
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
1004
1060
|
}>, {
|
|
1005
1061
|
tag: string;
|
|
1062
|
+
placement: string;
|
|
1006
1063
|
disabled: boolean;
|
|
1007
1064
|
separator: string;
|
|
1008
1065
|
nullValue: string | number | Record<string, any>;
|
|
1009
1066
|
clearable: boolean;
|
|
1010
1067
|
open: boolean;
|
|
1011
1068
|
multiple: boolean;
|
|
1012
|
-
placement: string;
|
|
1013
1069
|
portal: boolean;
|
|
1014
1070
|
arrow: boolean;
|
|
1015
1071
|
trigger: string;
|
|
@@ -1080,8 +1136,8 @@ default: string;
|
|
|
1080
1136
|
validator(val: string): boolean;
|
|
1081
1137
|
};
|
|
1082
1138
|
}>> & Readonly<{}>, {
|
|
1083
|
-
vertical: boolean;
|
|
1084
1139
|
placement: string;
|
|
1140
|
+
vertical: boolean;
|
|
1085
1141
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1086
1142
|
|
|
1087
1143
|
export declare const Drawer: {
|
|
@@ -1161,11 +1217,11 @@ export declare const Drawer: {
|
|
|
1161
1217
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], PublicProps, {
|
|
1162
1218
|
footer: boolean;
|
|
1163
1219
|
mask: boolean;
|
|
1164
|
-
|
|
1220
|
+
placement: string;
|
|
1165
1221
|
width: number;
|
|
1166
1222
|
height: number;
|
|
1223
|
+
modelValue: boolean;
|
|
1167
1224
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1168
|
-
placement: string;
|
|
1169
1225
|
maskClosable: boolean;
|
|
1170
1226
|
scrollable: boolean;
|
|
1171
1227
|
closeWithCancel: boolean;
|
|
@@ -1256,11 +1312,11 @@ export declare const Drawer: {
|
|
|
1256
1312
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
1257
1313
|
footer: boolean;
|
|
1258
1314
|
mask: boolean;
|
|
1259
|
-
|
|
1315
|
+
placement: string;
|
|
1260
1316
|
width: number;
|
|
1261
1317
|
height: number;
|
|
1318
|
+
modelValue: boolean;
|
|
1262
1319
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1263
|
-
placement: string;
|
|
1264
1320
|
maskClosable: boolean;
|
|
1265
1321
|
scrollable: boolean;
|
|
1266
1322
|
closeWithCancel: boolean;
|
|
@@ -1348,11 +1404,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
1348
1404
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", {
|
|
1349
1405
|
footer: boolean;
|
|
1350
1406
|
mask: boolean;
|
|
1351
|
-
|
|
1407
|
+
placement: string;
|
|
1352
1408
|
width: number;
|
|
1353
1409
|
height: number;
|
|
1410
|
+
modelValue: boolean;
|
|
1354
1411
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1355
|
-
placement: string;
|
|
1356
1412
|
maskClosable: boolean;
|
|
1357
1413
|
scrollable: boolean;
|
|
1358
1414
|
closeWithCancel: boolean;
|
|
@@ -1510,11 +1566,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
1510
1566
|
}>, {
|
|
1511
1567
|
footer: boolean;
|
|
1512
1568
|
mask: boolean;
|
|
1513
|
-
|
|
1569
|
+
placement: string;
|
|
1514
1570
|
width: number;
|
|
1515
1571
|
height: number;
|
|
1572
|
+
modelValue: boolean;
|
|
1516
1573
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1517
|
-
placement: string;
|
|
1518
1574
|
maskClosable: boolean;
|
|
1519
1575
|
scrollable: boolean;
|
|
1520
1576
|
closeWithCancel: boolean;
|
|
@@ -1567,8 +1623,8 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
1567
1623
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1568
1624
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1569
1625
|
}>, {
|
|
1570
|
-
modelValue: boolean;
|
|
1571
1626
|
placement: string;
|
|
1627
|
+
modelValue: boolean;
|
|
1572
1628
|
arrow: boolean;
|
|
1573
1629
|
trigger: string;
|
|
1574
1630
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1624,8 +1680,8 @@ type: BooleanConstructor;
|
|
|
1624
1680
|
default: boolean;
|
|
1625
1681
|
};
|
|
1626
1682
|
}>> & Readonly<{}>, {
|
|
1627
|
-
closable: boolean;
|
|
1628
1683
|
disabled: boolean;
|
|
1684
|
+
closable: boolean;
|
|
1629
1685
|
selected: boolean;
|
|
1630
1686
|
divided: boolean;
|
|
1631
1687
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1696,8 +1752,8 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
1696
1752
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1697
1753
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1698
1754
|
}>, {
|
|
1699
|
-
modelValue: string;
|
|
1700
1755
|
disabled: boolean;
|
|
1756
|
+
modelValue: string;
|
|
1701
1757
|
enhancer: boolean | Function;
|
|
1702
1758
|
uploadOptions: Record<string, any>;
|
|
1703
1759
|
previewable: boolean;
|
|
@@ -1851,7 +1907,7 @@ tag: string;
|
|
|
1851
1907
|
styleless: boolean;
|
|
1852
1908
|
inline: boolean;
|
|
1853
1909
|
showMessage: boolean;
|
|
1854
|
-
labelPosition: "
|
|
1910
|
+
labelPosition: "top" | "left" | "right";
|
|
1855
1911
|
autocomplete: "on" | "off";
|
|
1856
1912
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
1857
1913
|
|
|
@@ -2583,6 +2639,62 @@ default: string;
|
|
|
2583
2639
|
tag: string;
|
|
2584
2640
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2585
2641
|
|
|
2642
|
+
export declare const MAffix: DefineComponent<ExtractPropTypes< {
|
|
2643
|
+
zIndex: {
|
|
2644
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2645
|
+
default: number;
|
|
2646
|
+
};
|
|
2647
|
+
placement: {
|
|
2648
|
+
type: StringConstructor;
|
|
2649
|
+
default: string;
|
|
2650
|
+
};
|
|
2651
|
+
disabled: {
|
|
2652
|
+
type: BooleanConstructor;
|
|
2653
|
+
default: boolean;
|
|
2654
|
+
};
|
|
2655
|
+
fixed: {
|
|
2656
|
+
type: BooleanConstructor;
|
|
2657
|
+
default: boolean;
|
|
2658
|
+
};
|
|
2659
|
+
offset: {
|
|
2660
|
+
type: NumberConstructor;
|
|
2661
|
+
default: number;
|
|
2662
|
+
};
|
|
2663
|
+
target: {
|
|
2664
|
+
type: StringConstructor;
|
|
2665
|
+
};
|
|
2666
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
2667
|
+
zIndex: {
|
|
2668
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
2669
|
+
default: number;
|
|
2670
|
+
};
|
|
2671
|
+
placement: {
|
|
2672
|
+
type: StringConstructor;
|
|
2673
|
+
default: string;
|
|
2674
|
+
};
|
|
2675
|
+
disabled: {
|
|
2676
|
+
type: BooleanConstructor;
|
|
2677
|
+
default: boolean;
|
|
2678
|
+
};
|
|
2679
|
+
fixed: {
|
|
2680
|
+
type: BooleanConstructor;
|
|
2681
|
+
default: boolean;
|
|
2682
|
+
};
|
|
2683
|
+
offset: {
|
|
2684
|
+
type: NumberConstructor;
|
|
2685
|
+
default: number;
|
|
2686
|
+
};
|
|
2687
|
+
target: {
|
|
2688
|
+
type: StringConstructor;
|
|
2689
|
+
};
|
|
2690
|
+
}>> & Readonly<{}>, {
|
|
2691
|
+
zIndex: string | number;
|
|
2692
|
+
placement: string;
|
|
2693
|
+
disabled: boolean;
|
|
2694
|
+
fixed: boolean;
|
|
2695
|
+
offset: number;
|
|
2696
|
+
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2697
|
+
|
|
2586
2698
|
export declare const MAlert: DefineComponent<ExtractPropTypes< {
|
|
2587
2699
|
modelValue: {
|
|
2588
2700
|
type: BooleanConstructor;
|
|
@@ -2636,8 +2748,8 @@ default: boolean;
|
|
|
2636
2748
|
}>> & Readonly<{}>, {
|
|
2637
2749
|
title: string;
|
|
2638
2750
|
desc: string;
|
|
2639
|
-
modelValue: boolean;
|
|
2640
2751
|
type: "error" | "success" | "info" | "warning";
|
|
2752
|
+
modelValue: boolean;
|
|
2641
2753
|
icon: string | boolean;
|
|
2642
2754
|
closable: boolean;
|
|
2643
2755
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -2785,10 +2897,10 @@ onClick?: ((...args: any[]) => any) | undefined;
|
|
|
2785
2897
|
size: "small" | "large" | "medium";
|
|
2786
2898
|
tag: string;
|
|
2787
2899
|
circle: boolean;
|
|
2900
|
+
disabled: boolean;
|
|
2788
2901
|
type: "error" | "text" | "default" | "success" | "warning" | "primary";
|
|
2789
2902
|
round: boolean;
|
|
2790
2903
|
wait: number;
|
|
2791
|
-
disabled: boolean;
|
|
2792
2904
|
long: boolean;
|
|
2793
2905
|
solid: boolean;
|
|
2794
2906
|
dashed: boolean;
|
|
@@ -2978,11 +3090,11 @@ nullValue: {
|
|
|
2978
3090
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
2979
3091
|
default: undefined;
|
|
2980
3092
|
};
|
|
2981
|
-
modelValue: PropType<string | number | any[]>;
|
|
2982
3093
|
disabled: {
|
|
2983
3094
|
type: BooleanConstructor;
|
|
2984
3095
|
default: boolean;
|
|
2985
3096
|
};
|
|
3097
|
+
modelValue: PropType<string | number | any[]>;
|
|
2986
3098
|
clearable: {
|
|
2987
3099
|
type: BooleanConstructor;
|
|
2988
3100
|
default: boolean;
|
|
@@ -3063,11 +3175,11 @@ nullValue: {
|
|
|
3063
3175
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
3064
3176
|
default: undefined;
|
|
3065
3177
|
};
|
|
3066
|
-
modelValue: PropType<string | number | any[]>;
|
|
3067
3178
|
disabled: {
|
|
3068
3179
|
type: BooleanConstructor;
|
|
3069
3180
|
default: boolean;
|
|
3070
3181
|
};
|
|
3182
|
+
modelValue: PropType<string | number | any[]>;
|
|
3071
3183
|
clearable: {
|
|
3072
3184
|
type: BooleanConstructor;
|
|
3073
3185
|
default: boolean;
|
|
@@ -3089,6 +3201,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
3089
3201
|
}>, {
|
|
3090
3202
|
tag: string;
|
|
3091
3203
|
data: TreeData[];
|
|
3204
|
+
placement: string;
|
|
3092
3205
|
disabled: boolean;
|
|
3093
3206
|
extra: string;
|
|
3094
3207
|
numerable: boolean;
|
|
@@ -3096,7 +3209,6 @@ separator: string;
|
|
|
3096
3209
|
max: number;
|
|
3097
3210
|
nullValue: string | number | Record<string, any>;
|
|
3098
3211
|
clearable: boolean;
|
|
3099
|
-
placement: string;
|
|
3100
3212
|
portal: boolean;
|
|
3101
3213
|
arrow: boolean;
|
|
3102
3214
|
autoWidth: boolean;
|
|
@@ -3202,8 +3314,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
3202
3314
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3203
3315
|
}>, {
|
|
3204
3316
|
label: string | number | boolean;
|
|
3205
|
-
modelValue: string | number | boolean;
|
|
3206
3317
|
disabled: boolean;
|
|
3318
|
+
modelValue: string | number | boolean;
|
|
3207
3319
|
value: string | number | boolean;
|
|
3208
3320
|
indeterminate: boolean;
|
|
3209
3321
|
checkedValue: string | number | boolean;
|
|
@@ -3387,11 +3499,11 @@ type: NumberConstructor;
|
|
|
3387
3499
|
default: number;
|
|
3388
3500
|
};
|
|
3389
3501
|
targetTime: {
|
|
3390
|
-
type: (StringConstructor |
|
|
3502
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3391
3503
|
default: string;
|
|
3392
3504
|
};
|
|
3393
3505
|
serverTime: {
|
|
3394
|
-
type: (StringConstructor |
|
|
3506
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3395
3507
|
default: string;
|
|
3396
3508
|
};
|
|
3397
3509
|
render: FunctionConstructor;
|
|
@@ -3413,11 +3525,11 @@ type: NumberConstructor;
|
|
|
3413
3525
|
default: number;
|
|
3414
3526
|
};
|
|
3415
3527
|
targetTime: {
|
|
3416
|
-
type: (StringConstructor |
|
|
3528
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3417
3529
|
default: string;
|
|
3418
3530
|
};
|
|
3419
3531
|
serverTime: {
|
|
3420
|
-
type: (StringConstructor |
|
|
3532
|
+
type: (StringConstructor | NumberConstructor | DateConstructor)[];
|
|
3421
3533
|
default: string;
|
|
3422
3534
|
};
|
|
3423
3535
|
render: FunctionConstructor;
|
|
@@ -3598,13 +3710,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
3598
3710
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
3599
3711
|
}>, {
|
|
3600
3712
|
tag: string;
|
|
3713
|
+
placement: string;
|
|
3601
3714
|
disabled: boolean;
|
|
3602
3715
|
separator: string;
|
|
3603
3716
|
nullValue: string | number | Record<string, any>;
|
|
3604
3717
|
clearable: boolean;
|
|
3605
3718
|
open: boolean;
|
|
3606
3719
|
multiple: boolean;
|
|
3607
|
-
placement: string;
|
|
3608
3720
|
portal: boolean;
|
|
3609
3721
|
arrow: boolean;
|
|
3610
3722
|
trigger: string;
|
|
@@ -3635,8 +3747,8 @@ default: string;
|
|
|
3635
3747
|
validator(val: string): boolean;
|
|
3636
3748
|
};
|
|
3637
3749
|
}>> & Readonly<{}>, {
|
|
3638
|
-
vertical: boolean;
|
|
3639
3750
|
placement: string;
|
|
3751
|
+
vertical: boolean;
|
|
3640
3752
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3641
3753
|
|
|
3642
3754
|
export declare const MDrawer: {
|
|
@@ -3716,11 +3828,11 @@ export declare const MDrawer: {
|
|
|
3716
3828
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], PublicProps, {
|
|
3717
3829
|
footer: boolean;
|
|
3718
3830
|
mask: boolean;
|
|
3719
|
-
|
|
3831
|
+
placement: string;
|
|
3720
3832
|
width: number;
|
|
3721
3833
|
height: number;
|
|
3834
|
+
modelValue: boolean;
|
|
3722
3835
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3723
|
-
placement: string;
|
|
3724
3836
|
maskClosable: boolean;
|
|
3725
3837
|
scrollable: boolean;
|
|
3726
3838
|
closeWithCancel: boolean;
|
|
@@ -3811,11 +3923,11 @@ export declare const MDrawer: {
|
|
|
3811
3923
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
3812
3924
|
footer: boolean;
|
|
3813
3925
|
mask: boolean;
|
|
3814
|
-
|
|
3926
|
+
placement: string;
|
|
3815
3927
|
width: number;
|
|
3816
3928
|
height: number;
|
|
3929
|
+
modelValue: boolean;
|
|
3817
3930
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3818
|
-
placement: string;
|
|
3819
3931
|
maskClosable: boolean;
|
|
3820
3932
|
scrollable: boolean;
|
|
3821
3933
|
closeWithCancel: boolean;
|
|
@@ -3903,11 +4015,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
3903
4015
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", {
|
|
3904
4016
|
footer: boolean;
|
|
3905
4017
|
mask: boolean;
|
|
3906
|
-
|
|
4018
|
+
placement: string;
|
|
3907
4019
|
width: number;
|
|
3908
4020
|
height: number;
|
|
4021
|
+
modelValue: boolean;
|
|
3909
4022
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3910
|
-
placement: string;
|
|
3911
4023
|
maskClosable: boolean;
|
|
3912
4024
|
scrollable: boolean;
|
|
3913
4025
|
closeWithCancel: boolean;
|
|
@@ -3919,11 +4031,11 @@ cancelDisabled: boolean;
|
|
|
3919
4031
|
open: (options: Partial<{
|
|
3920
4032
|
footer: boolean;
|
|
3921
4033
|
mask: boolean;
|
|
3922
|
-
|
|
4034
|
+
placement: string;
|
|
3923
4035
|
width: number;
|
|
3924
4036
|
height: number;
|
|
4037
|
+
modelValue: boolean;
|
|
3925
4038
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3926
|
-
placement: string;
|
|
3927
4039
|
maskClosable: boolean;
|
|
3928
4040
|
scrollable: boolean;
|
|
3929
4041
|
closeWithCancel: boolean;
|
|
@@ -4091,11 +4203,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4091
4203
|
}>, {
|
|
4092
4204
|
footer: boolean;
|
|
4093
4205
|
mask: boolean;
|
|
4094
|
-
|
|
4206
|
+
placement: string;
|
|
4095
4207
|
width: number;
|
|
4096
4208
|
height: number;
|
|
4209
|
+
modelValue: boolean;
|
|
4097
4210
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
4098
|
-
placement: string;
|
|
4099
4211
|
maskClosable: boolean;
|
|
4100
4212
|
scrollable: boolean;
|
|
4101
4213
|
closeWithCancel: boolean;
|
|
@@ -4148,8 +4260,8 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4148
4260
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
4149
4261
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
4150
4262
|
}>, {
|
|
4151
|
-
modelValue: boolean;
|
|
4152
4263
|
placement: string;
|
|
4264
|
+
modelValue: boolean;
|
|
4153
4265
|
arrow: boolean;
|
|
4154
4266
|
trigger: string;
|
|
4155
4267
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -4205,8 +4317,8 @@ type: BooleanConstructor;
|
|
|
4205
4317
|
default: boolean;
|
|
4206
4318
|
};
|
|
4207
4319
|
}>> & Readonly<{}>, {
|
|
4208
|
-
closable: boolean;
|
|
4209
4320
|
disabled: boolean;
|
|
4321
|
+
closable: boolean;
|
|
4210
4322
|
selected: boolean;
|
|
4211
4323
|
divided: boolean;
|
|
4212
4324
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -4277,8 +4389,8 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
4277
4389
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4278
4390
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
4279
4391
|
}>, {
|
|
4280
|
-
modelValue: string;
|
|
4281
4392
|
disabled: boolean;
|
|
4393
|
+
modelValue: string;
|
|
4282
4394
|
enhancer: boolean | Function;
|
|
4283
4395
|
uploadOptions: Record<string, any>;
|
|
4284
4396
|
previewable: boolean;
|
|
@@ -4323,11 +4435,11 @@ export declare const Message: {
|
|
|
4323
4435
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
4324
4436
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
4325
4437
|
mask: boolean;
|
|
4438
|
+
top: number;
|
|
4439
|
+
fixed: boolean;
|
|
4326
4440
|
closable: boolean;
|
|
4327
4441
|
duration: number;
|
|
4328
4442
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
4329
|
-
fixed: boolean;
|
|
4330
|
-
top: number;
|
|
4331
4443
|
maskClosable: boolean;
|
|
4332
4444
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
4333
4445
|
P: {};
|
|
@@ -4374,11 +4486,11 @@ export declare const Message: {
|
|
|
4374
4486
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
4375
4487
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
4376
4488
|
mask: boolean;
|
|
4489
|
+
top: number;
|
|
4490
|
+
fixed: boolean;
|
|
4377
4491
|
closable: boolean;
|
|
4378
4492
|
duration: number;
|
|
4379
4493
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
4380
|
-
fixed: boolean;
|
|
4381
|
-
top: number;
|
|
4382
4494
|
maskClosable: boolean;
|
|
4383
4495
|
}>;
|
|
4384
4496
|
__isFragment?: never;
|
|
@@ -4422,11 +4534,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4422
4534
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
4423
4535
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
4424
4536
|
mask: boolean;
|
|
4537
|
+
top: number;
|
|
4538
|
+
fixed: boolean;
|
|
4425
4539
|
closable: boolean;
|
|
4426
4540
|
duration: number;
|
|
4427
4541
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
4428
|
-
fixed: boolean;
|
|
4429
|
-
top: number;
|
|
4430
4542
|
maskClosable: boolean;
|
|
4431
4543
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
4432
4544
|
destroy: () => void;
|
|
@@ -4507,11 +4619,11 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4507
4619
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
4508
4620
|
}>, {
|
|
4509
4621
|
mask: boolean;
|
|
4622
|
+
top: number;
|
|
4623
|
+
fixed: boolean;
|
|
4510
4624
|
closable: boolean;
|
|
4511
4625
|
duration: number;
|
|
4512
4626
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
4513
|
-
fixed: boolean;
|
|
4514
|
-
top: number;
|
|
4515
4627
|
maskClosable: boolean;
|
|
4516
4628
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
4517
4629
|
|
|
@@ -4639,7 +4751,7 @@ border: boolean;
|
|
|
4639
4751
|
styleless: boolean;
|
|
4640
4752
|
inline: boolean;
|
|
4641
4753
|
showMessage: boolean;
|
|
4642
|
-
labelPosition: "
|
|
4754
|
+
labelPosition: "top" | "left" | "right";
|
|
4643
4755
|
autocomplete: "on" | "off";
|
|
4644
4756
|
showToast: boolean;
|
|
4645
4757
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -5494,11 +5606,11 @@ export declare const MMessage: {
|
|
|
5494
5606
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5495
5607
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
5496
5608
|
mask: boolean;
|
|
5609
|
+
top: number;
|
|
5610
|
+
fixed: boolean;
|
|
5497
5611
|
closable: boolean;
|
|
5498
5612
|
duration: number;
|
|
5499
5613
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5500
|
-
fixed: boolean;
|
|
5501
|
-
top: number;
|
|
5502
5614
|
maskClosable: boolean;
|
|
5503
5615
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
5504
5616
|
P: {};
|
|
@@ -5545,11 +5657,11 @@ export declare const MMessage: {
|
|
|
5545
5657
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5546
5658
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5547
5659
|
mask: boolean;
|
|
5660
|
+
top: number;
|
|
5661
|
+
fixed: boolean;
|
|
5548
5662
|
closable: boolean;
|
|
5549
5663
|
duration: number;
|
|
5550
5664
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5551
|
-
fixed: boolean;
|
|
5552
|
-
top: number;
|
|
5553
5665
|
maskClosable: boolean;
|
|
5554
5666
|
}>;
|
|
5555
5667
|
__isFragment?: never;
|
|
@@ -5593,21 +5705,21 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
5593
5705
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
5594
5706
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
5595
5707
|
mask: boolean;
|
|
5708
|
+
top: number;
|
|
5709
|
+
fixed: boolean;
|
|
5596
5710
|
closable: boolean;
|
|
5597
5711
|
duration: number;
|
|
5598
5712
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5599
|
-
fixed: boolean;
|
|
5600
|
-
top: number;
|
|
5601
5713
|
maskClosable: boolean;
|
|
5602
5714
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
5603
5715
|
destroy: () => void;
|
|
5604
5716
|
info: (...params: Array<(string | number | boolean | Function | ((props: Record<string, unknown>, context: SetupContext) => any) | ((...args: any[]) => any) | undefined) | Partial<{
|
|
5605
5717
|
mask: boolean;
|
|
5718
|
+
top: number;
|
|
5719
|
+
fixed: boolean;
|
|
5606
5720
|
closable: boolean;
|
|
5607
5721
|
duration: number;
|
|
5608
5722
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5609
|
-
fixed: boolean;
|
|
5610
|
-
top: number;
|
|
5611
5723
|
maskClosable: boolean;
|
|
5612
5724
|
} & {
|
|
5613
5725
|
content?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
@@ -5617,11 +5729,11 @@ maskClosable: boolean;
|
|
|
5617
5729
|
}>>) => PortalLeaf;
|
|
5618
5730
|
success: (...params: Array<(string | number | boolean | Function | ((props: Record<string, unknown>, context: SetupContext) => any) | ((...args: any[]) => any) | undefined) | Partial<{
|
|
5619
5731
|
mask: boolean;
|
|
5732
|
+
top: number;
|
|
5733
|
+
fixed: boolean;
|
|
5620
5734
|
closable: boolean;
|
|
5621
5735
|
duration: number;
|
|
5622
5736
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5623
|
-
fixed: boolean;
|
|
5624
|
-
top: number;
|
|
5625
5737
|
maskClosable: boolean;
|
|
5626
5738
|
} & {
|
|
5627
5739
|
content?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
@@ -5631,11 +5743,11 @@ maskClosable: boolean;
|
|
|
5631
5743
|
}>>) => PortalLeaf;
|
|
5632
5744
|
loading: (...params: Array<(string | number | boolean | Function | ((props: Record<string, unknown>, context: SetupContext) => any) | ((...args: any[]) => any) | undefined) | Partial<{
|
|
5633
5745
|
mask: boolean;
|
|
5746
|
+
top: number;
|
|
5747
|
+
fixed: boolean;
|
|
5634
5748
|
closable: boolean;
|
|
5635
5749
|
duration: number;
|
|
5636
5750
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5637
|
-
fixed: boolean;
|
|
5638
|
-
top: number;
|
|
5639
5751
|
maskClosable: boolean;
|
|
5640
5752
|
} & {
|
|
5641
5753
|
content?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
@@ -5645,11 +5757,11 @@ maskClosable: boolean;
|
|
|
5645
5757
|
}>>) => PortalLeaf;
|
|
5646
5758
|
warning: (...params: Array<(string | number | boolean | Function | ((props: Record<string, unknown>, context: SetupContext) => any) | ((...args: any[]) => any) | undefined) | Partial<{
|
|
5647
5759
|
mask: boolean;
|
|
5760
|
+
top: number;
|
|
5761
|
+
fixed: boolean;
|
|
5648
5762
|
closable: boolean;
|
|
5649
5763
|
duration: number;
|
|
5650
5764
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5651
|
-
fixed: boolean;
|
|
5652
|
-
top: number;
|
|
5653
5765
|
maskClosable: boolean;
|
|
5654
5766
|
} & {
|
|
5655
5767
|
content?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
@@ -5659,11 +5771,11 @@ maskClosable: boolean;
|
|
|
5659
5771
|
}>>) => PortalLeaf;
|
|
5660
5772
|
error: (...params: Array<(string | number | boolean | Function | ((props: Record<string, unknown>, context: SetupContext) => any) | ((...args: any[]) => any) | undefined) | Partial<{
|
|
5661
5773
|
mask: boolean;
|
|
5774
|
+
top: number;
|
|
5775
|
+
fixed: boolean;
|
|
5662
5776
|
closable: boolean;
|
|
5663
5777
|
duration: number;
|
|
5664
5778
|
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5665
|
-
fixed: boolean;
|
|
5666
|
-
top: number;
|
|
5667
5779
|
maskClosable: boolean;
|
|
5668
5780
|
} & {
|
|
5669
5781
|
content?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
@@ -5745,9 +5857,9 @@ declare const MModal_2: {
|
|
|
5745
5857
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok")[], PublicProps, {
|
|
5746
5858
|
footer: boolean;
|
|
5747
5859
|
mask: boolean;
|
|
5860
|
+
width: number;
|
|
5748
5861
|
modelValue: boolean;
|
|
5749
5862
|
mode: "alert" | "operation";
|
|
5750
|
-
width: number;
|
|
5751
5863
|
maskClosable: boolean;
|
|
5752
5864
|
closeWithCancel: boolean;
|
|
5753
5865
|
okText: string | boolean;
|
|
@@ -5820,9 +5932,9 @@ declare const MModal_2: {
|
|
|
5820
5932
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5821
5933
|
footer: boolean;
|
|
5822
5934
|
mask: boolean;
|
|
5935
|
+
width: number;
|
|
5823
5936
|
modelValue: boolean;
|
|
5824
5937
|
mode: "alert" | "operation";
|
|
5825
|
-
width: number;
|
|
5826
5938
|
maskClosable: boolean;
|
|
5827
5939
|
closeWithCancel: boolean;
|
|
5828
5940
|
okText: string | boolean;
|
|
@@ -5892,9 +6004,9 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
5892
6004
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok")[], "cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok", {
|
|
5893
6005
|
footer: boolean;
|
|
5894
6006
|
mask: boolean;
|
|
6007
|
+
width: number;
|
|
5895
6008
|
modelValue: boolean;
|
|
5896
6009
|
mode: "alert" | "operation";
|
|
5897
|
-
width: number;
|
|
5898
6010
|
maskClosable: boolean;
|
|
5899
6011
|
closeWithCancel: boolean;
|
|
5900
6012
|
okText: string | boolean;
|
|
@@ -6018,9 +6130,9 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
6018
6130
|
}>, {
|
|
6019
6131
|
footer: boolean;
|
|
6020
6132
|
mask: boolean;
|
|
6133
|
+
width: number;
|
|
6021
6134
|
modelValue: boolean;
|
|
6022
6135
|
mode: "alert" | "operation";
|
|
6023
|
-
width: number;
|
|
6024
6136
|
maskClosable: boolean;
|
|
6025
6137
|
closeWithCancel: boolean;
|
|
6026
6138
|
okText: string | boolean;
|
|
@@ -6057,10 +6169,10 @@ export declare const MNotice: {
|
|
|
6057
6169
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6058
6170
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6059
6171
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
6172
|
+
top: number;
|
|
6173
|
+
fixed: boolean;
|
|
6060
6174
|
closable: boolean;
|
|
6061
6175
|
duration: number;
|
|
6062
|
-
fixed: boolean;
|
|
6063
|
-
top: number;
|
|
6064
6176
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
6065
6177
|
P: {};
|
|
6066
6178
|
B: {};
|
|
@@ -6097,10 +6209,10 @@ export declare const MNotice: {
|
|
|
6097
6209
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6098
6210
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6099
6211
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
6212
|
+
top: number;
|
|
6213
|
+
fixed: boolean;
|
|
6100
6214
|
closable: boolean;
|
|
6101
6215
|
duration: number;
|
|
6102
|
-
fixed: boolean;
|
|
6103
|
-
top: number;
|
|
6104
6216
|
}>;
|
|
6105
6217
|
__isFragment?: never;
|
|
6106
6218
|
__isTeleport?: never;
|
|
@@ -6134,17 +6246,17 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
6134
6246
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6135
6247
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
6136
6248
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
6249
|
+
top: number;
|
|
6250
|
+
fixed: boolean;
|
|
6137
6251
|
closable: boolean;
|
|
6138
6252
|
duration: number;
|
|
6139
|
-
fixed: boolean;
|
|
6140
|
-
top: number;
|
|
6141
6253
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
6142
6254
|
destroy: () => void;
|
|
6143
6255
|
open: (options: Partial<{
|
|
6256
|
+
top: number;
|
|
6257
|
+
fixed: boolean;
|
|
6144
6258
|
closable: boolean;
|
|
6145
6259
|
duration: number;
|
|
6146
|
-
fixed: boolean;
|
|
6147
|
-
top: number;
|
|
6148
6260
|
} & {
|
|
6149
6261
|
title?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
6150
6262
|
mode?: "error" | "success" | "info" | "warning" | "loading" | undefined;
|
|
@@ -6155,10 +6267,10 @@ top: number;
|
|
|
6155
6267
|
onClose: (...args: any[]) => any;
|
|
6156
6268
|
}>) => PortalLeaf;
|
|
6157
6269
|
info: (options: Partial<{
|
|
6270
|
+
top: number;
|
|
6271
|
+
fixed: boolean;
|
|
6158
6272
|
closable: boolean;
|
|
6159
6273
|
duration: number;
|
|
6160
|
-
fixed: boolean;
|
|
6161
|
-
top: number;
|
|
6162
6274
|
} & {
|
|
6163
6275
|
title?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
6164
6276
|
mode?: "error" | "success" | "info" | "warning" | "loading" | undefined;
|
|
@@ -6169,10 +6281,10 @@ top: number;
|
|
|
6169
6281
|
onClose: (...args: any[]) => any;
|
|
6170
6282
|
}>) => PortalLeaf;
|
|
6171
6283
|
success: (options: Partial<{
|
|
6284
|
+
top: number;
|
|
6285
|
+
fixed: boolean;
|
|
6172
6286
|
closable: boolean;
|
|
6173
6287
|
duration: number;
|
|
6174
|
-
fixed: boolean;
|
|
6175
|
-
top: number;
|
|
6176
6288
|
} & {
|
|
6177
6289
|
title?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
6178
6290
|
mode?: "error" | "success" | "info" | "warning" | "loading" | undefined;
|
|
@@ -6183,10 +6295,10 @@ top: number;
|
|
|
6183
6295
|
onClose: (...args: any[]) => any;
|
|
6184
6296
|
}>) => PortalLeaf;
|
|
6185
6297
|
warning: (options: Partial<{
|
|
6298
|
+
top: number;
|
|
6299
|
+
fixed: boolean;
|
|
6186
6300
|
closable: boolean;
|
|
6187
6301
|
duration: number;
|
|
6188
|
-
fixed: boolean;
|
|
6189
|
-
top: number;
|
|
6190
6302
|
} & {
|
|
6191
6303
|
title?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
6192
6304
|
mode?: "error" | "success" | "info" | "warning" | "loading" | undefined;
|
|
@@ -6197,10 +6309,10 @@ top: number;
|
|
|
6197
6309
|
onClose: (...args: any[]) => any;
|
|
6198
6310
|
}>) => PortalLeaf;
|
|
6199
6311
|
error: (options: Partial<{
|
|
6312
|
+
top: number;
|
|
6313
|
+
fixed: boolean;
|
|
6200
6314
|
closable: boolean;
|
|
6201
6315
|
duration: number;
|
|
6202
|
-
fixed: boolean;
|
|
6203
|
-
top: number;
|
|
6204
6316
|
} & {
|
|
6205
6317
|
title?: string | ((props: Record<string, unknown>, context: SetupContext) => any) | undefined;
|
|
6206
6318
|
mode?: "error" | "success" | "info" | "warning" | "loading" | undefined;
|
|
@@ -6990,10 +7102,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
6990
7102
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
6991
7103
|
}>, {
|
|
6992
7104
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6993
|
-
|
|
7105
|
+
placement: string;
|
|
6994
7106
|
type: string;
|
|
7107
|
+
modelValue: boolean;
|
|
6995
7108
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
6996
|
-
placement: string;
|
|
6997
7109
|
trigger: string;
|
|
6998
7110
|
okText: string;
|
|
6999
7111
|
cancelText: string;
|
|
@@ -7003,15 +7115,15 @@ cancelType: string;
|
|
|
7003
7115
|
|
|
7004
7116
|
export declare const MPopover: {
|
|
7005
7117
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
7006
|
-
modelValue: BooleanConstructor;
|
|
7007
|
-
always: BooleanConstructor;
|
|
7008
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
7009
|
-
animation: StringConstructor;
|
|
7010
7118
|
placement: {
|
|
7011
7119
|
type: StringConstructor;
|
|
7012
7120
|
default: string;
|
|
7013
7121
|
validator: (value: string) => boolean;
|
|
7014
7122
|
};
|
|
7123
|
+
modelValue: BooleanConstructor;
|
|
7124
|
+
always: BooleanConstructor;
|
|
7125
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
7126
|
+
animation: StringConstructor;
|
|
7015
7127
|
theme: {
|
|
7016
7128
|
type: StringConstructor;
|
|
7017
7129
|
default: string;
|
|
@@ -7058,10 +7170,10 @@ export declare const MPopover: {
|
|
|
7058
7170
|
[key: string]: any;
|
|
7059
7171
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
7060
7172
|
tag: string;
|
|
7061
|
-
|
|
7173
|
+
placement: string;
|
|
7062
7174
|
disabled: boolean;
|
|
7175
|
+
modelValue: boolean;
|
|
7063
7176
|
always: boolean;
|
|
7064
|
-
placement: string;
|
|
7065
7177
|
theme: string;
|
|
7066
7178
|
portal: boolean;
|
|
7067
7179
|
arrow: boolean;
|
|
@@ -7076,15 +7188,15 @@ export declare const MPopover: {
|
|
|
7076
7188
|
M: {};
|
|
7077
7189
|
Defaults: {};
|
|
7078
7190
|
}, Readonly<ExtractPropTypes< {
|
|
7079
|
-
modelValue: BooleanConstructor;
|
|
7080
|
-
always: BooleanConstructor;
|
|
7081
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
7082
|
-
animation: StringConstructor;
|
|
7083
7191
|
placement: {
|
|
7084
7192
|
type: StringConstructor;
|
|
7085
7193
|
default: string;
|
|
7086
7194
|
validator: (value: string) => boolean;
|
|
7087
7195
|
};
|
|
7196
|
+
modelValue: BooleanConstructor;
|
|
7197
|
+
always: BooleanConstructor;
|
|
7198
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
7199
|
+
animation: StringConstructor;
|
|
7088
7200
|
theme: {
|
|
7089
7201
|
type: StringConstructor;
|
|
7090
7202
|
default: string;
|
|
@@ -7131,10 +7243,10 @@ export declare const MPopover: {
|
|
|
7131
7243
|
[key: string]: any;
|
|
7132
7244
|
}>, {}, {}, {}, {
|
|
7133
7245
|
tag: string;
|
|
7134
|
-
|
|
7246
|
+
placement: string;
|
|
7135
7247
|
disabled: boolean;
|
|
7248
|
+
modelValue: boolean;
|
|
7136
7249
|
always: boolean;
|
|
7137
|
-
placement: string;
|
|
7138
7250
|
theme: string;
|
|
7139
7251
|
portal: boolean;
|
|
7140
7252
|
arrow: boolean;
|
|
@@ -7146,15 +7258,15 @@ export declare const MPopover: {
|
|
|
7146
7258
|
__isTeleport?: never;
|
|
7147
7259
|
__isSuspense?: never;
|
|
7148
7260
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7149
|
-
modelValue: BooleanConstructor;
|
|
7150
|
-
always: BooleanConstructor;
|
|
7151
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
7152
|
-
animation: StringConstructor;
|
|
7153
7261
|
placement: {
|
|
7154
7262
|
type: StringConstructor;
|
|
7155
7263
|
default: string;
|
|
7156
7264
|
validator: (value: string) => boolean;
|
|
7157
7265
|
};
|
|
7266
|
+
modelValue: BooleanConstructor;
|
|
7267
|
+
always: BooleanConstructor;
|
|
7268
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
7269
|
+
animation: StringConstructor;
|
|
7158
7270
|
theme: {
|
|
7159
7271
|
type: StringConstructor;
|
|
7160
7272
|
default: string;
|
|
@@ -7201,10 +7313,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
7201
7313
|
[key: string]: any;
|
|
7202
7314
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
7203
7315
|
tag: string;
|
|
7204
|
-
|
|
7316
|
+
placement: string;
|
|
7205
7317
|
disabled: boolean;
|
|
7318
|
+
modelValue: boolean;
|
|
7206
7319
|
always: boolean;
|
|
7207
|
-
placement: string;
|
|
7208
7320
|
theme: string;
|
|
7209
7321
|
portal: boolean;
|
|
7210
7322
|
arrow: boolean;
|
|
@@ -7296,9 +7408,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
7296
7408
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7297
7409
|
}>, {
|
|
7298
7410
|
mask: boolean;
|
|
7299
|
-
modelValue: boolean;
|
|
7300
|
-
fixed: boolean;
|
|
7301
7411
|
placement: string;
|
|
7412
|
+
fixed: boolean;
|
|
7413
|
+
modelValue: boolean;
|
|
7302
7414
|
theme: string;
|
|
7303
7415
|
maskClosable: boolean;
|
|
7304
7416
|
scrollRegExp: Record<string, any>;
|
|
@@ -7500,8 +7612,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
7500
7612
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7501
7613
|
}>, {
|
|
7502
7614
|
label: string | number | boolean;
|
|
7503
|
-
modelValue: string | number | boolean;
|
|
7504
7615
|
disabled: boolean;
|
|
7616
|
+
modelValue: string | number | boolean;
|
|
7505
7617
|
value: string | number | boolean;
|
|
7506
7618
|
trueValue: string | number | boolean;
|
|
7507
7619
|
falseValue: string | number | boolean;
|
|
@@ -7564,9 +7676,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
7564
7676
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7565
7677
|
}>, {
|
|
7566
7678
|
name: string;
|
|
7567
|
-
modelValue: string | number;
|
|
7568
|
-
type: string;
|
|
7569
7679
|
disabled: boolean;
|
|
7680
|
+
type: string;
|
|
7681
|
+
modelValue: string | number;
|
|
7570
7682
|
vertical: boolean;
|
|
7571
7683
|
fragment: boolean;
|
|
7572
7684
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -7651,10 +7763,10 @@ default: () => {};
|
|
|
7651
7763
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7652
7764
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7653
7765
|
}>, {
|
|
7766
|
+
disabled: boolean;
|
|
7654
7767
|
modelValue: string | number;
|
|
7655
7768
|
icon: string;
|
|
7656
7769
|
color: string;
|
|
7657
|
-
disabled: boolean;
|
|
7658
7770
|
clearable: boolean;
|
|
7659
7771
|
tooltip: unknown[];
|
|
7660
7772
|
count: number;
|
|
@@ -7762,9 +7874,9 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
7762
7874
|
}>, {
|
|
7763
7875
|
data: unknown[];
|
|
7764
7876
|
disabled: boolean;
|
|
7877
|
+
offset: number;
|
|
7765
7878
|
vertical: boolean;
|
|
7766
7879
|
loadData: Function;
|
|
7767
|
-
offset: number;
|
|
7768
7880
|
pageSize: number;
|
|
7769
7881
|
cols: number;
|
|
7770
7882
|
gutter: number;
|
|
@@ -8002,11 +8114,11 @@ nullValue: {
|
|
|
8002
8114
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
8003
8115
|
default: undefined;
|
|
8004
8116
|
};
|
|
8005
|
-
modelValue: PropType<string | number | any[]>;
|
|
8006
8117
|
disabled: {
|
|
8007
8118
|
type: BooleanConstructor;
|
|
8008
8119
|
default: boolean;
|
|
8009
8120
|
};
|
|
8121
|
+
modelValue: PropType<string | number | any[]>;
|
|
8010
8122
|
clearable: {
|
|
8011
8123
|
type: BooleanConstructor;
|
|
8012
8124
|
default: boolean;
|
|
@@ -8079,11 +8191,11 @@ nullValue: {
|
|
|
8079
8191
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
8080
8192
|
default: undefined;
|
|
8081
8193
|
};
|
|
8082
|
-
modelValue: PropType<string | number | any[]>;
|
|
8083
8194
|
disabled: {
|
|
8084
8195
|
type: BooleanConstructor;
|
|
8085
8196
|
default: boolean;
|
|
8086
8197
|
};
|
|
8198
|
+
modelValue: PropType<string | number | any[]>;
|
|
8087
8199
|
clearable: {
|
|
8088
8200
|
type: BooleanConstructor;
|
|
8089
8201
|
default: boolean;
|
|
@@ -8106,6 +8218,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
8106
8218
|
}>, {
|
|
8107
8219
|
tag: string;
|
|
8108
8220
|
data: unknown[];
|
|
8221
|
+
placement: string;
|
|
8109
8222
|
disabled: boolean;
|
|
8110
8223
|
extra: string;
|
|
8111
8224
|
numerable: boolean;
|
|
@@ -8113,7 +8226,6 @@ separator: string;
|
|
|
8113
8226
|
max: number;
|
|
8114
8227
|
nullValue: string | number | Record<string, any>;
|
|
8115
8228
|
clearable: boolean;
|
|
8116
|
-
placement: string;
|
|
8117
8229
|
portal: boolean;
|
|
8118
8230
|
arrow: boolean;
|
|
8119
8231
|
autoWidth: boolean;
|
|
@@ -8290,10 +8402,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
8290
8402
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
8291
8403
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8292
8404
|
}>, {
|
|
8293
|
-
|
|
8405
|
+
disabled: boolean;
|
|
8294
8406
|
width: number;
|
|
8295
8407
|
height: number;
|
|
8296
|
-
|
|
8408
|
+
modelValue: string | number | boolean;
|
|
8297
8409
|
checkedValue: string | number | boolean;
|
|
8298
8410
|
uncheckedValue: string | number | boolean;
|
|
8299
8411
|
borderWidth: number;
|
|
@@ -8699,11 +8811,15 @@ showStep: boolean;
|
|
|
8699
8811
|
export declare const MTabsPane: DefineComponent<ExtractPropTypes< {
|
|
8700
8812
|
value: {
|
|
8701
8813
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8814
|
+
default: undefined;
|
|
8702
8815
|
};
|
|
8703
8816
|
label: {
|
|
8704
8817
|
type: (StringConstructor | FunctionConstructor)[];
|
|
8705
8818
|
default: string;
|
|
8706
8819
|
};
|
|
8820
|
+
anchor: {
|
|
8821
|
+
type: StringConstructor;
|
|
8822
|
+
};
|
|
8707
8823
|
lazy: {
|
|
8708
8824
|
type: BooleanConstructor;
|
|
8709
8825
|
default: boolean;
|
|
@@ -8715,11 +8831,15 @@ default: boolean;
|
|
|
8715
8831
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
8716
8832
|
value: {
|
|
8717
8833
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8834
|
+
default: undefined;
|
|
8718
8835
|
};
|
|
8719
8836
|
label: {
|
|
8720
8837
|
type: (StringConstructor | FunctionConstructor)[];
|
|
8721
8838
|
default: string;
|
|
8722
8839
|
};
|
|
8840
|
+
anchor: {
|
|
8841
|
+
type: StringConstructor;
|
|
8842
|
+
};
|
|
8723
8843
|
lazy: {
|
|
8724
8844
|
type: BooleanConstructor;
|
|
8725
8845
|
default: boolean;
|
|
@@ -8731,6 +8851,7 @@ default: boolean;
|
|
|
8731
8851
|
}>> & Readonly<{}>, {
|
|
8732
8852
|
label: string | Function;
|
|
8733
8853
|
closable: boolean;
|
|
8854
|
+
value: string | number | boolean;
|
|
8734
8855
|
lazy: boolean;
|
|
8735
8856
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8736
8857
|
|
|
@@ -8830,6 +8951,10 @@ renderRow: {
|
|
|
8830
8951
|
type: FunctionConstructor;
|
|
8831
8952
|
default: (props$: any) => any;
|
|
8832
8953
|
};
|
|
8954
|
+
theme: {
|
|
8955
|
+
type: StringConstructor;
|
|
8956
|
+
default: string;
|
|
8957
|
+
};
|
|
8833
8958
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
8834
8959
|
tag: {
|
|
8835
8960
|
type: StringConstructor;
|
|
@@ -8865,12 +8990,17 @@ renderRow: {
|
|
|
8865
8990
|
type: FunctionConstructor;
|
|
8866
8991
|
default: (props$: any) => any;
|
|
8867
8992
|
};
|
|
8993
|
+
theme: {
|
|
8994
|
+
type: StringConstructor;
|
|
8995
|
+
default: string;
|
|
8996
|
+
};
|
|
8868
8997
|
}>> & Readonly<{}>, {
|
|
8869
8998
|
resize: number | boolean;
|
|
8870
8999
|
tag: string;
|
|
8871
9000
|
line: number;
|
|
8872
|
-
value: string;
|
|
8873
9001
|
placement: string;
|
|
9002
|
+
value: string;
|
|
9003
|
+
theme: string;
|
|
8874
9004
|
indent: number;
|
|
8875
9005
|
suffix: string;
|
|
8876
9006
|
renderRow: Function;
|
|
@@ -8893,11 +9023,11 @@ default: boolean;
|
|
|
8893
9023
|
textareaStyle: {
|
|
8894
9024
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8895
9025
|
};
|
|
8896
|
-
modelValue: PropType<string | number | any[]>;
|
|
8897
9026
|
disabled: {
|
|
8898
9027
|
type: BooleanConstructor;
|
|
8899
9028
|
default: boolean;
|
|
8900
9029
|
};
|
|
9030
|
+
modelValue: PropType<string | number | any[]>;
|
|
8901
9031
|
maxlength: NumberConstructor;
|
|
8902
9032
|
id: {
|
|
8903
9033
|
type: StringConstructor;
|
|
@@ -8936,11 +9066,11 @@ default: boolean;
|
|
|
8936
9066
|
textareaStyle: {
|
|
8937
9067
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8938
9068
|
};
|
|
8939
|
-
modelValue: PropType<string | number | any[]>;
|
|
8940
9069
|
disabled: {
|
|
8941
9070
|
type: BooleanConstructor;
|
|
8942
9071
|
default: boolean;
|
|
8943
9072
|
};
|
|
9073
|
+
modelValue: PropType<string | number | any[]>;
|
|
8944
9074
|
maxlength: NumberConstructor;
|
|
8945
9075
|
id: {
|
|
8946
9076
|
type: StringConstructor;
|
|
@@ -9145,13 +9275,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
9145
9275
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
9146
9276
|
}>, {
|
|
9147
9277
|
tag: string;
|
|
9278
|
+
placement: string;
|
|
9148
9279
|
disabled: boolean;
|
|
9149
9280
|
separator: string;
|
|
9150
9281
|
nullValue: string | number | Record<string, any>;
|
|
9151
9282
|
clearable: boolean;
|
|
9152
9283
|
open: boolean;
|
|
9153
9284
|
multiple: boolean;
|
|
9154
|
-
placement: string;
|
|
9155
9285
|
portal: boolean;
|
|
9156
9286
|
arrow: boolean;
|
|
9157
9287
|
trigger: string;
|
|
@@ -10083,11 +10213,11 @@ nullValue: {
|
|
|
10083
10213
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10084
10214
|
default: undefined;
|
|
10085
10215
|
};
|
|
10086
|
-
modelValue: PropType<string | number | any[]>;
|
|
10087
10216
|
disabled: {
|
|
10088
10217
|
type: BooleanConstructor;
|
|
10089
10218
|
default: boolean;
|
|
10090
10219
|
};
|
|
10220
|
+
modelValue: PropType<string | number | any[]>;
|
|
10091
10221
|
clearable: {
|
|
10092
10222
|
type: BooleanConstructor;
|
|
10093
10223
|
default: boolean;
|
|
@@ -10165,11 +10295,11 @@ nullValue: {
|
|
|
10165
10295
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10166
10296
|
default: undefined;
|
|
10167
10297
|
};
|
|
10168
|
-
modelValue: PropType<string | number | any[]>;
|
|
10169
10298
|
disabled: {
|
|
10170
10299
|
type: BooleanConstructor;
|
|
10171
10300
|
default: boolean;
|
|
10172
10301
|
};
|
|
10302
|
+
modelValue: PropType<string | number | any[]>;
|
|
10173
10303
|
clearable: {
|
|
10174
10304
|
type: BooleanConstructor;
|
|
10175
10305
|
default: boolean;
|
|
@@ -10192,6 +10322,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
10192
10322
|
}>, {
|
|
10193
10323
|
tag: string;
|
|
10194
10324
|
data: unknown[];
|
|
10325
|
+
placement: string;
|
|
10195
10326
|
disabled: boolean;
|
|
10196
10327
|
extra: string;
|
|
10197
10328
|
numerable: boolean;
|
|
@@ -10199,7 +10330,6 @@ separator: string;
|
|
|
10199
10330
|
max: number;
|
|
10200
10331
|
nullValue: string | number | Record<string, any>;
|
|
10201
10332
|
clearable: boolean;
|
|
10202
|
-
placement: string;
|
|
10203
10333
|
portal: boolean;
|
|
10204
10334
|
arrow: boolean;
|
|
10205
10335
|
autoWidth: boolean;
|
|
@@ -10289,8 +10419,8 @@ export declare const MUpload: {
|
|
|
10289
10419
|
tag: string | Record<string, any>;
|
|
10290
10420
|
name: string;
|
|
10291
10421
|
body: Record<string, any>;
|
|
10292
|
-
mode: string;
|
|
10293
10422
|
disabled: boolean;
|
|
10423
|
+
mode: string;
|
|
10294
10424
|
max: number;
|
|
10295
10425
|
showMessage: boolean;
|
|
10296
10426
|
headers: Record<string, any>;
|
|
@@ -10385,8 +10515,8 @@ export declare const MUpload: {
|
|
|
10385
10515
|
tag: string | Record<string, any>;
|
|
10386
10516
|
name: string;
|
|
10387
10517
|
body: Record<string, any>;
|
|
10388
|
-
mode: string;
|
|
10389
10518
|
disabled: boolean;
|
|
10519
|
+
mode: string;
|
|
10390
10520
|
max: number;
|
|
10391
10521
|
showMessage: boolean;
|
|
10392
10522
|
headers: Record<string, any>;
|
|
@@ -10478,8 +10608,8 @@ size: number;
|
|
|
10478
10608
|
tag: string | Record<string, any>;
|
|
10479
10609
|
name: string;
|
|
10480
10610
|
body: Record<string, any>;
|
|
10481
|
-
mode: string;
|
|
10482
10611
|
disabled: boolean;
|
|
10612
|
+
mode: string;
|
|
10483
10613
|
max: number;
|
|
10484
10614
|
showMessage: boolean;
|
|
10485
10615
|
headers: Record<string, any>;
|
|
@@ -10632,8 +10762,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
10632
10762
|
}>, {
|
|
10633
10763
|
output: string | Function;
|
|
10634
10764
|
mask: boolean;
|
|
10635
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
10636
10765
|
disabled: boolean;
|
|
10766
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
10637
10767
|
max: number | Record<string, any>;
|
|
10638
10768
|
showMessage: boolean;
|
|
10639
10769
|
uploadOptions: Record<string, any>;
|
|
@@ -10674,10 +10804,10 @@ export declare const Notice: {
|
|
|
10674
10804
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10675
10805
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10676
10806
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
10807
|
+
top: number;
|
|
10808
|
+
fixed: boolean;
|
|
10677
10809
|
closable: boolean;
|
|
10678
10810
|
duration: number;
|
|
10679
|
-
fixed: boolean;
|
|
10680
|
-
top: number;
|
|
10681
10811
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
10682
10812
|
P: {};
|
|
10683
10813
|
B: {};
|
|
@@ -10714,10 +10844,10 @@ export declare const Notice: {
|
|
|
10714
10844
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10715
10845
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10716
10846
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
10847
|
+
top: number;
|
|
10848
|
+
fixed: boolean;
|
|
10717
10849
|
closable: boolean;
|
|
10718
10850
|
duration: number;
|
|
10719
|
-
fixed: boolean;
|
|
10720
|
-
top: number;
|
|
10721
10851
|
}>;
|
|
10722
10852
|
__isFragment?: never;
|
|
10723
10853
|
__isTeleport?: never;
|
|
@@ -10751,10 +10881,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10751
10881
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10752
10882
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10753
10883
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
10884
|
+
top: number;
|
|
10885
|
+
fixed: boolean;
|
|
10754
10886
|
closable: boolean;
|
|
10755
10887
|
duration: number;
|
|
10756
|
-
fixed: boolean;
|
|
10757
|
-
top: number;
|
|
10758
10888
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
10759
10889
|
destroy: () => void;
|
|
10760
10890
|
open: (options: Options_5) => PortalLeaf;
|
|
@@ -10817,10 +10947,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10817
10947
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10818
10948
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10819
10949
|
}>, {
|
|
10950
|
+
top: number;
|
|
10951
|
+
fixed: boolean;
|
|
10820
10952
|
closable: boolean;
|
|
10821
10953
|
duration: number;
|
|
10822
|
-
fixed: boolean;
|
|
10823
|
-
top: number;
|
|
10824
10954
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10825
10955
|
|
|
10826
10956
|
declare const operation: (options: Options_4) => PortalLeaf;
|
|
@@ -11066,10 +11196,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11066
11196
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
11067
11197
|
}>, {
|
|
11068
11198
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11069
|
-
|
|
11199
|
+
placement: string;
|
|
11070
11200
|
type: string;
|
|
11201
|
+
modelValue: boolean;
|
|
11071
11202
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11072
|
-
placement: string;
|
|
11073
11203
|
trigger: string;
|
|
11074
11204
|
okText: string;
|
|
11075
11205
|
cancelText: string;
|
|
@@ -11079,15 +11209,15 @@ cancelType: string;
|
|
|
11079
11209
|
|
|
11080
11210
|
export declare const Popover: {
|
|
11081
11211
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
11082
|
-
modelValue: BooleanConstructor;
|
|
11083
|
-
always: BooleanConstructor;
|
|
11084
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11085
|
-
animation: StringConstructor;
|
|
11086
11212
|
placement: {
|
|
11087
11213
|
type: StringConstructor;
|
|
11088
11214
|
default: string;
|
|
11089
11215
|
validator: (value: string) => boolean;
|
|
11090
11216
|
};
|
|
11217
|
+
modelValue: BooleanConstructor;
|
|
11218
|
+
always: BooleanConstructor;
|
|
11219
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11220
|
+
animation: StringConstructor;
|
|
11091
11221
|
theme: {
|
|
11092
11222
|
type: StringConstructor;
|
|
11093
11223
|
default: string;
|
|
@@ -11134,10 +11264,10 @@ export declare const Popover: {
|
|
|
11134
11264
|
[key: string]: any;
|
|
11135
11265
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
11136
11266
|
tag: string;
|
|
11137
|
-
|
|
11267
|
+
placement: string;
|
|
11138
11268
|
disabled: boolean;
|
|
11269
|
+
modelValue: boolean;
|
|
11139
11270
|
always: boolean;
|
|
11140
|
-
placement: string;
|
|
11141
11271
|
theme: string;
|
|
11142
11272
|
portal: boolean;
|
|
11143
11273
|
arrow: boolean;
|
|
@@ -11152,15 +11282,15 @@ export declare const Popover: {
|
|
|
11152
11282
|
M: {};
|
|
11153
11283
|
Defaults: {};
|
|
11154
11284
|
}, Readonly<ExtractPropTypes< {
|
|
11155
|
-
modelValue: BooleanConstructor;
|
|
11156
|
-
always: BooleanConstructor;
|
|
11157
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11158
|
-
animation: StringConstructor;
|
|
11159
11285
|
placement: {
|
|
11160
11286
|
type: StringConstructor;
|
|
11161
11287
|
default: string;
|
|
11162
11288
|
validator: (value: string) => boolean;
|
|
11163
11289
|
};
|
|
11290
|
+
modelValue: BooleanConstructor;
|
|
11291
|
+
always: BooleanConstructor;
|
|
11292
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11293
|
+
animation: StringConstructor;
|
|
11164
11294
|
theme: {
|
|
11165
11295
|
type: StringConstructor;
|
|
11166
11296
|
default: string;
|
|
@@ -11207,10 +11337,10 @@ export declare const Popover: {
|
|
|
11207
11337
|
[key: string]: any;
|
|
11208
11338
|
}>, {}, {}, {}, {
|
|
11209
11339
|
tag: string;
|
|
11210
|
-
|
|
11340
|
+
placement: string;
|
|
11211
11341
|
disabled: boolean;
|
|
11342
|
+
modelValue: boolean;
|
|
11212
11343
|
always: boolean;
|
|
11213
|
-
placement: string;
|
|
11214
11344
|
theme: string;
|
|
11215
11345
|
portal: boolean;
|
|
11216
11346
|
arrow: boolean;
|
|
@@ -11222,15 +11352,15 @@ export declare const Popover: {
|
|
|
11222
11352
|
__isTeleport?: never;
|
|
11223
11353
|
__isSuspense?: never;
|
|
11224
11354
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
11225
|
-
modelValue: BooleanConstructor;
|
|
11226
|
-
always: BooleanConstructor;
|
|
11227
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11228
|
-
animation: StringConstructor;
|
|
11229
11355
|
placement: {
|
|
11230
11356
|
type: StringConstructor;
|
|
11231
11357
|
default: string;
|
|
11232
11358
|
validator: (value: string) => boolean;
|
|
11233
11359
|
};
|
|
11360
|
+
modelValue: BooleanConstructor;
|
|
11361
|
+
always: BooleanConstructor;
|
|
11362
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11363
|
+
animation: StringConstructor;
|
|
11234
11364
|
theme: {
|
|
11235
11365
|
type: StringConstructor;
|
|
11236
11366
|
default: string;
|
|
@@ -11277,10 +11407,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11277
11407
|
[key: string]: any;
|
|
11278
11408
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
11279
11409
|
tag: string;
|
|
11280
|
-
|
|
11410
|
+
placement: string;
|
|
11281
11411
|
disabled: boolean;
|
|
11412
|
+
modelValue: boolean;
|
|
11282
11413
|
always: boolean;
|
|
11283
|
-
placement: string;
|
|
11284
11414
|
theme: string;
|
|
11285
11415
|
portal: boolean;
|
|
11286
11416
|
arrow: boolean;
|
|
@@ -11372,9 +11502,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11372
11502
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11373
11503
|
}>, {
|
|
11374
11504
|
mask: boolean;
|
|
11375
|
-
modelValue: boolean;
|
|
11376
|
-
fixed: boolean;
|
|
11377
11505
|
placement: string;
|
|
11506
|
+
fixed: boolean;
|
|
11507
|
+
modelValue: boolean;
|
|
11378
11508
|
theme: string;
|
|
11379
11509
|
maskClosable: boolean;
|
|
11380
11510
|
scrollRegExp: Record<string, any>;
|
|
@@ -12068,8 +12198,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12068
12198
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12069
12199
|
}>, {
|
|
12070
12200
|
label: string | number | boolean;
|
|
12071
|
-
modelValue: string | number | boolean;
|
|
12072
12201
|
disabled: boolean;
|
|
12202
|
+
modelValue: string | number | boolean;
|
|
12073
12203
|
value: string | number | boolean;
|
|
12074
12204
|
trueValue: string | number | boolean;
|
|
12075
12205
|
falseValue: string | number | boolean;
|
|
@@ -12132,9 +12262,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12132
12262
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12133
12263
|
}>, {
|
|
12134
12264
|
name: string;
|
|
12135
|
-
modelValue: string | number;
|
|
12136
|
-
type: string;
|
|
12137
12265
|
disabled: boolean;
|
|
12266
|
+
type: string;
|
|
12267
|
+
modelValue: string | number;
|
|
12138
12268
|
vertical: boolean;
|
|
12139
12269
|
fragment: boolean;
|
|
12140
12270
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -12219,10 +12349,10 @@ default: () => {};
|
|
|
12219
12349
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
12220
12350
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12221
12351
|
}>, {
|
|
12352
|
+
disabled: boolean;
|
|
12222
12353
|
modelValue: string | number;
|
|
12223
12354
|
icon: string;
|
|
12224
12355
|
color: string;
|
|
12225
|
-
disabled: boolean;
|
|
12226
12356
|
clearable: boolean;
|
|
12227
12357
|
tooltip: unknown[];
|
|
12228
12358
|
count: number;
|
|
@@ -12330,9 +12460,9 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
12330
12460
|
}>, {
|
|
12331
12461
|
data: unknown[];
|
|
12332
12462
|
disabled: boolean;
|
|
12463
|
+
offset: number;
|
|
12333
12464
|
vertical: boolean;
|
|
12334
12465
|
loadData: Function;
|
|
12335
|
-
offset: number;
|
|
12336
12466
|
pageSize: number;
|
|
12337
12467
|
cols: number;
|
|
12338
12468
|
gutter: number;
|
|
@@ -12734,11 +12864,11 @@ nullValue: {
|
|
|
12734
12864
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12735
12865
|
default: undefined;
|
|
12736
12866
|
};
|
|
12737
|
-
modelValue: PropType<string | number | any[]>;
|
|
12738
12867
|
disabled: {
|
|
12739
12868
|
type: BooleanConstructor;
|
|
12740
12869
|
default: boolean;
|
|
12741
12870
|
};
|
|
12871
|
+
modelValue: PropType<string | number | any[]>;
|
|
12742
12872
|
clearable: {
|
|
12743
12873
|
type: BooleanConstructor;
|
|
12744
12874
|
default: boolean;
|
|
@@ -12811,11 +12941,11 @@ nullValue: {
|
|
|
12811
12941
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12812
12942
|
default: undefined;
|
|
12813
12943
|
};
|
|
12814
|
-
modelValue: PropType<string | number | any[]>;
|
|
12815
12944
|
disabled: {
|
|
12816
12945
|
type: BooleanConstructor;
|
|
12817
12946
|
default: boolean;
|
|
12818
12947
|
};
|
|
12948
|
+
modelValue: PropType<string | number | any[]>;
|
|
12819
12949
|
clearable: {
|
|
12820
12950
|
type: BooleanConstructor;
|
|
12821
12951
|
default: boolean;
|
|
@@ -12838,6 +12968,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
12838
12968
|
}>, {
|
|
12839
12969
|
tag: string;
|
|
12840
12970
|
data: unknown[];
|
|
12971
|
+
placement: string;
|
|
12841
12972
|
disabled: boolean;
|
|
12842
12973
|
extra: string;
|
|
12843
12974
|
numerable: boolean;
|
|
@@ -12845,7 +12976,6 @@ separator: string;
|
|
|
12845
12976
|
max: number;
|
|
12846
12977
|
nullValue: string | number | Record<string, any>;
|
|
12847
12978
|
clearable: boolean;
|
|
12848
|
-
placement: string;
|
|
12849
12979
|
portal: boolean;
|
|
12850
12980
|
arrow: boolean;
|
|
12851
12981
|
autoWidth: boolean;
|
|
@@ -13022,10 +13152,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13022
13152
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
13023
13153
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13024
13154
|
}>, {
|
|
13025
|
-
|
|
13155
|
+
disabled: boolean;
|
|
13026
13156
|
width: number;
|
|
13027
13157
|
height: number;
|
|
13028
|
-
|
|
13158
|
+
modelValue: string | number | boolean;
|
|
13029
13159
|
checkedValue: string | number | boolean;
|
|
13030
13160
|
uncheckedValue: string | number | boolean;
|
|
13031
13161
|
borderWidth: number;
|
|
@@ -13359,11 +13489,15 @@ animated: boolean;
|
|
|
13359
13489
|
export declare const TabsPane: DefineComponent<ExtractPropTypes< {
|
|
13360
13490
|
value: {
|
|
13361
13491
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13492
|
+
default: undefined;
|
|
13362
13493
|
};
|
|
13363
13494
|
label: {
|
|
13364
13495
|
type: (StringConstructor | FunctionConstructor)[];
|
|
13365
13496
|
default: string;
|
|
13366
13497
|
};
|
|
13498
|
+
anchor: {
|
|
13499
|
+
type: StringConstructor;
|
|
13500
|
+
};
|
|
13367
13501
|
lazy: {
|
|
13368
13502
|
type: BooleanConstructor;
|
|
13369
13503
|
default: boolean;
|
|
@@ -13375,11 +13509,15 @@ default: boolean;
|
|
|
13375
13509
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
13376
13510
|
value: {
|
|
13377
13511
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13512
|
+
default: undefined;
|
|
13378
13513
|
};
|
|
13379
13514
|
label: {
|
|
13380
13515
|
type: (StringConstructor | FunctionConstructor)[];
|
|
13381
13516
|
default: string;
|
|
13382
13517
|
};
|
|
13518
|
+
anchor: {
|
|
13519
|
+
type: StringConstructor;
|
|
13520
|
+
};
|
|
13383
13521
|
lazy: {
|
|
13384
13522
|
type: BooleanConstructor;
|
|
13385
13523
|
default: boolean;
|
|
@@ -13391,6 +13529,7 @@ default: boolean;
|
|
|
13391
13529
|
}>> & Readonly<{}>, {
|
|
13392
13530
|
label: string | Function;
|
|
13393
13531
|
closable: boolean;
|
|
13532
|
+
value: string | number | boolean;
|
|
13394
13533
|
lazy: boolean;
|
|
13395
13534
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13396
13535
|
|
|
@@ -13490,6 +13629,10 @@ renderRow: {
|
|
|
13490
13629
|
type: FunctionConstructor;
|
|
13491
13630
|
default: (props$: any) => any;
|
|
13492
13631
|
};
|
|
13632
|
+
theme: {
|
|
13633
|
+
type: StringConstructor;
|
|
13634
|
+
default: string;
|
|
13635
|
+
};
|
|
13493
13636
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
13494
13637
|
tag: {
|
|
13495
13638
|
type: StringConstructor;
|
|
@@ -13525,12 +13668,17 @@ renderRow: {
|
|
|
13525
13668
|
type: FunctionConstructor;
|
|
13526
13669
|
default: (props$: any) => any;
|
|
13527
13670
|
};
|
|
13671
|
+
theme: {
|
|
13672
|
+
type: StringConstructor;
|
|
13673
|
+
default: string;
|
|
13674
|
+
};
|
|
13528
13675
|
}>> & Readonly<{}>, {
|
|
13529
13676
|
resize: number | boolean;
|
|
13530
13677
|
tag: string;
|
|
13531
13678
|
line: number;
|
|
13532
|
-
value: string;
|
|
13533
13679
|
placement: string;
|
|
13680
|
+
value: string;
|
|
13681
|
+
theme: string;
|
|
13534
13682
|
indent: number;
|
|
13535
13683
|
suffix: string;
|
|
13536
13684
|
renderRow: Function;
|
|
@@ -13554,11 +13702,11 @@ default: boolean;
|
|
|
13554
13702
|
textareaStyle: {
|
|
13555
13703
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13556
13704
|
};
|
|
13557
|
-
modelValue: PropType<string | number | any[]>;
|
|
13558
13705
|
disabled: {
|
|
13559
13706
|
type: BooleanConstructor;
|
|
13560
13707
|
default: boolean;
|
|
13561
13708
|
};
|
|
13709
|
+
modelValue: PropType<string | number | any[]>;
|
|
13562
13710
|
maxlength: NumberConstructor;
|
|
13563
13711
|
id: {
|
|
13564
13712
|
type: StringConstructor;
|
|
@@ -13598,11 +13746,11 @@ default: boolean;
|
|
|
13598
13746
|
textareaStyle: {
|
|
13599
13747
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13600
13748
|
};
|
|
13601
|
-
modelValue: PropType<string | number | any[]>;
|
|
13602
13749
|
disabled: {
|
|
13603
13750
|
type: BooleanConstructor;
|
|
13604
13751
|
default: boolean;
|
|
13605
13752
|
};
|
|
13753
|
+
modelValue: PropType<string | number | any[]>;
|
|
13606
13754
|
maxlength: NumberConstructor;
|
|
13607
13755
|
id: {
|
|
13608
13756
|
type: StringConstructor;
|
|
@@ -14088,13 +14236,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
14088
14236
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
14089
14237
|
}>, {
|
|
14090
14238
|
tag: string;
|
|
14239
|
+
placement: string;
|
|
14091
14240
|
disabled: boolean;
|
|
14092
14241
|
separator: string;
|
|
14093
14242
|
nullValue: string | number | Record<string, any>;
|
|
14094
14243
|
clearable: boolean;
|
|
14095
14244
|
open: boolean;
|
|
14096
14245
|
multiple: boolean;
|
|
14097
|
-
placement: string;
|
|
14098
14246
|
portal: boolean;
|
|
14099
14247
|
arrow: boolean;
|
|
14100
14248
|
trigger: string;
|
|
@@ -15077,11 +15225,11 @@ nullValue: {
|
|
|
15077
15225
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15078
15226
|
default: undefined;
|
|
15079
15227
|
};
|
|
15080
|
-
modelValue: PropType<string | number | any[]>;
|
|
15081
15228
|
disabled: {
|
|
15082
15229
|
type: BooleanConstructor;
|
|
15083
15230
|
default: boolean;
|
|
15084
15231
|
};
|
|
15232
|
+
modelValue: PropType<string | number | any[]>;
|
|
15085
15233
|
clearable: {
|
|
15086
15234
|
type: BooleanConstructor;
|
|
15087
15235
|
default: boolean;
|
|
@@ -15159,11 +15307,11 @@ nullValue: {
|
|
|
15159
15307
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15160
15308
|
default: undefined;
|
|
15161
15309
|
};
|
|
15162
|
-
modelValue: PropType<string | number | any[]>;
|
|
15163
15310
|
disabled: {
|
|
15164
15311
|
type: BooleanConstructor;
|
|
15165
15312
|
default: boolean;
|
|
15166
15313
|
};
|
|
15314
|
+
modelValue: PropType<string | number | any[]>;
|
|
15167
15315
|
clearable: {
|
|
15168
15316
|
type: BooleanConstructor;
|
|
15169
15317
|
default: boolean;
|
|
@@ -15186,6 +15334,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
15186
15334
|
}>, {
|
|
15187
15335
|
tag: string;
|
|
15188
15336
|
data: unknown[];
|
|
15337
|
+
placement: string;
|
|
15189
15338
|
disabled: boolean;
|
|
15190
15339
|
extra: string;
|
|
15191
15340
|
numerable: boolean;
|
|
@@ -15193,7 +15342,6 @@ separator: string;
|
|
|
15193
15342
|
max: number;
|
|
15194
15343
|
nullValue: string | number | Record<string, any>;
|
|
15195
15344
|
clearable: boolean;
|
|
15196
|
-
placement: string;
|
|
15197
15345
|
portal: boolean;
|
|
15198
15346
|
arrow: boolean;
|
|
15199
15347
|
autoWidth: boolean;
|
|
@@ -15285,8 +15433,8 @@ export declare const Upload: {
|
|
|
15285
15433
|
tag: string | Record<string, any>;
|
|
15286
15434
|
name: string;
|
|
15287
15435
|
body: Record<string, any>;
|
|
15288
|
-
mode: string;
|
|
15289
15436
|
disabled: boolean;
|
|
15437
|
+
mode: string;
|
|
15290
15438
|
max: number;
|
|
15291
15439
|
showMessage: boolean;
|
|
15292
15440
|
headers: Record<string, any>;
|
|
@@ -15381,8 +15529,8 @@ export declare const Upload: {
|
|
|
15381
15529
|
tag: string | Record<string, any>;
|
|
15382
15530
|
name: string;
|
|
15383
15531
|
body: Record<string, any>;
|
|
15384
|
-
mode: string;
|
|
15385
15532
|
disabled: boolean;
|
|
15533
|
+
mode: string;
|
|
15386
15534
|
max: number;
|
|
15387
15535
|
showMessage: boolean;
|
|
15388
15536
|
headers: Record<string, any>;
|
|
@@ -15474,8 +15622,8 @@ size: number;
|
|
|
15474
15622
|
tag: string | Record<string, any>;
|
|
15475
15623
|
name: string;
|
|
15476
15624
|
body: Record<string, any>;
|
|
15477
|
-
mode: string;
|
|
15478
15625
|
disabled: boolean;
|
|
15626
|
+
mode: string;
|
|
15479
15627
|
max: number;
|
|
15480
15628
|
showMessage: boolean;
|
|
15481
15629
|
headers: Record<string, any>;
|
|
@@ -15628,8 +15776,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
15628
15776
|
}>, {
|
|
15629
15777
|
output: string | Function;
|
|
15630
15778
|
mask: boolean;
|
|
15631
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
15632
15779
|
disabled: boolean;
|
|
15780
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
15633
15781
|
max: number | Record<string, any>;
|
|
15634
15782
|
showMessage: boolean;
|
|
15635
15783
|
uploadOptions: Record<string, any>;
|