@deot/vc-components 1.0.42 → 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 +249 -26
- package/dist/index.d.ts +316 -196
- package/dist/index.iife.js +486 -275
- package/dist/index.js +249 -28
- package/dist/index.style.css +2 -2
- package/dist/index.umd.cjs +486 -275
- 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;
|
|
@@ -8368,12 +8480,12 @@ placeholder: {
|
|
|
8368
8480
|
type: (StringConstructor | FunctionConstructor)[];
|
|
8369
8481
|
default: string;
|
|
8370
8482
|
};
|
|
8371
|
-
|
|
8483
|
+
sort: {
|
|
8372
8484
|
type: ObjectConstructor;
|
|
8373
8485
|
default: () => {};
|
|
8374
8486
|
};
|
|
8375
8487
|
delay: NumberConstructor;
|
|
8376
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
|
|
8488
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "update:sort" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "update:sort" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
|
|
8377
8489
|
data: {
|
|
8378
8490
|
type: ArrayConstructor;
|
|
8379
8491
|
default: () => never[];
|
|
@@ -8440,7 +8552,7 @@ placeholder: {
|
|
|
8440
8552
|
type: (StringConstructor | FunctionConstructor)[];
|
|
8441
8553
|
default: string;
|
|
8442
8554
|
};
|
|
8443
|
-
|
|
8555
|
+
sort: {
|
|
8444
8556
|
type: ObjectConstructor;
|
|
8445
8557
|
default: () => {};
|
|
8446
8558
|
};
|
|
@@ -8455,6 +8567,7 @@ onSelect?: ((...args: any[]) => any) | undefined;
|
|
|
8455
8567
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
8456
8568
|
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
8457
8569
|
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
8570
|
+
"onUpdate:sort"?: ((...args: any[]) => any) | undefined;
|
|
8458
8571
|
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
8459
8572
|
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
8460
8573
|
"onCell-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
@@ -8463,6 +8576,7 @@ onSelect?: ((...args: any[]) => any) | undefined;
|
|
|
8463
8576
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
8464
8577
|
"onHeader-dragend "?: ((...args: any[]) => any) | undefined;
|
|
8465
8578
|
}>, {
|
|
8579
|
+
sort: Record<string, any>;
|
|
8466
8580
|
data: unknown[];
|
|
8467
8581
|
border: boolean;
|
|
8468
8582
|
placeholder: string | Function;
|
|
@@ -8474,7 +8588,6 @@ defaultExpandAll: boolean;
|
|
|
8474
8588
|
expandSelectable: boolean;
|
|
8475
8589
|
showHeader: boolean;
|
|
8476
8590
|
rows: number;
|
|
8477
|
-
defaultSort: Record<string, any>;
|
|
8478
8591
|
stripe: boolean;
|
|
8479
8592
|
divider: boolean;
|
|
8480
8593
|
showSummary: boolean;
|
|
@@ -8698,6 +8811,7 @@ showStep: boolean;
|
|
|
8698
8811
|
export declare const MTabsPane: DefineComponent<ExtractPropTypes< {
|
|
8699
8812
|
value: {
|
|
8700
8813
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8814
|
+
default: undefined;
|
|
8701
8815
|
};
|
|
8702
8816
|
label: {
|
|
8703
8817
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -8714,6 +8828,7 @@ default: boolean;
|
|
|
8714
8828
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
8715
8829
|
value: {
|
|
8716
8830
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
8831
|
+
default: undefined;
|
|
8717
8832
|
};
|
|
8718
8833
|
label: {
|
|
8719
8834
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -8730,6 +8845,7 @@ default: boolean;
|
|
|
8730
8845
|
}>> & Readonly<{}>, {
|
|
8731
8846
|
label: string | Function;
|
|
8732
8847
|
closable: boolean;
|
|
8848
|
+
value: string | number | boolean;
|
|
8733
8849
|
lazy: boolean;
|
|
8734
8850
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
8735
8851
|
|
|
@@ -8868,8 +8984,8 @@ default: (props$: any) => any;
|
|
|
8868
8984
|
resize: number | boolean;
|
|
8869
8985
|
tag: string;
|
|
8870
8986
|
line: number;
|
|
8871
|
-
value: string;
|
|
8872
8987
|
placement: string;
|
|
8988
|
+
value: string;
|
|
8873
8989
|
indent: number;
|
|
8874
8990
|
suffix: string;
|
|
8875
8991
|
renderRow: Function;
|
|
@@ -8892,11 +9008,11 @@ default: boolean;
|
|
|
8892
9008
|
textareaStyle: {
|
|
8893
9009
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8894
9010
|
};
|
|
8895
|
-
modelValue: PropType<string | number | any[]>;
|
|
8896
9011
|
disabled: {
|
|
8897
9012
|
type: BooleanConstructor;
|
|
8898
9013
|
default: boolean;
|
|
8899
9014
|
};
|
|
9015
|
+
modelValue: PropType<string | number | any[]>;
|
|
8900
9016
|
maxlength: NumberConstructor;
|
|
8901
9017
|
id: {
|
|
8902
9018
|
type: StringConstructor;
|
|
@@ -8935,11 +9051,11 @@ default: boolean;
|
|
|
8935
9051
|
textareaStyle: {
|
|
8936
9052
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
8937
9053
|
};
|
|
8938
|
-
modelValue: PropType<string | number | any[]>;
|
|
8939
9054
|
disabled: {
|
|
8940
9055
|
type: BooleanConstructor;
|
|
8941
9056
|
default: boolean;
|
|
8942
9057
|
};
|
|
9058
|
+
modelValue: PropType<string | number | any[]>;
|
|
8943
9059
|
maxlength: NumberConstructor;
|
|
8944
9060
|
id: {
|
|
8945
9061
|
type: StringConstructor;
|
|
@@ -9144,13 +9260,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
9144
9260
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
9145
9261
|
}>, {
|
|
9146
9262
|
tag: string;
|
|
9263
|
+
placement: string;
|
|
9147
9264
|
disabled: boolean;
|
|
9148
9265
|
separator: string;
|
|
9149
9266
|
nullValue: string | number | Record<string, any>;
|
|
9150
9267
|
clearable: boolean;
|
|
9151
9268
|
open: boolean;
|
|
9152
9269
|
multiple: boolean;
|
|
9153
|
-
placement: string;
|
|
9154
9270
|
portal: boolean;
|
|
9155
9271
|
arrow: boolean;
|
|
9156
9272
|
trigger: string;
|
|
@@ -10082,11 +10198,11 @@ nullValue: {
|
|
|
10082
10198
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10083
10199
|
default: undefined;
|
|
10084
10200
|
};
|
|
10085
|
-
modelValue: PropType<string | number | any[]>;
|
|
10086
10201
|
disabled: {
|
|
10087
10202
|
type: BooleanConstructor;
|
|
10088
10203
|
default: boolean;
|
|
10089
10204
|
};
|
|
10205
|
+
modelValue: PropType<string | number | any[]>;
|
|
10090
10206
|
clearable: {
|
|
10091
10207
|
type: BooleanConstructor;
|
|
10092
10208
|
default: boolean;
|
|
@@ -10164,11 +10280,11 @@ nullValue: {
|
|
|
10164
10280
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
10165
10281
|
default: undefined;
|
|
10166
10282
|
};
|
|
10167
|
-
modelValue: PropType<string | number | any[]>;
|
|
10168
10283
|
disabled: {
|
|
10169
10284
|
type: BooleanConstructor;
|
|
10170
10285
|
default: boolean;
|
|
10171
10286
|
};
|
|
10287
|
+
modelValue: PropType<string | number | any[]>;
|
|
10172
10288
|
clearable: {
|
|
10173
10289
|
type: BooleanConstructor;
|
|
10174
10290
|
default: boolean;
|
|
@@ -10191,6 +10307,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
10191
10307
|
}>, {
|
|
10192
10308
|
tag: string;
|
|
10193
10309
|
data: unknown[];
|
|
10310
|
+
placement: string;
|
|
10194
10311
|
disabled: boolean;
|
|
10195
10312
|
extra: string;
|
|
10196
10313
|
numerable: boolean;
|
|
@@ -10198,7 +10315,6 @@ separator: string;
|
|
|
10198
10315
|
max: number;
|
|
10199
10316
|
nullValue: string | number | Record<string, any>;
|
|
10200
10317
|
clearable: boolean;
|
|
10201
|
-
placement: string;
|
|
10202
10318
|
portal: boolean;
|
|
10203
10319
|
arrow: boolean;
|
|
10204
10320
|
autoWidth: boolean;
|
|
@@ -10288,8 +10404,8 @@ export declare const MUpload: {
|
|
|
10288
10404
|
tag: string | Record<string, any>;
|
|
10289
10405
|
name: string;
|
|
10290
10406
|
body: Record<string, any>;
|
|
10291
|
-
mode: string;
|
|
10292
10407
|
disabled: boolean;
|
|
10408
|
+
mode: string;
|
|
10293
10409
|
max: number;
|
|
10294
10410
|
showMessage: boolean;
|
|
10295
10411
|
headers: Record<string, any>;
|
|
@@ -10384,8 +10500,8 @@ export declare const MUpload: {
|
|
|
10384
10500
|
tag: string | Record<string, any>;
|
|
10385
10501
|
name: string;
|
|
10386
10502
|
body: Record<string, any>;
|
|
10387
|
-
mode: string;
|
|
10388
10503
|
disabled: boolean;
|
|
10504
|
+
mode: string;
|
|
10389
10505
|
max: number;
|
|
10390
10506
|
showMessage: boolean;
|
|
10391
10507
|
headers: Record<string, any>;
|
|
@@ -10477,8 +10593,8 @@ size: number;
|
|
|
10477
10593
|
tag: string | Record<string, any>;
|
|
10478
10594
|
name: string;
|
|
10479
10595
|
body: Record<string, any>;
|
|
10480
|
-
mode: string;
|
|
10481
10596
|
disabled: boolean;
|
|
10597
|
+
mode: string;
|
|
10482
10598
|
max: number;
|
|
10483
10599
|
showMessage: boolean;
|
|
10484
10600
|
headers: Record<string, any>;
|
|
@@ -10631,8 +10747,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
10631
10747
|
}>, {
|
|
10632
10748
|
output: string | Function;
|
|
10633
10749
|
mask: boolean;
|
|
10634
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
10635
10750
|
disabled: boolean;
|
|
10751
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
10636
10752
|
max: number | Record<string, any>;
|
|
10637
10753
|
showMessage: boolean;
|
|
10638
10754
|
uploadOptions: Record<string, any>;
|
|
@@ -10673,10 +10789,10 @@ export declare const Notice: {
|
|
|
10673
10789
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10674
10790
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10675
10791
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], PublicProps, {
|
|
10792
|
+
top: number;
|
|
10793
|
+
fixed: boolean;
|
|
10676
10794
|
closable: boolean;
|
|
10677
10795
|
duration: number;
|
|
10678
|
-
fixed: boolean;
|
|
10679
|
-
top: number;
|
|
10680
10796
|
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
10681
10797
|
P: {};
|
|
10682
10798
|
B: {};
|
|
@@ -10713,10 +10829,10 @@ export declare const Notice: {
|
|
|
10713
10829
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10714
10830
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10715
10831
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
10832
|
+
top: number;
|
|
10833
|
+
fixed: boolean;
|
|
10716
10834
|
closable: boolean;
|
|
10717
10835
|
duration: number;
|
|
10718
|
-
fixed: boolean;
|
|
10719
|
-
top: number;
|
|
10720
10836
|
}>;
|
|
10721
10837
|
__isFragment?: never;
|
|
10722
10838
|
__isTeleport?: never;
|
|
@@ -10750,10 +10866,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10750
10866
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10751
10867
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10752
10868
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "portal-fulfilled" | "before-close")[], "close" | "portal-fulfilled" | "before-close", {
|
|
10869
|
+
top: number;
|
|
10870
|
+
fixed: boolean;
|
|
10753
10871
|
closable: boolean;
|
|
10754
10872
|
duration: number;
|
|
10755
|
-
fixed: boolean;
|
|
10756
|
-
top: number;
|
|
10757
10873
|
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
10758
10874
|
destroy: () => void;
|
|
10759
10875
|
open: (options: Options_5) => PortalLeaf;
|
|
@@ -10816,10 +10932,10 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
10816
10932
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
10817
10933
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
10818
10934
|
}>, {
|
|
10935
|
+
top: number;
|
|
10936
|
+
fixed: boolean;
|
|
10819
10937
|
closable: boolean;
|
|
10820
10938
|
duration: number;
|
|
10821
|
-
fixed: boolean;
|
|
10822
|
-
top: number;
|
|
10823
10939
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10824
10940
|
|
|
10825
10941
|
declare const operation: (options: Options_4) => PortalLeaf;
|
|
@@ -11065,10 +11181,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11065
11181
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
11066
11182
|
}>, {
|
|
11067
11183
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11068
|
-
|
|
11184
|
+
placement: string;
|
|
11069
11185
|
type: string;
|
|
11186
|
+
modelValue: boolean;
|
|
11070
11187
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11071
|
-
placement: string;
|
|
11072
11188
|
trigger: string;
|
|
11073
11189
|
okText: string;
|
|
11074
11190
|
cancelText: string;
|
|
@@ -11078,15 +11194,15 @@ cancelType: string;
|
|
|
11078
11194
|
|
|
11079
11195
|
export declare const Popover: {
|
|
11080
11196
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
11081
|
-
modelValue: BooleanConstructor;
|
|
11082
|
-
always: BooleanConstructor;
|
|
11083
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11084
|
-
animation: StringConstructor;
|
|
11085
11197
|
placement: {
|
|
11086
11198
|
type: StringConstructor;
|
|
11087
11199
|
default: string;
|
|
11088
11200
|
validator: (value: string) => boolean;
|
|
11089
11201
|
};
|
|
11202
|
+
modelValue: BooleanConstructor;
|
|
11203
|
+
always: BooleanConstructor;
|
|
11204
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11205
|
+
animation: StringConstructor;
|
|
11090
11206
|
theme: {
|
|
11091
11207
|
type: StringConstructor;
|
|
11092
11208
|
default: string;
|
|
@@ -11133,10 +11249,10 @@ export declare const Popover: {
|
|
|
11133
11249
|
[key: string]: any;
|
|
11134
11250
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
11135
11251
|
tag: string;
|
|
11136
|
-
|
|
11252
|
+
placement: string;
|
|
11137
11253
|
disabled: boolean;
|
|
11254
|
+
modelValue: boolean;
|
|
11138
11255
|
always: boolean;
|
|
11139
|
-
placement: string;
|
|
11140
11256
|
theme: string;
|
|
11141
11257
|
portal: boolean;
|
|
11142
11258
|
arrow: boolean;
|
|
@@ -11151,15 +11267,15 @@ export declare const Popover: {
|
|
|
11151
11267
|
M: {};
|
|
11152
11268
|
Defaults: {};
|
|
11153
11269
|
}, Readonly<ExtractPropTypes< {
|
|
11154
|
-
modelValue: BooleanConstructor;
|
|
11155
|
-
always: BooleanConstructor;
|
|
11156
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11157
|
-
animation: StringConstructor;
|
|
11158
11270
|
placement: {
|
|
11159
11271
|
type: StringConstructor;
|
|
11160
11272
|
default: string;
|
|
11161
11273
|
validator: (value: string) => boolean;
|
|
11162
11274
|
};
|
|
11275
|
+
modelValue: BooleanConstructor;
|
|
11276
|
+
always: BooleanConstructor;
|
|
11277
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11278
|
+
animation: StringConstructor;
|
|
11163
11279
|
theme: {
|
|
11164
11280
|
type: StringConstructor;
|
|
11165
11281
|
default: string;
|
|
@@ -11206,10 +11322,10 @@ export declare const Popover: {
|
|
|
11206
11322
|
[key: string]: any;
|
|
11207
11323
|
}>, {}, {}, {}, {
|
|
11208
11324
|
tag: string;
|
|
11209
|
-
|
|
11325
|
+
placement: string;
|
|
11210
11326
|
disabled: boolean;
|
|
11327
|
+
modelValue: boolean;
|
|
11211
11328
|
always: boolean;
|
|
11212
|
-
placement: string;
|
|
11213
11329
|
theme: string;
|
|
11214
11330
|
portal: boolean;
|
|
11215
11331
|
arrow: boolean;
|
|
@@ -11221,15 +11337,15 @@ export declare const Popover: {
|
|
|
11221
11337
|
__isTeleport?: never;
|
|
11222
11338
|
__isSuspense?: never;
|
|
11223
11339
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
11224
|
-
modelValue: BooleanConstructor;
|
|
11225
|
-
always: BooleanConstructor;
|
|
11226
|
-
content: (StringConstructor | FunctionConstructor)[];
|
|
11227
|
-
animation: StringConstructor;
|
|
11228
11340
|
placement: {
|
|
11229
11341
|
type: StringConstructor;
|
|
11230
11342
|
default: string;
|
|
11231
11343
|
validator: (value: string) => boolean;
|
|
11232
11344
|
};
|
|
11345
|
+
modelValue: BooleanConstructor;
|
|
11346
|
+
always: BooleanConstructor;
|
|
11347
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
11348
|
+
animation: StringConstructor;
|
|
11233
11349
|
theme: {
|
|
11234
11350
|
type: StringConstructor;
|
|
11235
11351
|
default: string;
|
|
@@ -11276,10 +11392,10 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
11276
11392
|
[key: string]: any;
|
|
11277
11393
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
11278
11394
|
tag: string;
|
|
11279
|
-
|
|
11395
|
+
placement: string;
|
|
11280
11396
|
disabled: boolean;
|
|
11397
|
+
modelValue: boolean;
|
|
11281
11398
|
always: boolean;
|
|
11282
|
-
placement: string;
|
|
11283
11399
|
theme: string;
|
|
11284
11400
|
portal: boolean;
|
|
11285
11401
|
arrow: boolean;
|
|
@@ -11371,9 +11487,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
11371
11487
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11372
11488
|
}>, {
|
|
11373
11489
|
mask: boolean;
|
|
11374
|
-
modelValue: boolean;
|
|
11375
|
-
fixed: boolean;
|
|
11376
11490
|
placement: string;
|
|
11491
|
+
fixed: boolean;
|
|
11492
|
+
modelValue: boolean;
|
|
11377
11493
|
theme: string;
|
|
11378
11494
|
maskClosable: boolean;
|
|
11379
11495
|
scrollRegExp: Record<string, any>;
|
|
@@ -12067,8 +12183,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12067
12183
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12068
12184
|
}>, {
|
|
12069
12185
|
label: string | number | boolean;
|
|
12070
|
-
modelValue: string | number | boolean;
|
|
12071
12186
|
disabled: boolean;
|
|
12187
|
+
modelValue: string | number | boolean;
|
|
12072
12188
|
value: string | number | boolean;
|
|
12073
12189
|
trueValue: string | number | boolean;
|
|
12074
12190
|
falseValue: string | number | boolean;
|
|
@@ -12131,9 +12247,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12131
12247
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12132
12248
|
}>, {
|
|
12133
12249
|
name: string;
|
|
12134
|
-
modelValue: string | number;
|
|
12135
|
-
type: string;
|
|
12136
12250
|
disabled: boolean;
|
|
12251
|
+
type: string;
|
|
12252
|
+
modelValue: string | number;
|
|
12137
12253
|
vertical: boolean;
|
|
12138
12254
|
fragment: boolean;
|
|
12139
12255
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -12218,10 +12334,10 @@ default: () => {};
|
|
|
12218
12334
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
12219
12335
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12220
12336
|
}>, {
|
|
12337
|
+
disabled: boolean;
|
|
12221
12338
|
modelValue: string | number;
|
|
12222
12339
|
icon: string;
|
|
12223
12340
|
color: string;
|
|
12224
|
-
disabled: boolean;
|
|
12225
12341
|
clearable: boolean;
|
|
12226
12342
|
tooltip: unknown[];
|
|
12227
12343
|
count: number;
|
|
@@ -12329,9 +12445,9 @@ onScroll?: ((...args: any[]) => any) | undefined;
|
|
|
12329
12445
|
}>, {
|
|
12330
12446
|
data: unknown[];
|
|
12331
12447
|
disabled: boolean;
|
|
12448
|
+
offset: number;
|
|
12332
12449
|
vertical: boolean;
|
|
12333
12450
|
loadData: Function;
|
|
12334
|
-
offset: number;
|
|
12335
12451
|
pageSize: number;
|
|
12336
12452
|
cols: number;
|
|
12337
12453
|
gutter: number;
|
|
@@ -12733,11 +12849,11 @@ nullValue: {
|
|
|
12733
12849
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12734
12850
|
default: undefined;
|
|
12735
12851
|
};
|
|
12736
|
-
modelValue: PropType<string | number | any[]>;
|
|
12737
12852
|
disabled: {
|
|
12738
12853
|
type: BooleanConstructor;
|
|
12739
12854
|
default: boolean;
|
|
12740
12855
|
};
|
|
12856
|
+
modelValue: PropType<string | number | any[]>;
|
|
12741
12857
|
clearable: {
|
|
12742
12858
|
type: BooleanConstructor;
|
|
12743
12859
|
default: boolean;
|
|
@@ -12810,11 +12926,11 @@ nullValue: {
|
|
|
12810
12926
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
12811
12927
|
default: undefined;
|
|
12812
12928
|
};
|
|
12813
|
-
modelValue: PropType<string | number | any[]>;
|
|
12814
12929
|
disabled: {
|
|
12815
12930
|
type: BooleanConstructor;
|
|
12816
12931
|
default: boolean;
|
|
12817
12932
|
};
|
|
12933
|
+
modelValue: PropType<string | number | any[]>;
|
|
12818
12934
|
clearable: {
|
|
12819
12935
|
type: BooleanConstructor;
|
|
12820
12936
|
default: boolean;
|
|
@@ -12837,6 +12953,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
12837
12953
|
}>, {
|
|
12838
12954
|
tag: string;
|
|
12839
12955
|
data: unknown[];
|
|
12956
|
+
placement: string;
|
|
12840
12957
|
disabled: boolean;
|
|
12841
12958
|
extra: string;
|
|
12842
12959
|
numerable: boolean;
|
|
@@ -12844,7 +12961,6 @@ separator: string;
|
|
|
12844
12961
|
max: number;
|
|
12845
12962
|
nullValue: string | number | Record<string, any>;
|
|
12846
12963
|
clearable: boolean;
|
|
12847
|
-
placement: string;
|
|
12848
12964
|
portal: boolean;
|
|
12849
12965
|
arrow: boolean;
|
|
12850
12966
|
autoWidth: boolean;
|
|
@@ -13021,10 +13137,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13021
13137
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
13022
13138
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13023
13139
|
}>, {
|
|
13024
|
-
|
|
13140
|
+
disabled: boolean;
|
|
13025
13141
|
width: number;
|
|
13026
13142
|
height: number;
|
|
13027
|
-
|
|
13143
|
+
modelValue: string | number | boolean;
|
|
13028
13144
|
checkedValue: string | number | boolean;
|
|
13029
13145
|
uncheckedValue: string | number | boolean;
|
|
13030
13146
|
borderWidth: number;
|
|
@@ -13099,12 +13215,12 @@ placeholder: {
|
|
|
13099
13215
|
type: (StringConstructor | FunctionConstructor)[];
|
|
13100
13216
|
default: string;
|
|
13101
13217
|
};
|
|
13102
|
-
|
|
13218
|
+
sort: {
|
|
13103
13219
|
type: ObjectConstructor;
|
|
13104
13220
|
default: () => {};
|
|
13105
13221
|
};
|
|
13106
13222
|
delay: NumberConstructor;
|
|
13107
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
|
|
13223
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "update:sort" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ")[], "select" | "select-all" | "selection-change" | "expand-change" | "current-change" | "cell-mouse-enter" | "cell-mouse-leave" | "header-click" | "header-contextmenu" | "update:sort" | "sort-change" | "cell-click" | "cell-dblclick" | "row-click" | "row-contextmenu" | "row-dblclick" | "header-dragend ", PublicProps, Readonly<ExtractPropTypes< {
|
|
13108
13224
|
data: {
|
|
13109
13225
|
type: ArrayConstructor;
|
|
13110
13226
|
default: () => never[];
|
|
@@ -13171,7 +13287,7 @@ placeholder: {
|
|
|
13171
13287
|
type: (StringConstructor | FunctionConstructor)[];
|
|
13172
13288
|
default: string;
|
|
13173
13289
|
};
|
|
13174
|
-
|
|
13290
|
+
sort: {
|
|
13175
13291
|
type: ObjectConstructor;
|
|
13176
13292
|
default: () => {};
|
|
13177
13293
|
};
|
|
@@ -13186,6 +13302,7 @@ onSelect?: ((...args: any[]) => any) | undefined;
|
|
|
13186
13302
|
"onCell-mouse-leave"?: ((...args: any[]) => any) | undefined;
|
|
13187
13303
|
"onHeader-click"?: ((...args: any[]) => any) | undefined;
|
|
13188
13304
|
"onHeader-contextmenu"?: ((...args: any[]) => any) | undefined;
|
|
13305
|
+
"onUpdate:sort"?: ((...args: any[]) => any) | undefined;
|
|
13189
13306
|
"onSort-change"?: ((...args: any[]) => any) | undefined;
|
|
13190
13307
|
"onCell-click"?: ((...args: any[]) => any) | undefined;
|
|
13191
13308
|
"onCell-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
@@ -13194,6 +13311,7 @@ onSelect?: ((...args: any[]) => any) | undefined;
|
|
|
13194
13311
|
"onRow-dblclick"?: ((...args: any[]) => any) | undefined;
|
|
13195
13312
|
"onHeader-dragend "?: ((...args: any[]) => any) | undefined;
|
|
13196
13313
|
}>, {
|
|
13314
|
+
sort: Record<string, any>;
|
|
13197
13315
|
data: unknown[];
|
|
13198
13316
|
border: boolean;
|
|
13199
13317
|
placeholder: string | Function;
|
|
@@ -13205,7 +13323,6 @@ defaultExpandAll: boolean;
|
|
|
13205
13323
|
expandSelectable: boolean;
|
|
13206
13324
|
showHeader: boolean;
|
|
13207
13325
|
rows: number;
|
|
13208
|
-
defaultSort: Record<string, any>;
|
|
13209
13326
|
stripe: boolean;
|
|
13210
13327
|
divider: boolean;
|
|
13211
13328
|
showSummary: boolean;
|
|
@@ -13357,6 +13474,7 @@ animated: boolean;
|
|
|
13357
13474
|
export declare const TabsPane: DefineComponent<ExtractPropTypes< {
|
|
13358
13475
|
value: {
|
|
13359
13476
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13477
|
+
default: undefined;
|
|
13360
13478
|
};
|
|
13361
13479
|
label: {
|
|
13362
13480
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -13373,6 +13491,7 @@ default: boolean;
|
|
|
13373
13491
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
13374
13492
|
value: {
|
|
13375
13493
|
type: (StringConstructor | BooleanConstructor | NumberConstructor)[];
|
|
13494
|
+
default: undefined;
|
|
13376
13495
|
};
|
|
13377
13496
|
label: {
|
|
13378
13497
|
type: (StringConstructor | FunctionConstructor)[];
|
|
@@ -13389,6 +13508,7 @@ default: boolean;
|
|
|
13389
13508
|
}>> & Readonly<{}>, {
|
|
13390
13509
|
label: string | Function;
|
|
13391
13510
|
closable: boolean;
|
|
13511
|
+
value: string | number | boolean;
|
|
13392
13512
|
lazy: boolean;
|
|
13393
13513
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13394
13514
|
|
|
@@ -13527,8 +13647,8 @@ default: (props$: any) => any;
|
|
|
13527
13647
|
resize: number | boolean;
|
|
13528
13648
|
tag: string;
|
|
13529
13649
|
line: number;
|
|
13530
|
-
value: string;
|
|
13531
13650
|
placement: string;
|
|
13651
|
+
value: string;
|
|
13532
13652
|
indent: number;
|
|
13533
13653
|
suffix: string;
|
|
13534
13654
|
renderRow: Function;
|
|
@@ -13552,11 +13672,11 @@ default: boolean;
|
|
|
13552
13672
|
textareaStyle: {
|
|
13553
13673
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13554
13674
|
};
|
|
13555
|
-
modelValue: PropType<string | number | any[]>;
|
|
13556
13675
|
disabled: {
|
|
13557
13676
|
type: BooleanConstructor;
|
|
13558
13677
|
default: boolean;
|
|
13559
13678
|
};
|
|
13679
|
+
modelValue: PropType<string | number | any[]>;
|
|
13560
13680
|
maxlength: NumberConstructor;
|
|
13561
13681
|
id: {
|
|
13562
13682
|
type: StringConstructor;
|
|
@@ -13596,11 +13716,11 @@ default: boolean;
|
|
|
13596
13716
|
textareaStyle: {
|
|
13597
13717
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13598
13718
|
};
|
|
13599
|
-
modelValue: PropType<string | number | any[]>;
|
|
13600
13719
|
disabled: {
|
|
13601
13720
|
type: BooleanConstructor;
|
|
13602
13721
|
default: boolean;
|
|
13603
13722
|
};
|
|
13723
|
+
modelValue: PropType<string | number | any[]>;
|
|
13604
13724
|
maxlength: NumberConstructor;
|
|
13605
13725
|
id: {
|
|
13606
13726
|
type: StringConstructor;
|
|
@@ -14086,13 +14206,13 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
14086
14206
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
14087
14207
|
}>, {
|
|
14088
14208
|
tag: string;
|
|
14209
|
+
placement: string;
|
|
14089
14210
|
disabled: boolean;
|
|
14090
14211
|
separator: string;
|
|
14091
14212
|
nullValue: string | number | Record<string, any>;
|
|
14092
14213
|
clearable: boolean;
|
|
14093
14214
|
open: boolean;
|
|
14094
14215
|
multiple: boolean;
|
|
14095
|
-
placement: string;
|
|
14096
14216
|
portal: boolean;
|
|
14097
14217
|
arrow: boolean;
|
|
14098
14218
|
trigger: string;
|
|
@@ -15075,11 +15195,11 @@ nullValue: {
|
|
|
15075
15195
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15076
15196
|
default: undefined;
|
|
15077
15197
|
};
|
|
15078
|
-
modelValue: PropType<string | number | any[]>;
|
|
15079
15198
|
disabled: {
|
|
15080
15199
|
type: BooleanConstructor;
|
|
15081
15200
|
default: boolean;
|
|
15082
15201
|
};
|
|
15202
|
+
modelValue: PropType<string | number | any[]>;
|
|
15083
15203
|
clearable: {
|
|
15084
15204
|
type: BooleanConstructor;
|
|
15085
15205
|
default: boolean;
|
|
@@ -15157,11 +15277,11 @@ nullValue: {
|
|
|
15157
15277
|
type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
15158
15278
|
default: undefined;
|
|
15159
15279
|
};
|
|
15160
|
-
modelValue: PropType<string | number | any[]>;
|
|
15161
15280
|
disabled: {
|
|
15162
15281
|
type: BooleanConstructor;
|
|
15163
15282
|
default: boolean;
|
|
15164
15283
|
};
|
|
15284
|
+
modelValue: PropType<string | number | any[]>;
|
|
15165
15285
|
clearable: {
|
|
15166
15286
|
type: BooleanConstructor;
|
|
15167
15287
|
default: boolean;
|
|
@@ -15184,6 +15304,7 @@ onReady?: ((...args: any[]) => any) | undefined;
|
|
|
15184
15304
|
}>, {
|
|
15185
15305
|
tag: string;
|
|
15186
15306
|
data: unknown[];
|
|
15307
|
+
placement: string;
|
|
15187
15308
|
disabled: boolean;
|
|
15188
15309
|
extra: string;
|
|
15189
15310
|
numerable: boolean;
|
|
@@ -15191,7 +15312,6 @@ separator: string;
|
|
|
15191
15312
|
max: number;
|
|
15192
15313
|
nullValue: string | number | Record<string, any>;
|
|
15193
15314
|
clearable: boolean;
|
|
15194
|
-
placement: string;
|
|
15195
15315
|
portal: boolean;
|
|
15196
15316
|
arrow: boolean;
|
|
15197
15317
|
autoWidth: boolean;
|
|
@@ -15283,8 +15403,8 @@ export declare const Upload: {
|
|
|
15283
15403
|
tag: string | Record<string, any>;
|
|
15284
15404
|
name: string;
|
|
15285
15405
|
body: Record<string, any>;
|
|
15286
|
-
mode: string;
|
|
15287
15406
|
disabled: boolean;
|
|
15407
|
+
mode: string;
|
|
15288
15408
|
max: number;
|
|
15289
15409
|
showMessage: boolean;
|
|
15290
15410
|
headers: Record<string, any>;
|
|
@@ -15379,8 +15499,8 @@ export declare const Upload: {
|
|
|
15379
15499
|
tag: string | Record<string, any>;
|
|
15380
15500
|
name: string;
|
|
15381
15501
|
body: Record<string, any>;
|
|
15382
|
-
mode: string;
|
|
15383
15502
|
disabled: boolean;
|
|
15503
|
+
mode: string;
|
|
15384
15504
|
max: number;
|
|
15385
15505
|
showMessage: boolean;
|
|
15386
15506
|
headers: Record<string, any>;
|
|
@@ -15472,8 +15592,8 @@ size: number;
|
|
|
15472
15592
|
tag: string | Record<string, any>;
|
|
15473
15593
|
name: string;
|
|
15474
15594
|
body: Record<string, any>;
|
|
15475
|
-
mode: string;
|
|
15476
15595
|
disabled: boolean;
|
|
15596
|
+
mode: string;
|
|
15477
15597
|
max: number;
|
|
15478
15598
|
showMessage: boolean;
|
|
15479
15599
|
headers: Record<string, any>;
|
|
@@ -15626,8 +15746,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
15626
15746
|
}>, {
|
|
15627
15747
|
output: string | Function;
|
|
15628
15748
|
mask: boolean;
|
|
15629
|
-
modelValue: string | Record<string, any> | unknown[];
|
|
15630
15749
|
disabled: boolean;
|
|
15750
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
15631
15751
|
max: number | Record<string, any>;
|
|
15632
15752
|
showMessage: boolean;
|
|
15633
15753
|
uploadOptions: Record<string, any>;
|