@deot/vc-components 1.0.1 → 1.0.3
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 +2544 -1625
- package/dist/index.d.ts +623 -299
- package/dist/index.iife.js +85389 -3887
- package/dist/index.js +2545 -1628
- package/dist/index.style.css +1 -1
- package/dist/index.umd.cjs +85389 -3887
- package/package.json +3 -2
package/dist/index.d.ts
CHANGED
|
@@ -36,17 +36,62 @@ tag: string;
|
|
|
36
36
|
}, {}>;
|
|
37
37
|
|
|
38
38
|
export declare const Alert: DefineComponent< {
|
|
39
|
-
|
|
39
|
+
modelValue: {
|
|
40
|
+
type: BooleanConstructor;
|
|
41
|
+
default: boolean;
|
|
42
|
+
};
|
|
43
|
+
type: {
|
|
44
|
+
type: PropType<"success" | "info" | "error" | "warning">;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
title: {
|
|
40
48
|
type: StringConstructor;
|
|
41
49
|
default: string;
|
|
42
50
|
};
|
|
51
|
+
desc: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
};
|
|
55
|
+
icon: {
|
|
56
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
closable: {
|
|
60
|
+
type: BooleanConstructor;
|
|
61
|
+
default: boolean;
|
|
62
|
+
};
|
|
43
63
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
44
|
-
|
|
64
|
+
modelValue: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
};
|
|
68
|
+
type: {
|
|
69
|
+
type: PropType<"success" | "info" | "error" | "warning">;
|
|
70
|
+
default: string;
|
|
71
|
+
};
|
|
72
|
+
title: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
default: string;
|
|
75
|
+
};
|
|
76
|
+
desc: {
|
|
45
77
|
type: StringConstructor;
|
|
46
78
|
default: string;
|
|
47
79
|
};
|
|
80
|
+
icon: {
|
|
81
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
82
|
+
default: boolean;
|
|
83
|
+
};
|
|
84
|
+
closable: {
|
|
85
|
+
type: BooleanConstructor;
|
|
86
|
+
default: boolean;
|
|
87
|
+
};
|
|
48
88
|
}>>, {
|
|
49
|
-
|
|
89
|
+
title: string;
|
|
90
|
+
desc: string;
|
|
91
|
+
modelValue: boolean;
|
|
92
|
+
type: "error" | "success" | "info" | "warning";
|
|
93
|
+
icon: string | boolean;
|
|
94
|
+
closable: boolean;
|
|
50
95
|
}, {}>;
|
|
51
96
|
|
|
52
97
|
declare const alert_2: (options: Options_3) => PortalLeaf;
|
|
@@ -120,15 +165,15 @@ default: string;
|
|
|
120
165
|
}>> & {
|
|
121
166
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
122
167
|
}, {
|
|
123
|
-
long: boolean;
|
|
124
|
-
type: "error" | "default" | "text" | "success" | "primary" | "warning";
|
|
125
|
-
round: boolean;
|
|
126
|
-
circle: boolean;
|
|
127
|
-
disabled: boolean;
|
|
128
|
-
size: "small" | "medium" | "large";
|
|
129
168
|
tag: string;
|
|
169
|
+
circle: boolean;
|
|
170
|
+
type: "error" | "text" | "default" | "success" | "warning" | "primary";
|
|
171
|
+
size: "small" | "large" | "medium";
|
|
172
|
+
round: boolean;
|
|
130
173
|
wait: number;
|
|
131
|
-
|
|
174
|
+
disabled: boolean;
|
|
175
|
+
long: boolean;
|
|
176
|
+
htmlType: "reset" | "submit" | "button";
|
|
132
177
|
}, {}>;
|
|
133
178
|
|
|
134
179
|
export declare const ButtonGroup: DefineComponent< {
|
|
@@ -148,9 +193,9 @@ fragment: {
|
|
|
148
193
|
type: BooleanConstructor;
|
|
149
194
|
default: boolean;
|
|
150
195
|
};
|
|
151
|
-
}, () => VNode<RendererNode, RendererElement, {
|
|
196
|
+
}, () => JSX_2.Element | VNode<RendererNode, RendererElement, {
|
|
152
197
|
[key: string]: any;
|
|
153
|
-
}>[] |
|
|
198
|
+
}>[] | undefined, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
154
199
|
vertical: {
|
|
155
200
|
type: BooleanConstructor;
|
|
156
201
|
default: boolean;
|
|
@@ -189,17 +234,47 @@ tag: string;
|
|
|
189
234
|
}, {}>;
|
|
190
235
|
|
|
191
236
|
export declare const Card: DefineComponent< {
|
|
192
|
-
|
|
237
|
+
border: {
|
|
238
|
+
type: BooleanConstructor;
|
|
239
|
+
default: boolean;
|
|
240
|
+
};
|
|
241
|
+
shadow: {
|
|
242
|
+
type: BooleanConstructor;
|
|
243
|
+
default: boolean;
|
|
244
|
+
};
|
|
245
|
+
padding: {
|
|
246
|
+
type: NumberConstructor;
|
|
247
|
+
default: number;
|
|
248
|
+
};
|
|
249
|
+
title: {
|
|
250
|
+
type: StringConstructor;
|
|
251
|
+
};
|
|
252
|
+
icon: {
|
|
193
253
|
type: StringConstructor;
|
|
194
|
-
default: string;
|
|
195
254
|
};
|
|
196
255
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
197
|
-
|
|
256
|
+
border: {
|
|
257
|
+
type: BooleanConstructor;
|
|
258
|
+
default: boolean;
|
|
259
|
+
};
|
|
260
|
+
shadow: {
|
|
261
|
+
type: BooleanConstructor;
|
|
262
|
+
default: boolean;
|
|
263
|
+
};
|
|
264
|
+
padding: {
|
|
265
|
+
type: NumberConstructor;
|
|
266
|
+
default: number;
|
|
267
|
+
};
|
|
268
|
+
title: {
|
|
269
|
+
type: StringConstructor;
|
|
270
|
+
};
|
|
271
|
+
icon: {
|
|
198
272
|
type: StringConstructor;
|
|
199
|
-
default: string;
|
|
200
273
|
};
|
|
201
274
|
}>>, {
|
|
202
|
-
|
|
275
|
+
border: boolean;
|
|
276
|
+
shadow: boolean;
|
|
277
|
+
padding: number;
|
|
203
278
|
}, {}>;
|
|
204
279
|
|
|
205
280
|
export declare const Carousel: DefineComponent< {
|
|
@@ -231,17 +306,27 @@ tag: string;
|
|
|
231
306
|
}, {}>;
|
|
232
307
|
|
|
233
308
|
export declare const Chart: DefineComponent< {
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
309
|
+
options: ObjectConstructor;
|
|
310
|
+
pluginOptions: ObjectConstructor;
|
|
311
|
+
theme: (ObjectConstructor | StringConstructor)[];
|
|
312
|
+
group: StringConstructor;
|
|
313
|
+
autoResize: BooleanConstructor;
|
|
314
|
+
watchShallow: BooleanConstructor;
|
|
315
|
+
manualUpdate: BooleanConstructor;
|
|
316
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, string[], string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
317
|
+
options: ObjectConstructor;
|
|
318
|
+
pluginOptions: ObjectConstructor;
|
|
319
|
+
theme: (ObjectConstructor | StringConstructor)[];
|
|
320
|
+
group: StringConstructor;
|
|
321
|
+
autoResize: BooleanConstructor;
|
|
322
|
+
watchShallow: BooleanConstructor;
|
|
323
|
+
manualUpdate: BooleanConstructor;
|
|
324
|
+
}>> & {
|
|
325
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
326
|
+
}, {
|
|
327
|
+
autoResize: boolean;
|
|
328
|
+
watchShallow: boolean;
|
|
329
|
+
manualUpdate: boolean;
|
|
245
330
|
}, {}>;
|
|
246
331
|
|
|
247
332
|
export declare const Checkbox: DefineComponent< {
|
|
@@ -376,9 +461,9 @@ default: () => RegExp;
|
|
|
376
461
|
};
|
|
377
462
|
exclude: RegExpConstructor;
|
|
378
463
|
}>>, {
|
|
379
|
-
include: RegExp;
|
|
380
464
|
tag: string | Record<string, any>;
|
|
381
465
|
wait: number;
|
|
466
|
+
include: RegExp;
|
|
382
467
|
}, {}>;
|
|
383
468
|
export { Debounce }
|
|
384
469
|
export { Debounce as MDebounce }
|
|
@@ -542,11 +627,11 @@ type: BooleanConstructor;
|
|
|
542
627
|
default: boolean;
|
|
543
628
|
};
|
|
544
629
|
}>>, {
|
|
545
|
-
inline: boolean;
|
|
546
|
-
autocomplete: "off" | "on";
|
|
547
630
|
tag: string;
|
|
548
631
|
showMessage: boolean;
|
|
549
|
-
|
|
632
|
+
inline: boolean;
|
|
633
|
+
labelPosition: "left" | "right" | "top";
|
|
634
|
+
autocomplete: "on" | "off";
|
|
550
635
|
styleless: boolean;
|
|
551
636
|
}, {}>;
|
|
552
637
|
|
|
@@ -635,11 +720,11 @@ default: string;
|
|
|
635
720
|
};
|
|
636
721
|
contentStyle: StringConstructor;
|
|
637
722
|
}>>, {
|
|
638
|
-
required: string | boolean;
|
|
639
723
|
label: string;
|
|
640
724
|
showMessage: boolean;
|
|
641
|
-
labelPosition: "left" | "
|
|
725
|
+
labelPosition: "left" | "right" | "top";
|
|
642
726
|
styleless: boolean;
|
|
727
|
+
required: string | boolean;
|
|
643
728
|
resetByRulesChanged: boolean;
|
|
644
729
|
}, {}>;
|
|
645
730
|
|
|
@@ -699,17 +784,17 @@ inherit: boolean;
|
|
|
699
784
|
export declare const IconManager: Manager;
|
|
700
785
|
|
|
701
786
|
declare const Image_2: DefineComponent< {
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
787
|
+
src: StringConstructor;
|
|
788
|
+
fit: StringConstructor;
|
|
789
|
+
lazy: BooleanConstructor;
|
|
790
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
706
791
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
792
|
+
src: StringConstructor;
|
|
793
|
+
fit: StringConstructor;
|
|
794
|
+
lazy: BooleanConstructor;
|
|
795
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
711
796
|
}>>, {
|
|
712
|
-
|
|
797
|
+
lazy: boolean;
|
|
713
798
|
}, {}>;
|
|
714
799
|
export { Image_2 as Image }
|
|
715
800
|
|
|
@@ -824,7 +909,7 @@ controllable: {
|
|
|
824
909
|
type: BooleanConstructor;
|
|
825
910
|
default: boolean;
|
|
826
911
|
};
|
|
827
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
912
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "clear" | "enter" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "clear" | "enter" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
828
913
|
indicator: {
|
|
829
914
|
type: PropType<boolean | ({
|
|
830
915
|
inline: boolean;
|
|
@@ -886,7 +971,6 @@ type: BooleanConstructor;
|
|
|
886
971
|
default: boolean;
|
|
887
972
|
};
|
|
888
973
|
}>> & {
|
|
889
|
-
onEnter?: ((...args: any[]) => any) | undefined;
|
|
890
974
|
onPaste?: ((...args: any[]) => any) | undefined;
|
|
891
975
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
892
976
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -895,18 +979,19 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
895
979
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
896
980
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
897
981
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
898
|
-
|
|
982
|
+
onEnter?: ((...args: any[]) => any) | undefined;
|
|
899
983
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
984
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
900
985
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
901
986
|
}, {
|
|
902
|
-
|
|
987
|
+
modelValue: string | number | any[];
|
|
903
988
|
disabled: boolean;
|
|
904
989
|
styleless: boolean;
|
|
905
|
-
modelValue: string | number | any[];
|
|
906
990
|
focusEnd: boolean;
|
|
907
991
|
clearable: boolean;
|
|
908
992
|
afloat: boolean;
|
|
909
993
|
allowDispatch: boolean;
|
|
994
|
+
bytes: boolean;
|
|
910
995
|
controllable: boolean;
|
|
911
996
|
indicator: boolean | {
|
|
912
997
|
inline: boolean;
|
|
@@ -1069,20 +1154,20 @@ type: BooleanConstructor;
|
|
|
1069
1154
|
default: boolean;
|
|
1070
1155
|
};
|
|
1071
1156
|
}>>, {
|
|
1072
|
-
max: number;
|
|
1073
|
-
required: boolean;
|
|
1074
|
-
bytes: boolean;
|
|
1075
|
-
min: number;
|
|
1076
1157
|
output: Function;
|
|
1158
|
+
modelValue: string | number | any[];
|
|
1077
1159
|
disabled: boolean;
|
|
1078
|
-
step: number | boolean;
|
|
1079
1160
|
styleless: boolean;
|
|
1080
|
-
|
|
1161
|
+
required: boolean;
|
|
1081
1162
|
focusEnd: boolean;
|
|
1082
1163
|
clearable: boolean;
|
|
1083
1164
|
afloat: boolean;
|
|
1084
1165
|
allowDispatch: boolean;
|
|
1166
|
+
bytes: boolean;
|
|
1085
1167
|
controllable: boolean;
|
|
1168
|
+
min: number;
|
|
1169
|
+
max: number;
|
|
1170
|
+
step: number | boolean;
|
|
1086
1171
|
precision: number;
|
|
1087
1172
|
}, {}>;
|
|
1088
1173
|
|
|
@@ -1201,14 +1286,14 @@ type: BooleanConstructor;
|
|
|
1201
1286
|
default: boolean;
|
|
1202
1287
|
};
|
|
1203
1288
|
}>>, {
|
|
1204
|
-
|
|
1289
|
+
modelValue: string | number | any[];
|
|
1205
1290
|
disabled: boolean;
|
|
1206
1291
|
styleless: boolean;
|
|
1207
|
-
modelValue: string | number | any[];
|
|
1208
1292
|
focusEnd: boolean;
|
|
1209
1293
|
clearable: boolean;
|
|
1210
1294
|
afloat: boolean;
|
|
1211
1295
|
allowDispatch: boolean;
|
|
1296
|
+
bytes: boolean;
|
|
1212
1297
|
controllable: boolean;
|
|
1213
1298
|
enterText: string | boolean;
|
|
1214
1299
|
}, {}>;
|
|
@@ -1247,17 +1332,62 @@ tag: string;
|
|
|
1247
1332
|
}, {}>;
|
|
1248
1333
|
|
|
1249
1334
|
export declare const MAlert: DefineComponent< {
|
|
1250
|
-
|
|
1335
|
+
modelValue: {
|
|
1336
|
+
type: BooleanConstructor;
|
|
1337
|
+
default: boolean;
|
|
1338
|
+
};
|
|
1339
|
+
type: {
|
|
1340
|
+
type: PropType<"success" | "info" | "error" | "warning">;
|
|
1341
|
+
default: string;
|
|
1342
|
+
};
|
|
1343
|
+
title: {
|
|
1344
|
+
type: StringConstructor;
|
|
1345
|
+
default: string;
|
|
1346
|
+
};
|
|
1347
|
+
desc: {
|
|
1251
1348
|
type: StringConstructor;
|
|
1252
1349
|
default: string;
|
|
1253
1350
|
};
|
|
1351
|
+
icon: {
|
|
1352
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1353
|
+
default: boolean;
|
|
1354
|
+
};
|
|
1355
|
+
closable: {
|
|
1356
|
+
type: BooleanConstructor;
|
|
1357
|
+
default: boolean;
|
|
1358
|
+
};
|
|
1254
1359
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1255
|
-
|
|
1360
|
+
modelValue: {
|
|
1361
|
+
type: BooleanConstructor;
|
|
1362
|
+
default: boolean;
|
|
1363
|
+
};
|
|
1364
|
+
type: {
|
|
1365
|
+
type: PropType<"success" | "info" | "error" | "warning">;
|
|
1366
|
+
default: string;
|
|
1367
|
+
};
|
|
1368
|
+
title: {
|
|
1369
|
+
type: StringConstructor;
|
|
1370
|
+
default: string;
|
|
1371
|
+
};
|
|
1372
|
+
desc: {
|
|
1256
1373
|
type: StringConstructor;
|
|
1257
1374
|
default: string;
|
|
1258
1375
|
};
|
|
1376
|
+
icon: {
|
|
1377
|
+
type: (StringConstructor | BooleanConstructor)[];
|
|
1378
|
+
default: boolean;
|
|
1379
|
+
};
|
|
1380
|
+
closable: {
|
|
1381
|
+
type: BooleanConstructor;
|
|
1382
|
+
default: boolean;
|
|
1383
|
+
};
|
|
1259
1384
|
}>>, {
|
|
1260
|
-
|
|
1385
|
+
title: string;
|
|
1386
|
+
desc: string;
|
|
1387
|
+
modelValue: boolean;
|
|
1388
|
+
type: "error" | "success" | "info" | "warning";
|
|
1389
|
+
icon: string | boolean;
|
|
1390
|
+
closable: boolean;
|
|
1261
1391
|
}, {}>;
|
|
1262
1392
|
|
|
1263
1393
|
declare class Manager {
|
|
@@ -1365,15 +1495,15 @@ default: string;
|
|
|
1365
1495
|
}>> & {
|
|
1366
1496
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
1367
1497
|
}, {
|
|
1368
|
-
long: boolean;
|
|
1369
|
-
type: "error" | "default" | "text" | "success" | "primary" | "warning";
|
|
1370
|
-
round: boolean;
|
|
1371
|
-
circle: boolean;
|
|
1372
|
-
disabled: boolean;
|
|
1373
|
-
size: "small" | "medium" | "large";
|
|
1374
1498
|
tag: string;
|
|
1499
|
+
circle: boolean;
|
|
1500
|
+
type: "error" | "text" | "default" | "success" | "warning" | "primary";
|
|
1501
|
+
size: "small" | "large" | "medium";
|
|
1502
|
+
round: boolean;
|
|
1375
1503
|
wait: number;
|
|
1376
|
-
|
|
1504
|
+
disabled: boolean;
|
|
1505
|
+
long: boolean;
|
|
1506
|
+
htmlType: "reset" | "submit" | "button";
|
|
1377
1507
|
}, {}>;
|
|
1378
1508
|
|
|
1379
1509
|
export declare const MButtonGroup: DefineComponent< {
|
|
@@ -1393,9 +1523,9 @@ fragment: {
|
|
|
1393
1523
|
type: BooleanConstructor;
|
|
1394
1524
|
default: boolean;
|
|
1395
1525
|
};
|
|
1396
|
-
}, () => VNode<RendererNode, RendererElement, {
|
|
1526
|
+
}, () => JSX_2.Element | VNode<RendererNode, RendererElement, {
|
|
1397
1527
|
[key: string]: any;
|
|
1398
|
-
}>[] |
|
|
1528
|
+
}>[] | undefined, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1399
1529
|
vertical: {
|
|
1400
1530
|
type: BooleanConstructor;
|
|
1401
1531
|
default: boolean;
|
|
@@ -1434,17 +1564,47 @@ tag: string;
|
|
|
1434
1564
|
}, {}>;
|
|
1435
1565
|
|
|
1436
1566
|
export declare const MCard: DefineComponent< {
|
|
1437
|
-
|
|
1567
|
+
border: {
|
|
1568
|
+
type: BooleanConstructor;
|
|
1569
|
+
default: boolean;
|
|
1570
|
+
};
|
|
1571
|
+
shadow: {
|
|
1572
|
+
type: BooleanConstructor;
|
|
1573
|
+
default: boolean;
|
|
1574
|
+
};
|
|
1575
|
+
padding: {
|
|
1576
|
+
type: NumberConstructor;
|
|
1577
|
+
default: number;
|
|
1578
|
+
};
|
|
1579
|
+
title: {
|
|
1580
|
+
type: StringConstructor;
|
|
1581
|
+
};
|
|
1582
|
+
icon: {
|
|
1438
1583
|
type: StringConstructor;
|
|
1439
|
-
default: string;
|
|
1440
1584
|
};
|
|
1441
1585
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1442
|
-
|
|
1586
|
+
border: {
|
|
1587
|
+
type: BooleanConstructor;
|
|
1588
|
+
default: boolean;
|
|
1589
|
+
};
|
|
1590
|
+
shadow: {
|
|
1591
|
+
type: BooleanConstructor;
|
|
1592
|
+
default: boolean;
|
|
1593
|
+
};
|
|
1594
|
+
padding: {
|
|
1595
|
+
type: NumberConstructor;
|
|
1596
|
+
default: number;
|
|
1597
|
+
};
|
|
1598
|
+
title: {
|
|
1599
|
+
type: StringConstructor;
|
|
1600
|
+
};
|
|
1601
|
+
icon: {
|
|
1443
1602
|
type: StringConstructor;
|
|
1444
|
-
default: string;
|
|
1445
1603
|
};
|
|
1446
1604
|
}>>, {
|
|
1447
|
-
|
|
1605
|
+
border: boolean;
|
|
1606
|
+
shadow: boolean;
|
|
1607
|
+
padding: number;
|
|
1448
1608
|
}, {}>;
|
|
1449
1609
|
|
|
1450
1610
|
export declare const MCarousel: DefineComponent< {
|
|
@@ -1476,17 +1636,27 @@ tag: string;
|
|
|
1476
1636
|
}, {}>;
|
|
1477
1637
|
|
|
1478
1638
|
export declare const MChart: DefineComponent< {
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1639
|
+
options: ObjectConstructor;
|
|
1640
|
+
pluginOptions: ObjectConstructor;
|
|
1641
|
+
theme: (ObjectConstructor | StringConstructor)[];
|
|
1642
|
+
group: StringConstructor;
|
|
1643
|
+
autoResize: BooleanConstructor;
|
|
1644
|
+
watchShallow: BooleanConstructor;
|
|
1645
|
+
manualUpdate: BooleanConstructor;
|
|
1646
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, string[], string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1647
|
+
options: ObjectConstructor;
|
|
1648
|
+
pluginOptions: ObjectConstructor;
|
|
1649
|
+
theme: (ObjectConstructor | StringConstructor)[];
|
|
1650
|
+
group: StringConstructor;
|
|
1651
|
+
autoResize: BooleanConstructor;
|
|
1652
|
+
watchShallow: BooleanConstructor;
|
|
1653
|
+
manualUpdate: BooleanConstructor;
|
|
1654
|
+
}>> & {
|
|
1655
|
+
[x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
|
|
1656
|
+
}, {
|
|
1657
|
+
autoResize: boolean;
|
|
1658
|
+
watchShallow: boolean;
|
|
1659
|
+
manualUpdate: boolean;
|
|
1490
1660
|
}, {}>;
|
|
1491
1661
|
|
|
1492
1662
|
export declare const MCheckbox: DefineComponent< {
|
|
@@ -1727,12 +1897,12 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
1727
1897
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
1728
1898
|
}, {
|
|
1729
1899
|
fixed: boolean;
|
|
1730
|
-
top: number;
|
|
1731
1900
|
mask: boolean;
|
|
1732
|
-
|
|
1901
|
+
closable: boolean;
|
|
1733
1902
|
duration: number;
|
|
1903
|
+
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
1904
|
+
top: number;
|
|
1734
1905
|
maskClosable: boolean;
|
|
1735
|
-
closable: boolean;
|
|
1736
1906
|
}, {}>;
|
|
1737
1907
|
|
|
1738
1908
|
export declare const MExpand: DefineComponent< {
|
|
@@ -1836,12 +2006,12 @@ type: BooleanConstructor;
|
|
|
1836
2006
|
default: boolean;
|
|
1837
2007
|
};
|
|
1838
2008
|
}>>, {
|
|
1839
|
-
inline: boolean;
|
|
1840
|
-
border: boolean;
|
|
1841
|
-
autocomplete: "off" | "on";
|
|
1842
2009
|
tag: string;
|
|
2010
|
+
border: boolean;
|
|
1843
2011
|
showMessage: boolean;
|
|
1844
|
-
|
|
2012
|
+
inline: boolean;
|
|
2013
|
+
labelPosition: "left" | "right" | "top";
|
|
2014
|
+
autocomplete: "on" | "off";
|
|
1845
2015
|
styleless: boolean;
|
|
1846
2016
|
showToast: boolean;
|
|
1847
2017
|
}, {}>;
|
|
@@ -1939,11 +2109,11 @@ default: string;
|
|
|
1939
2109
|
};
|
|
1940
2110
|
contentStyle: StringConstructor;
|
|
1941
2111
|
}>>, {
|
|
1942
|
-
required: string | boolean;
|
|
1943
2112
|
label: string;
|
|
1944
2113
|
showMessage: boolean;
|
|
1945
|
-
labelPosition: "left" | "
|
|
2114
|
+
labelPosition: "left" | "right" | "top";
|
|
1946
2115
|
styleless: boolean;
|
|
2116
|
+
required: string | boolean;
|
|
1947
2117
|
resetByRulesChanged: boolean;
|
|
1948
2118
|
indent: number;
|
|
1949
2119
|
}, {}>;
|
|
@@ -1983,17 +2153,17 @@ inherit: boolean;
|
|
|
1983
2153
|
}, {}>;
|
|
1984
2154
|
|
|
1985
2155
|
export declare const MImage: DefineComponent< {
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
2156
|
+
src: StringConstructor;
|
|
2157
|
+
fit: StringConstructor;
|
|
2158
|
+
lazy: BooleanConstructor;
|
|
2159
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1990
2160
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
2161
|
+
src: StringConstructor;
|
|
2162
|
+
fit: StringConstructor;
|
|
2163
|
+
lazy: BooleanConstructor;
|
|
2164
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1995
2165
|
}>>, {
|
|
1996
|
-
|
|
2166
|
+
lazy: boolean;
|
|
1997
2167
|
}, {}>;
|
|
1998
2168
|
|
|
1999
2169
|
export declare const MImageCrop: DefineComponent< {
|
|
@@ -2095,7 +2265,7 @@ controllable: {
|
|
|
2095
2265
|
type: BooleanConstructor;
|
|
2096
2266
|
default: boolean;
|
|
2097
2267
|
};
|
|
2098
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("
|
|
2268
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "clear" | "enter" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "update:modelValue" | "clear" | "enter" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2099
2269
|
right: {
|
|
2100
2270
|
type: BooleanConstructor;
|
|
2101
2271
|
default: boolean;
|
|
@@ -2153,7 +2323,6 @@ type: BooleanConstructor;
|
|
|
2153
2323
|
default: boolean;
|
|
2154
2324
|
};
|
|
2155
2325
|
}>> & {
|
|
2156
|
-
onEnter?: ((...args: any[]) => any) | undefined;
|
|
2157
2326
|
onPaste?: ((...args: any[]) => any) | undefined;
|
|
2158
2327
|
onFocus?: ((...args: any[]) => any) | undefined;
|
|
2159
2328
|
onBlur?: ((...args: any[]) => any) | undefined;
|
|
@@ -2162,19 +2331,20 @@ onInput?: ((...args: any[]) => any) | undefined;
|
|
|
2162
2331
|
onKeydown?: ((...args: any[]) => any) | undefined;
|
|
2163
2332
|
onKeypress?: ((...args: any[]) => any) | undefined;
|
|
2164
2333
|
onKeyup?: ((...args: any[]) => any) | undefined;
|
|
2165
|
-
|
|
2334
|
+
onEnter?: ((...args: any[]) => any) | undefined;
|
|
2166
2335
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
2336
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
2167
2337
|
onTip?: ((...args: any[]) => any) | undefined;
|
|
2168
2338
|
}, {
|
|
2169
|
-
|
|
2170
|
-
right: boolean;
|
|
2339
|
+
modelValue: string | number | any[];
|
|
2171
2340
|
disabled: boolean;
|
|
2341
|
+
right: boolean;
|
|
2172
2342
|
styleless: boolean;
|
|
2173
|
-
modelValue: string | number | any[];
|
|
2174
2343
|
focusEnd: boolean;
|
|
2175
2344
|
clearable: boolean;
|
|
2176
2345
|
afloat: boolean;
|
|
2177
2346
|
allowDispatch: boolean;
|
|
2347
|
+
bytes: boolean;
|
|
2178
2348
|
controllable: boolean;
|
|
2179
2349
|
}, {}>;
|
|
2180
2350
|
|
|
@@ -2333,20 +2503,20 @@ type: BooleanConstructor;
|
|
|
2333
2503
|
default: boolean;
|
|
2334
2504
|
};
|
|
2335
2505
|
}>>, {
|
|
2336
|
-
max: number;
|
|
2337
|
-
required: boolean;
|
|
2338
|
-
bytes: boolean;
|
|
2339
|
-
min: number;
|
|
2340
2506
|
output: Function;
|
|
2507
|
+
modelValue: string | number | any[];
|
|
2341
2508
|
disabled: boolean;
|
|
2342
|
-
step: number | boolean;
|
|
2343
2509
|
styleless: boolean;
|
|
2344
|
-
|
|
2510
|
+
required: boolean;
|
|
2345
2511
|
focusEnd: boolean;
|
|
2346
2512
|
clearable: boolean;
|
|
2347
2513
|
afloat: boolean;
|
|
2348
2514
|
allowDispatch: boolean;
|
|
2515
|
+
bytes: boolean;
|
|
2349
2516
|
controllable: boolean;
|
|
2517
|
+
min: number;
|
|
2518
|
+
max: number;
|
|
2519
|
+
step: number | boolean;
|
|
2350
2520
|
precision: number;
|
|
2351
2521
|
}, {}>;
|
|
2352
2522
|
|
|
@@ -2473,14 +2643,14 @@ type: BooleanConstructor;
|
|
|
2473
2643
|
default: boolean;
|
|
2474
2644
|
};
|
|
2475
2645
|
}>>, {
|
|
2476
|
-
|
|
2646
|
+
modelValue: string | number | any[];
|
|
2477
2647
|
disabled: boolean;
|
|
2478
2648
|
styleless: boolean;
|
|
2479
|
-
modelValue: string | number | any[];
|
|
2480
2649
|
focusEnd: boolean;
|
|
2481
2650
|
clearable: boolean;
|
|
2482
2651
|
afloat: boolean;
|
|
2483
2652
|
allowDispatch: boolean;
|
|
2653
|
+
bytes: boolean;
|
|
2484
2654
|
controllable: boolean;
|
|
2485
2655
|
enterText: string | boolean;
|
|
2486
2656
|
cancelText: string;
|
|
@@ -2515,8 +2685,8 @@ type: BooleanConstructor;
|
|
|
2515
2685
|
default: boolean;
|
|
2516
2686
|
};
|
|
2517
2687
|
}>>, {
|
|
2518
|
-
border: boolean;
|
|
2519
2688
|
tag: string;
|
|
2689
|
+
border: boolean;
|
|
2520
2690
|
labelWidth: string | number;
|
|
2521
2691
|
}, {}>;
|
|
2522
2692
|
export { MList as List }
|
|
@@ -2545,7 +2715,7 @@ indent: {
|
|
|
2545
2715
|
type: NumberConstructor;
|
|
2546
2716
|
default: number;
|
|
2547
2717
|
};
|
|
2548
|
-
to: (ObjectConstructor |
|
|
2718
|
+
to: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
|
|
2549
2719
|
href: StringConstructor;
|
|
2550
2720
|
alone: BooleanConstructor;
|
|
2551
2721
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "click"[], "click", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
@@ -2571,15 +2741,15 @@ indent: {
|
|
|
2571
2741
|
type: NumberConstructor;
|
|
2572
2742
|
default: number;
|
|
2573
2743
|
};
|
|
2574
|
-
to: (ObjectConstructor |
|
|
2744
|
+
to: (ObjectConstructor | StringConstructor | FunctionConstructor)[];
|
|
2575
2745
|
href: StringConstructor;
|
|
2576
2746
|
alone: BooleanConstructor;
|
|
2577
2747
|
}>> & {
|
|
2578
2748
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
2579
2749
|
}, {
|
|
2580
|
-
multiple: boolean;
|
|
2581
2750
|
tag: string;
|
|
2582
2751
|
labelWidth: string | number;
|
|
2752
|
+
multiple: boolean;
|
|
2583
2753
|
indent: number;
|
|
2584
2754
|
arrow: string | boolean;
|
|
2585
2755
|
alone: boolean;
|
|
@@ -2664,7 +2834,7 @@ type: FunctionConstructor;
|
|
|
2664
2834
|
onCancel: {
|
|
2665
2835
|
type: FunctionConstructor;
|
|
2666
2836
|
};
|
|
2667
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "
|
|
2837
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok")[], "cancel" | "close" | "update:modelValue" | "portal-fulfilled" | "ok", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2668
2838
|
mode: {
|
|
2669
2839
|
type: PropType<"alert" | "operation">;
|
|
2670
2840
|
validator: (v: any) => boolean;
|
|
@@ -2723,12 +2893,12 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
2723
2893
|
onOk?: ((...args: any[]) => any) | undefined;
|
|
2724
2894
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
2725
2895
|
}, {
|
|
2726
|
-
width: number;
|
|
2727
|
-
mask: boolean;
|
|
2728
2896
|
footer: boolean;
|
|
2897
|
+
mask: boolean;
|
|
2898
|
+
modelValue: boolean;
|
|
2729
2899
|
mode: "alert" | "operation";
|
|
2900
|
+
width: number;
|
|
2730
2901
|
maskClosable: boolean;
|
|
2731
|
-
modelValue: boolean;
|
|
2732
2902
|
cancelText: string | boolean;
|
|
2733
2903
|
closeWithCancel: boolean;
|
|
2734
2904
|
okText: string | boolean;
|
|
@@ -2819,7 +2989,7 @@ type: FunctionConstructor;
|
|
|
2819
2989
|
onCancel: {
|
|
2820
2990
|
type: FunctionConstructor;
|
|
2821
2991
|
};
|
|
2822
|
-
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "
|
|
2992
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("cancel" | "close" | "update:modelValue" | "visible-change" | "portal-fulfilled" | "ok")[], "cancel" | "close" | "update:modelValue" | "visible-change" | "portal-fulfilled" | "ok", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2823
2993
|
modelValue: {
|
|
2824
2994
|
type: BooleanConstructor;
|
|
2825
2995
|
default: boolean;
|
|
@@ -2899,18 +3069,18 @@ onOk?: ((...args: any[]) => any) | undefined;
|
|
|
2899
3069
|
onCancel?: ((...args: any[]) => any) | undefined;
|
|
2900
3070
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
2901
3071
|
}, {
|
|
2902
|
-
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
2903
|
-
mask: boolean;
|
|
2904
3072
|
footer: boolean;
|
|
2905
|
-
|
|
2906
|
-
size: "small" | "medium" | "large";
|
|
2907
|
-
maskClosable: boolean;
|
|
3073
|
+
mask: boolean;
|
|
2908
3074
|
modelValue: boolean;
|
|
2909
|
-
cancelText: string | boolean;
|
|
2910
3075
|
closable: boolean;
|
|
3076
|
+
size: "small" | "large" | "medium";
|
|
3077
|
+
content: string | ((props: Record<string, unknown>, context: SetupContext) => any);
|
|
3078
|
+
maskClosable: boolean;
|
|
3079
|
+
cancelText: string | boolean;
|
|
2911
3080
|
escClosable: boolean;
|
|
2912
3081
|
closeWithCancel: boolean;
|
|
2913
3082
|
scrollable: boolean;
|
|
3083
|
+
draggable: boolean;
|
|
2914
3084
|
okText: string | boolean;
|
|
2915
3085
|
}, {}>;
|
|
2916
3086
|
|
|
@@ -2971,14 +3141,19 @@ tag: string;
|
|
|
2971
3141
|
}, {}>;
|
|
2972
3142
|
|
|
2973
3143
|
export declare const MPopover: DefineComponent< {
|
|
2974
|
-
|
|
2975
|
-
|
|
2976
|
-
|
|
3144
|
+
modelValue: BooleanConstructor;
|
|
3145
|
+
theme: {
|
|
3146
|
+
type: StringConstructor;
|
|
3147
|
+
default: string;
|
|
3148
|
+
validator: (v: string) => boolean;
|
|
3149
|
+
};
|
|
3150
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
2977
3151
|
portal: {
|
|
2978
3152
|
type: BooleanConstructor;
|
|
2979
3153
|
default: boolean;
|
|
2980
3154
|
};
|
|
2981
|
-
|
|
3155
|
+
always: BooleanConstructor;
|
|
3156
|
+
animation: StringConstructor;
|
|
2982
3157
|
arrow: {
|
|
2983
3158
|
type: BooleanConstructor;
|
|
2984
3159
|
default: boolean;
|
|
@@ -2989,11 +3164,6 @@ type: StringConstructor;
|
|
|
2989
3164
|
default: string;
|
|
2990
3165
|
validator: (value: string) => boolean;
|
|
2991
3166
|
};
|
|
2992
|
-
theme: {
|
|
2993
|
-
type: StringConstructor;
|
|
2994
|
-
default: string;
|
|
2995
|
-
validator: (v: string) => boolean;
|
|
2996
|
-
};
|
|
2997
3167
|
getPopupContainer: FunctionConstructor;
|
|
2998
3168
|
autoWidth: {
|
|
2999
3169
|
type: BooleanConstructor;
|
|
@@ -3019,15 +3189,20 @@ default: boolean;
|
|
|
3019
3189
|
};
|
|
3020
3190
|
}, () => VNode<RendererNode, RendererElement, {
|
|
3021
3191
|
[key: string]: any;
|
|
3022
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
|
|
3192
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3193
|
+
modelValue: BooleanConstructor;
|
|
3194
|
+
theme: {
|
|
3195
|
+
type: StringConstructor;
|
|
3196
|
+
default: string;
|
|
3197
|
+
validator: (v: string) => boolean;
|
|
3198
|
+
};
|
|
3199
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
3026
3200
|
portal: {
|
|
3027
3201
|
type: BooleanConstructor;
|
|
3028
3202
|
default: boolean;
|
|
3029
3203
|
};
|
|
3030
|
-
|
|
3204
|
+
always: BooleanConstructor;
|
|
3205
|
+
animation: StringConstructor;
|
|
3031
3206
|
arrow: {
|
|
3032
3207
|
type: BooleanConstructor;
|
|
3033
3208
|
default: boolean;
|
|
@@ -3038,11 +3213,6 @@ type: StringConstructor;
|
|
|
3038
3213
|
default: string;
|
|
3039
3214
|
validator: (value: string) => boolean;
|
|
3040
3215
|
};
|
|
3041
|
-
theme: {
|
|
3042
|
-
type: StringConstructor;
|
|
3043
|
-
default: string;
|
|
3044
|
-
validator: (v: string) => boolean;
|
|
3045
|
-
};
|
|
3046
3216
|
getPopupContainer: FunctionConstructor;
|
|
3047
3217
|
autoWidth: {
|
|
3048
3218
|
type: BooleanConstructor;
|
|
@@ -3072,14 +3242,14 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
3072
3242
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
3073
3243
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
3074
3244
|
}, {
|
|
3075
|
-
always: boolean;
|
|
3076
|
-
disabled: boolean;
|
|
3077
3245
|
tag: string;
|
|
3078
|
-
portal: boolean;
|
|
3079
3246
|
modelValue: boolean;
|
|
3247
|
+
disabled: boolean;
|
|
3248
|
+
theme: string;
|
|
3249
|
+
portal: boolean;
|
|
3250
|
+
always: boolean;
|
|
3080
3251
|
arrow: boolean;
|
|
3081
3252
|
placement: string;
|
|
3082
|
-
theme: string;
|
|
3083
3253
|
autoWidth: boolean;
|
|
3084
3254
|
trigger: string;
|
|
3085
3255
|
outsideClickable: boolean;
|
|
@@ -3255,12 +3425,12 @@ renderRefresh: Render;
|
|
|
3255
3425
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3256
3426
|
}, {
|
|
3257
3427
|
data: unknown[];
|
|
3258
|
-
offset: number;
|
|
3259
3428
|
disabled: boolean;
|
|
3260
3429
|
vertical: boolean;
|
|
3261
|
-
|
|
3430
|
+
offset: number;
|
|
3262
3431
|
pageSize: number;
|
|
3263
3432
|
loadData: Function;
|
|
3433
|
+
cols: number;
|
|
3264
3434
|
gutter: number;
|
|
3265
3435
|
inverted: boolean;
|
|
3266
3436
|
pullable: boolean;
|
|
@@ -3283,11 +3453,11 @@ tag: string;
|
|
|
3283
3453
|
}, {}>;
|
|
3284
3454
|
|
|
3285
3455
|
export declare const MScroller: DefineComponent< {
|
|
3286
|
-
|
|
3456
|
+
autoResize: {
|
|
3287
3457
|
type: BooleanConstructor;
|
|
3288
3458
|
default: boolean;
|
|
3289
3459
|
};
|
|
3290
|
-
|
|
3460
|
+
always: {
|
|
3291
3461
|
type: BooleanConstructor;
|
|
3292
3462
|
default: boolean;
|
|
3293
3463
|
};
|
|
@@ -3297,7 +3467,7 @@ default: number;
|
|
|
3297
3467
|
};
|
|
3298
3468
|
thumbStyle: PropType<StyleValue>;
|
|
3299
3469
|
thumbClass: PropType<StyleValue>;
|
|
3300
|
-
|
|
3470
|
+
native: {
|
|
3301
3471
|
type: BooleanConstructor;
|
|
3302
3472
|
default: boolean;
|
|
3303
3473
|
};
|
|
@@ -3345,11 +3515,11 @@ default: boolean;
|
|
|
3345
3515
|
};
|
|
3346
3516
|
barTo: StringConstructor;
|
|
3347
3517
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3348
|
-
|
|
3518
|
+
autoResize: {
|
|
3349
3519
|
type: BooleanConstructor;
|
|
3350
3520
|
default: boolean;
|
|
3351
3521
|
};
|
|
3352
|
-
|
|
3522
|
+
always: {
|
|
3353
3523
|
type: BooleanConstructor;
|
|
3354
3524
|
default: boolean;
|
|
3355
3525
|
};
|
|
@@ -3359,7 +3529,7 @@ default: number;
|
|
|
3359
3529
|
};
|
|
3360
3530
|
thumbStyle: PropType<StyleValue>;
|
|
3361
3531
|
thumbClass: PropType<StyleValue>;
|
|
3362
|
-
|
|
3532
|
+
native: {
|
|
3363
3533
|
type: BooleanConstructor;
|
|
3364
3534
|
default: boolean;
|
|
3365
3535
|
};
|
|
@@ -3409,15 +3579,15 @@ barTo: StringConstructor;
|
|
|
3409
3579
|
}>> & {
|
|
3410
3580
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3411
3581
|
}, {
|
|
3412
|
-
always: boolean;
|
|
3413
|
-
native: boolean;
|
|
3414
|
-
height: string | number;
|
|
3415
|
-
maxHeight: string | number;
|
|
3416
3582
|
tag: string;
|
|
3583
|
+
autoResize: boolean;
|
|
3417
3584
|
contentStyle: StyleValue;
|
|
3585
|
+
height: string | number;
|
|
3586
|
+
always: boolean;
|
|
3587
|
+
maxHeight: string | number;
|
|
3418
3588
|
wrapperStyle: StyleValue;
|
|
3419
3589
|
thumbMinSize: number;
|
|
3420
|
-
|
|
3590
|
+
native: boolean;
|
|
3421
3591
|
trackOffsetX: number[];
|
|
3422
3592
|
trackOffsetY: number[];
|
|
3423
3593
|
wrapperClass: StyleValue;
|
|
@@ -3503,9 +3673,9 @@ default: boolean;
|
|
|
3503
3673
|
};
|
|
3504
3674
|
}>>, {
|
|
3505
3675
|
fixed: boolean;
|
|
3506
|
-
background: string;
|
|
3507
3676
|
size: number;
|
|
3508
3677
|
foreground: string;
|
|
3678
|
+
background: string;
|
|
3509
3679
|
}, {}>;
|
|
3510
3680
|
|
|
3511
3681
|
export declare const MSteps: DefineComponent< {
|
|
@@ -3551,17 +3721,94 @@ tag: string;
|
|
|
3551
3721
|
}, {}>;
|
|
3552
3722
|
|
|
3553
3723
|
export declare const MTabs: DefineComponent< {
|
|
3554
|
-
|
|
3724
|
+
type: {
|
|
3555
3725
|
type: StringConstructor;
|
|
3726
|
+
validator: (v: string) => boolean;
|
|
3556
3727
|
default: string;
|
|
3557
3728
|
};
|
|
3558
|
-
|
|
3559
|
-
|
|
3729
|
+
modelValue: {
|
|
3730
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3731
|
+
};
|
|
3732
|
+
animated: {
|
|
3733
|
+
type: BooleanConstructor;
|
|
3734
|
+
default: boolean;
|
|
3735
|
+
};
|
|
3736
|
+
afloat: {
|
|
3737
|
+
type: BooleanConstructor;
|
|
3738
|
+
default: boolean;
|
|
3739
|
+
};
|
|
3740
|
+
closable: {
|
|
3741
|
+
type: BooleanConstructor;
|
|
3742
|
+
default: boolean;
|
|
3743
|
+
};
|
|
3744
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3745
|
+
type: {
|
|
3560
3746
|
type: StringConstructor;
|
|
3747
|
+
validator: (v: string) => boolean;
|
|
3748
|
+
default: string;
|
|
3749
|
+
};
|
|
3750
|
+
modelValue: {
|
|
3751
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3752
|
+
};
|
|
3753
|
+
animated: {
|
|
3754
|
+
type: BooleanConstructor;
|
|
3755
|
+
default: boolean;
|
|
3756
|
+
};
|
|
3757
|
+
afloat: {
|
|
3758
|
+
type: BooleanConstructor;
|
|
3759
|
+
default: boolean;
|
|
3760
|
+
};
|
|
3761
|
+
closable: {
|
|
3762
|
+
type: BooleanConstructor;
|
|
3763
|
+
default: boolean;
|
|
3764
|
+
};
|
|
3765
|
+
}>> & {
|
|
3766
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
3767
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
3768
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3769
|
+
}, {
|
|
3770
|
+
type: string;
|
|
3771
|
+
closable: boolean;
|
|
3772
|
+
afloat: boolean;
|
|
3773
|
+
animated: boolean;
|
|
3774
|
+
}, {}>;
|
|
3775
|
+
|
|
3776
|
+
export declare const MTabsPane: DefineComponent< {
|
|
3777
|
+
value: {
|
|
3778
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3779
|
+
};
|
|
3780
|
+
label: {
|
|
3781
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
3782
|
+
default: string;
|
|
3783
|
+
};
|
|
3784
|
+
lazy: {
|
|
3785
|
+
type: BooleanConstructor;
|
|
3786
|
+
default: boolean;
|
|
3787
|
+
};
|
|
3788
|
+
closable: {
|
|
3789
|
+
type: BooleanConstructor;
|
|
3790
|
+
default: boolean;
|
|
3791
|
+
};
|
|
3792
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3793
|
+
value: {
|
|
3794
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3795
|
+
};
|
|
3796
|
+
label: {
|
|
3797
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
3561
3798
|
default: string;
|
|
3562
3799
|
};
|
|
3800
|
+
lazy: {
|
|
3801
|
+
type: BooleanConstructor;
|
|
3802
|
+
default: boolean;
|
|
3803
|
+
};
|
|
3804
|
+
closable: {
|
|
3805
|
+
type: BooleanConstructor;
|
|
3806
|
+
default: boolean;
|
|
3807
|
+
};
|
|
3563
3808
|
}>>, {
|
|
3564
|
-
|
|
3809
|
+
label: string | Function;
|
|
3810
|
+
closable: boolean;
|
|
3811
|
+
lazy: boolean;
|
|
3565
3812
|
}, {}>;
|
|
3566
3813
|
|
|
3567
3814
|
export declare const MTag: DefineComponent< {
|
|
@@ -3680,8 +3927,8 @@ validator: (val: string) => boolean;
|
|
|
3680
3927
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
3681
3928
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
3682
3929
|
}, {
|
|
3683
|
-
mode: "error" | "loading" | "success" | "warning" | "info";
|
|
3684
3930
|
duration: number;
|
|
3931
|
+
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
3685
3932
|
maskClosable: boolean;
|
|
3686
3933
|
}, {}>;
|
|
3687
3934
|
|
|
@@ -3768,14 +4015,14 @@ type: StringConstructor;
|
|
|
3768
4015
|
default: string;
|
|
3769
4016
|
};
|
|
3770
4017
|
}>>, {
|
|
3771
|
-
origin: string;
|
|
3772
|
-
style: Record<string, any>;
|
|
3773
|
-
prefix: string;
|
|
3774
|
-
group: boolean;
|
|
3775
4018
|
tag: string;
|
|
3776
|
-
|
|
4019
|
+
style: Record<string, any>;
|
|
3777
4020
|
duration: number | Record<string, any>;
|
|
3778
4021
|
delay: number | Record<string, any>;
|
|
4022
|
+
group: boolean;
|
|
4023
|
+
origin: string;
|
|
4024
|
+
prefix: string;
|
|
4025
|
+
mode: string;
|
|
3779
4026
|
}, {}>;
|
|
3780
4027
|
|
|
3781
4028
|
export declare const MTransitionCollapse: DefineComponent< {
|
|
@@ -3847,14 +4094,14 @@ type: StringConstructor;
|
|
|
3847
4094
|
default: string;
|
|
3848
4095
|
};
|
|
3849
4096
|
}>>, {
|
|
3850
|
-
origin: string;
|
|
3851
|
-
style: Record<string, any>;
|
|
3852
|
-
prefix: string;
|
|
3853
|
-
group: boolean;
|
|
3854
4097
|
tag: string;
|
|
3855
|
-
|
|
4098
|
+
style: Record<string, any>;
|
|
3856
4099
|
duration: number | Record<string, any>;
|
|
3857
4100
|
delay: number | Record<string, any>;
|
|
4101
|
+
group: boolean;
|
|
4102
|
+
origin: string;
|
|
4103
|
+
prefix: string;
|
|
4104
|
+
mode: string;
|
|
3858
4105
|
}, {}>;
|
|
3859
4106
|
|
|
3860
4107
|
export declare const MTransitionFade: DefineComponent< {
|
|
@@ -3926,14 +4173,14 @@ type: StringConstructor;
|
|
|
3926
4173
|
default: string;
|
|
3927
4174
|
};
|
|
3928
4175
|
}>>, {
|
|
3929
|
-
origin: string;
|
|
3930
|
-
style: Record<string, any>;
|
|
3931
|
-
prefix: string;
|
|
3932
|
-
group: boolean;
|
|
3933
4176
|
tag: string;
|
|
3934
|
-
|
|
4177
|
+
style: Record<string, any>;
|
|
3935
4178
|
duration: number | Record<string, any>;
|
|
3936
4179
|
delay: number | Record<string, any>;
|
|
4180
|
+
group: boolean;
|
|
4181
|
+
origin: string;
|
|
4182
|
+
prefix: string;
|
|
4183
|
+
mode: string;
|
|
3937
4184
|
}, {}>;
|
|
3938
4185
|
|
|
3939
4186
|
export declare const MTransitionScale: DefineComponent< {
|
|
@@ -4007,14 +4254,14 @@ type: StringConstructor;
|
|
|
4007
4254
|
default: string;
|
|
4008
4255
|
};
|
|
4009
4256
|
}>>, {
|
|
4010
|
-
origin: string;
|
|
4011
|
-
style: Record<string, any>;
|
|
4012
|
-
prefix: string;
|
|
4013
|
-
group: boolean;
|
|
4014
4257
|
tag: string;
|
|
4015
|
-
|
|
4258
|
+
style: Record<string, any>;
|
|
4016
4259
|
duration: number | Record<string, any>;
|
|
4017
4260
|
delay: number | Record<string, any>;
|
|
4261
|
+
group: boolean;
|
|
4262
|
+
origin: string;
|
|
4263
|
+
prefix: string;
|
|
4264
|
+
mode: string;
|
|
4018
4265
|
}, {}>;
|
|
4019
4266
|
|
|
4020
4267
|
export declare const MTransitionSlide: DefineComponent< {
|
|
@@ -4088,14 +4335,14 @@ type: StringConstructor;
|
|
|
4088
4335
|
default: string;
|
|
4089
4336
|
};
|
|
4090
4337
|
}>>, {
|
|
4091
|
-
origin: string;
|
|
4092
|
-
style: Record<string, any>;
|
|
4093
|
-
prefix: string;
|
|
4094
|
-
group: boolean;
|
|
4095
4338
|
tag: string;
|
|
4096
|
-
|
|
4339
|
+
style: Record<string, any>;
|
|
4097
4340
|
duration: number | Record<string, any>;
|
|
4098
4341
|
delay: number | Record<string, any>;
|
|
4342
|
+
group: boolean;
|
|
4343
|
+
origin: string;
|
|
4344
|
+
prefix: string;
|
|
4345
|
+
mode: string;
|
|
4099
4346
|
}, {}>;
|
|
4100
4347
|
|
|
4101
4348
|
export declare const MTransitionZoom: DefineComponent< {
|
|
@@ -4169,14 +4416,14 @@ type: StringConstructor;
|
|
|
4169
4416
|
default: string;
|
|
4170
4417
|
};
|
|
4171
4418
|
}>>, {
|
|
4172
|
-
origin: string;
|
|
4173
|
-
style: Record<string, any>;
|
|
4174
|
-
prefix: string;
|
|
4175
|
-
group: boolean;
|
|
4176
4419
|
tag: string;
|
|
4177
|
-
|
|
4420
|
+
style: Record<string, any>;
|
|
4178
4421
|
duration: number | Record<string, any>;
|
|
4179
4422
|
delay: number | Record<string, any>;
|
|
4423
|
+
group: boolean;
|
|
4424
|
+
origin: string;
|
|
4425
|
+
prefix: string;
|
|
4426
|
+
mode: string;
|
|
4180
4427
|
}, {}>;
|
|
4181
4428
|
|
|
4182
4429
|
export declare const MTree: DefineComponent< {
|
|
@@ -4287,9 +4534,9 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4287
4534
|
"onBefore-close"?: ((...args: any[]) => any) | undefined;
|
|
4288
4535
|
}, {
|
|
4289
4536
|
fixed: boolean;
|
|
4290
|
-
top: number;
|
|
4291
|
-
duration: number;
|
|
4292
4537
|
closable: boolean;
|
|
4538
|
+
duration: number;
|
|
4539
|
+
top: number;
|
|
4293
4540
|
}, {}>;
|
|
4294
4541
|
|
|
4295
4542
|
declare const open_2: (options: Options_4) => PortalLeaf;
|
|
@@ -4375,14 +4622,19 @@ tag: string;
|
|
|
4375
4622
|
}, {}>;
|
|
4376
4623
|
|
|
4377
4624
|
export declare const Popover: DefineComponent< {
|
|
4378
|
-
|
|
4379
|
-
|
|
4380
|
-
|
|
4625
|
+
modelValue: BooleanConstructor;
|
|
4626
|
+
theme: {
|
|
4627
|
+
type: StringConstructor;
|
|
4628
|
+
default: string;
|
|
4629
|
+
validator: (v: string) => boolean;
|
|
4630
|
+
};
|
|
4631
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
4381
4632
|
portal: {
|
|
4382
4633
|
type: BooleanConstructor;
|
|
4383
4634
|
default: boolean;
|
|
4384
4635
|
};
|
|
4385
|
-
|
|
4636
|
+
always: BooleanConstructor;
|
|
4637
|
+
animation: StringConstructor;
|
|
4386
4638
|
arrow: {
|
|
4387
4639
|
type: BooleanConstructor;
|
|
4388
4640
|
default: boolean;
|
|
@@ -4393,11 +4645,6 @@ type: StringConstructor;
|
|
|
4393
4645
|
default: string;
|
|
4394
4646
|
validator: (value: string) => boolean;
|
|
4395
4647
|
};
|
|
4396
|
-
theme: {
|
|
4397
|
-
type: StringConstructor;
|
|
4398
|
-
default: string;
|
|
4399
|
-
validator: (v: string) => boolean;
|
|
4400
|
-
};
|
|
4401
4648
|
getPopupContainer: FunctionConstructor;
|
|
4402
4649
|
autoWidth: {
|
|
4403
4650
|
type: BooleanConstructor;
|
|
@@ -4423,15 +4670,20 @@ default: boolean;
|
|
|
4423
4670
|
};
|
|
4424
4671
|
}, () => VNode<RendererNode, RendererElement, {
|
|
4425
4672
|
[key: string]: any;
|
|
4426
|
-
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "
|
|
4427
|
-
|
|
4428
|
-
|
|
4429
|
-
|
|
4673
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
4674
|
+
modelValue: BooleanConstructor;
|
|
4675
|
+
theme: {
|
|
4676
|
+
type: StringConstructor;
|
|
4677
|
+
default: string;
|
|
4678
|
+
validator: (v: string) => boolean;
|
|
4679
|
+
};
|
|
4680
|
+
content: (StringConstructor | FunctionConstructor)[];
|
|
4430
4681
|
portal: {
|
|
4431
4682
|
type: BooleanConstructor;
|
|
4432
4683
|
default: boolean;
|
|
4433
4684
|
};
|
|
4434
|
-
|
|
4685
|
+
always: BooleanConstructor;
|
|
4686
|
+
animation: StringConstructor;
|
|
4435
4687
|
arrow: {
|
|
4436
4688
|
type: BooleanConstructor;
|
|
4437
4689
|
default: boolean;
|
|
@@ -4442,11 +4694,6 @@ type: StringConstructor;
|
|
|
4442
4694
|
default: string;
|
|
4443
4695
|
validator: (value: string) => boolean;
|
|
4444
4696
|
};
|
|
4445
|
-
theme: {
|
|
4446
|
-
type: StringConstructor;
|
|
4447
|
-
default: string;
|
|
4448
|
-
validator: (v: string) => boolean;
|
|
4449
|
-
};
|
|
4450
4697
|
getPopupContainer: FunctionConstructor;
|
|
4451
4698
|
autoWidth: {
|
|
4452
4699
|
type: BooleanConstructor;
|
|
@@ -4476,14 +4723,14 @@ onClose?: ((...args: any[]) => any) | undefined;
|
|
|
4476
4723
|
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
4477
4724
|
onReady?: ((...args: any[]) => any) | undefined;
|
|
4478
4725
|
}, {
|
|
4479
|
-
always: boolean;
|
|
4480
|
-
disabled: boolean;
|
|
4481
4726
|
tag: string;
|
|
4482
|
-
portal: boolean;
|
|
4483
4727
|
modelValue: boolean;
|
|
4728
|
+
disabled: boolean;
|
|
4729
|
+
theme: string;
|
|
4730
|
+
portal: boolean;
|
|
4731
|
+
always: boolean;
|
|
4484
4732
|
arrow: boolean;
|
|
4485
4733
|
placement: string;
|
|
4486
|
-
theme: string;
|
|
4487
4734
|
autoWidth: boolean;
|
|
4488
4735
|
trigger: string;
|
|
4489
4736
|
outsideClickable: boolean;
|
|
@@ -4853,11 +5100,11 @@ declare const props_6: {
|
|
|
4853
5100
|
declare type Props_7 = ExtractPropTypes<typeof props_8>;
|
|
4854
5101
|
|
|
4855
5102
|
declare const props_7: {
|
|
4856
|
-
|
|
5103
|
+
autoResize: {
|
|
4857
5104
|
type: BooleanConstructor;
|
|
4858
5105
|
default: boolean;
|
|
4859
5106
|
};
|
|
4860
|
-
|
|
5107
|
+
always: {
|
|
4861
5108
|
type: BooleanConstructor;
|
|
4862
5109
|
default: boolean;
|
|
4863
5110
|
};
|
|
@@ -4867,7 +5114,7 @@ declare const props_7: {
|
|
|
4867
5114
|
};
|
|
4868
5115
|
thumbStyle: PropType<StyleValue>;
|
|
4869
5116
|
thumbClass: PropType<StyleValue>;
|
|
4870
|
-
|
|
5117
|
+
native: {
|
|
4871
5118
|
type: BooleanConstructor;
|
|
4872
5119
|
default: boolean;
|
|
4873
5120
|
};
|
|
@@ -5059,12 +5306,12 @@ renderRefresh: Render;
|
|
|
5059
5306
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5060
5307
|
}, {
|
|
5061
5308
|
data: unknown[];
|
|
5062
|
-
offset: number;
|
|
5063
5309
|
disabled: boolean;
|
|
5064
5310
|
vertical: boolean;
|
|
5065
|
-
|
|
5311
|
+
offset: number;
|
|
5066
5312
|
pageSize: number;
|
|
5067
5313
|
loadData: Function;
|
|
5314
|
+
cols: number;
|
|
5068
5315
|
gutter: number;
|
|
5069
5316
|
inverted: boolean;
|
|
5070
5317
|
pullable: boolean;
|
|
@@ -5089,11 +5336,11 @@ tag: string;
|
|
|
5089
5336
|
}, {}>;
|
|
5090
5337
|
|
|
5091
5338
|
export declare const Scroller: DefineComponent< {
|
|
5092
|
-
|
|
5339
|
+
autoResize: {
|
|
5093
5340
|
type: BooleanConstructor;
|
|
5094
5341
|
default: boolean;
|
|
5095
5342
|
};
|
|
5096
|
-
|
|
5343
|
+
always: {
|
|
5097
5344
|
type: BooleanConstructor;
|
|
5098
5345
|
default: boolean;
|
|
5099
5346
|
};
|
|
@@ -5103,7 +5350,7 @@ default: number;
|
|
|
5103
5350
|
};
|
|
5104
5351
|
thumbStyle: PropType<StyleValue>;
|
|
5105
5352
|
thumbClass: PropType<StyleValue>;
|
|
5106
|
-
|
|
5353
|
+
native: {
|
|
5107
5354
|
type: BooleanConstructor;
|
|
5108
5355
|
default: boolean;
|
|
5109
5356
|
};
|
|
@@ -5151,11 +5398,11 @@ default: boolean;
|
|
|
5151
5398
|
};
|
|
5152
5399
|
barTo: StringConstructor;
|
|
5153
5400
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
5154
|
-
|
|
5401
|
+
autoResize: {
|
|
5155
5402
|
type: BooleanConstructor;
|
|
5156
5403
|
default: boolean;
|
|
5157
5404
|
};
|
|
5158
|
-
|
|
5405
|
+
always: {
|
|
5159
5406
|
type: BooleanConstructor;
|
|
5160
5407
|
default: boolean;
|
|
5161
5408
|
};
|
|
@@ -5165,7 +5412,7 @@ default: number;
|
|
|
5165
5412
|
};
|
|
5166
5413
|
thumbStyle: PropType<StyleValue>;
|
|
5167
5414
|
thumbClass: PropType<StyleValue>;
|
|
5168
|
-
|
|
5415
|
+
native: {
|
|
5169
5416
|
type: BooleanConstructor;
|
|
5170
5417
|
default: boolean;
|
|
5171
5418
|
};
|
|
@@ -5215,15 +5462,15 @@ barTo: StringConstructor;
|
|
|
5215
5462
|
}>> & {
|
|
5216
5463
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5217
5464
|
}, {
|
|
5218
|
-
always: boolean;
|
|
5219
|
-
native: boolean;
|
|
5220
|
-
height: string | number;
|
|
5221
|
-
maxHeight: string | number;
|
|
5222
5465
|
tag: string;
|
|
5466
|
+
autoResize: boolean;
|
|
5223
5467
|
contentStyle: StyleValue;
|
|
5468
|
+
height: string | number;
|
|
5469
|
+
always: boolean;
|
|
5470
|
+
maxHeight: string | number;
|
|
5224
5471
|
wrapperStyle: StyleValue;
|
|
5225
5472
|
thumbMinSize: number;
|
|
5226
|
-
|
|
5473
|
+
native: boolean;
|
|
5227
5474
|
trackOffsetX: number[];
|
|
5228
5475
|
trackOffsetY: number[];
|
|
5229
5476
|
wrapperClass: StyleValue;
|
|
@@ -5240,11 +5487,11 @@ export declare type ScrollerExposed = {
|
|
|
5240
5487
|
export declare type ScrollerProps = ExtractPropTypes<typeof props_7>;
|
|
5241
5488
|
|
|
5242
5489
|
export declare const ScrollerWheel: DefineComponent< {
|
|
5243
|
-
|
|
5490
|
+
autoResize: {
|
|
5244
5491
|
type: BooleanConstructor;
|
|
5245
5492
|
default: boolean;
|
|
5246
5493
|
};
|
|
5247
|
-
|
|
5494
|
+
always: {
|
|
5248
5495
|
type: BooleanConstructor;
|
|
5249
5496
|
default: boolean;
|
|
5250
5497
|
};
|
|
@@ -5254,7 +5501,7 @@ default: number;
|
|
|
5254
5501
|
};
|
|
5255
5502
|
thumbStyle: PropType<StyleValue>;
|
|
5256
5503
|
thumbClass: PropType<StyleValue>;
|
|
5257
|
-
|
|
5504
|
+
native: {
|
|
5258
5505
|
type: BooleanConstructor;
|
|
5259
5506
|
default: boolean;
|
|
5260
5507
|
};
|
|
@@ -5302,11 +5549,11 @@ default: boolean;
|
|
|
5302
5549
|
};
|
|
5303
5550
|
barTo: StringConstructor;
|
|
5304
5551
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
5305
|
-
|
|
5552
|
+
autoResize: {
|
|
5306
5553
|
type: BooleanConstructor;
|
|
5307
5554
|
default: boolean;
|
|
5308
5555
|
};
|
|
5309
|
-
|
|
5556
|
+
always: {
|
|
5310
5557
|
type: BooleanConstructor;
|
|
5311
5558
|
default: boolean;
|
|
5312
5559
|
};
|
|
@@ -5316,7 +5563,7 @@ default: number;
|
|
|
5316
5563
|
};
|
|
5317
5564
|
thumbStyle: PropType<StyleValue>;
|
|
5318
5565
|
thumbClass: PropType<StyleValue>;
|
|
5319
|
-
|
|
5566
|
+
native: {
|
|
5320
5567
|
type: BooleanConstructor;
|
|
5321
5568
|
default: boolean;
|
|
5322
5569
|
};
|
|
@@ -5366,15 +5613,15 @@ barTo: StringConstructor;
|
|
|
5366
5613
|
}>> & {
|
|
5367
5614
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
5368
5615
|
}, {
|
|
5369
|
-
always: boolean;
|
|
5370
|
-
native: boolean;
|
|
5371
|
-
height: string | number;
|
|
5372
|
-
maxHeight: string | number;
|
|
5373
5616
|
tag: string;
|
|
5617
|
+
autoResize: boolean;
|
|
5374
5618
|
contentStyle: StyleValue;
|
|
5619
|
+
height: string | number;
|
|
5620
|
+
always: boolean;
|
|
5621
|
+
maxHeight: string | number;
|
|
5375
5622
|
wrapperStyle: StyleValue;
|
|
5376
5623
|
thumbMinSize: number;
|
|
5377
|
-
|
|
5624
|
+
native: boolean;
|
|
5378
5625
|
trackOffsetX: number[];
|
|
5379
5626
|
trackOffsetY: number[];
|
|
5380
5627
|
wrapperClass: StyleValue;
|
|
@@ -5460,9 +5707,9 @@ default: boolean;
|
|
|
5460
5707
|
};
|
|
5461
5708
|
}>>, {
|
|
5462
5709
|
fixed: boolean;
|
|
5463
|
-
background: string;
|
|
5464
5710
|
size: number;
|
|
5465
5711
|
foreground: string;
|
|
5712
|
+
background: string;
|
|
5466
5713
|
}, {}>;
|
|
5467
5714
|
|
|
5468
5715
|
export declare const Steps: DefineComponent< {
|
|
@@ -5516,17 +5763,94 @@ tag: string;
|
|
|
5516
5763
|
}, {}>;
|
|
5517
5764
|
|
|
5518
5765
|
export declare const Tabs: DefineComponent< {
|
|
5519
|
-
|
|
5766
|
+
type: {
|
|
5520
5767
|
type: StringConstructor;
|
|
5768
|
+
validator: (v: string) => boolean;
|
|
5521
5769
|
default: string;
|
|
5522
5770
|
};
|
|
5523
|
-
|
|
5524
|
-
|
|
5771
|
+
modelValue: {
|
|
5772
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
5773
|
+
};
|
|
5774
|
+
animated: {
|
|
5775
|
+
type: BooleanConstructor;
|
|
5776
|
+
default: boolean;
|
|
5777
|
+
};
|
|
5778
|
+
afloat: {
|
|
5779
|
+
type: BooleanConstructor;
|
|
5780
|
+
default: boolean;
|
|
5781
|
+
};
|
|
5782
|
+
closable: {
|
|
5783
|
+
type: BooleanConstructor;
|
|
5784
|
+
default: boolean;
|
|
5785
|
+
};
|
|
5786
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
5787
|
+
type: {
|
|
5525
5788
|
type: StringConstructor;
|
|
5789
|
+
validator: (v: string) => boolean;
|
|
5526
5790
|
default: string;
|
|
5527
5791
|
};
|
|
5792
|
+
modelValue: {
|
|
5793
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
5794
|
+
};
|
|
5795
|
+
animated: {
|
|
5796
|
+
type: BooleanConstructor;
|
|
5797
|
+
default: boolean;
|
|
5798
|
+
};
|
|
5799
|
+
afloat: {
|
|
5800
|
+
type: BooleanConstructor;
|
|
5801
|
+
default: boolean;
|
|
5802
|
+
};
|
|
5803
|
+
closable: {
|
|
5804
|
+
type: BooleanConstructor;
|
|
5805
|
+
default: boolean;
|
|
5806
|
+
};
|
|
5807
|
+
}>> & {
|
|
5808
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
5809
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
5810
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
5811
|
+
}, {
|
|
5812
|
+
type: string;
|
|
5813
|
+
closable: boolean;
|
|
5814
|
+
afloat: boolean;
|
|
5815
|
+
animated: boolean;
|
|
5816
|
+
}, {}>;
|
|
5817
|
+
|
|
5818
|
+
export declare const TabsPane: DefineComponent< {
|
|
5819
|
+
value: {
|
|
5820
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
5821
|
+
};
|
|
5822
|
+
label: {
|
|
5823
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
5824
|
+
default: string;
|
|
5825
|
+
};
|
|
5826
|
+
lazy: {
|
|
5827
|
+
type: BooleanConstructor;
|
|
5828
|
+
default: boolean;
|
|
5829
|
+
};
|
|
5830
|
+
closable: {
|
|
5831
|
+
type: BooleanConstructor;
|
|
5832
|
+
default: boolean;
|
|
5833
|
+
};
|
|
5834
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
5835
|
+
value: {
|
|
5836
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
5837
|
+
};
|
|
5838
|
+
label: {
|
|
5839
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
5840
|
+
default: string;
|
|
5841
|
+
};
|
|
5842
|
+
lazy: {
|
|
5843
|
+
type: BooleanConstructor;
|
|
5844
|
+
default: boolean;
|
|
5845
|
+
};
|
|
5846
|
+
closable: {
|
|
5847
|
+
type: BooleanConstructor;
|
|
5848
|
+
default: boolean;
|
|
5849
|
+
};
|
|
5528
5850
|
}>>, {
|
|
5529
|
-
|
|
5851
|
+
label: string | Function;
|
|
5852
|
+
closable: boolean;
|
|
5853
|
+
lazy: boolean;
|
|
5530
5854
|
}, {}>;
|
|
5531
5855
|
|
|
5532
5856
|
export declare const Tag: DefineComponent< {
|
|
@@ -5637,9 +5961,9 @@ pseudo: {
|
|
|
5637
5961
|
type: (ObjectConstructor | StringConstructor)[];
|
|
5638
5962
|
};
|
|
5639
5963
|
}>>, {
|
|
5640
|
-
backgroundSize: string;
|
|
5641
|
-
tag: string;
|
|
5642
5964
|
variables: Record<string, any>;
|
|
5965
|
+
tag: string;
|
|
5966
|
+
backgroundSize: string;
|
|
5643
5967
|
}, {}>;
|
|
5644
5968
|
|
|
5645
5969
|
export declare const ThemeImage: DefineComponent< {
|
|
@@ -5707,9 +6031,9 @@ pseudo: {
|
|
|
5707
6031
|
type: (ObjectConstructor | StringConstructor)[];
|
|
5708
6032
|
};
|
|
5709
6033
|
}>>, {
|
|
5710
|
-
backgroundSize: string;
|
|
5711
|
-
tag: string;
|
|
5712
6034
|
variables: Record<string, any>;
|
|
6035
|
+
tag: string;
|
|
6036
|
+
backgroundSize: string;
|
|
5713
6037
|
}, {}>;
|
|
5714
6038
|
|
|
5715
6039
|
export declare const ThemeText: DefineComponent< {
|
|
@@ -5777,9 +6101,9 @@ pseudo: {
|
|
|
5777
6101
|
type: (ObjectConstructor | StringConstructor)[];
|
|
5778
6102
|
};
|
|
5779
6103
|
}>>, {
|
|
5780
|
-
backgroundSize: string;
|
|
5781
|
-
tag: string;
|
|
5782
6104
|
variables: Record<string, any>;
|
|
6105
|
+
tag: string;
|
|
6106
|
+
backgroundSize: string;
|
|
5783
6107
|
}, {}>;
|
|
5784
6108
|
|
|
5785
6109
|
export declare const ThemeView: DefineComponent< {
|
|
@@ -5847,9 +6171,9 @@ pseudo: {
|
|
|
5847
6171
|
type: (ObjectConstructor | StringConstructor)[];
|
|
5848
6172
|
};
|
|
5849
6173
|
}>>, {
|
|
5850
|
-
backgroundSize: string;
|
|
5851
|
-
tag: string;
|
|
5852
6174
|
variables: Record<string, any>;
|
|
6175
|
+
tag: string;
|
|
6176
|
+
backgroundSize: string;
|
|
5853
6177
|
}, {}>;
|
|
5854
6178
|
|
|
5855
6179
|
export declare const Timeline: DefineComponent< {
|
|
@@ -5916,8 +6240,8 @@ validator: (val: string) => boolean;
|
|
|
5916
6240
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
5917
6241
|
"onPortal-fulfilled"?: ((...args: any[]) => any) | undefined;
|
|
5918
6242
|
}, {
|
|
5919
|
-
mode: "error" | "loading" | "success" | "warning" | "info";
|
|
5920
6243
|
duration: number;
|
|
6244
|
+
mode: "error" | "success" | "info" | "warning" | "loading";
|
|
5921
6245
|
maskClosable: boolean;
|
|
5922
6246
|
}, {}>;
|
|
5923
6247
|
|
|
@@ -6005,14 +6329,14 @@ type: StringConstructor;
|
|
|
6005
6329
|
default: string;
|
|
6006
6330
|
};
|
|
6007
6331
|
}>>, {
|
|
6008
|
-
origin: string;
|
|
6009
|
-
style: Record<string, any>;
|
|
6010
|
-
prefix: string;
|
|
6011
|
-
group: boolean;
|
|
6012
6332
|
tag: string;
|
|
6013
|
-
|
|
6333
|
+
style: Record<string, any>;
|
|
6014
6334
|
duration: number | Record<string, any>;
|
|
6015
6335
|
delay: number | Record<string, any>;
|
|
6336
|
+
group: boolean;
|
|
6337
|
+
origin: string;
|
|
6338
|
+
prefix: string;
|
|
6339
|
+
mode: string;
|
|
6016
6340
|
}, {}>;
|
|
6017
6341
|
|
|
6018
6342
|
export declare const TransitionCollapse: DefineComponent< {
|
|
@@ -6084,14 +6408,14 @@ type: StringConstructor;
|
|
|
6084
6408
|
default: string;
|
|
6085
6409
|
};
|
|
6086
6410
|
}>>, {
|
|
6087
|
-
origin: string;
|
|
6088
|
-
style: Record<string, any>;
|
|
6089
|
-
prefix: string;
|
|
6090
|
-
group: boolean;
|
|
6091
6411
|
tag: string;
|
|
6092
|
-
|
|
6412
|
+
style: Record<string, any>;
|
|
6093
6413
|
duration: number | Record<string, any>;
|
|
6094
6414
|
delay: number | Record<string, any>;
|
|
6415
|
+
group: boolean;
|
|
6416
|
+
origin: string;
|
|
6417
|
+
prefix: string;
|
|
6418
|
+
mode: string;
|
|
6095
6419
|
}, {}>;
|
|
6096
6420
|
|
|
6097
6421
|
export declare const TransitionFade: DefineComponent< {
|
|
@@ -6163,14 +6487,14 @@ type: StringConstructor;
|
|
|
6163
6487
|
default: string;
|
|
6164
6488
|
};
|
|
6165
6489
|
}>>, {
|
|
6166
|
-
origin: string;
|
|
6167
|
-
style: Record<string, any>;
|
|
6168
|
-
prefix: string;
|
|
6169
|
-
group: boolean;
|
|
6170
6490
|
tag: string;
|
|
6171
|
-
|
|
6491
|
+
style: Record<string, any>;
|
|
6172
6492
|
duration: number | Record<string, any>;
|
|
6173
6493
|
delay: number | Record<string, any>;
|
|
6494
|
+
group: boolean;
|
|
6495
|
+
origin: string;
|
|
6496
|
+
prefix: string;
|
|
6497
|
+
mode: string;
|
|
6174
6498
|
}, {}>;
|
|
6175
6499
|
|
|
6176
6500
|
export declare const TransitionScale: DefineComponent< {
|
|
@@ -6244,14 +6568,14 @@ type: StringConstructor;
|
|
|
6244
6568
|
default: string;
|
|
6245
6569
|
};
|
|
6246
6570
|
}>>, {
|
|
6247
|
-
origin: string;
|
|
6248
|
-
style: Record<string, any>;
|
|
6249
|
-
prefix: string;
|
|
6250
|
-
group: boolean;
|
|
6251
6571
|
tag: string;
|
|
6252
|
-
|
|
6572
|
+
style: Record<string, any>;
|
|
6253
6573
|
duration: number | Record<string, any>;
|
|
6254
6574
|
delay: number | Record<string, any>;
|
|
6575
|
+
group: boolean;
|
|
6576
|
+
origin: string;
|
|
6577
|
+
prefix: string;
|
|
6578
|
+
mode: string;
|
|
6255
6579
|
}, {}>;
|
|
6256
6580
|
|
|
6257
6581
|
export declare const TransitionSlide: DefineComponent< {
|
|
@@ -6325,14 +6649,14 @@ type: StringConstructor;
|
|
|
6325
6649
|
default: string;
|
|
6326
6650
|
};
|
|
6327
6651
|
}>>, {
|
|
6328
|
-
origin: string;
|
|
6329
|
-
style: Record<string, any>;
|
|
6330
|
-
prefix: string;
|
|
6331
|
-
group: boolean;
|
|
6332
6652
|
tag: string;
|
|
6333
|
-
|
|
6653
|
+
style: Record<string, any>;
|
|
6334
6654
|
duration: number | Record<string, any>;
|
|
6335
6655
|
delay: number | Record<string, any>;
|
|
6656
|
+
group: boolean;
|
|
6657
|
+
origin: string;
|
|
6658
|
+
prefix: string;
|
|
6659
|
+
mode: string;
|
|
6336
6660
|
}, {}>;
|
|
6337
6661
|
|
|
6338
6662
|
export declare const TransitionZoom: DefineComponent< {
|
|
@@ -6406,14 +6730,14 @@ type: StringConstructor;
|
|
|
6406
6730
|
default: string;
|
|
6407
6731
|
};
|
|
6408
6732
|
}>>, {
|
|
6409
|
-
origin: string;
|
|
6410
|
-
style: Record<string, any>;
|
|
6411
|
-
prefix: string;
|
|
6412
|
-
group: boolean;
|
|
6413
6733
|
tag: string;
|
|
6414
|
-
|
|
6734
|
+
style: Record<string, any>;
|
|
6415
6735
|
duration: number | Record<string, any>;
|
|
6416
6736
|
delay: number | Record<string, any>;
|
|
6737
|
+
group: boolean;
|
|
6738
|
+
origin: string;
|
|
6739
|
+
prefix: string;
|
|
6740
|
+
mode: string;
|
|
6417
6741
|
}, {}>;
|
|
6418
6742
|
|
|
6419
6743
|
export declare const Tree: DefineComponent< {
|