@deot/vc-components 1.0.43 → 1.0.44
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 +207 -15
- package/dist/index.d.ts +306 -188
- package/dist/index.iife.js +444 -264
- package/dist/index.js +207 -17
- package/dist/index.style.css +2 -2
- package/dist/index.umd.cjs +444 -264
- 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,6 +8811,7 @@ 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)[];
|
|
@@ -8715,6 +8828,7 @@ default: boolean;
|
|
|
8715
8828
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
8716
8829
|
value: {
|
|
8717
8830
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8831
|
+
default: undefined;
|
|
8718
8832
|
};
|
|
8719
8833
|
label: {
|
|
8720
8834
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -8731,6 +8845,7 @@ default: boolean;
|
|
|
8731
8845
|
}>> & Readonly<{}>, {
|
|
8732
8846
|
label: string | Function;
|
|
8733
8847
|
closable: boolean;
|
|
8848
|
+
value: string | number | boolean;
|
|
8734
8849
|
lazy: boolean;
|
|
8735
8850
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8736
8851
|
|
|
@@ -8869,8 +8984,8 @@ default: (props$: any) => any;
|
|
|
8869
8984
|
resize: number | boolean;
|
|
8870
8985
|
tag: string;
|
|
8871
8986
|
line: number;
|
|
8872
|
-
value: string;
|
|
8873
8987
|
placement: string;
|
|
8988
|
+
value: string;
|
|
8874
8989
|
indent: number;
|
|
8875
8990
|
suffix: string;
|
|
8876
8991
|
renderRow: Function;
|
|
@@ -8893,11 +9008,11 @@ default: boolean;
|
|
|
8893
9008
|
textareaStyle: {
|
|
8894
9009
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8895
9010
|
};
|
|
8896
|
-
modelValue: PropType<string | number | any[]>;
|
|
8897
9011
|
disabled: {
|
|
8898
9012
|
type: BooleanConstructor;
|
|
8899
9013
|
default: boolean;
|
|
8900
9014
|
};
|
|
9015
|
+
modelValue: PropType<string | number | any[]>;
|
|
8901
9016
|
maxlength: NumberConstructor;
|
|
8902
9017
|
id: {
|
|
8903
9018
|
type: StringConstructor;
|
|
@@ -8936,11 +9051,11 @@ default: boolean;
|
|
|
8936
9051
|
textareaStyle: {
|
|
8937
9052
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8938
9053
|
};
|
|
8939
|
-
modelValue: PropType<string | number | any[]>;
|
|
8940
9054
|
disabled: {
|
|
8941
9055
|
type: BooleanConstructor;
|
|
8942
9056
|
default: boolean;
|
|
8943
9057
|
};
|
|
9058
|
+
modelValue: PropType<string | number | any[]>;
|
|
8944
9059
|
maxlength: NumberConstructor;
|
|
8945
9060
|
id: {
|
|
8946
9061
|
type: StringConstructor;
|
|
@@ -9145,13 +9260,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
9145
9260
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
9146
9261
|
}>, {
|
|
9147
9262
|
tag: string;
|
|
9263
|
+
placement: string;
|
|
9148
9264
|
disabled: boolean;
|
|
9149
9265
|
separator: string;
|
|
9150
9266
|
nullValue: string | number | Record<string, any>;
|
|
9151
9267
|
clearable: boolean;
|
|
9152
9268
|
open: boolean;
|
|
9153
9269
|
multiple: boolean;
|
|
9154
|
-
placement: string;
|
|
9155
9270
|
portal: boolean;
|
|
9156
9271
|
arrow: boolean;
|
|
9157
9272
|
trigger: string;
|
|
@@ -10083,11 +10198,11 @@ nullValue: {
|
|
|
10083
10198
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10084
10199
|
default: undefined;
|
|
10085
10200
|
};
|
|
10086
|
-
modelValue: PropType<string | number | any[]>;
|
|
10087
10201
|
disabled: {
|
|
10088
10202
|
type: BooleanConstructor;
|
|
10089
10203
|
default: boolean;
|
|
10090
10204
|
};
|
|
10205
|
+
modelValue: PropType<string | number | any[]>;
|
|
10091
10206
|
clearable: {
|
|
10092
10207
|
type: BooleanConstructor;
|
|
10093
10208
|
default: boolean;
|
|
@@ -10165,11 +10280,11 @@ nullValue: {
|
|
|
10165
10280
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10166
10281
|
default: undefined;
|
|
10167
10282
|
};
|
|
10168
|
-
modelValue: PropType<string | number | any[]>;
|
|
10169
10283
|
disabled: {
|
|
10170
10284
|
type: BooleanConstructor;
|
|
10171
10285
|
default: boolean;
|
|
10172
10286
|
};
|
|
10287
|
+
modelValue: PropType<string | number | any[]>;
|
|
10173
10288
|
clearable: {
|
|
10174
10289
|
type: BooleanConstructor;
|
|
10175
10290
|
default: boolean;
|
|
@@ -10192,6 +10307,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
10192
10307
|
}>, {
|
|
10193
10308
|
tag: string;
|
|
10194
10309
|
data: unknown[];
|
|
10310
|
+
placement: string;
|
|
10195
10311
|
disabled: boolean;
|
|
10196
10312
|
extra: string;
|
|
10197
10313
|
numerable: boolean;
|
|
@@ -10199,7 +10315,6 @@ separator: string;
|
|
|
10199
10315
|
max: number;
|
|
10200
10316
|
nullValue: string | number | Record<string, any>;
|
|
10201
10317
|
clearable: boolean;
|
|
10202
|
-
placement: string;
|
|
10203
10318
|
portal: boolean;
|
|
10204
10319
|
arrow: boolean;
|
|
10205
10320
|
autoWidth: boolean;
|
|
@@ -10289,8 +10404,8 @@ export declare const MUpload: {
|
|
|
10289
10404
|
tag: string | Record<string, any>;
|
|
10290
10405
|
name: string;
|
|
10291
10406
|
body: Record<string, any>;
|
|
10292
|
-
mode: string;
|
|
10293
10407
|
disabled: boolean;
|
|
10408
|
+
mode: string;
|
|
10294
10409
|
max: number;
|
|
10295
10410
|
showMessage: boolean;
|
|
10296
10411
|
headers: Record<string, any>;
|
|
@@ -10385,8 +10500,8 @@ export declare const MUpload: {
|
|
|
10385
10500
|
tag: string | Record<string, any>;
|
|
10386
10501
|
name: string;
|
|
10387
10502
|
body: Record<string, any>;
|
|
10388
|
-
mode: string;
|
|
10389
10503
|
disabled: boolean;
|
|
10504
|
+
mode: string;
|
|
10390
10505
|
max: number;
|
|
10391
10506
|
showMessage: boolean;
|
|
10392
10507
|
headers: Record<string, any>;
|
|
@@ -10478,8 +10593,8 @@ size: number;
|
|
|
10478
10593
|
tag: string | Record<string, any>;
|
|
10479
10594
|
name: string;
|
|
10480
10595
|
body: Record<string, any>;
|
|
10481
|
-
mode: string;
|
|
10482
10596
|
disabled: boolean;
|
|
10597
|
+
mode: string;
|
|
10483
10598
|
max: number;
|
|
10484
10599
|
showMessage: boolean;
|
|
10485
10600
|
headers: Record<string, any>;
|
|
@@ -10632,8 +10747,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
10632
10747
|
}>, {
|
|
10633
10748
|
output: string | Function;
|
|
10634
10749
|
mask: boolean;
|
|
10635
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
10636
10750
|
disabled: boolean;
|
|
10751
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
10637
10752
|
max: number | Record<string, any>;
|
|
10638
10753
|
showMessage: boolean;
|
|
10639
10754
|
uploadOptions: Record<string, any>;
|
|
@@ -10674,10 +10789,10 @@ export declare const Notice: {
|
|
|
10674
10789
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10675
10790
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10676
10791
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
10792
|
+
top: number;
|
|
10793
|
+
fixed: boolean;
|
|
10677
10794
|
closable: boolean;
|
|
10678
10795
|
duration: number;
|
|
10679
|
-
fixed: boolean;
|
|
10680
|
-
top: number;
|
|
10681
10796
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
10682
10797
|
P: {};
|
|
10683
10798
|
B: {};
|
|
@@ -10714,10 +10829,10 @@ export declare const Notice: {
|
|
|
10714
10829
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10715
10830
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10716
10831
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
10832
|
+
top: number;
|
|
10833
|
+
fixed: boolean;
|
|
10717
10834
|
closable: boolean;
|
|
10718
10835
|
duration: number;
|
|
10719
|
-
fixed: boolean;
|
|
10720
|
-
top: number;
|
|
10721
10836
|
}>;
|
|
10722
10837
|
__isFragment?: never;
|
|
10723
10838
|
__isTeleport?: never;
|
|
@@ -10751,10 +10866,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10751
10866
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10752
10867
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10753
10868
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
10869
|
+
top: number;
|
|
10870
|
+
fixed: boolean;
|
|
10754
10871
|
closable: boolean;
|
|
10755
10872
|
duration: number;
|
|
10756
|
-
fixed: boolean;
|
|
10757
|
-
top: number;
|
|
10758
10873
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
10759
10874
|
destroy: () => void;
|
|
10760
10875
|
open: (options: Options_5) => PortalLeaf;
|
|
@@ -10817,10 +10932,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10817
10932
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10818
10933
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10819
10934
|
}>, {
|
|
10935
|
+
top: number;
|
|
10936
|
+
fixed: boolean;
|
|
10820
10937
|
closable: boolean;
|
|
10821
10938
|
duration: number;
|
|
10822
|
-
fixed: boolean;
|
|
10823
|
-
top: number;
|
|
10824
10939
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10825
10940
|
|
|
10826
10941
|
declare const operation: (options: Options_4) => PortalLeaf;
|
|
@@ -11066,10 +11181,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11066
11181
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
11067
11182
|
}>, {
|
|
11068
11183
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11069
|
-
|
|
11184
|
+
placement: string;
|
|
11070
11185
|
type: string;
|
|
11186
|
+
modelValue: boolean;
|
|
11071
11187
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11072
|
-
placement: string;
|
|
11073
11188
|
trigger: string;
|
|
11074
11189
|
okText: string;
|
|
11075
11190
|
cancelText: string;
|
|
@@ -11079,15 +11194,15 @@ cancelType: string;
|
|
|
11079
11194
|
|
|
11080
11195
|
export declare const Popover: {
|
|
11081
11196
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
11082
|
-
modelValue: BooleanConstructor;
|
|
11083
|
-
always: BooleanConstructor;
|
|
11084
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11085
|
-
animation: StringConstructor;
|
|
11086
11197
|
placement: {
|
|
11087
11198
|
type: StringConstructor;
|
|
11088
11199
|
default: string;
|
|
11089
11200
|
validator: (value: string) => boolean;
|
|
11090
11201
|
};
|
|
11202
|
+
modelValue: BooleanConstructor;
|
|
11203
|
+
always: BooleanConstructor;
|
|
11204
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11205
|
+
animation: StringConstructor;
|
|
11091
11206
|
theme: {
|
|
11092
11207
|
type: StringConstructor;
|
|
11093
11208
|
default: string;
|
|
@@ -11134,10 +11249,10 @@ export declare const Popover: {
|
|
|
11134
11249
|
[key: string]: any;
|
|
11135
11250
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
11136
11251
|
tag: string;
|
|
11137
|
-
|
|
11252
|
+
placement: string;
|
|
11138
11253
|
disabled: boolean;
|
|
11254
|
+
modelValue: boolean;
|
|
11139
11255
|
always: boolean;
|
|
11140
|
-
placement: string;
|
|
11141
11256
|
theme: string;
|
|
11142
11257
|
portal: boolean;
|
|
11143
11258
|
arrow: boolean;
|
|
@@ -11152,15 +11267,15 @@ export declare const Popover: {
|
|
|
11152
11267
|
M: {};
|
|
11153
11268
|
Defaults: {};
|
|
11154
11269
|
}, Readonly<ExtractPropTypes< {
|
|
11155
|
-
modelValue: BooleanConstructor;
|
|
11156
|
-
always: BooleanConstructor;
|
|
11157
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11158
|
-
animation: StringConstructor;
|
|
11159
11270
|
placement: {
|
|
11160
11271
|
type: StringConstructor;
|
|
11161
11272
|
default: string;
|
|
11162
11273
|
validator: (value: string) => boolean;
|
|
11163
11274
|
};
|
|
11275
|
+
modelValue: BooleanConstructor;
|
|
11276
|
+
always: BooleanConstructor;
|
|
11277
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11278
|
+
animation: StringConstructor;
|
|
11164
11279
|
theme: {
|
|
11165
11280
|
type: StringConstructor;
|
|
11166
11281
|
default: string;
|
|
@@ -11207,10 +11322,10 @@ export declare const Popover: {
|
|
|
11207
11322
|
[key: string]: any;
|
|
11208
11323
|
}>, {}, {}, {}, {
|
|
11209
11324
|
tag: string;
|
|
11210
|
-
|
|
11325
|
+
placement: string;
|
|
11211
11326
|
disabled: boolean;
|
|
11327
|
+
modelValue: boolean;
|
|
11212
11328
|
always: boolean;
|
|
11213
|
-
placement: string;
|
|
11214
11329
|
theme: string;
|
|
11215
11330
|
portal: boolean;
|
|
11216
11331
|
arrow: boolean;
|
|
@@ -11222,15 +11337,15 @@ export declare const Popover: {
|
|
|
11222
11337
|
__isTeleport?: never;
|
|
11223
11338
|
__isSuspense?: never;
|
|
11224
11339
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
11225
|
-
modelValue: BooleanConstructor;
|
|
11226
|
-
always: BooleanConstructor;
|
|
11227
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11228
|
-
animation: StringConstructor;
|
|
11229
11340
|
placement: {
|
|
11230
11341
|
type: StringConstructor;
|
|
11231
11342
|
default: string;
|
|
11232
11343
|
validator: (value: string) => boolean;
|
|
11233
11344
|
};
|
|
11345
|
+
modelValue: BooleanConstructor;
|
|
11346
|
+
always: BooleanConstructor;
|
|
11347
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11348
|
+
animation: StringConstructor;
|
|
11234
11349
|
theme: {
|
|
11235
11350
|
type: StringConstructor;
|
|
11236
11351
|
default: string;
|
|
@@ -11277,10 +11392,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11277
11392
|
[key: string]: any;
|
|
11278
11393
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
11279
11394
|
tag: string;
|
|
11280
|
-
|
|
11395
|
+
placement: string;
|
|
11281
11396
|
disabled: boolean;
|
|
11397
|
+
modelValue: boolean;
|
|
11282
11398
|
always: boolean;
|
|
11283
|
-
placement: string;
|
|
11284
11399
|
theme: string;
|
|
11285
11400
|
portal: boolean;
|
|
11286
11401
|
arrow: boolean;
|
|
@@ -11372,9 +11487,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11372
11487
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11373
11488
|
}>, {
|
|
11374
11489
|
mask: boolean;
|
|
11375
|
-
modelValue: boolean;
|
|
11376
|
-
fixed: boolean;
|
|
11377
11490
|
placement: string;
|
|
11491
|
+
fixed: boolean;
|
|
11492
|
+
modelValue: boolean;
|
|
11378
11493
|
theme: string;
|
|
11379
11494
|
maskClosable: boolean;
|
|
11380
11495
|
scrollRegExp: Record<string, any>;
|
|
@@ -12068,8 +12183,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12068
12183
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12069
12184
|
}>, {
|
|
12070
12185
|
label: string | number | boolean;
|
|
12071
|
-
modelValue: string | number | boolean;
|
|
12072
12186
|
disabled: boolean;
|
|
12187
|
+
modelValue: string | number | boolean;
|
|
12073
12188
|
value: string | number | boolean;
|
|
12074
12189
|
trueValue: string | number | boolean;
|
|
12075
12190
|
falseValue: string | number | boolean;
|
|
@@ -12132,9 +12247,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12132
12247
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12133
12248
|
}>, {
|
|
12134
12249
|
name: string;
|
|
12135
|
-
modelValue: string | number;
|
|
12136
|
-
type: string;
|
|
12137
12250
|
disabled: boolean;
|
|
12251
|
+
type: string;
|
|
12252
|
+
modelValue: string | number;
|
|
12138
12253
|
vertical: boolean;
|
|
12139
12254
|
fragment: boolean;
|
|
12140
12255
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -12219,10 +12334,10 @@ default: () => {};
|
|
|
12219
12334
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
12220
12335
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12221
12336
|
}>, {
|
|
12337
|
+
disabled: boolean;
|
|
12222
12338
|
modelValue: string | number;
|
|
12223
12339
|
icon: string;
|
|
12224
12340
|
color: string;
|
|
12225
|
-
disabled: boolean;
|
|
12226
12341
|
clearable: boolean;
|
|
12227
12342
|
tooltip: unknown[];
|
|
12228
12343
|
count: number;
|
|
@@ -12330,9 +12445,9 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
12330
12445
|
}>, {
|
|
12331
12446
|
data: unknown[];
|
|
12332
12447
|
disabled: boolean;
|
|
12448
|
+
offset: number;
|
|
12333
12449
|
vertical: boolean;
|
|
12334
12450
|
loadData: Function;
|
|
12335
|
-
offset: number;
|
|
12336
12451
|
pageSize: number;
|
|
12337
12452
|
cols: number;
|
|
12338
12453
|
gutter: number;
|
|
@@ -12734,11 +12849,11 @@ nullValue: {
|
|
|
12734
12849
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12735
12850
|
default: undefined;
|
|
12736
12851
|
};
|
|
12737
|
-
modelValue: PropType<string | number | any[]>;
|
|
12738
12852
|
disabled: {
|
|
12739
12853
|
type: BooleanConstructor;
|
|
12740
12854
|
default: boolean;
|
|
12741
12855
|
};
|
|
12856
|
+
modelValue: PropType<string | number | any[]>;
|
|
12742
12857
|
clearable: {
|
|
12743
12858
|
type: BooleanConstructor;
|
|
12744
12859
|
default: boolean;
|
|
@@ -12811,11 +12926,11 @@ nullValue: {
|
|
|
12811
12926
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12812
12927
|
default: undefined;
|
|
12813
12928
|
};
|
|
12814
|
-
modelValue: PropType<string | number | any[]>;
|
|
12815
12929
|
disabled: {
|
|
12816
12930
|
type: BooleanConstructor;
|
|
12817
12931
|
default: boolean;
|
|
12818
12932
|
};
|
|
12933
|
+
modelValue: PropType<string | number | any[]>;
|
|
12819
12934
|
clearable: {
|
|
12820
12935
|
type: BooleanConstructor;
|
|
12821
12936
|
default: boolean;
|
|
@@ -12838,6 +12953,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
12838
12953
|
}>, {
|
|
12839
12954
|
tag: string;
|
|
12840
12955
|
data: unknown[];
|
|
12956
|
+
placement: string;
|
|
12841
12957
|
disabled: boolean;
|
|
12842
12958
|
extra: string;
|
|
12843
12959
|
numerable: boolean;
|
|
@@ -12845,7 +12961,6 @@ separator: string;
|
|
|
12845
12961
|
max: number;
|
|
12846
12962
|
nullValue: string | number | Record<string, any>;
|
|
12847
12963
|
clearable: boolean;
|
|
12848
|
-
placement: string;
|
|
12849
12964
|
portal: boolean;
|
|
12850
12965
|
arrow: boolean;
|
|
12851
12966
|
autoWidth: boolean;
|
|
@@ -13022,10 +13137,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13022
13137
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
13023
13138
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13024
13139
|
}>, {
|
|
13025
|
-
|
|
13140
|
+
disabled: boolean;
|
|
13026
13141
|
width: number;
|
|
13027
13142
|
height: number;
|
|
13028
|
-
|
|
13143
|
+
modelValue: string | number | boolean;
|
|
13029
13144
|
checkedValue: string | number | boolean;
|
|
13030
13145
|
uncheckedValue: string | number | boolean;
|
|
13031
13146
|
borderWidth: number;
|
|
@@ -13359,6 +13474,7 @@ animated: boolean;
|
|
|
13359
13474
|
export declare const TabsPane: DefineComponent<ExtractPropTypes< {
|
|
13360
13475
|
value: {
|
|
13361
13476
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13477
|
+
default: undefined;
|
|
13362
13478
|
};
|
|
13363
13479
|
label: {
|
|
13364
13480
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -13375,6 +13491,7 @@ default: boolean;
|
|
|
13375
13491
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
13376
13492
|
value: {
|
|
13377
13493
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13494
|
+
default: undefined;
|
|
13378
13495
|
};
|
|
13379
13496
|
label: {
|
|
13380
13497
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -13391,6 +13508,7 @@ default: boolean;
|
|
|
13391
13508
|
}>> & Readonly<{}>, {
|
|
13392
13509
|
label: string | Function;
|
|
13393
13510
|
closable: boolean;
|
|
13511
|
+
value: string | number | boolean;
|
|
13394
13512
|
lazy: boolean;
|
|
13395
13513
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13396
13514
|
|
|
@@ -13529,8 +13647,8 @@ default: (props$: any) => any;
|
|
|
13529
13647
|
resize: number | boolean;
|
|
13530
13648
|
tag: string;
|
|
13531
13649
|
line: number;
|
|
13532
|
-
value: string;
|
|
13533
13650
|
placement: string;
|
|
13651
|
+
value: string;
|
|
13534
13652
|
indent: number;
|
|
13535
13653
|
suffix: string;
|
|
13536
13654
|
renderRow: Function;
|
|
@@ -13554,11 +13672,11 @@ default: boolean;
|
|
|
13554
13672
|
textareaStyle: {
|
|
13555
13673
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13556
13674
|
};
|
|
13557
|
-
modelValue: PropType<string | number | any[]>;
|
|
13558
13675
|
disabled: {
|
|
13559
13676
|
type: BooleanConstructor;
|
|
13560
13677
|
default: boolean;
|
|
13561
13678
|
};
|
|
13679
|
+
modelValue: PropType<string | number | any[]>;
|
|
13562
13680
|
maxlength: NumberConstructor;
|
|
13563
13681
|
id: {
|
|
13564
13682
|
type: StringConstructor;
|
|
@@ -13598,11 +13716,11 @@ default: boolean;
|
|
|
13598
13716
|
textareaStyle: {
|
|
13599
13717
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13600
13718
|
};
|
|
13601
|
-
modelValue: PropType<string | number | any[]>;
|
|
13602
13719
|
disabled: {
|
|
13603
13720
|
type: BooleanConstructor;
|
|
13604
13721
|
default: boolean;
|
|
13605
13722
|
};
|
|
13723
|
+
modelValue: PropType<string | number | any[]>;
|
|
13606
13724
|
maxlength: NumberConstructor;
|
|
13607
13725
|
id: {
|
|
13608
13726
|
type: StringConstructor;
|
|
@@ -14088,13 +14206,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
14088
14206
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
14089
14207
|
}>, {
|
|
14090
14208
|
tag: string;
|
|
14209
|
+
placement: string;
|
|
14091
14210
|
disabled: boolean;
|
|
14092
14211
|
separator: string;
|
|
14093
14212
|
nullValue: string | number | Record<string, any>;
|
|
14094
14213
|
clearable: boolean;
|
|
14095
14214
|
open: boolean;
|
|
14096
14215
|
multiple: boolean;
|
|
14097
|
-
placement: string;
|
|
14098
14216
|
portal: boolean;
|
|
14099
14217
|
arrow: boolean;
|
|
14100
14218
|
trigger: string;
|
|
@@ -15077,11 +15195,11 @@ nullValue: {
|
|
|
15077
15195
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15078
15196
|
default: undefined;
|
|
15079
15197
|
};
|
|
15080
|
-
modelValue: PropType<string | number | any[]>;
|
|
15081
15198
|
disabled: {
|
|
15082
15199
|
type: BooleanConstructor;
|
|
15083
15200
|
default: boolean;
|
|
15084
15201
|
};
|
|
15202
|
+
modelValue: PropType<string | number | any[]>;
|
|
15085
15203
|
clearable: {
|
|
15086
15204
|
type: BooleanConstructor;
|
|
15087
15205
|
default: boolean;
|
|
@@ -15159,11 +15277,11 @@ nullValue: {
|
|
|
15159
15277
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15160
15278
|
default: undefined;
|
|
15161
15279
|
};
|
|
15162
|
-
modelValue: PropType<string | number | any[]>;
|
|
15163
15280
|
disabled: {
|
|
15164
15281
|
type: BooleanConstructor;
|
|
15165
15282
|
default: boolean;
|
|
15166
15283
|
};
|
|
15284
|
+
modelValue: PropType<string | number | any[]>;
|
|
15167
15285
|
clearable: {
|
|
15168
15286
|
type: BooleanConstructor;
|
|
15169
15287
|
default: boolean;
|
|
@@ -15186,6 +15304,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
15186
15304
|
}>, {
|
|
15187
15305
|
tag: string;
|
|
15188
15306
|
data: unknown[];
|
|
15307
|
+
placement: string;
|
|
15189
15308
|
disabled: boolean;
|
|
15190
15309
|
extra: string;
|
|
15191
15310
|
numerable: boolean;
|
|
@@ -15193,7 +15312,6 @@ separator: string;
|
|
|
15193
15312
|
max: number;
|
|
15194
15313
|
nullValue: string | number | Record<string, any>;
|
|
15195
15314
|
clearable: boolean;
|
|
15196
|
-
placement: string;
|
|
15197
15315
|
portal: boolean;
|
|
15198
15316
|
arrow: boolean;
|
|
15199
15317
|
autoWidth: boolean;
|
|
@@ -15285,8 +15403,8 @@ export declare const Upload: {
|
|
|
15285
15403
|
tag: string | Record<string, any>;
|
|
15286
15404
|
name: string;
|
|
15287
15405
|
body: Record<string, any>;
|
|
15288
|
-
mode: string;
|
|
15289
15406
|
disabled: boolean;
|
|
15407
|
+
mode: string;
|
|
15290
15408
|
max: number;
|
|
15291
15409
|
showMessage: boolean;
|
|
15292
15410
|
headers: Record<string, any>;
|
|
@@ -15381,8 +15499,8 @@ export declare const Upload: {
|
|
|
15381
15499
|
tag: string | Record<string, any>;
|
|
15382
15500
|
name: string;
|
|
15383
15501
|
body: Record<string, any>;
|
|
15384
|
-
mode: string;
|
|
15385
15502
|
disabled: boolean;
|
|
15503
|
+
mode: string;
|
|
15386
15504
|
max: number;
|
|
15387
15505
|
showMessage: boolean;
|
|
15388
15506
|
headers: Record<string, any>;
|
|
@@ -15474,8 +15592,8 @@ size: number;
|
|
|
15474
15592
|
tag: string | Record<string, any>;
|
|
15475
15593
|
name: string;
|
|
15476
15594
|
body: Record<string, any>;
|
|
15477
|
-
mode: string;
|
|
15478
15595
|
disabled: boolean;
|
|
15596
|
+
mode: string;
|
|
15479
15597
|
max: number;
|
|
15480
15598
|
showMessage: boolean;
|
|
15481
15599
|
headers: Record<string, any>;
|
|
@@ -15628,8 +15746,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
15628
15746
|
}>, {
|
|
15629
15747
|
output: string | Function;
|
|
15630
15748
|
mask: boolean;
|
|
15631
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
15632
15749
|
disabled: boolean;
|
|
15750
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
15633
15751
|
max: number | Record<string, any>;
|
|
15634
15752
|
showMessage: boolean;
|
|
15635
15753
|
uploadOptions: Record<string, any>;
|