@deot/vc 1.0.1 → 1.0.2

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 CHANGED
@@ -199,8 +199,7 @@ const createVcPlugin = (options, transfromComponentKey = (x) => x) => {
199
199
  install: (app) => {
200
200
  app.config.globalProperties.$vc = vcComponents.VcInstance.configure(options);
201
201
  Object.keys(Components).forEach((key) => {
202
- key = transfromComponentKey(key) || key;
203
- app.component(key, Components[key]);
202
+ app.component(transfromComponentKey(key) || key, Components[key]);
204
203
  });
205
204
  }
206
205
  };
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: {
61
+ type: StringConstructor;
62
+ default: string;
63
+ };
64
+ desc: {
53
65
  type: StringConstructor;
54
66
  default: string;
55
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: {
86
+ type: StringConstructor;
87
+ default: string;
88
+ };
89
+ desc: {
58
90
  type: StringConstructor;
59
91
  default: string;
60
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: {
119
+ type: StringConstructor;
120
+ default: string;
121
+ };
122
+ desc: {
66
123
  type: StringConstructor;
67
124
  default: string;
68
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: {
@@ -996,13 +1146,13 @@ export declare const Components: {
996
1146
  };
997
1147
  }>>, {
998
1148
  tag: string;
1149
+ border: boolean;
999
1150
  showMessage: boolean;
1000
1151
  inline: boolean;
1001
1152
  labelPosition: "left" | "right" | "top";
1002
1153
  autocomplete: "on" | "off";
1003
1154
  styleless: boolean;
1004
1155
  showToast: boolean;
1005
- border: boolean;
1006
1156
  }, {}>;
1007
1157
  FormItem: DefineComponent< {
1008
1158
  label: {
@@ -1424,7 +1574,7 @@ export declare const Components: {
1424
1574
  type: BooleanConstructor;
1425
1575
  default: boolean;
1426
1576
  };
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< {
1577
+ }, () => 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
1578
  indicator: {
1429
1579
  type: PropType<boolean | ({
1430
1580
  inline: boolean;
@@ -1495,13 +1645,13 @@ export declare const Components: {
1495
1645
  onKeypress?: ((...args: any[]) => any) | undefined;
1496
1646
  onKeyup?: ((...args: any[]) => any) | undefined;
1497
1647
  onEnter?: ((...args: any[]) => any) | undefined;
1498
- onClear?: ((...args: any[]) => any) | undefined;
1499
1648
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1649
+ onClear?: ((...args: any[]) => any) | undefined;
1500
1650
  onTip?: ((...args: any[]) => any) | undefined;
1501
1651
  }, {
1652
+ modelValue: string | number | any[];
1502
1653
  disabled: boolean;
1503
1654
  styleless: boolean;
1504
- modelValue: string | number | any[];
1505
1655
  focusEnd: boolean;
1506
1656
  clearable: boolean;
1507
1657
  afloat: boolean;
@@ -1570,7 +1720,7 @@ export declare const Components: {
1570
1720
  type: BooleanConstructor;
1571
1721
  default: boolean;
1572
1722
  };
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< {
1723
+ }, () => 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
1724
  right: {
1575
1725
  type: BooleanConstructor;
1576
1726
  default: boolean;
@@ -1637,14 +1787,14 @@ export declare const Components: {
1637
1787
  onKeypress?: ((...args: any[]) => any) | undefined;
1638
1788
  onKeyup?: ((...args: any[]) => any) | undefined;
1639
1789
  onEnter?: ((...args: any[]) => any) | undefined;
1640
- onClear?: ((...args: any[]) => any) | undefined;
1641
1790
  "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1791
+ onClear?: ((...args: any[]) => any) | undefined;
1642
1792
  onTip?: ((...args: any[]) => any) | undefined;
1643
1793
  }, {
1794
+ modelValue: string | number | any[];
1644
1795
  disabled: boolean;
1645
1796
  right: boolean;
1646
1797
  styleless: boolean;
1647
- modelValue: string | number | any[];
1648
1798
  focusEnd: boolean;
1649
1799
  clearable: boolean;
1650
1800
  afloat: boolean;
@@ -1808,10 +1958,10 @@ export declare const Components: {
1808
1958
  };
1809
1959
  }>>, {
1810
1960
  output: Function;
1961
+ modelValue: string | number | any[];
1811
1962
  disabled: boolean;
1812
1963
  styleless: boolean;
1813
1964
  required: boolean;
1814
- modelValue: string | number | any[];
1815
1965
  focusEnd: boolean;
1816
1966
  clearable: boolean;
1817
1967
  afloat: boolean;
@@ -1979,10 +2129,10 @@ export declare const Components: {
1979
2129
  };
1980
2130
  }>>, {
1981
2131
  output: Function;
2132
+ modelValue: string | number | any[];
1982
2133
  disabled: boolean;
1983
2134
  styleless: boolean;
1984
2135
  required: boolean;
1985
- modelValue: string | number | any[];
1986
2136
  focusEnd: boolean;
1987
2137
  clearable: boolean;
1988
2138
  afloat: boolean;
@@ -2109,9 +2259,9 @@ export declare const Components: {
2109
2259
  default: boolean;
2110
2260
  };
2111
2261
  }>>, {
2262
+ modelValue: string | number | any[];
2112
2263
  disabled: boolean;
2113
2264
  styleless: boolean;
2114
- modelValue: string | number | any[];
2115
2265
  focusEnd: boolean;
2116
2266
  clearable: boolean;
2117
2267
  afloat: boolean;
@@ -2243,9 +2393,9 @@ export declare const Components: {
2243
2393
  default: boolean;
2244
2394
  };
2245
2395
  }>>, {
2396
+ modelValue: string | number | any[];
2246
2397
  disabled: boolean;
2247
2398
  styleless: boolean;
2248
- modelValue: string | number | any[];
2249
2399
  focusEnd: boolean;
2250
2400
  clearable: boolean;
2251
2401
  afloat: boolean;
@@ -2285,8 +2435,8 @@ export declare const Components: {
2285
2435
  };
2286
2436
  }>>, {
2287
2437
  tag: string;
2288
- labelWidth: string | number;
2289
2438
  border: boolean;
2439
+ labelWidth: string | number;
2290
2440
  }, {}>;
2291
2441
  MList: DefineComponent< {
2292
2442
  tag: {
@@ -2318,8 +2468,8 @@ export declare const Components: {
2318
2468
  };
2319
2469
  }>>, {
2320
2470
  tag: string;
2321
- labelWidth: string | number;
2322
2471
  border: boolean;
2472
+ labelWidth: string | number;
2323
2473
  }, {}>;
2324
2474
  ListItem: DefineComponent< {
2325
2475
  tag: {
@@ -2580,12 +2730,12 @@ export declare const Components: {
2580
2730
  tag: string;
2581
2731
  }, {}>;
2582
2732
  Popover: DefineComponent< {
2733
+ modelValue: BooleanConstructor;
2583
2734
  content: (StringConstructor | FunctionConstructor)[];
2584
2735
  portal: {
2585
2736
  type: BooleanConstructor;
2586
2737
  default: boolean;
2587
2738
  };
2588
- modelValue: BooleanConstructor;
2589
2739
  always: BooleanConstructor;
2590
2740
  arrow: {
2591
2741
  type: BooleanConstructor;
@@ -2629,12 +2779,12 @@ export declare const Components: {
2629
2779
  }, () => VNode<RendererNode, RendererElement, {
2630
2780
  [key: string]: any;
2631
2781
  }>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
2782
+ modelValue: BooleanConstructor;
2632
2783
  content: (StringConstructor | FunctionConstructor)[];
2633
2784
  portal: {
2634
2785
  type: BooleanConstructor;
2635
2786
  default: boolean;
2636
2787
  };
2637
- modelValue: BooleanConstructor;
2638
2788
  always: BooleanConstructor;
2639
2789
  arrow: {
2640
2790
  type: BooleanConstructor;
@@ -2682,9 +2832,9 @@ export declare const Components: {
2682
2832
  onReady?: ((...args: any[]) => any) | undefined;
2683
2833
  }, {
2684
2834
  tag: string;
2835
+ modelValue: boolean;
2685
2836
  disabled: boolean;
2686
2837
  portal: boolean;
2687
- modelValue: boolean;
2688
2838
  always: boolean;
2689
2839
  arrow: boolean;
2690
2840
  placement: string;
@@ -2694,12 +2844,12 @@ export declare const Components: {
2694
2844
  outsideClickable: boolean;
2695
2845
  }, {}>;
2696
2846
  MPopover: DefineComponent< {
2847
+ modelValue: BooleanConstructor;
2697
2848
  content: (StringConstructor | FunctionConstructor)[];
2698
2849
  portal: {
2699
2850
  type: BooleanConstructor;
2700
2851
  default: boolean;
2701
2852
  };
2702
- modelValue: BooleanConstructor;
2703
2853
  always: BooleanConstructor;
2704
2854
  arrow: {
2705
2855
  type: BooleanConstructor;
@@ -2743,12 +2893,12 @@ export declare const Components: {
2743
2893
  }, () => VNode<RendererNode, RendererElement, {
2744
2894
  [key: string]: any;
2745
2895
  }>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
2896
+ modelValue: BooleanConstructor;
2746
2897
  content: (StringConstructor | FunctionConstructor)[];
2747
2898
  portal: {
2748
2899
  type: BooleanConstructor;
2749
2900
  default: boolean;
2750
2901
  };
2751
- modelValue: BooleanConstructor;
2752
2902
  always: BooleanConstructor;
2753
2903
  arrow: {
2754
2904
  type: BooleanConstructor;
@@ -2796,9 +2946,9 @@ export declare const Components: {
2796
2946
  onReady?: ((...args: any[]) => any) | undefined;
2797
2947
  }, {
2798
2948
  tag: string;
2949
+ modelValue: boolean;
2799
2950
  disabled: boolean;
2800
2951
  portal: boolean;
2801
- modelValue: boolean;
2802
2952
  always: boolean;
2803
2953
  arrow: boolean;
2804
2954
  placement: string;
@@ -3926,12 +4076,12 @@ export declare const Components: {
3926
4076
  }>>, {
3927
4077
  style: Record<string, any>;
3928
4078
  tag: string;
3929
- mode: string;
3930
4079
  duration: number | Record<string, any>;
3931
4080
  delay: number | Record<string, any>;
3932
4081
  group: boolean;
3933
4082
  origin: string;
3934
4083
  prefix: string;
4084
+ mode: string;
3935
4085
  }, {}>;
3936
4086
  MTransition: DefineComponent< {
3937
4087
  duration: {
@@ -4004,12 +4154,12 @@ export declare const Components: {
4004
4154
  }>>, {
4005
4155
  style: Record<string, any>;
4006
4156
  tag: string;
4007
- mode: string;
4008
4157
  duration: number | Record<string, any>;
4009
4158
  delay: number | Record<string, any>;
4010
4159
  group: boolean;
4011
4160
  origin: string;
4012
4161
  prefix: string;
4162
+ mode: string;
4013
4163
  }, {}>;
4014
4164
  TransitionFade: DefineComponent< {
4015
4165
  style: {
@@ -4082,12 +4232,12 @@ export declare const Components: {
4082
4232
  }>>, {
4083
4233
  style: Record<string, any>;
4084
4234
  tag: string;
4085
- mode: string;
4086
4235
  duration: number | Record<string, any>;
4087
4236
  delay: number | Record<string, any>;
4088
4237
  group: boolean;
4089
4238
  origin: string;
4090
4239
  prefix: string;
4240
+ mode: string;
4091
4241
  }, {}>;
4092
4242
  MTransitionFade: DefineComponent< {
4093
4243
  style: {
@@ -4160,12 +4310,12 @@ export declare const Components: {
4160
4310
  }>>, {
4161
4311
  style: Record<string, any>;
4162
4312
  tag: string;
4163
- mode: string;
4164
4313
  duration: number | Record<string, any>;
4165
4314
  delay: number | Record<string, any>;
4166
4315
  group: boolean;
4167
4316
  origin: string;
4168
4317
  prefix: string;
4318
+ mode: string;
4169
4319
  }, {}>;
4170
4320
  TransitionScale: DefineComponent< {
4171
4321
  mode: {
@@ -4240,12 +4390,12 @@ export declare const Components: {
4240
4390
  }>>, {
4241
4391
  style: Record<string, any>;
4242
4392
  tag: string;
4243
- mode: string;
4244
4393
  duration: number | Record<string, any>;
4245
4394
  delay: number | Record<string, any>;
4246
4395
  group: boolean;
4247
4396
  origin: string;
4248
4397
  prefix: string;
4398
+ mode: string;
4249
4399
  }, {}>;
4250
4400
  MTransitionScale: DefineComponent< {
4251
4401
  mode: {
@@ -4320,12 +4470,12 @@ export declare const Components: {
4320
4470
  }>>, {
4321
4471
  style: Record<string, any>;
4322
4472
  tag: string;
4323
- mode: string;
4324
4473
  duration: number | Record<string, any>;
4325
4474
  delay: number | Record<string, any>;
4326
4475
  group: boolean;
4327
4476
  origin: string;
4328
4477
  prefix: string;
4478
+ mode: string;
4329
4479
  }, {}>;
4330
4480
  TransitionSlide: DefineComponent< {
4331
4481
  mode: {
@@ -4400,12 +4550,12 @@ export declare const Components: {
4400
4550
  }>>, {
4401
4551
  style: Record<string, any>;
4402
4552
  tag: string;
4403
- mode: string;
4404
4553
  duration: number | Record<string, any>;
4405
4554
  delay: number | Record<string, any>;
4406
4555
  group: boolean;
4407
4556
  origin: string;
4408
4557
  prefix: string;
4558
+ mode: string;
4409
4559
  }, {}>;
4410
4560
  MTransitionSlide: DefineComponent< {
4411
4561
  mode: {
@@ -4480,12 +4630,12 @@ export declare const Components: {
4480
4630
  }>>, {
4481
4631
  style: Record<string, any>;
4482
4632
  tag: string;
4483
- mode: string;
4484
4633
  duration: number | Record<string, any>;
4485
4634
  delay: number | Record<string, any>;
4486
4635
  group: boolean;
4487
4636
  origin: string;
4488
4637
  prefix: string;
4638
+ mode: string;
4489
4639
  }, {}>;
4490
4640
  TransitionZoom: DefineComponent< {
4491
4641
  mode: {
@@ -4560,12 +4710,12 @@ export declare const Components: {
4560
4710
  }>>, {
4561
4711
  style: Record<string, any>;
4562
4712
  tag: string;
4563
- mode: string;
4564
4713
  duration: number | Record<string, any>;
4565
4714
  delay: number | Record<string, any>;
4566
4715
  group: boolean;
4567
4716
  origin: string;
4568
4717
  prefix: string;
4718
+ mode: string;
4569
4719
  }, {}>;
4570
4720
  MTransitionZoom: DefineComponent< {
4571
4721
  mode: {
@@ -4640,12 +4790,12 @@ export declare const Components: {
4640
4790
  }>>, {
4641
4791
  style: Record<string, any>;
4642
4792
  tag: string;
4643
- mode: string;
4644
4793
  duration: number | Record<string, any>;
4645
4794
  delay: number | Record<string, any>;
4646
4795
  group: boolean;
4647
4796
  origin: string;
4648
4797
  prefix: string;
4798
+ mode: string;
4649
4799
  }, {}>;
4650
4800
  TransitionCollapse: DefineComponent< {
4651
4801
  duration: {
@@ -4718,12 +4868,12 @@ export declare const Components: {
4718
4868
  }>>, {
4719
4869
  style: Record<string, any>;
4720
4870
  tag: string;
4721
- mode: string;
4722
4871
  duration: number | Record<string, any>;
4723
4872
  delay: number | Record<string, any>;
4724
4873
  group: boolean;
4725
4874
  origin: string;
4726
4875
  prefix: string;
4876
+ mode: string;
4727
4877
  }, {}>;
4728
4878
  MTransitionCollapse: DefineComponent< {
4729
4879
  duration: {
@@ -4796,12 +4946,12 @@ export declare const Components: {
4796
4946
  }>>, {
4797
4947
  style: Record<string, any>;
4798
4948
  tag: string;
4799
- mode: string;
4800
4949
  duration: number | Record<string, any>;
4801
4950
  delay: number | Record<string, any>;
4802
4951
  group: boolean;
4803
4952
  origin: string;
4804
4953
  prefix: string;
4954
+ mode: string;
4805
4955
  }, {}>;
4806
4956
  Tree: DefineComponent< {
4807
4957
  tag: {