@deot/vc 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.d.ts CHANGED
@@ -49,30 +49,120 @@ export declare const Components: {
49
49
  tag: string;
50
50
  }, {}>;
51
51
  Alert: DefineComponent< {
52
- tag: {
52
+ modelValue: {
53
+ type: BooleanConstructor;
54
+ default: boolean;
55
+ };
56
+ type: {
57
+ type: PropType<"success" | "info" | "error" | "warning">;
58
+ default: string;
59
+ };
60
+ title: {
53
61
  type: StringConstructor;
54
62
  default: string;
55
63
  };
64
+ desc: {
65
+ type: StringConstructor;
66
+ default: string;
67
+ };
68
+ icon: {
69
+ type: (StringConstructor | BooleanConstructor)[];
70
+ default: boolean;
71
+ };
72
+ closable: {
73
+ type: BooleanConstructor;
74
+ default: boolean;
75
+ };
56
76
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
57
- tag: {
77
+ modelValue: {
78
+ type: BooleanConstructor;
79
+ default: boolean;
80
+ };
81
+ type: {
82
+ type: PropType<"success" | "info" | "error" | "warning">;
83
+ default: string;
84
+ };
85
+ title: {
58
86
  type: StringConstructor;
59
87
  default: string;
60
88
  };
89
+ desc: {
90
+ type: StringConstructor;
91
+ default: string;
92
+ };
93
+ icon: {
94
+ type: (StringConstructor | BooleanConstructor)[];
95
+ default: boolean;
96
+ };
97
+ closable: {
98
+ type: BooleanConstructor;
99
+ default: boolean;
100
+ };
61
101
  }>>, {
62
- tag: string;
102
+ type: "error" | "success" | "info" | "warning";
103
+ title: string;
104
+ desc: string;
105
+ modelValue: boolean;
106
+ icon: string | boolean;
107
+ closable: boolean;
63
108
  }, {}>;
64
109
  MAlert: DefineComponent< {
65
- tag: {
110
+ modelValue: {
111
+ type: BooleanConstructor;
112
+ default: boolean;
113
+ };
114
+ type: {
115
+ type: PropType<"success" | "info" | "error" | "warning">;
116
+ default: string;
117
+ };
118
+ title: {
66
119
  type: StringConstructor;
67
120
  default: string;
68
121
  };
122
+ desc: {
123
+ type: StringConstructor;
124
+ default: string;
125
+ };
126
+ icon: {
127
+ type: (StringConstructor | BooleanConstructor)[];
128
+ default: boolean;
129
+ };
130
+ closable: {
131
+ type: BooleanConstructor;
132
+ default: boolean;
133
+ };
69
134
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
70
- tag: {
135
+ modelValue: {
136
+ type: BooleanConstructor;
137
+ default: boolean;
138
+ };
139
+ type: {
140
+ type: PropType<"success" | "info" | "error" | "warning">;
141
+ default: string;
142
+ };
143
+ title: {
144
+ type: StringConstructor;
145
+ default: string;
146
+ };
147
+ desc: {
71
148
  type: StringConstructor;
72
149
  default: string;
73
150
  };
151
+ icon: {
152
+ type: (StringConstructor | BooleanConstructor)[];
153
+ default: boolean;
154
+ };
155
+ closable: {
156
+ type: BooleanConstructor;
157
+ default: boolean;
158
+ };
74
159
  }>>, {
75
- tag: string;
160
+ type: "error" | "success" | "info" | "warning";
161
+ title: string;
162
+ desc: string;
163
+ modelValue: boolean;
164
+ icon: string | boolean;
165
+ closable: boolean;
76
166
  }, {}>;
77
167
  Artboard: DefineComponent< {
78
168
  tag: {
@@ -155,7 +245,7 @@ export declare const Components: {
155
245
  }>> & {
156
246
  onClick?: ((...args: any[]) => any) | undefined;
157
247
  }, {
158
- type: "error" | "text" | "default" | "primary" | "success" | "warning";
248
+ type: "error" | "text" | "default" | "success" | "warning" | "primary";
159
249
  tag: string;
160
250
  circle: boolean;
161
251
  size: "small" | "large" | "medium";
@@ -220,7 +310,7 @@ export declare const Components: {
220
310
  }>> & {
221
311
  onClick?: ((...args: any[]) => any) | undefined;
222
312
  }, {
223
- type: "error" | "text" | "default" | "primary" | "success" | "warning";
313
+ type: "error" | "text" | "default" | "success" | "warning" | "primary";
224
314
  tag: string;
225
315
  circle: boolean;
226
316
  size: "small" | "large" | "medium";
@@ -341,30 +431,90 @@ export declare const Components: {
341
431
  tag: string;
342
432
  }, {}>;
343
433
  Card: DefineComponent< {
344
- tag: {
434
+ border: {
435
+ type: BooleanConstructor;
436
+ default: boolean;
437
+ };
438
+ shadow: {
439
+ type: BooleanConstructor;
440
+ default: boolean;
441
+ };
442
+ padding: {
443
+ type: NumberConstructor;
444
+ default: number;
445
+ };
446
+ title: {
447
+ type: StringConstructor;
448
+ };
449
+ icon: {
345
450
  type: StringConstructor;
346
- default: string;
347
451
  };
348
452
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
349
- tag: {
453
+ border: {
454
+ type: BooleanConstructor;
455
+ default: boolean;
456
+ };
457
+ shadow: {
458
+ type: BooleanConstructor;
459
+ default: boolean;
460
+ };
461
+ padding: {
462
+ type: NumberConstructor;
463
+ default: number;
464
+ };
465
+ title: {
466
+ type: StringConstructor;
467
+ };
468
+ icon: {
350
469
  type: StringConstructor;
351
- default: string;
352
470
  };
353
471
  }>>, {
354
- tag: string;
472
+ border: boolean;
473
+ shadow: boolean;
474
+ padding: number;
355
475
  }, {}>;
356
476
  MCard: DefineComponent< {
357
- tag: {
477
+ border: {
478
+ type: BooleanConstructor;
479
+ default: boolean;
480
+ };
481
+ shadow: {
482
+ type: BooleanConstructor;
483
+ default: boolean;
484
+ };
485
+ padding: {
486
+ type: NumberConstructor;
487
+ default: number;
488
+ };
489
+ title: {
490
+ type: StringConstructor;
491
+ };
492
+ icon: {
358
493
  type: StringConstructor;
359
- default: string;
360
494
  };
361
495
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
362
- tag: {
496
+ border: {
497
+ type: BooleanConstructor;
498
+ default: boolean;
499
+ };
500
+ shadow: {
501
+ type: BooleanConstructor;
502
+ default: boolean;
503
+ };
504
+ padding: {
505
+ type: NumberConstructor;
506
+ default: number;
507
+ };
508
+ title: {
509
+ type: StringConstructor;
510
+ };
511
+ icon: {
363
512
  type: StringConstructor;
364
- default: string;
365
513
  };
366
514
  }>>, {
367
- tag: string;
515
+ border: boolean;
516
+ shadow: boolean;
517
+ padding: number;
368
518
  }, {}>;
369
519
  Carousel: DefineComponent< {
370
520
  tag: {
@@ -419,30 +569,50 @@ export declare const Components: {
419
569
  tag: string;
420
570
  }, {}>;
421
571
  Chart: DefineComponent< {
422
- tag: {
423
- type: StringConstructor;
424
- default: string;
425
- };
426
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
427
- tag: {
428
- type: StringConstructor;
429
- default: string;
430
- };
431
- }>>, {
432
- tag: string;
572
+ options: ObjectConstructor;
573
+ pluginOptions: ObjectConstructor;
574
+ theme: (ObjectConstructor | StringConstructor)[];
575
+ group: StringConstructor;
576
+ autoResize: BooleanConstructor;
577
+ watchShallow: BooleanConstructor;
578
+ manualUpdate: BooleanConstructor;
579
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, string[], string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
580
+ options: ObjectConstructor;
581
+ pluginOptions: ObjectConstructor;
582
+ theme: (ObjectConstructor | StringConstructor)[];
583
+ group: StringConstructor;
584
+ autoResize: BooleanConstructor;
585
+ watchShallow: BooleanConstructor;
586
+ manualUpdate: BooleanConstructor;
587
+ }>> & {
588
+ [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
589
+ }, {
590
+ autoResize: boolean;
591
+ watchShallow: boolean;
592
+ manualUpdate: boolean;
433
593
  }, {}>;
434
594
  MChart: DefineComponent< {
435
- tag: {
436
- type: StringConstructor;
437
- default: string;
438
- };
439
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
440
- tag: {
441
- type: StringConstructor;
442
- default: string;
443
- };
444
- }>>, {
445
- tag: string;
595
+ options: ObjectConstructor;
596
+ pluginOptions: ObjectConstructor;
597
+ theme: (ObjectConstructor | StringConstructor)[];
598
+ group: StringConstructor;
599
+ autoResize: BooleanConstructor;
600
+ watchShallow: BooleanConstructor;
601
+ manualUpdate: BooleanConstructor;
602
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, string[], string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
603
+ options: ObjectConstructor;
604
+ pluginOptions: ObjectConstructor;
605
+ theme: (ObjectConstructor | StringConstructor)[];
606
+ group: StringConstructor;
607
+ autoResize: BooleanConstructor;
608
+ watchShallow: BooleanConstructor;
609
+ manualUpdate: BooleanConstructor;
610
+ }>> & {
611
+ [x: `on${Capitalize<string>}`]: ((...args: any[]) => any) | undefined;
612
+ }, {
613
+ autoResize: boolean;
614
+ watchShallow: boolean;
615
+ manualUpdate: boolean;
446
616
  }, {}>;
447
617
  Checkbox: DefineComponent< {
448
618
  tag: {
@@ -996,13 +1166,13 @@ export declare const Components: {
996
1166
  };
997
1167
  }>>, {
998
1168
  tag: string;
1169
+ border: boolean;
999
1170
  showMessage: boolean;
1000
1171
  inline: boolean;
1001
1172
  labelPosition: "left" | "right" | "top";
1002
1173
  autocomplete: "on" | "off";
1003
1174
  styleless: boolean;
1004
1175
  showToast: boolean;
1005
- border: boolean;
1006
1176
  }, {}>;
1007
1177
  FormItem: DefineComponent< {
1008
1178
  label: {
@@ -1260,30 +1430,30 @@ export declare const Components: {
1260
1430
  inherit: boolean;
1261
1431
  }, {}>;
1262
1432
  Image: DefineComponent< {
1263
- tag: {
1264
- type: StringConstructor;
1265
- default: string;
1266
- };
1433
+ src: StringConstructor;
1434
+ fit: StringConstructor;
1435
+ lazy: BooleanConstructor;
1436
+ wrapper: (ObjectConstructor | StringConstructor)[];
1267
1437
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
1268
- tag: {
1269
- type: StringConstructor;
1270
- default: string;
1271
- };
1438
+ src: StringConstructor;
1439
+ fit: StringConstructor;
1440
+ lazy: BooleanConstructor;
1441
+ wrapper: (ObjectConstructor | StringConstructor)[];
1272
1442
  }>>, {
1273
- tag: string;
1443
+ lazy: boolean;
1274
1444
  }, {}>;
1275
1445
  MImage: DefineComponent< {
1276
- tag: {
1277
- type: StringConstructor;
1278
- default: string;
1279
- };
1446
+ src: StringConstructor;
1447
+ fit: StringConstructor;
1448
+ lazy: BooleanConstructor;
1449
+ wrapper: (ObjectConstructor | StringConstructor)[];
1280
1450
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
1281
- tag: {
1282
- type: StringConstructor;
1283
- default: string;
1284
- };
1451
+ src: StringConstructor;
1452
+ fit: StringConstructor;
1453
+ lazy: BooleanConstructor;
1454
+ wrapper: (ObjectConstructor | StringConstructor)[];
1285
1455
  }>>, {
1286
- tag: string;
1456
+ lazy: boolean;
1287
1457
  }, {}>;
1288
1458
  ImageCrop: DefineComponent< {
1289
1459
  tag: {
@@ -1424,7 +1594,7 @@ export declare const Components: {
1424
1594
  type: BooleanConstructor;
1425
1595
  default: boolean;
1426
1596
  };
1427
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "clear" | "enter" | "update:modelValue" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "clear" | "enter" | "update:modelValue" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
1597
+ }, () => 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< {
1428
1598
  indicator: {
1429
1599
  type: PropType<boolean | ({
1430
1600
  inline: boolean;
@@ -1495,13 +1665,13 @@ export declare const Components: {
1495
1665
  onKeypress?: ((...args: any[]) => any) | undefined;
1496
1666
  onKeyup?: ((...args: any[]) => any) | undefined;
1497
1667
  onEnter?: ((...args: any[]) => any) | undefined;
1498
- onClear?: ((...args: any[]) => any) | undefined;
1499
1668
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1669
+ onClear?: ((...args: any[]) => any) | undefined;
1500
1670
  onTip?: ((...args: any[]) => any) | undefined;
1501
1671
  }, {
1672
+ modelValue: string | number | any[];
1502
1673
  disabled: boolean;
1503
1674
  styleless: boolean;
1504
- modelValue: string | number | any[];
1505
1675
  focusEnd: boolean;
1506
1676
  clearable: boolean;
1507
1677
  afloat: boolean;
@@ -1570,7 +1740,7 @@ export declare const Components: {
1570
1740
  type: BooleanConstructor;
1571
1741
  default: boolean;
1572
1742
  };
1573
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "clear" | "enter" | "update:modelValue" | "tip")[], "blur" | "change" | "focus" | "input" | "keydown" | "keypress" | "keyup" | "paste" | "clear" | "enter" | "update:modelValue" | "tip", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
1743
+ }, () => 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< {
1574
1744
  right: {
1575
1745
  type: BooleanConstructor;
1576
1746
  default: boolean;
@@ -1637,14 +1807,14 @@ export declare const Components: {
1637
1807
  onKeypress?: ((...args: any[]) => any) | undefined;
1638
1808
  onKeyup?: ((...args: any[]) => any) | undefined;
1639
1809
  onEnter?: ((...args: any[]) => any) | undefined;
1640
- onClear?: ((...args: any[]) => any) | undefined;
1641
1810
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1811
+ onClear?: ((...args: any[]) => any) | undefined;
1642
1812
  onTip?: ((...args: any[]) => any) | undefined;
1643
1813
  }, {
1814
+ modelValue: string | number | any[];
1644
1815
  disabled: boolean;
1645
1816
  right: boolean;
1646
1817
  styleless: boolean;
1647
- modelValue: string | number | any[];
1648
1818
  focusEnd: boolean;
1649
1819
  clearable: boolean;
1650
1820
  afloat: boolean;
@@ -1808,10 +1978,10 @@ export declare const Components: {
1808
1978
  };
1809
1979
  }>>, {
1810
1980
  output: Function;
1981
+ modelValue: string | number | any[];
1811
1982
  disabled: boolean;
1812
1983
  styleless: boolean;
1813
1984
  required: boolean;
1814
- modelValue: string | number | any[];
1815
1985
  focusEnd: boolean;
1816
1986
  clearable: boolean;
1817
1987
  afloat: boolean;
@@ -1979,10 +2149,10 @@ export declare const Components: {
1979
2149
  };
1980
2150
  }>>, {
1981
2151
  output: Function;
2152
+ modelValue: string | number | any[];
1982
2153
  disabled: boolean;
1983
2154
  styleless: boolean;
1984
2155
  required: boolean;
1985
- modelValue: string | number | any[];
1986
2156
  focusEnd: boolean;
1987
2157
  clearable: boolean;
1988
2158
  afloat: boolean;
@@ -2109,9 +2279,9 @@ export declare const Components: {
2109
2279
  default: boolean;
2110
2280
  };
2111
2281
  }>>, {
2282
+ modelValue: string | number | any[];
2112
2283
  disabled: boolean;
2113
2284
  styleless: boolean;
2114
- modelValue: string | number | any[];
2115
2285
  focusEnd: boolean;
2116
2286
  clearable: boolean;
2117
2287
  afloat: boolean;
@@ -2243,9 +2413,9 @@ export declare const Components: {
2243
2413
  default: boolean;
2244
2414
  };
2245
2415
  }>>, {
2416
+ modelValue: string | number | any[];
2246
2417
  disabled: boolean;
2247
2418
  styleless: boolean;
2248
- modelValue: string | number | any[];
2249
2419
  focusEnd: boolean;
2250
2420
  clearable: boolean;
2251
2421
  afloat: boolean;
@@ -2285,8 +2455,8 @@ export declare const Components: {
2285
2455
  };
2286
2456
  }>>, {
2287
2457
  tag: string;
2288
- labelWidth: string | number;
2289
2458
  border: boolean;
2459
+ labelWidth: string | number;
2290
2460
  }, {}>;
2291
2461
  MList: DefineComponent< {
2292
2462
  tag: {
@@ -2318,8 +2488,8 @@ export declare const Components: {
2318
2488
  };
2319
2489
  }>>, {
2320
2490
  tag: string;
2321
- labelWidth: string | number;
2322
2491
  border: boolean;
2492
+ labelWidth: string | number;
2323
2493
  }, {}>;
2324
2494
  ListItem: DefineComponent< {
2325
2495
  tag: {
@@ -2580,29 +2750,29 @@ export declare const Components: {
2580
2750
  tag: string;
2581
2751
  }, {}>;
2582
2752
  Popover: DefineComponent< {
2753
+ modelValue: BooleanConstructor;
2754
+ theme: {
2755
+ type: StringConstructor;
2756
+ default: string;
2757
+ validator: (v: string) => boolean;
2758
+ };
2583
2759
  content: (StringConstructor | FunctionConstructor)[];
2584
2760
  portal: {
2585
2761
  type: BooleanConstructor;
2586
2762
  default: boolean;
2587
2763
  };
2588
- modelValue: BooleanConstructor;
2589
2764
  always: BooleanConstructor;
2765
+ animation: StringConstructor;
2590
2766
  arrow: {
2591
2767
  type: BooleanConstructor;
2592
2768
  default: boolean;
2593
2769
  };
2594
2770
  portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2595
- animation: StringConstructor;
2596
2771
  placement: {
2597
2772
  type: StringConstructor;
2598
2773
  default: string;
2599
2774
  validator: (value: string) => boolean;
2600
2775
  };
2601
- theme: {
2602
- type: StringConstructor;
2603
- default: string;
2604
- validator: (v: string) => boolean;
2605
- };
2606
2776
  getPopupContainer: FunctionConstructor;
2607
2777
  autoWidth: {
2608
2778
  type: BooleanConstructor;
@@ -2629,29 +2799,29 @@ export declare const Components: {
2629
2799
  }, () => VNode<RendererNode, RendererElement, {
2630
2800
  [key: string]: any;
2631
2801
  }>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
2802
+ modelValue: BooleanConstructor;
2803
+ theme: {
2804
+ type: StringConstructor;
2805
+ default: string;
2806
+ validator: (v: string) => boolean;
2807
+ };
2632
2808
  content: (StringConstructor | FunctionConstructor)[];
2633
2809
  portal: {
2634
2810
  type: BooleanConstructor;
2635
2811
  default: boolean;
2636
2812
  };
2637
- modelValue: BooleanConstructor;
2638
2813
  always: BooleanConstructor;
2814
+ animation: StringConstructor;
2639
2815
  arrow: {
2640
2816
  type: BooleanConstructor;
2641
2817
  default: boolean;
2642
2818
  };
2643
2819
  portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2644
- animation: StringConstructor;
2645
2820
  placement: {
2646
2821
  type: StringConstructor;
2647
2822
  default: string;
2648
2823
  validator: (value: string) => boolean;
2649
2824
  };
2650
- theme: {
2651
- type: StringConstructor;
2652
- default: string;
2653
- validator: (v: string) => boolean;
2654
- };
2655
2825
  getPopupContainer: FunctionConstructor;
2656
2826
  autoWidth: {
2657
2827
  type: BooleanConstructor;
@@ -2682,41 +2852,41 @@ export declare const Components: {
2682
2852
  onReady?: ((...args: any[]) => any) | undefined;
2683
2853
  }, {
2684
2854
  tag: string;
2855
+ modelValue: boolean;
2685
2856
  disabled: boolean;
2857
+ theme: string;
2686
2858
  portal: boolean;
2687
- modelValue: boolean;
2688
2859
  always: boolean;
2689
2860
  arrow: boolean;
2690
2861
  placement: string;
2691
- theme: string;
2692
2862
  autoWidth: boolean;
2693
2863
  trigger: string;
2694
2864
  outsideClickable: boolean;
2695
2865
  }, {}>;
2696
2866
  MPopover: DefineComponent< {
2867
+ modelValue: BooleanConstructor;
2868
+ theme: {
2869
+ type: StringConstructor;
2870
+ default: string;
2871
+ validator: (v: string) => boolean;
2872
+ };
2697
2873
  content: (StringConstructor | FunctionConstructor)[];
2698
2874
  portal: {
2699
2875
  type: BooleanConstructor;
2700
2876
  default: boolean;
2701
2877
  };
2702
- modelValue: BooleanConstructor;
2703
2878
  always: BooleanConstructor;
2879
+ animation: StringConstructor;
2704
2880
  arrow: {
2705
2881
  type: BooleanConstructor;
2706
2882
  default: boolean;
2707
2883
  };
2708
2884
  portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2709
- animation: StringConstructor;
2710
2885
  placement: {
2711
2886
  type: StringConstructor;
2712
2887
  default: string;
2713
2888
  validator: (value: string) => boolean;
2714
2889
  };
2715
- theme: {
2716
- type: StringConstructor;
2717
- default: string;
2718
- validator: (v: string) => boolean;
2719
- };
2720
2890
  getPopupContainer: FunctionConstructor;
2721
2891
  autoWidth: {
2722
2892
  type: BooleanConstructor;
@@ -2743,29 +2913,29 @@ export declare const Components: {
2743
2913
  }, () => VNode<RendererNode, RendererElement, {
2744
2914
  [key: string]: any;
2745
2915
  }>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
2916
+ modelValue: BooleanConstructor;
2917
+ theme: {
2918
+ type: StringConstructor;
2919
+ default: string;
2920
+ validator: (v: string) => boolean;
2921
+ };
2746
2922
  content: (StringConstructor | FunctionConstructor)[];
2747
2923
  portal: {
2748
2924
  type: BooleanConstructor;
2749
2925
  default: boolean;
2750
2926
  };
2751
- modelValue: BooleanConstructor;
2752
2927
  always: BooleanConstructor;
2928
+ animation: StringConstructor;
2753
2929
  arrow: {
2754
2930
  type: BooleanConstructor;
2755
2931
  default: boolean;
2756
2932
  };
2757
2933
  portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
2758
- animation: StringConstructor;
2759
2934
  placement: {
2760
2935
  type: StringConstructor;
2761
2936
  default: string;
2762
2937
  validator: (value: string) => boolean;
2763
2938
  };
2764
- theme: {
2765
- type: StringConstructor;
2766
- default: string;
2767
- validator: (v: string) => boolean;
2768
- };
2769
2939
  getPopupContainer: FunctionConstructor;
2770
2940
  autoWidth: {
2771
2941
  type: BooleanConstructor;
@@ -2796,13 +2966,13 @@ export declare const Components: {
2796
2966
  onReady?: ((...args: any[]) => any) | undefined;
2797
2967
  }, {
2798
2968
  tag: string;
2969
+ modelValue: boolean;
2799
2970
  disabled: boolean;
2971
+ theme: string;
2800
2972
  portal: boolean;
2801
- modelValue: boolean;
2802
2973
  always: boolean;
2803
2974
  arrow: boolean;
2804
2975
  placement: string;
2805
- theme: string;
2806
2976
  autoWidth: boolean;
2807
2977
  trigger: string;
2808
2978
  outsideClickable: boolean;
@@ -3154,6 +3324,10 @@ export declare const Components: {
3154
3324
  pullable: boolean;
3155
3325
  }, {}>;
3156
3326
  Scroller: DefineComponent< {
3327
+ autoResize: {
3328
+ type: BooleanConstructor;
3329
+ default: boolean;
3330
+ };
3157
3331
  always: {
3158
3332
  type: BooleanConstructor;
3159
3333
  default: boolean;
@@ -3168,10 +3342,6 @@ export declare const Components: {
3168
3342
  type: BooleanConstructor;
3169
3343
  default: boolean;
3170
3344
  };
3171
- autoResize: {
3172
- type: BooleanConstructor;
3173
- default: boolean;
3174
- };
3175
3345
  trackOffsetX: {
3176
3346
  type: PropType<number[]>;
3177
3347
  default: () => number[];
@@ -3216,6 +3386,10 @@ export declare const Components: {
3216
3386
  };
3217
3387
  barTo: StringConstructor;
3218
3388
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3389
+ autoResize: {
3390
+ type: BooleanConstructor;
3391
+ default: boolean;
3392
+ };
3219
3393
  always: {
3220
3394
  type: BooleanConstructor;
3221
3395
  default: boolean;
@@ -3230,10 +3404,6 @@ export declare const Components: {
3230
3404
  type: BooleanConstructor;
3231
3405
  default: boolean;
3232
3406
  };
3233
- autoResize: {
3234
- type: BooleanConstructor;
3235
- default: boolean;
3236
- };
3237
3407
  trackOffsetX: {
3238
3408
  type: PropType<number[]>;
3239
3409
  default: () => number[];
@@ -3281,14 +3451,14 @@ export declare const Components: {
3281
3451
  onScroll?: ((...args: any[]) => any) | undefined;
3282
3452
  }, {
3283
3453
  tag: string;
3454
+ autoResize: boolean;
3284
3455
  contentStyle: StyleValue;
3285
- always: boolean;
3286
- wrapperStyle: StyleValue;
3287
3456
  height: string | number;
3457
+ always: boolean;
3288
3458
  maxHeight: string | number;
3459
+ wrapperStyle: StyleValue;
3289
3460
  thumbMinSize: number;
3290
3461
  native: boolean;
3291
- autoResize: boolean;
3292
3462
  trackOffsetX: number[];
3293
3463
  trackOffsetY: number[];
3294
3464
  wrapperClass: StyleValue;
@@ -3296,6 +3466,10 @@ export declare const Components: {
3296
3466
  showBar: boolean;
3297
3467
  }, {}>;
3298
3468
  MScroller: DefineComponent< {
3469
+ autoResize: {
3470
+ type: BooleanConstructor;
3471
+ default: boolean;
3472
+ };
3299
3473
  always: {
3300
3474
  type: BooleanConstructor;
3301
3475
  default: boolean;
@@ -3310,10 +3484,6 @@ export declare const Components: {
3310
3484
  type: BooleanConstructor;
3311
3485
  default: boolean;
3312
3486
  };
3313
- autoResize: {
3314
- type: BooleanConstructor;
3315
- default: boolean;
3316
- };
3317
3487
  trackOffsetX: {
3318
3488
  type: PropType<number[]>;
3319
3489
  default: () => number[];
@@ -3358,6 +3528,10 @@ export declare const Components: {
3358
3528
  };
3359
3529
  barTo: StringConstructor;
3360
3530
  }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3531
+ autoResize: {
3532
+ type: BooleanConstructor;
3533
+ default: boolean;
3534
+ };
3361
3535
  always: {
3362
3536
  type: BooleanConstructor;
3363
3537
  default: boolean;
@@ -3372,10 +3546,6 @@ export declare const Components: {
3372
3546
  type: BooleanConstructor;
3373
3547
  default: boolean;
3374
3548
  };
3375
- autoResize: {
3376
- type: BooleanConstructor;
3377
- default: boolean;
3378
- };
3379
3549
  trackOffsetX: {
3380
3550
  type: PropType<number[]>;
3381
3551
  default: () => number[];
@@ -3423,14 +3593,14 @@ export declare const Components: {
3423
3593
  onScroll?: ((...args: any[]) => any) | undefined;
3424
3594
  }, {
3425
3595
  tag: string;
3596
+ autoResize: boolean;
3426
3597
  contentStyle: StyleValue;
3427
- always: boolean;
3428
- wrapperStyle: StyleValue;
3429
3598
  height: string | number;
3599
+ always: boolean;
3430
3600
  maxHeight: string | number;
3601
+ wrapperStyle: StyleValue;
3431
3602
  thumbMinSize: number;
3432
3603
  native: boolean;
3433
- autoResize: boolean;
3434
3604
  trackOffsetX: number[];
3435
3605
  trackOffsetY: number[];
3436
3606
  wrapperClass: StyleValue;
@@ -3674,30 +3844,182 @@ export declare const Components: {
3674
3844
  tag: string;
3675
3845
  }, {}>;
3676
3846
  Tabs: DefineComponent< {
3677
- tag: {
3847
+ type: {
3678
3848
  type: StringConstructor;
3849
+ validator: (v: string) => boolean;
3679
3850
  default: string;
3680
3851
  };
3681
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3682
- tag: {
3852
+ modelValue: {
3853
+ type: (StringConstructor | NumberConstructor)[];
3854
+ };
3855
+ animated: {
3856
+ type: BooleanConstructor;
3857
+ default: boolean;
3858
+ };
3859
+ afloat: {
3860
+ type: BooleanConstructor;
3861
+ default: boolean;
3862
+ };
3863
+ closable: {
3864
+ type: BooleanConstructor;
3865
+ default: boolean;
3866
+ };
3867
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3868
+ type: {
3683
3869
  type: StringConstructor;
3870
+ validator: (v: string) => boolean;
3684
3871
  default: string;
3685
3872
  };
3686
- }>>, {
3687
- tag: string;
3873
+ modelValue: {
3874
+ type: (StringConstructor | NumberConstructor)[];
3875
+ };
3876
+ animated: {
3877
+ type: BooleanConstructor;
3878
+ default: boolean;
3879
+ };
3880
+ afloat: {
3881
+ type: BooleanConstructor;
3882
+ default: boolean;
3883
+ };
3884
+ closable: {
3885
+ type: BooleanConstructor;
3886
+ default: boolean;
3887
+ };
3888
+ }>> & {
3889
+ onChange?: ((...args: any[]) => any) | undefined;
3890
+ onClick?: ((...args: any[]) => any) | undefined;
3891
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3892
+ }, {
3893
+ type: string;
3894
+ closable: boolean;
3895
+ afloat: boolean;
3896
+ animated: boolean;
3688
3897
  }, {}>;
3689
3898
  MTabs: DefineComponent< {
3690
- tag: {
3899
+ type: {
3691
3900
  type: StringConstructor;
3901
+ validator: (v: string) => boolean;
3692
3902
  default: string;
3693
3903
  };
3694
- }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3695
- tag: {
3904
+ modelValue: {
3905
+ type: (StringConstructor | NumberConstructor)[];
3906
+ };
3907
+ animated: {
3908
+ type: BooleanConstructor;
3909
+ default: boolean;
3910
+ };
3911
+ afloat: {
3912
+ type: BooleanConstructor;
3913
+ default: boolean;
3914
+ };
3915
+ closable: {
3916
+ type: BooleanConstructor;
3917
+ default: boolean;
3918
+ };
3919
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3920
+ type: {
3696
3921
  type: StringConstructor;
3922
+ validator: (v: string) => boolean;
3923
+ default: string;
3924
+ };
3925
+ modelValue: {
3926
+ type: (StringConstructor | NumberConstructor)[];
3927
+ };
3928
+ animated: {
3929
+ type: BooleanConstructor;
3930
+ default: boolean;
3931
+ };
3932
+ afloat: {
3933
+ type: BooleanConstructor;
3934
+ default: boolean;
3935
+ };
3936
+ closable: {
3937
+ type: BooleanConstructor;
3938
+ default: boolean;
3939
+ };
3940
+ }>> & {
3941
+ onChange?: ((...args: any[]) => any) | undefined;
3942
+ onClick?: ((...args: any[]) => any) | undefined;
3943
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
3944
+ }, {
3945
+ type: string;
3946
+ closable: boolean;
3947
+ afloat: boolean;
3948
+ animated: boolean;
3949
+ }, {}>;
3950
+ TabsPane: DefineComponent< {
3951
+ value: {
3952
+ type: (StringConstructor | NumberConstructor)[];
3953
+ };
3954
+ label: {
3955
+ type: (StringConstructor | FunctionConstructor)[];
3697
3956
  default: string;
3698
3957
  };
3958
+ lazy: {
3959
+ type: BooleanConstructor;
3960
+ default: boolean;
3961
+ };
3962
+ closable: {
3963
+ type: BooleanConstructor;
3964
+ default: boolean;
3965
+ };
3966
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
3967
+ value: {
3968
+ type: (StringConstructor | NumberConstructor)[];
3969
+ };
3970
+ label: {
3971
+ type: (StringConstructor | FunctionConstructor)[];
3972
+ default: string;
3973
+ };
3974
+ lazy: {
3975
+ type: BooleanConstructor;
3976
+ default: boolean;
3977
+ };
3978
+ closable: {
3979
+ type: BooleanConstructor;
3980
+ default: boolean;
3981
+ };
3699
3982
  }>>, {
3700
- tag: string;
3983
+ label: string | Function;
3984
+ closable: boolean;
3985
+ lazy: boolean;
3986
+ }, {}>;
3987
+ MTabsPane: DefineComponent< {
3988
+ value: {
3989
+ type: (StringConstructor | NumberConstructor)[];
3990
+ };
3991
+ label: {
3992
+ type: (StringConstructor | FunctionConstructor)[];
3993
+ default: string;
3994
+ };
3995
+ lazy: {
3996
+ type: BooleanConstructor;
3997
+ default: boolean;
3998
+ };
3999
+ closable: {
4000
+ type: BooleanConstructor;
4001
+ default: boolean;
4002
+ };
4003
+ }, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
4004
+ value: {
4005
+ type: (StringConstructor | NumberConstructor)[];
4006
+ };
4007
+ label: {
4008
+ type: (StringConstructor | FunctionConstructor)[];
4009
+ default: string;
4010
+ };
4011
+ lazy: {
4012
+ type: BooleanConstructor;
4013
+ default: boolean;
4014
+ };
4015
+ closable: {
4016
+ type: BooleanConstructor;
4017
+ default: boolean;
4018
+ };
4019
+ }>>, {
4020
+ label: string | Function;
4021
+ closable: boolean;
4022
+ lazy: boolean;
3701
4023
  }, {}>;
3702
4024
  Tag: DefineComponent< {
3703
4025
  tag: {
@@ -3926,12 +4248,12 @@ export declare const Components: {
3926
4248
  }>>, {
3927
4249
  style: Record<string, any>;
3928
4250
  tag: string;
3929
- mode: string;
3930
4251
  duration: number | Record<string, any>;
3931
4252
  delay: number | Record<string, any>;
3932
4253
  group: boolean;
3933
4254
  origin: string;
3934
4255
  prefix: string;
4256
+ mode: string;
3935
4257
  }, {}>;
3936
4258
  MTransition: DefineComponent< {
3937
4259
  duration: {
@@ -4004,12 +4326,12 @@ export declare const Components: {
4004
4326
  }>>, {
4005
4327
  style: Record<string, any>;
4006
4328
  tag: string;
4007
- mode: string;
4008
4329
  duration: number | Record<string, any>;
4009
4330
  delay: number | Record<string, any>;
4010
4331
  group: boolean;
4011
4332
  origin: string;
4012
4333
  prefix: string;
4334
+ mode: string;
4013
4335
  }, {}>;
4014
4336
  TransitionFade: DefineComponent< {
4015
4337
  style: {
@@ -4082,12 +4404,12 @@ export declare const Components: {
4082
4404
  }>>, {
4083
4405
  style: Record<string, any>;
4084
4406
  tag: string;
4085
- mode: string;
4086
4407
  duration: number | Record<string, any>;
4087
4408
  delay: number | Record<string, any>;
4088
4409
  group: boolean;
4089
4410
  origin: string;
4090
4411
  prefix: string;
4412
+ mode: string;
4091
4413
  }, {}>;
4092
4414
  MTransitionFade: DefineComponent< {
4093
4415
  style: {
@@ -4160,12 +4482,12 @@ export declare const Components: {
4160
4482
  }>>, {
4161
4483
  style: Record<string, any>;
4162
4484
  tag: string;
4163
- mode: string;
4164
4485
  duration: number | Record<string, any>;
4165
4486
  delay: number | Record<string, any>;
4166
4487
  group: boolean;
4167
4488
  origin: string;
4168
4489
  prefix: string;
4490
+ mode: string;
4169
4491
  }, {}>;
4170
4492
  TransitionScale: DefineComponent< {
4171
4493
  mode: {
@@ -4240,12 +4562,12 @@ export declare const Components: {
4240
4562
  }>>, {
4241
4563
  style: Record<string, any>;
4242
4564
  tag: string;
4243
- mode: string;
4244
4565
  duration: number | Record<string, any>;
4245
4566
  delay: number | Record<string, any>;
4246
4567
  group: boolean;
4247
4568
  origin: string;
4248
4569
  prefix: string;
4570
+ mode: string;
4249
4571
  }, {}>;
4250
4572
  MTransitionScale: DefineComponent< {
4251
4573
  mode: {
@@ -4320,12 +4642,12 @@ export declare const Components: {
4320
4642
  }>>, {
4321
4643
  style: Record<string, any>;
4322
4644
  tag: string;
4323
- mode: string;
4324
4645
  duration: number | Record<string, any>;
4325
4646
  delay: number | Record<string, any>;
4326
4647
  group: boolean;
4327
4648
  origin: string;
4328
4649
  prefix: string;
4650
+ mode: string;
4329
4651
  }, {}>;
4330
4652
  TransitionSlide: DefineComponent< {
4331
4653
  mode: {
@@ -4400,12 +4722,12 @@ export declare const Components: {
4400
4722
  }>>, {
4401
4723
  style: Record<string, any>;
4402
4724
  tag: string;
4403
- mode: string;
4404
4725
  duration: number | Record<string, any>;
4405
4726
  delay: number | Record<string, any>;
4406
4727
  group: boolean;
4407
4728
  origin: string;
4408
4729
  prefix: string;
4730
+ mode: string;
4409
4731
  }, {}>;
4410
4732
  MTransitionSlide: DefineComponent< {
4411
4733
  mode: {
@@ -4480,12 +4802,12 @@ export declare const Components: {
4480
4802
  }>>, {
4481
4803
  style: Record<string, any>;
4482
4804
  tag: string;
4483
- mode: string;
4484
4805
  duration: number | Record<string, any>;
4485
4806
  delay: number | Record<string, any>;
4486
4807
  group: boolean;
4487
4808
  origin: string;
4488
4809
  prefix: string;
4810
+ mode: string;
4489
4811
  }, {}>;
4490
4812
  TransitionZoom: DefineComponent< {
4491
4813
  mode: {
@@ -4560,12 +4882,12 @@ export declare const Components: {
4560
4882
  }>>, {
4561
4883
  style: Record<string, any>;
4562
4884
  tag: string;
4563
- mode: string;
4564
4885
  duration: number | Record<string, any>;
4565
4886
  delay: number | Record<string, any>;
4566
4887
  group: boolean;
4567
4888
  origin: string;
4568
4889
  prefix: string;
4890
+ mode: string;
4569
4891
  }, {}>;
4570
4892
  MTransitionZoom: DefineComponent< {
4571
4893
  mode: {
@@ -4640,12 +4962,12 @@ export declare const Components: {
4640
4962
  }>>, {
4641
4963
  style: Record<string, any>;
4642
4964
  tag: string;
4643
- mode: string;
4644
4965
  duration: number | Record<string, any>;
4645
4966
  delay: number | Record<string, any>;
4646
4967
  group: boolean;
4647
4968
  origin: string;
4648
4969
  prefix: string;
4970
+ mode: string;
4649
4971
  }, {}>;
4650
4972
  TransitionCollapse: DefineComponent< {
4651
4973
  duration: {
@@ -4718,12 +5040,12 @@ export declare const Components: {
4718
5040
  }>>, {
4719
5041
  style: Record<string, any>;
4720
5042
  tag: string;
4721
- mode: string;
4722
5043
  duration: number | Record<string, any>;
4723
5044
  delay: number | Record<string, any>;
4724
5045
  group: boolean;
4725
5046
  origin: string;
4726
5047
  prefix: string;
5048
+ mode: string;
4727
5049
  }, {}>;
4728
5050
  MTransitionCollapse: DefineComponent< {
4729
5051
  duration: {
@@ -4796,12 +5118,12 @@ export declare const Components: {
4796
5118
  }>>, {
4797
5119
  style: Record<string, any>;
4798
5120
  tag: string;
4799
- mode: string;
4800
5121
  duration: number | Record<string, any>;
4801
5122
  delay: number | Record<string, any>;
4802
5123
  group: boolean;
4803
5124
  origin: string;
4804
5125
  prefix: string;
5126
+ mode: string;
4805
5127
  }, {}>;
4806
5128
  Tree: DefineComponent< {
4807
5129
  tag: {