@deot/vc-components 1.0.47 → 1.0.49
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 +177 -92
- package/dist/index.d.ts +177 -111
- package/dist/index.iife.js +205 -120
- package/dist/index.js +179 -94
- package/dist/index.style.css +1 -1
- package/dist/index.umd.cjs +205 -120
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -42,6 +42,10 @@ tag: string;
|
|
|
42
42
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
43
43
|
|
|
44
44
|
export declare const Affix: DefineComponent<ExtractPropTypes< {
|
|
45
|
+
modelValue: {
|
|
46
|
+
type: BooleanConstructor;
|
|
47
|
+
default: boolean;
|
|
48
|
+
};
|
|
45
49
|
zIndex: {
|
|
46
50
|
type: (StringConstructor | NumberConstructor)[];
|
|
47
51
|
default: number;
|
|
@@ -65,7 +69,13 @@ default: number;
|
|
|
65
69
|
target: {
|
|
66
70
|
type: StringConstructor;
|
|
67
71
|
};
|
|
68
|
-
}>, () => JSX_2.Element
|
|
72
|
+
}>, () => JSX_2.Element | VNode<RendererNode, RendererElement, {
|
|
73
|
+
[key: string]: any;
|
|
74
|
+
}>[] | undefined, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
75
|
+
modelValue: {
|
|
76
|
+
type: BooleanConstructor;
|
|
77
|
+
default: boolean;
|
|
78
|
+
};
|
|
69
79
|
zIndex: {
|
|
70
80
|
type: (StringConstructor | NumberConstructor)[];
|
|
71
81
|
default: number;
|
|
@@ -89,7 +99,10 @@ default: number;
|
|
|
89
99
|
target: {
|
|
90
100
|
type: StringConstructor;
|
|
91
101
|
};
|
|
92
|
-
}>> & Readonly<{
|
|
102
|
+
}>> & Readonly<{
|
|
103
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
104
|
+
}>, {
|
|
105
|
+
modelValue: boolean;
|
|
93
106
|
zIndex: string | number;
|
|
94
107
|
placement: string;
|
|
95
108
|
disabled: boolean;
|
|
@@ -150,8 +163,8 @@ default: boolean;
|
|
|
150
163
|
}>> & Readonly<{}>, {
|
|
151
164
|
title: string;
|
|
152
165
|
desc: string;
|
|
153
|
-
type: "error" | "success" | "info" | "warning";
|
|
154
166
|
modelValue: boolean;
|
|
167
|
+
type: "error" | "success" | "info" | "warning";
|
|
155
168
|
icon: string | boolean;
|
|
156
169
|
closable: boolean;
|
|
157
170
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -439,11 +452,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
439
452
|
default: undefined;
|
|
440
453
|
};
|
|
441
454
|
label: StringConstructor;
|
|
455
|
+
modelValue: PropType<string | number | any[]>;
|
|
442
456
|
disabled: {
|
|
443
457
|
type: BooleanConstructor;
|
|
444
458
|
default: boolean;
|
|
445
459
|
};
|
|
446
|
-
modelValue: PropType<string | number | any[]>;
|
|
447
460
|
clearable: {
|
|
448
461
|
type: BooleanConstructor;
|
|
449
462
|
default: boolean;
|
|
@@ -525,11 +538,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
525
538
|
default: undefined;
|
|
526
539
|
};
|
|
527
540
|
label: StringConstructor;
|
|
541
|
+
modelValue: PropType<string | number | any[]>;
|
|
528
542
|
disabled: {
|
|
529
543
|
type: BooleanConstructor;
|
|
530
544
|
default: boolean;
|
|
531
545
|
};
|
|
532
|
-
modelValue: PropType<string | number | any[]>;
|
|
533
546
|
clearable: {
|
|
534
547
|
type: BooleanConstructor;
|
|
535
548
|
default: boolean;
|
|
@@ -544,8 +557,8 @@ default: boolean;
|
|
|
544
557
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
545
558
|
}>> & Readonly<{
|
|
546
559
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
547
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
548
560
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
561
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
549
562
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
550
563
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
551
564
|
}>, {
|
|
@@ -664,8 +677,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
664
677
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
665
678
|
}>, {
|
|
666
679
|
label: string | number | boolean;
|
|
667
|
-
disabled: boolean;
|
|
668
680
|
modelValue: string | number | boolean;
|
|
681
|
+
disabled: boolean;
|
|
669
682
|
value: string | number | boolean;
|
|
670
683
|
indeterminate: boolean;
|
|
671
684
|
checkedValue: string | number | boolean;
|
|
@@ -1053,9 +1066,9 @@ portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
|
1053
1066
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
1054
1067
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
1055
1068
|
onError?: ((...args: any[]) => any) | undefined;
|
|
1069
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1056
1070
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
1057
1071
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
1058
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1059
1072
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1060
1073
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1061
1074
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -1213,16 +1226,16 @@ export declare const Drawer: {
|
|
|
1213
1226
|
type: FunctionConstructor;
|
|
1214
1227
|
};
|
|
1215
1228
|
}>> & Readonly<{
|
|
1216
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
1217
1229
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1230
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1218
1231
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1219
1232
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], PublicProps, {
|
|
1220
1233
|
footer: boolean;
|
|
1221
1234
|
mask: boolean;
|
|
1235
|
+
modelValue: boolean;
|
|
1222
1236
|
placement: string;
|
|
1223
1237
|
width: number;
|
|
1224
1238
|
height: number;
|
|
1225
|
-
modelValue: boolean;
|
|
1226
1239
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1227
1240
|
maskClosable: boolean;
|
|
1228
1241
|
scrollable: boolean;
|
|
@@ -1308,16 +1321,16 @@ export declare const Drawer: {
|
|
|
1308
1321
|
type: FunctionConstructor;
|
|
1309
1322
|
};
|
|
1310
1323
|
}>> & Readonly<{
|
|
1311
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
1312
1324
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1325
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1313
1326
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1314
1327
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
1315
1328
|
footer: boolean;
|
|
1316
1329
|
mask: boolean;
|
|
1330
|
+
modelValue: boolean;
|
|
1317
1331
|
placement: string;
|
|
1318
1332
|
width: number;
|
|
1319
1333
|
height: number;
|
|
1320
|
-
modelValue: boolean;
|
|
1321
1334
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1322
1335
|
maskClosable: boolean;
|
|
1323
1336
|
scrollable: boolean;
|
|
@@ -1400,16 +1413,16 @@ onCancel: {
|
|
|
1400
1413
|
type: FunctionConstructor;
|
|
1401
1414
|
};
|
|
1402
1415
|
}>> & Readonly<{
|
|
1403
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
1404
1416
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1417
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1405
1418
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1406
1419
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", {
|
|
1407
1420
|
footer: boolean;
|
|
1408
1421
|
mask: boolean;
|
|
1422
|
+
modelValue: boolean;
|
|
1409
1423
|
placement: string;
|
|
1410
1424
|
width: number;
|
|
1411
1425
|
height: number;
|
|
1412
|
-
modelValue: boolean;
|
|
1413
1426
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1414
1427
|
maskClosable: boolean;
|
|
1415
1428
|
scrollable: boolean;
|
|
@@ -1562,16 +1575,16 @@ onCancel: {
|
|
|
1562
1575
|
type: FunctionConstructor;
|
|
1563
1576
|
};
|
|
1564
1577
|
}>> & Readonly<{
|
|
1565
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
1566
1578
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1579
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1567
1580
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1568
1581
|
}>, {
|
|
1569
1582
|
footer: boolean;
|
|
1570
1583
|
mask: boolean;
|
|
1584
|
+
modelValue: boolean;
|
|
1571
1585
|
placement: string;
|
|
1572
1586
|
width: number;
|
|
1573
1587
|
height: number;
|
|
1574
|
-
modelValue: boolean;
|
|
1575
1588
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
1576
1589
|
maskClosable: boolean;
|
|
1577
1590
|
scrollable: boolean;
|
|
@@ -1620,13 +1633,13 @@ default: boolean;
|
|
|
1620
1633
|
};
|
|
1621
1634
|
}>> & Readonly<{
|
|
1622
1635
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1623
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
1624
1636
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1637
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
1625
1638
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1626
1639
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1627
1640
|
}>, {
|
|
1628
|
-
placement: string;
|
|
1629
1641
|
modelValue: boolean;
|
|
1642
|
+
placement: string;
|
|
1630
1643
|
arrow: boolean;
|
|
1631
1644
|
trigger: string;
|
|
1632
1645
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -1754,8 +1767,8 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
1754
1767
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1755
1768
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
1756
1769
|
}>, {
|
|
1757
|
-
disabled: boolean;
|
|
1758
1770
|
modelValue: string;
|
|
1771
|
+
disabled: boolean;
|
|
1759
1772
|
enhancer: boolean | Function;
|
|
1760
1773
|
uploadOptions: Record<string, any>;
|
|
1761
1774
|
previewable: boolean;
|
|
@@ -1874,6 +1887,12 @@ labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
1874
1887
|
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
1875
1888
|
errorStyle: (ObjectConstructor | StringConstructor)[];
|
|
1876
1889
|
errorClass: (ObjectConstructor | StringConstructor)[];
|
|
1890
|
+
nestedContentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1891
|
+
nestedContentClass: (ObjectConstructor | StringConstructor)[];
|
|
1892
|
+
nestedLabelStyle: (ObjectConstructor | StringConstructor)[];
|
|
1893
|
+
nestedLabelClass: (ObjectConstructor | StringConstructor)[];
|
|
1894
|
+
nestedErrorStyle: (ObjectConstructor | StringConstructor)[];
|
|
1895
|
+
nestedErrorClass: (ObjectConstructor | StringConstructor)[];
|
|
1877
1896
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
1878
1897
|
[key: string]: any;
|
|
1879
1898
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -1916,6 +1935,12 @@ labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
1916
1935
|
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
1917
1936
|
errorStyle: (ObjectConstructor | StringConstructor)[];
|
|
1918
1937
|
errorClass: (ObjectConstructor | StringConstructor)[];
|
|
1938
|
+
nestedContentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1939
|
+
nestedContentClass: (ObjectConstructor | StringConstructor)[];
|
|
1940
|
+
nestedLabelStyle: (ObjectConstructor | StringConstructor)[];
|
|
1941
|
+
nestedLabelClass: (ObjectConstructor | StringConstructor)[];
|
|
1942
|
+
nestedErrorStyle: (ObjectConstructor | StringConstructor)[];
|
|
1943
|
+
nestedErrorClass: (ObjectConstructor | StringConstructor)[];
|
|
1919
1944
|
}>> & Readonly<{}>, {
|
|
1920
1945
|
tag: string;
|
|
1921
1946
|
styleless: boolean;
|
|
@@ -2307,9 +2332,9 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
2307
2332
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
2308
2333
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
2309
2334
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
2335
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2310
2336
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
2311
2337
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
2312
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2313
2338
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
2314
2339
|
}>, {
|
|
2315
2340
|
disabled: boolean;
|
|
@@ -2658,6 +2683,10 @@ tag: string;
|
|
|
2658
2683
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
2659
2684
|
|
|
2660
2685
|
export declare const MAffix: DefineComponent<ExtractPropTypes< {
|
|
2686
|
+
modelValue: {
|
|
2687
|
+
type: BooleanConstructor;
|
|
2688
|
+
default: boolean;
|
|
2689
|
+
};
|
|
2661
2690
|
zIndex: {
|
|
2662
2691
|
type: (StringConstructor | NumberConstructor)[];
|
|
2663
2692
|
default: number;
|
|
@@ -2681,7 +2710,13 @@ default: number;
|
|
|
2681
2710
|
target: {
|
|
2682
2711
|
type: StringConstructor;
|
|
2683
2712
|
};
|
|
2684
|
-
}>, () => JSX_2.Element
|
|
2713
|
+
}>, () => JSX_2.Element | VNode<RendererNode, RendererElement, {
|
|
2714
|
+
[key: string]: any;
|
|
2715
|
+
}>[] | undefined, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "update:modelValue"[], "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
2716
|
+
modelValue: {
|
|
2717
|
+
type: BooleanConstructor;
|
|
2718
|
+
default: boolean;
|
|
2719
|
+
};
|
|
2685
2720
|
zIndex: {
|
|
2686
2721
|
type: (StringConstructor | NumberConstructor)[];
|
|
2687
2722
|
default: number;
|
|
@@ -2705,7 +2740,10 @@ default: number;
|
|
|
2705
2740
|
target: {
|
|
2706
2741
|
type: StringConstructor;
|
|
2707
2742
|
};
|
|
2708
|
-
}>> & Readonly<{
|
|
2743
|
+
}>> & Readonly<{
|
|
2744
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2745
|
+
}>, {
|
|
2746
|
+
modelValue: boolean;
|
|
2709
2747
|
zIndex: string | number;
|
|
2710
2748
|
placement: string;
|
|
2711
2749
|
disabled: boolean;
|
|
@@ -2766,8 +2804,8 @@ default: boolean;
|
|
|
2766
2804
|
}>> & Readonly<{}>, {
|
|
2767
2805
|
title: string;
|
|
2768
2806
|
desc: string;
|
|
2769
|
-
type: "error" | "success" | "info" | "warning";
|
|
2770
2807
|
modelValue: boolean;
|
|
2808
|
+
type: "error" | "success" | "info" | "warning";
|
|
2771
2809
|
icon: string | boolean;
|
|
2772
2810
|
closable: boolean;
|
|
2773
2811
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -3109,11 +3147,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
3109
3147
|
default: undefined;
|
|
3110
3148
|
};
|
|
3111
3149
|
label: StringConstructor;
|
|
3150
|
+
modelValue: PropType<string | number | any[]>;
|
|
3112
3151
|
disabled: {
|
|
3113
3152
|
type: BooleanConstructor;
|
|
3114
3153
|
default: boolean;
|
|
3115
3154
|
};
|
|
3116
|
-
modelValue: PropType<string | number | any[]>;
|
|
3117
3155
|
clearable: {
|
|
3118
3156
|
type: BooleanConstructor;
|
|
3119
3157
|
default: boolean;
|
|
@@ -3195,11 +3233,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
3195
3233
|
default: undefined;
|
|
3196
3234
|
};
|
|
3197
3235
|
label: StringConstructor;
|
|
3236
|
+
modelValue: PropType<string | number | any[]>;
|
|
3198
3237
|
disabled: {
|
|
3199
3238
|
type: BooleanConstructor;
|
|
3200
3239
|
default: boolean;
|
|
3201
3240
|
};
|
|
3202
|
-
modelValue: PropType<string | number | any[]>;
|
|
3203
3241
|
clearable: {
|
|
3204
3242
|
type: BooleanConstructor;
|
|
3205
3243
|
default: boolean;
|
|
@@ -3214,8 +3252,8 @@ default: boolean;
|
|
|
3214
3252
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
3215
3253
|
}>> & Readonly<{
|
|
3216
3254
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3217
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
3218
3255
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3256
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3219
3257
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
3220
3258
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3221
3259
|
}>, {
|
|
@@ -3334,8 +3372,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
3334
3372
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3335
3373
|
}>, {
|
|
3336
3374
|
label: string | number | boolean;
|
|
3337
|
-
disabled: boolean;
|
|
3338
3375
|
modelValue: string | number | boolean;
|
|
3376
|
+
disabled: boolean;
|
|
3339
3377
|
value: string | number | boolean;
|
|
3340
3378
|
indeterminate: boolean;
|
|
3341
3379
|
checkedValue: string | number | boolean;
|
|
@@ -3722,9 +3760,9 @@ portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
|
3722
3760
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
3723
3761
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
3724
3762
|
onError?: ((...args: any[]) => any) | undefined;
|
|
3763
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3725
3764
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
3726
3765
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
3727
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3728
3766
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
3729
3767
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3730
3768
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -3842,16 +3880,16 @@ export declare const MDrawer: {
|
|
|
3842
3880
|
type: FunctionConstructor;
|
|
3843
3881
|
};
|
|
3844
3882
|
}>> & Readonly<{
|
|
3845
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
3846
3883
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3884
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3847
3885
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3848
3886
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], PublicProps, {
|
|
3849
3887
|
footer: boolean;
|
|
3850
3888
|
mask: boolean;
|
|
3889
|
+
modelValue: boolean;
|
|
3851
3890
|
placement: string;
|
|
3852
3891
|
width: number;
|
|
3853
3892
|
height: number;
|
|
3854
|
-
modelValue: boolean;
|
|
3855
3893
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3856
3894
|
maskClosable: boolean;
|
|
3857
3895
|
scrollable: boolean;
|
|
@@ -3937,16 +3975,16 @@ export declare const MDrawer: {
|
|
|
3937
3975
|
type: FunctionConstructor;
|
|
3938
3976
|
};
|
|
3939
3977
|
}>> & Readonly<{
|
|
3940
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
3941
3978
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3979
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
3942
3980
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3943
3981
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
3944
3982
|
footer: boolean;
|
|
3945
3983
|
mask: boolean;
|
|
3984
|
+
modelValue: boolean;
|
|
3946
3985
|
placement: string;
|
|
3947
3986
|
width: number;
|
|
3948
3987
|
height: number;
|
|
3949
|
-
modelValue: boolean;
|
|
3950
3988
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3951
3989
|
maskClosable: boolean;
|
|
3952
3990
|
scrollable: boolean;
|
|
@@ -4029,16 +4067,16 @@ onCancel: {
|
|
|
4029
4067
|
type: FunctionConstructor;
|
|
4030
4068
|
};
|
|
4031
4069
|
}>> & Readonly<{
|
|
4032
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
4033
4070
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4071
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
4034
4072
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
4035
4073
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change")[], "close" | "update:modelValue" | "visible-change", {
|
|
4036
4074
|
footer: boolean;
|
|
4037
4075
|
mask: boolean;
|
|
4076
|
+
modelValue: boolean;
|
|
4038
4077
|
placement: string;
|
|
4039
4078
|
width: number;
|
|
4040
4079
|
height: number;
|
|
4041
|
-
modelValue: boolean;
|
|
4042
4080
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
4043
4081
|
maskClosable: boolean;
|
|
4044
4082
|
scrollable: boolean;
|
|
@@ -4051,10 +4089,10 @@ cancelDisabled: boolean;
|
|
|
4051
4089
|
open: (options: Partial<{
|
|
4052
4090
|
footer: boolean;
|
|
4053
4091
|
mask: boolean;
|
|
4092
|
+
modelValue: boolean;
|
|
4054
4093
|
placement: string;
|
|
4055
4094
|
width: number;
|
|
4056
4095
|
height: number;
|
|
4057
|
-
modelValue: boolean;
|
|
4058
4096
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
4059
4097
|
maskClosable: boolean;
|
|
4060
4098
|
scrollable: boolean;
|
|
@@ -4217,16 +4255,16 @@ onCancel: {
|
|
|
4217
4255
|
type: FunctionConstructor;
|
|
4218
4256
|
};
|
|
4219
4257
|
}>> & Readonly<{
|
|
4220
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
4221
4258
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4259
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
4222
4260
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
4223
4261
|
}>, {
|
|
4224
4262
|
footer: boolean;
|
|
4225
4263
|
mask: boolean;
|
|
4264
|
+
modelValue: boolean;
|
|
4226
4265
|
placement: string;
|
|
4227
4266
|
width: number;
|
|
4228
4267
|
height: number;
|
|
4229
|
-
modelValue: boolean;
|
|
4230
4268
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
4231
4269
|
maskClosable: boolean;
|
|
4232
4270
|
scrollable: boolean;
|
|
@@ -4275,13 +4313,13 @@ default: boolean;
|
|
|
4275
4313
|
};
|
|
4276
4314
|
}>> & Readonly<{
|
|
4277
4315
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
4278
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
4279
4316
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4317
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
4280
4318
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
4281
4319
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
4282
4320
|
}>, {
|
|
4283
|
-
placement: string;
|
|
4284
4321
|
modelValue: boolean;
|
|
4322
|
+
placement: string;
|
|
4285
4323
|
arrow: boolean;
|
|
4286
4324
|
trigger: string;
|
|
4287
4325
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -4409,8 +4447,8 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
4409
4447
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
4410
4448
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
4411
4449
|
}>, {
|
|
4412
|
-
disabled: boolean;
|
|
4413
4450
|
modelValue: string;
|
|
4451
|
+
disabled: boolean;
|
|
4414
4452
|
enhancer: boolean | Function;
|
|
4415
4453
|
uploadOptions: Record<string, any>;
|
|
4416
4454
|
previewable: boolean;
|
|
@@ -4727,6 +4765,12 @@ labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
4727
4765
|
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
4728
4766
|
errorStyle: (ObjectConstructor | StringConstructor)[];
|
|
4729
4767
|
errorClass: (ObjectConstructor | StringConstructor)[];
|
|
4768
|
+
nestedContentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4769
|
+
nestedContentClass: (ObjectConstructor | StringConstructor)[];
|
|
4770
|
+
nestedLabelStyle: (ObjectConstructor | StringConstructor)[];
|
|
4771
|
+
nestedLabelClass: (ObjectConstructor | StringConstructor)[];
|
|
4772
|
+
nestedErrorStyle: (ObjectConstructor | StringConstructor)[];
|
|
4773
|
+
nestedErrorClass: (ObjectConstructor | StringConstructor)[];
|
|
4730
4774
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
4731
4775
|
[key: string]: any;
|
|
4732
4776
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -4777,6 +4821,12 @@ labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
4777
4821
|
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
4778
4822
|
errorStyle: (ObjectConstructor | StringConstructor)[];
|
|
4779
4823
|
errorClass: (ObjectConstructor | StringConstructor)[];
|
|
4824
|
+
nestedContentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4825
|
+
nestedContentClass: (ObjectConstructor | StringConstructor)[];
|
|
4826
|
+
nestedLabelStyle: (ObjectConstructor | StringConstructor)[];
|
|
4827
|
+
nestedLabelClass: (ObjectConstructor | StringConstructor)[];
|
|
4828
|
+
nestedErrorStyle: (ObjectConstructor | StringConstructor)[];
|
|
4829
|
+
nestedErrorClass: (ObjectConstructor | StringConstructor)[];
|
|
4780
4830
|
}>> & Readonly<{}>, {
|
|
4781
4831
|
tag: string;
|
|
4782
4832
|
border: boolean;
|
|
@@ -5149,9 +5199,9 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
5149
5199
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
5150
5200
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
5151
5201
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
5202
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5152
5203
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
5153
5204
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
5154
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5155
5205
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
5156
5206
|
}>, {
|
|
5157
5207
|
disabled: boolean;
|
|
@@ -5885,16 +5935,16 @@ declare const MModal_2: {
|
|
|
5885
5935
|
type: FunctionConstructor;
|
|
5886
5936
|
};
|
|
5887
5937
|
}>> & Readonly<{
|
|
5938
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5888
5939
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
5889
5940
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5890
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5891
5941
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5892
5942
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
5893
5943
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok")[], PublicProps, {
|
|
5894
5944
|
footer: boolean;
|
|
5895
5945
|
mask: boolean;
|
|
5896
|
-
width: number;
|
|
5897
5946
|
modelValue: boolean;
|
|
5947
|
+
width: number;
|
|
5898
5948
|
mode: "alert" | "operation";
|
|
5899
5949
|
maskClosable: boolean;
|
|
5900
5950
|
closeWithCancel: boolean;
|
|
@@ -5960,16 +6010,16 @@ declare const MModal_2: {
|
|
|
5960
6010
|
type: FunctionConstructor;
|
|
5961
6011
|
};
|
|
5962
6012
|
}>> & Readonly<{
|
|
6013
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5963
6014
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
5964
6015
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5965
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5966
6016
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5967
6017
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
5968
6018
|
}>, () => JSX_2.Element, {}, {}, {}, {
|
|
5969
6019
|
footer: boolean;
|
|
5970
6020
|
mask: boolean;
|
|
5971
|
-
width: number;
|
|
5972
6021
|
modelValue: boolean;
|
|
6022
|
+
width: number;
|
|
5973
6023
|
mode: "alert" | "operation";
|
|
5974
6024
|
maskClosable: boolean;
|
|
5975
6025
|
closeWithCancel: boolean;
|
|
@@ -6032,16 +6082,16 @@ onCancel: {
|
|
|
6032
6082
|
type: FunctionConstructor;
|
|
6033
6083
|
};
|
|
6034
6084
|
}>> & Readonly<{
|
|
6085
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6035
6086
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6036
6087
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6037
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6038
6088
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6039
6089
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
6040
6090
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok")[], "cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok", {
|
|
6041
6091
|
footer: boolean;
|
|
6042
6092
|
mask: boolean;
|
|
6043
|
-
width: number;
|
|
6044
6093
|
modelValue: boolean;
|
|
6094
|
+
width: number;
|
|
6045
6095
|
mode: "alert" | "operation";
|
|
6046
6096
|
maskClosable: boolean;
|
|
6047
6097
|
closeWithCancel: boolean;
|
|
@@ -6158,16 +6208,16 @@ onCancel: {
|
|
|
6158
6208
|
type: FunctionConstructor;
|
|
6159
6209
|
};
|
|
6160
6210
|
}>> & Readonly<{
|
|
6211
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6161
6212
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6162
6213
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6163
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6164
6214
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6165
6215
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
6166
6216
|
}>, {
|
|
6167
6217
|
footer: boolean;
|
|
6168
6218
|
mask: boolean;
|
|
6169
|
-
width: number;
|
|
6170
6219
|
modelValue: boolean;
|
|
6220
|
+
width: number;
|
|
6171
6221
|
mode: "alert" | "operation";
|
|
6172
6222
|
maskClosable: boolean;
|
|
6173
6223
|
closeWithCancel: boolean;
|
|
@@ -6451,9 +6501,9 @@ export declare const Modal: {
|
|
|
6451
6501
|
type: FunctionConstructor;
|
|
6452
6502
|
};
|
|
6453
6503
|
}>> & Readonly<{
|
|
6504
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6454
6505
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6455
6506
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6456
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6457
6507
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6458
6508
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
6459
6509
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -6571,9 +6621,9 @@ export declare const Modal: {
|
|
|
6571
6621
|
type: FunctionConstructor;
|
|
6572
6622
|
};
|
|
6573
6623
|
}>> & Readonly<{
|
|
6624
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6574
6625
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6575
6626
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6576
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6577
6627
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6578
6628
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
6579
6629
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -6688,9 +6738,9 @@ onCancel: {
|
|
|
6688
6738
|
type: FunctionConstructor;
|
|
6689
6739
|
};
|
|
6690
6740
|
}>> & Readonly<{
|
|
6741
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6691
6742
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6692
6743
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6693
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6694
6744
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6695
6745
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
6696
6746
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -6898,9 +6948,9 @@ onCancel: {
|
|
|
6898
6948
|
type: FunctionConstructor;
|
|
6899
6949
|
};
|
|
6900
6950
|
}>> & Readonly<{
|
|
6951
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6901
6952
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
6902
6953
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
6903
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
6904
6954
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
6905
6955
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
6906
6956
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -7130,17 +7180,17 @@ validator: (v: string) => boolean;
|
|
|
7130
7180
|
width: (StringConstructor | NumberConstructor)[];
|
|
7131
7181
|
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
7132
7182
|
}>> & Readonly<{
|
|
7183
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7133
7184
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
7134
7185
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
7135
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7136
7186
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7137
7187
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7138
7188
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
7139
7189
|
}>, {
|
|
7140
7190
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7191
|
+
modelValue: boolean;
|
|
7141
7192
|
placement: string;
|
|
7142
7193
|
type: string;
|
|
7143
|
-
modelValue: boolean;
|
|
7144
7194
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
7145
7195
|
trigger: string;
|
|
7146
7196
|
okText: string;
|
|
@@ -7151,12 +7201,12 @@ cancelType: string;
|
|
|
7151
7201
|
|
|
7152
7202
|
export declare const MPopover: {
|
|
7153
7203
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
7204
|
+
modelValue: BooleanConstructor;
|
|
7154
7205
|
placement: {
|
|
7155
7206
|
type: StringConstructor;
|
|
7156
7207
|
default: string;
|
|
7157
7208
|
validator: (value: string) => boolean;
|
|
7158
7209
|
};
|
|
7159
|
-
modelValue: BooleanConstructor;
|
|
7160
7210
|
always: BooleanConstructor;
|
|
7161
7211
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7162
7212
|
animation: StringConstructor;
|
|
@@ -7198,17 +7248,17 @@ export declare const MPopover: {
|
|
|
7198
7248
|
default: boolean;
|
|
7199
7249
|
};
|
|
7200
7250
|
}>> & Readonly<{
|
|
7201
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
7202
7251
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7252
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
7203
7253
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7204
7254
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7205
7255
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
7206
7256
|
[key: string]: any;
|
|
7207
7257
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
7208
7258
|
tag: string;
|
|
7259
|
+
modelValue: boolean;
|
|
7209
7260
|
placement: string;
|
|
7210
7261
|
disabled: boolean;
|
|
7211
|
-
modelValue: boolean;
|
|
7212
7262
|
always: boolean;
|
|
7213
7263
|
theme: string;
|
|
7214
7264
|
portal: boolean;
|
|
@@ -7224,12 +7274,12 @@ export declare const MPopover: {
|
|
|
7224
7274
|
M: {};
|
|
7225
7275
|
Defaults: {};
|
|
7226
7276
|
}, Readonly<ExtractPropTypes< {
|
|
7277
|
+
modelValue: BooleanConstructor;
|
|
7227
7278
|
placement: {
|
|
7228
7279
|
type: StringConstructor;
|
|
7229
7280
|
default: string;
|
|
7230
7281
|
validator: (value: string) => boolean;
|
|
7231
7282
|
};
|
|
7232
|
-
modelValue: BooleanConstructor;
|
|
7233
7283
|
always: BooleanConstructor;
|
|
7234
7284
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7235
7285
|
animation: StringConstructor;
|
|
@@ -7271,17 +7321,17 @@ export declare const MPopover: {
|
|
|
7271
7321
|
default: boolean;
|
|
7272
7322
|
};
|
|
7273
7323
|
}>> & Readonly<{
|
|
7274
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
7275
7324
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7325
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
7276
7326
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7277
7327
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7278
7328
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
7279
7329
|
[key: string]: any;
|
|
7280
7330
|
}>, {}, {}, {}, {
|
|
7281
7331
|
tag: string;
|
|
7332
|
+
modelValue: boolean;
|
|
7282
7333
|
placement: string;
|
|
7283
7334
|
disabled: boolean;
|
|
7284
|
-
modelValue: boolean;
|
|
7285
7335
|
always: boolean;
|
|
7286
7336
|
theme: string;
|
|
7287
7337
|
portal: boolean;
|
|
@@ -7294,12 +7344,12 @@ export declare const MPopover: {
|
|
|
7294
7344
|
__isTeleport?: never;
|
|
7295
7345
|
__isSuspense?: never;
|
|
7296
7346
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
7347
|
+
modelValue: BooleanConstructor;
|
|
7297
7348
|
placement: {
|
|
7298
7349
|
type: StringConstructor;
|
|
7299
7350
|
default: string;
|
|
7300
7351
|
validator: (value: string) => boolean;
|
|
7301
7352
|
};
|
|
7302
|
-
modelValue: BooleanConstructor;
|
|
7303
7353
|
always: BooleanConstructor;
|
|
7304
7354
|
content: (StringConstructor | FunctionConstructor)[];
|
|
7305
7355
|
animation: StringConstructor;
|
|
@@ -7341,17 +7391,17 @@ type: BooleanConstructor;
|
|
|
7341
7391
|
default: boolean;
|
|
7342
7392
|
};
|
|
7343
7393
|
}>> & Readonly<{
|
|
7344
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
7345
7394
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7395
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
7346
7396
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
7347
7397
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7348
7398
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
7349
7399
|
[key: string]: any;
|
|
7350
7400
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
7351
7401
|
tag: string;
|
|
7402
|
+
modelValue: boolean;
|
|
7352
7403
|
placement: string;
|
|
7353
7404
|
disabled: boolean;
|
|
7354
|
-
modelValue: boolean;
|
|
7355
7405
|
always: boolean;
|
|
7356
7406
|
theme: string;
|
|
7357
7407
|
portal: boolean;
|
|
@@ -7438,15 +7488,15 @@ className: RegExp;
|
|
|
7438
7488
|
};
|
|
7439
7489
|
};
|
|
7440
7490
|
}>> & Readonly<{
|
|
7441
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
7442
7491
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7492
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
7443
7493
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
7444
7494
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
7445
7495
|
}>, {
|
|
7446
7496
|
mask: boolean;
|
|
7497
|
+
modelValue: boolean;
|
|
7447
7498
|
placement: string;
|
|
7448
7499
|
fixed: boolean;
|
|
7449
|
-
modelValue: boolean;
|
|
7450
7500
|
theme: string;
|
|
7451
7501
|
maskClosable: boolean;
|
|
7452
7502
|
scrollRegExp: Record<string, any>;
|
|
@@ -7648,8 +7698,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
7648
7698
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7649
7699
|
}>, {
|
|
7650
7700
|
label: string | number | boolean;
|
|
7651
|
-
disabled: boolean;
|
|
7652
7701
|
modelValue: string | number | boolean;
|
|
7702
|
+
disabled: boolean;
|
|
7653
7703
|
value: string | number | boolean;
|
|
7654
7704
|
trueValue: string | number | boolean;
|
|
7655
7705
|
falseValue: string | number | boolean;
|
|
@@ -7712,9 +7762,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
7712
7762
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7713
7763
|
}>, {
|
|
7714
7764
|
name: string;
|
|
7765
|
+
modelValue: string | number;
|
|
7715
7766
|
disabled: boolean;
|
|
7716
7767
|
type: string;
|
|
7717
|
-
modelValue: string | number;
|
|
7718
7768
|
vertical: boolean;
|
|
7719
7769
|
fragment: boolean;
|
|
7720
7770
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -7799,8 +7849,8 @@ default: () => {};
|
|
|
7799
7849
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
7800
7850
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
7801
7851
|
}>, {
|
|
7802
|
-
disabled: boolean;
|
|
7803
7852
|
modelValue: string | number;
|
|
7853
|
+
disabled: boolean;
|
|
7804
7854
|
icon: string;
|
|
7805
7855
|
color: string;
|
|
7806
7856
|
clearable: boolean;
|
|
@@ -8151,11 +8201,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
8151
8201
|
default: undefined;
|
|
8152
8202
|
};
|
|
8153
8203
|
label: StringConstructor;
|
|
8204
|
+
modelValue: PropType<string | number | any[]>;
|
|
8154
8205
|
disabled: {
|
|
8155
8206
|
type: BooleanConstructor;
|
|
8156
8207
|
default: boolean;
|
|
8157
8208
|
};
|
|
8158
|
-
modelValue: PropType<string | number | any[]>;
|
|
8159
8209
|
clearable: {
|
|
8160
8210
|
type: BooleanConstructor;
|
|
8161
8211
|
default: boolean;
|
|
@@ -8229,11 +8279,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
8229
8279
|
default: undefined;
|
|
8230
8280
|
};
|
|
8231
8281
|
label: StringConstructor;
|
|
8282
|
+
modelValue: PropType<string | number | any[]>;
|
|
8232
8283
|
disabled: {
|
|
8233
8284
|
type: BooleanConstructor;
|
|
8234
8285
|
default: boolean;
|
|
8235
8286
|
};
|
|
8236
|
-
modelValue: PropType<string | number | any[]>;
|
|
8237
8287
|
clearable: {
|
|
8238
8288
|
type: BooleanConstructor;
|
|
8239
8289
|
default: boolean;
|
|
@@ -8248,9 +8298,9 @@ default: boolean;
|
|
|
8248
8298
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
8249
8299
|
}>> & Readonly<{
|
|
8250
8300
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8301
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8251
8302
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
8252
8303
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
8253
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8254
8304
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
8255
8305
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
8256
8306
|
}>, {
|
|
@@ -8440,10 +8490,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
8440
8490
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
8441
8491
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
8442
8492
|
}>, {
|
|
8493
|
+
modelValue: string | number | boolean;
|
|
8443
8494
|
disabled: boolean;
|
|
8444
8495
|
width: number;
|
|
8445
8496
|
height: number;
|
|
8446
|
-
modelValue: string | number | boolean;
|
|
8447
8497
|
checkedValue: string | number | boolean;
|
|
8448
8498
|
uncheckedValue: string | number | boolean;
|
|
8449
8499
|
borderWidth: number;
|
|
@@ -8770,6 +8820,8 @@ default: boolean;
|
|
|
8770
8820
|
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8771
8821
|
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8772
8822
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8823
|
+
affixable: BooleanConstructor;
|
|
8824
|
+
affixOptions: ObjectConstructor;
|
|
8773
8825
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8774
8826
|
theme: {
|
|
8775
8827
|
type: StringConstructor;
|
|
@@ -8827,6 +8879,8 @@ default: boolean;
|
|
|
8827
8879
|
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8828
8880
|
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8829
8881
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8882
|
+
affixable: BooleanConstructor;
|
|
8883
|
+
affixOptions: ObjectConstructor;
|
|
8830
8884
|
}>> & Readonly<{
|
|
8831
8885
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8832
8886
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -8840,6 +8894,7 @@ theme: string;
|
|
|
8840
8894
|
animated: boolean;
|
|
8841
8895
|
offsetTop: number;
|
|
8842
8896
|
barStyle: Record<string, any> | unknown[];
|
|
8897
|
+
affixable: boolean;
|
|
8843
8898
|
autoAfloatWidth: boolean;
|
|
8844
8899
|
average: boolean;
|
|
8845
8900
|
showWrapper: boolean;
|
|
@@ -9061,11 +9116,11 @@ default: boolean;
|
|
|
9061
9116
|
textareaStyle: {
|
|
9062
9117
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
9063
9118
|
};
|
|
9119
|
+
modelValue: PropType<string | number | any[]>;
|
|
9064
9120
|
disabled: {
|
|
9065
9121
|
type: BooleanConstructor;
|
|
9066
9122
|
default: boolean;
|
|
9067
9123
|
};
|
|
9068
|
-
modelValue: PropType<string | number | any[]>;
|
|
9069
9124
|
maxlength: NumberConstructor;
|
|
9070
9125
|
id: {
|
|
9071
9126
|
type: StringConstructor;
|
|
@@ -9104,11 +9159,11 @@ default: boolean;
|
|
|
9104
9159
|
textareaStyle: {
|
|
9105
9160
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
9106
9161
|
};
|
|
9162
|
+
modelValue: PropType<string | number | any[]>;
|
|
9107
9163
|
disabled: {
|
|
9108
9164
|
type: BooleanConstructor;
|
|
9109
9165
|
default: boolean;
|
|
9110
9166
|
};
|
|
9111
|
-
modelValue: PropType<string | number | any[]>;
|
|
9112
9167
|
maxlength: NumberConstructor;
|
|
9113
9168
|
id: {
|
|
9114
9169
|
type: StringConstructor;
|
|
@@ -9139,11 +9194,11 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
9139
9194
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
9140
9195
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
9141
9196
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
9197
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9142
9198
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
9143
9199
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
9144
9200
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
9145
9201
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
9146
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9147
9202
|
}>, {
|
|
9148
9203
|
disabled: boolean;
|
|
9149
9204
|
allowDispatch: boolean;
|
|
@@ -9305,9 +9360,9 @@ portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
|
9305
9360
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
9306
9361
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
9307
9362
|
onError?: ((...args: any[]) => any) | undefined;
|
|
9363
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9308
9364
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
9309
9365
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
9310
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9311
9366
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
9312
9367
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
9313
9368
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -10252,11 +10307,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
10252
10307
|
default: undefined;
|
|
10253
10308
|
};
|
|
10254
10309
|
label: StringConstructor;
|
|
10310
|
+
modelValue: PropType<string | number | any[]>;
|
|
10255
10311
|
disabled: {
|
|
10256
10312
|
type: BooleanConstructor;
|
|
10257
10313
|
default: boolean;
|
|
10258
10314
|
};
|
|
10259
|
-
modelValue: PropType<string | number | any[]>;
|
|
10260
10315
|
clearable: {
|
|
10261
10316
|
type: BooleanConstructor;
|
|
10262
10317
|
default: boolean;
|
|
@@ -10335,11 +10390,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
10335
10390
|
default: undefined;
|
|
10336
10391
|
};
|
|
10337
10392
|
label: StringConstructor;
|
|
10393
|
+
modelValue: PropType<string | number | any[]>;
|
|
10338
10394
|
disabled: {
|
|
10339
10395
|
type: BooleanConstructor;
|
|
10340
10396
|
default: boolean;
|
|
10341
10397
|
};
|
|
10342
|
-
modelValue: PropType<string | number | any[]>;
|
|
10343
10398
|
clearable: {
|
|
10344
10399
|
type: BooleanConstructor;
|
|
10345
10400
|
default: boolean;
|
|
@@ -10354,9 +10409,9 @@ default: boolean;
|
|
|
10354
10409
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
10355
10410
|
}>> & Readonly<{
|
|
10356
10411
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
10412
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10357
10413
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
10358
10414
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
10359
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
10360
10415
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
10361
10416
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
10362
10417
|
}>, {
|
|
@@ -10725,7 +10780,7 @@ encoderOptions: number;
|
|
|
10725
10780
|
};
|
|
10726
10781
|
showMessage: BooleanConstructor;
|
|
10727
10782
|
enhancer: (BooleanConstructor | FunctionConstructor)[];
|
|
10728
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "
|
|
10783
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "update:modelValue" | "success" | "file-before" | "file-start" | "file-success" | "file-error" | "complete" | "remove-before")[], "change" | "error" | "update:modelValue" | "success" | "file-before" | "file-start" | "file-success" | "file-error" | "complete" | "remove-before", PublicProps, Readonly<ExtractPropTypes< {
|
|
10729
10784
|
picker: {
|
|
10730
10785
|
type: ArrayConstructor;
|
|
10731
10786
|
default: () => string[];
|
|
@@ -10802,8 +10857,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
10802
10857
|
}>, {
|
|
10803
10858
|
output: string | Function;
|
|
10804
10859
|
mask: boolean;
|
|
10805
|
-
disabled: boolean;
|
|
10806
10860
|
modelValue: string | Record<string, any> | unknown[];
|
|
10861
|
+
disabled: boolean;
|
|
10807
10862
|
max: number | Record<string, any>;
|
|
10808
10863
|
showMessage: boolean;
|
|
10809
10864
|
uploadOptions: Record<string, any>;
|
|
@@ -11228,17 +11283,17 @@ validator: (v: string) => boolean;
|
|
|
11228
11283
|
width: (StringConstructor | NumberConstructor)[];
|
|
11229
11284
|
portalClass: (ObjectConstructor | StringConstructor)[];
|
|
11230
11285
|
}>> & Readonly<{
|
|
11286
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11231
11287
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
11232
11288
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
11233
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11234
11289
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
11235
11290
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11236
11291
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
11237
11292
|
}>, {
|
|
11238
11293
|
title: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11294
|
+
modelValue: boolean;
|
|
11239
11295
|
placement: string;
|
|
11240
11296
|
type: string;
|
|
11241
|
-
modelValue: boolean;
|
|
11242
11297
|
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
11243
11298
|
trigger: string;
|
|
11244
11299
|
okText: string;
|
|
@@ -11249,12 +11304,12 @@ cancelType: string;
|
|
|
11249
11304
|
|
|
11250
11305
|
export declare const Popover: {
|
|
11251
11306
|
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
11307
|
+
modelValue: BooleanConstructor;
|
|
11252
11308
|
placement: {
|
|
11253
11309
|
type: StringConstructor;
|
|
11254
11310
|
default: string;
|
|
11255
11311
|
validator: (value: string) => boolean;
|
|
11256
11312
|
};
|
|
11257
|
-
modelValue: BooleanConstructor;
|
|
11258
11313
|
always: BooleanConstructor;
|
|
11259
11314
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11260
11315
|
animation: StringConstructor;
|
|
@@ -11296,17 +11351,17 @@ export declare const Popover: {
|
|
|
11296
11351
|
default: boolean;
|
|
11297
11352
|
};
|
|
11298
11353
|
}>> & Readonly<{
|
|
11299
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
11300
11354
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11355
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
11301
11356
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
11302
11357
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11303
11358
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
11304
11359
|
[key: string]: any;
|
|
11305
11360
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], PublicProps, {
|
|
11306
11361
|
tag: string;
|
|
11362
|
+
modelValue: boolean;
|
|
11307
11363
|
placement: string;
|
|
11308
11364
|
disabled: boolean;
|
|
11309
|
-
modelValue: boolean;
|
|
11310
11365
|
always: boolean;
|
|
11311
11366
|
theme: string;
|
|
11312
11367
|
portal: boolean;
|
|
@@ -11322,12 +11377,12 @@ export declare const Popover: {
|
|
|
11322
11377
|
M: {};
|
|
11323
11378
|
Defaults: {};
|
|
11324
11379
|
}, Readonly<ExtractPropTypes< {
|
|
11380
|
+
modelValue: BooleanConstructor;
|
|
11325
11381
|
placement: {
|
|
11326
11382
|
type: StringConstructor;
|
|
11327
11383
|
default: string;
|
|
11328
11384
|
validator: (value: string) => boolean;
|
|
11329
11385
|
};
|
|
11330
|
-
modelValue: BooleanConstructor;
|
|
11331
11386
|
always: BooleanConstructor;
|
|
11332
11387
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11333
11388
|
animation: StringConstructor;
|
|
@@ -11369,17 +11424,17 @@ export declare const Popover: {
|
|
|
11369
11424
|
default: boolean;
|
|
11370
11425
|
};
|
|
11371
11426
|
}>> & Readonly<{
|
|
11372
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
11373
11427
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11428
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
11374
11429
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
11375
11430
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11376
11431
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
11377
11432
|
[key: string]: any;
|
|
11378
11433
|
}>, {}, {}, {}, {
|
|
11379
11434
|
tag: string;
|
|
11435
|
+
modelValue: boolean;
|
|
11380
11436
|
placement: string;
|
|
11381
11437
|
disabled: boolean;
|
|
11382
|
-
modelValue: boolean;
|
|
11383
11438
|
always: boolean;
|
|
11384
11439
|
theme: string;
|
|
11385
11440
|
portal: boolean;
|
|
@@ -11392,12 +11447,12 @@ export declare const Popover: {
|
|
|
11392
11447
|
__isTeleport?: never;
|
|
11393
11448
|
__isSuspense?: never;
|
|
11394
11449
|
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
11450
|
+
modelValue: BooleanConstructor;
|
|
11395
11451
|
placement: {
|
|
11396
11452
|
type: StringConstructor;
|
|
11397
11453
|
default: string;
|
|
11398
11454
|
validator: (value: string) => boolean;
|
|
11399
11455
|
};
|
|
11400
|
-
modelValue: BooleanConstructor;
|
|
11401
11456
|
always: BooleanConstructor;
|
|
11402
11457
|
content: (StringConstructor | FunctionConstructor)[];
|
|
11403
11458
|
animation: StringConstructor;
|
|
@@ -11439,17 +11494,17 @@ type: BooleanConstructor;
|
|
|
11439
11494
|
default: boolean;
|
|
11440
11495
|
};
|
|
11441
11496
|
}>> & Readonly<{
|
|
11442
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
11443
11497
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11498
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
11444
11499
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
11445
11500
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11446
11501
|
}>, () => VNode<RendererNode, RendererElement, {
|
|
11447
11502
|
[key: string]: any;
|
|
11448
11503
|
}>, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", {
|
|
11449
11504
|
tag: string;
|
|
11505
|
+
modelValue: boolean;
|
|
11450
11506
|
placement: string;
|
|
11451
11507
|
disabled: boolean;
|
|
11452
|
-
modelValue: boolean;
|
|
11453
11508
|
always: boolean;
|
|
11454
11509
|
theme: string;
|
|
11455
11510
|
portal: boolean;
|
|
@@ -11536,15 +11591,15 @@ className: RegExp;
|
|
|
11536
11591
|
};
|
|
11537
11592
|
};
|
|
11538
11593
|
}>> & Readonly<{
|
|
11539
|
-
onClose?: ((...args: any[]) => any) | undefined;
|
|
11540
11594
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11595
|
+
onClose?: ((...args: any[]) => any) | undefined;
|
|
11541
11596
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
11542
11597
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
11543
11598
|
}>, {
|
|
11544
11599
|
mask: boolean;
|
|
11600
|
+
modelValue: boolean;
|
|
11545
11601
|
placement: string;
|
|
11546
11602
|
fixed: boolean;
|
|
11547
|
-
modelValue: boolean;
|
|
11548
11603
|
theme: string;
|
|
11549
11604
|
maskClosable: boolean;
|
|
11550
11605
|
scrollRegExp: Record<string, any>;
|
|
@@ -11885,6 +11940,12 @@ declare const props_3: {
|
|
|
11885
11940
|
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
11886
11941
|
errorStyle: (ObjectConstructor | StringConstructor)[];
|
|
11887
11942
|
errorClass: (ObjectConstructor | StringConstructor)[];
|
|
11943
|
+
nestedContentStyle: (ObjectConstructor | StringConstructor)[];
|
|
11944
|
+
nestedContentClass: (ObjectConstructor | StringConstructor)[];
|
|
11945
|
+
nestedLabelStyle: (ObjectConstructor | StringConstructor)[];
|
|
11946
|
+
nestedLabelClass: (ObjectConstructor | StringConstructor)[];
|
|
11947
|
+
nestedErrorStyle: (ObjectConstructor | StringConstructor)[];
|
|
11948
|
+
nestedErrorClass: (ObjectConstructor | StringConstructor)[];
|
|
11888
11949
|
};
|
|
11889
11950
|
|
|
11890
11951
|
declare type Props_4 = ExtractPropTypes<typeof props_4>;
|
|
@@ -12244,8 +12305,8 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12244
12305
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12245
12306
|
}>, {
|
|
12246
12307
|
label: string | number | boolean;
|
|
12247
|
-
disabled: boolean;
|
|
12248
12308
|
modelValue: string | number | boolean;
|
|
12309
|
+
disabled: boolean;
|
|
12249
12310
|
value: string | number | boolean;
|
|
12250
12311
|
trueValue: string | number | boolean;
|
|
12251
12312
|
falseValue: string | number | boolean;
|
|
@@ -12308,9 +12369,9 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
12308
12369
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12309
12370
|
}>, {
|
|
12310
12371
|
name: string;
|
|
12372
|
+
modelValue: string | number;
|
|
12311
12373
|
disabled: boolean;
|
|
12312
12374
|
type: string;
|
|
12313
|
-
modelValue: string | number;
|
|
12314
12375
|
vertical: boolean;
|
|
12315
12376
|
fragment: boolean;
|
|
12316
12377
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -12395,8 +12456,8 @@ default: () => {};
|
|
|
12395
12456
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
12396
12457
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
12397
12458
|
}>, {
|
|
12398
|
-
disabled: boolean;
|
|
12399
12459
|
modelValue: string | number;
|
|
12460
|
+
disabled: boolean;
|
|
12400
12461
|
icon: string;
|
|
12401
12462
|
color: string;
|
|
12402
12463
|
clearable: boolean;
|
|
@@ -12911,11 +12972,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
12911
12972
|
default: undefined;
|
|
12912
12973
|
};
|
|
12913
12974
|
label: StringConstructor;
|
|
12975
|
+
modelValue: PropType<string | number | any[]>;
|
|
12914
12976
|
disabled: {
|
|
12915
12977
|
type: BooleanConstructor;
|
|
12916
12978
|
default: boolean;
|
|
12917
12979
|
};
|
|
12918
|
-
modelValue: PropType<string | number | any[]>;
|
|
12919
12980
|
clearable: {
|
|
12920
12981
|
type: BooleanConstructor;
|
|
12921
12982
|
default: boolean;
|
|
@@ -12989,11 +13050,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
12989
13050
|
default: undefined;
|
|
12990
13051
|
};
|
|
12991
13052
|
label: StringConstructor;
|
|
13053
|
+
modelValue: PropType<string | number | any[]>;
|
|
12992
13054
|
disabled: {
|
|
12993
13055
|
type: BooleanConstructor;
|
|
12994
13056
|
default: boolean;
|
|
12995
13057
|
};
|
|
12996
|
-
modelValue: PropType<string | number | any[]>;
|
|
12997
13058
|
clearable: {
|
|
12998
13059
|
type: BooleanConstructor;
|
|
12999
13060
|
default: boolean;
|
|
@@ -13008,9 +13069,9 @@ default: boolean;
|
|
|
13008
13069
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
13009
13070
|
}>> & Readonly<{
|
|
13010
13071
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
13072
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13011
13073
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
13012
13074
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
13013
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13014
13075
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
13015
13076
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
13016
13077
|
}>, {
|
|
@@ -13200,10 +13261,10 @@ onChange?: ((...args: any[]) => any) | undefined;
|
|
|
13200
13261
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
13201
13262
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13202
13263
|
}>, {
|
|
13264
|
+
modelValue: string | number | boolean;
|
|
13203
13265
|
disabled: boolean;
|
|
13204
13266
|
width: number;
|
|
13205
13267
|
height: number;
|
|
13206
|
-
modelValue: string | number | boolean;
|
|
13207
13268
|
checkedValue: string | number | boolean;
|
|
13208
13269
|
uncheckedValue: string | number | boolean;
|
|
13209
13270
|
borderWidth: number;
|
|
@@ -13498,6 +13559,8 @@ barStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
13498
13559
|
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
13499
13560
|
barClass: (ObjectConstructor | StringConstructor)[];
|
|
13500
13561
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
13562
|
+
affixable: BooleanConstructor;
|
|
13563
|
+
affixOptions: ObjectConstructor;
|
|
13501
13564
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
13502
13565
|
type: {
|
|
13503
13566
|
type: StringConstructor;
|
|
@@ -13523,6 +13586,8 @@ barStyle: (ObjectConstructor | StringConstructor)[];
|
|
|
13523
13586
|
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
13524
13587
|
barClass: (ObjectConstructor | StringConstructor)[];
|
|
13525
13588
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
13589
|
+
affixable: BooleanConstructor;
|
|
13590
|
+
affixOptions: ObjectConstructor;
|
|
13526
13591
|
}>> & Readonly<{
|
|
13527
13592
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
13528
13593
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -13532,6 +13597,7 @@ type: string;
|
|
|
13532
13597
|
closable: boolean;
|
|
13533
13598
|
afloat: boolean;
|
|
13534
13599
|
animated: boolean;
|
|
13600
|
+
affixable: boolean;
|
|
13535
13601
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
13536
13602
|
|
|
13537
13603
|
export declare const TabsPane: DefineComponent<ExtractPropTypes< {
|
|
@@ -13750,11 +13816,11 @@ default: boolean;
|
|
|
13750
13816
|
textareaStyle: {
|
|
13751
13817
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13752
13818
|
};
|
|
13819
|
+
modelValue: PropType<string | number | any[]>;
|
|
13753
13820
|
disabled: {
|
|
13754
13821
|
type: BooleanConstructor;
|
|
13755
13822
|
default: boolean;
|
|
13756
13823
|
};
|
|
13757
|
-
modelValue: PropType<string | number | any[]>;
|
|
13758
13824
|
maxlength: NumberConstructor;
|
|
13759
13825
|
id: {
|
|
13760
13826
|
type: StringConstructor;
|
|
@@ -13794,11 +13860,11 @@ default: boolean;
|
|
|
13794
13860
|
textareaStyle: {
|
|
13795
13861
|
type: (ObjectConstructor | ArrayConstructor)[];
|
|
13796
13862
|
};
|
|
13863
|
+
modelValue: PropType<string | number | any[]>;
|
|
13797
13864
|
disabled: {
|
|
13798
13865
|
type: BooleanConstructor;
|
|
13799
13866
|
default: boolean;
|
|
13800
13867
|
};
|
|
13801
|
-
modelValue: PropType<string | number | any[]>;
|
|
13802
13868
|
maxlength: NumberConstructor;
|
|
13803
13869
|
id: {
|
|
13804
13870
|
type: StringConstructor;
|
|
@@ -13830,11 +13896,11 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
13830
13896
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
13831
13897
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
13832
13898
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
13899
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13833
13900
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
13834
13901
|
onResize?: ((...args: any[]) => any) | undefined;
|
|
13835
13902
|
onEnter?: ((...args: any[]) => any) | undefined;
|
|
13836
13903
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
13837
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13838
13904
|
}>, {
|
|
13839
13905
|
disabled: boolean;
|
|
13840
13906
|
allowDispatch: boolean;
|
|
@@ -14276,9 +14342,9 @@ portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
|
14276
14342
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
14277
14343
|
onInput?: ((...args: any[]) => any) | undefined;
|
|
14278
14344
|
onError?: ((...args: any[]) => any) | undefined;
|
|
14345
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14279
14346
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
14280
14347
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
14281
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
14282
14348
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
14283
14349
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
14284
14350
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
@@ -15274,11 +15340,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
15274
15340
|
default: undefined;
|
|
15275
15341
|
};
|
|
15276
15342
|
label: StringConstructor;
|
|
15343
|
+
modelValue: PropType<string | number | any[]>;
|
|
15277
15344
|
disabled: {
|
|
15278
15345
|
type: BooleanConstructor;
|
|
15279
15346
|
default: boolean;
|
|
15280
15347
|
};
|
|
15281
|
-
modelValue: PropType<string | number | any[]>;
|
|
15282
15348
|
clearable: {
|
|
15283
15349
|
type: BooleanConstructor;
|
|
15284
15350
|
default: boolean;
|
|
@@ -15357,11 +15423,11 @@ type: (ObjectConstructor | StringConstructor | NumberConstructor)[];
|
|
|
15357
15423
|
default: undefined;
|
|
15358
15424
|
};
|
|
15359
15425
|
label: StringConstructor;
|
|
15426
|
+
modelValue: PropType<string | number | any[]>;
|
|
15360
15427
|
disabled: {
|
|
15361
15428
|
type: BooleanConstructor;
|
|
15362
15429
|
default: boolean;
|
|
15363
15430
|
};
|
|
15364
|
-
modelValue: PropType<string | number | any[]>;
|
|
15365
15431
|
clearable: {
|
|
15366
15432
|
type: BooleanConstructor;
|
|
15367
15433
|
default: boolean;
|
|
@@ -15376,9 +15442,9 @@ default: boolean;
|
|
|
15376
15442
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
15377
15443
|
}>> & Readonly<{
|
|
15378
15444
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
15445
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
15379
15446
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
15380
15447
|
onClear?: ((...args: any[]) => any) | undefined;
|
|
15381
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
15382
15448
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
15383
15449
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
15384
15450
|
}>, {
|
|
@@ -15749,7 +15815,7 @@ encoderOptions: number;
|
|
|
15749
15815
|
};
|
|
15750
15816
|
showMessage: BooleanConstructor;
|
|
15751
15817
|
enhancer: (BooleanConstructor | FunctionConstructor)[];
|
|
15752
|
-
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "
|
|
15818
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "update:modelValue" | "success" | "file-before" | "file-start" | "file-success" | "file-error" | "complete" | "remove-before")[], "change" | "error" | "update:modelValue" | "success" | "file-before" | "file-start" | "file-success" | "file-error" | "complete" | "remove-before", PublicProps, Readonly<ExtractPropTypes< {
|
|
15753
15819
|
picker: {
|
|
15754
15820
|
type: ArrayConstructor;
|
|
15755
15821
|
default: () => string[];
|
|
@@ -15826,8 +15892,8 @@ onSuccess?: ((...args: any[]) => any) | undefined;
|
|
|
15826
15892
|
}>, {
|
|
15827
15893
|
output: string | Function;
|
|
15828
15894
|
mask: boolean;
|
|
15829
|
-
disabled: boolean;
|
|
15830
15895
|
modelValue: string | Record<string, any> | unknown[];
|
|
15896
|
+
disabled: boolean;
|
|
15831
15897
|
max: number | Record<string, any>;
|
|
15832
15898
|
showMessage: boolean;
|
|
15833
15899
|
uploadOptions: Record<string, any>;
|