@deot/vc 1.0.2 → 1.0.4
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 +10 -2
- package/dist/index.d.ts +300 -97
- package/dist/index.iife.js +82118 -531
- package/dist/index.js +6 -3
- package/dist/index.umd.cjs +82118 -531
- package/package.json +4 -4
package/dist/index.cjs
CHANGED
|
@@ -131,6 +131,8 @@ const Components = {
|
|
|
131
131
|
MRate: vcComponents.MRate,
|
|
132
132
|
RecycleList: vcComponents.RecycleList,
|
|
133
133
|
MRecycleList: vcComponents.MRecycleList,
|
|
134
|
+
Resizer: vcComponents.Resizer,
|
|
135
|
+
MResizer: vcComponents.MResizer,
|
|
134
136
|
Scroller: vcComponents.Scroller,
|
|
135
137
|
MScroller: vcComponents.MScroller,
|
|
136
138
|
Select: vcComponents.Select,
|
|
@@ -157,8 +159,8 @@ const Components = {
|
|
|
157
159
|
// MTableColumn,
|
|
158
160
|
Tabs: vcComponents.Tabs,
|
|
159
161
|
MTabs: vcComponents.MTabs,
|
|
160
|
-
|
|
161
|
-
|
|
162
|
+
TabsPane: vcComponents.TabsPane,
|
|
163
|
+
MTabsPane: vcComponents.MTabsPane,
|
|
162
164
|
Tag: vcComponents.Tag,
|
|
163
165
|
MTag: vcComponents.MTag,
|
|
164
166
|
Text: vcComponents.Text,
|
|
@@ -217,3 +219,9 @@ Object.keys(vcHooks).forEach(k => {
|
|
|
217
219
|
get: () => vcHooks[k]
|
|
218
220
|
});
|
|
219
221
|
});
|
|
222
|
+
Object.keys(vcComponents).forEach(k => {
|
|
223
|
+
if (k !== 'default' && !Object.prototype.hasOwnProperty.call(exports, k)) Object.defineProperty(exports, k, {
|
|
224
|
+
enumerable: true,
|
|
225
|
+
get: () => vcComponents[k]
|
|
226
|
+
});
|
|
227
|
+
});
|
package/dist/index.d.ts
CHANGED
|
@@ -569,30 +569,50 @@ export declare const Components: {
|
|
|
569
569
|
tag: string;
|
|
570
570
|
}, {}>;
|
|
571
571
|
Chart: DefineComponent< {
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
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;
|
|
583
593
|
}, {}>;
|
|
584
594
|
MChart: DefineComponent< {
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
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;
|
|
596
616
|
}, {}>;
|
|
597
617
|
Checkbox: DefineComponent< {
|
|
598
618
|
tag: {
|
|
@@ -1410,30 +1430,30 @@ export declare const Components: {
|
|
|
1410
1430
|
inherit: boolean;
|
|
1411
1431
|
}, {}>;
|
|
1412
1432
|
Image: DefineComponent< {
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1433
|
+
src: StringConstructor;
|
|
1434
|
+
fit: StringConstructor;
|
|
1435
|
+
lazy: BooleanConstructor;
|
|
1436
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1417
1437
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1438
|
+
src: StringConstructor;
|
|
1439
|
+
fit: StringConstructor;
|
|
1440
|
+
lazy: BooleanConstructor;
|
|
1441
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1422
1442
|
}>>, {
|
|
1423
|
-
|
|
1443
|
+
lazy: boolean;
|
|
1424
1444
|
}, {}>;
|
|
1425
1445
|
MImage: DefineComponent< {
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1446
|
+
src: StringConstructor;
|
|
1447
|
+
fit: StringConstructor;
|
|
1448
|
+
lazy: BooleanConstructor;
|
|
1449
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1430
1450
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1451
|
+
src: StringConstructor;
|
|
1452
|
+
fit: StringConstructor;
|
|
1453
|
+
lazy: BooleanConstructor;
|
|
1454
|
+
wrapper: (ObjectConstructor | StringConstructor)[];
|
|
1435
1455
|
}>>, {
|
|
1436
|
-
|
|
1456
|
+
lazy: boolean;
|
|
1437
1457
|
}, {}>;
|
|
1438
1458
|
ImageCrop: DefineComponent< {
|
|
1439
1459
|
tag: {
|
|
@@ -2731,28 +2751,28 @@ export declare const Components: {
|
|
|
2731
2751
|
}, {}>;
|
|
2732
2752
|
Popover: DefineComponent< {
|
|
2733
2753
|
modelValue: BooleanConstructor;
|
|
2754
|
+
theme: {
|
|
2755
|
+
type: StringConstructor;
|
|
2756
|
+
default: string;
|
|
2757
|
+
validator: (v: string) => boolean;
|
|
2758
|
+
};
|
|
2734
2759
|
content: (StringConstructor | FunctionConstructor)[];
|
|
2735
2760
|
portal: {
|
|
2736
2761
|
type: BooleanConstructor;
|
|
2737
2762
|
default: boolean;
|
|
2738
2763
|
};
|
|
2739
2764
|
always: BooleanConstructor;
|
|
2765
|
+
animation: StringConstructor;
|
|
2740
2766
|
arrow: {
|
|
2741
2767
|
type: BooleanConstructor;
|
|
2742
2768
|
default: boolean;
|
|
2743
2769
|
};
|
|
2744
2770
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
2745
|
-
animation: StringConstructor;
|
|
2746
2771
|
placement: {
|
|
2747
2772
|
type: StringConstructor;
|
|
2748
2773
|
default: string;
|
|
2749
2774
|
validator: (value: string) => boolean;
|
|
2750
2775
|
};
|
|
2751
|
-
theme: {
|
|
2752
|
-
type: StringConstructor;
|
|
2753
|
-
default: string;
|
|
2754
|
-
validator: (v: string) => boolean;
|
|
2755
|
-
};
|
|
2756
2776
|
getPopupContainer: FunctionConstructor;
|
|
2757
2777
|
autoWidth: {
|
|
2758
2778
|
type: BooleanConstructor;
|
|
@@ -2780,28 +2800,28 @@ export declare const Components: {
|
|
|
2780
2800
|
[key: string]: any;
|
|
2781
2801
|
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2782
2802
|
modelValue: BooleanConstructor;
|
|
2803
|
+
theme: {
|
|
2804
|
+
type: StringConstructor;
|
|
2805
|
+
default: string;
|
|
2806
|
+
validator: (v: string) => boolean;
|
|
2807
|
+
};
|
|
2783
2808
|
content: (StringConstructor | FunctionConstructor)[];
|
|
2784
2809
|
portal: {
|
|
2785
2810
|
type: BooleanConstructor;
|
|
2786
2811
|
default: boolean;
|
|
2787
2812
|
};
|
|
2788
2813
|
always: BooleanConstructor;
|
|
2814
|
+
animation: StringConstructor;
|
|
2789
2815
|
arrow: {
|
|
2790
2816
|
type: BooleanConstructor;
|
|
2791
2817
|
default: boolean;
|
|
2792
2818
|
};
|
|
2793
2819
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
2794
|
-
animation: StringConstructor;
|
|
2795
2820
|
placement: {
|
|
2796
2821
|
type: StringConstructor;
|
|
2797
2822
|
default: string;
|
|
2798
2823
|
validator: (value: string) => boolean;
|
|
2799
2824
|
};
|
|
2800
|
-
theme: {
|
|
2801
|
-
type: StringConstructor;
|
|
2802
|
-
default: string;
|
|
2803
|
-
validator: (v: string) => boolean;
|
|
2804
|
-
};
|
|
2805
2825
|
getPopupContainer: FunctionConstructor;
|
|
2806
2826
|
autoWidth: {
|
|
2807
2827
|
type: BooleanConstructor;
|
|
@@ -2834,39 +2854,39 @@ export declare const Components: {
|
|
|
2834
2854
|
tag: string;
|
|
2835
2855
|
modelValue: boolean;
|
|
2836
2856
|
disabled: boolean;
|
|
2857
|
+
theme: string;
|
|
2837
2858
|
portal: boolean;
|
|
2838
2859
|
always: boolean;
|
|
2839
2860
|
arrow: boolean;
|
|
2840
2861
|
placement: string;
|
|
2841
|
-
theme: string;
|
|
2842
2862
|
autoWidth: boolean;
|
|
2843
2863
|
trigger: string;
|
|
2844
2864
|
outsideClickable: boolean;
|
|
2845
2865
|
}, {}>;
|
|
2846
2866
|
MPopover: DefineComponent< {
|
|
2847
2867
|
modelValue: BooleanConstructor;
|
|
2868
|
+
theme: {
|
|
2869
|
+
type: StringConstructor;
|
|
2870
|
+
default: string;
|
|
2871
|
+
validator: (v: string) => boolean;
|
|
2872
|
+
};
|
|
2848
2873
|
content: (StringConstructor | FunctionConstructor)[];
|
|
2849
2874
|
portal: {
|
|
2850
2875
|
type: BooleanConstructor;
|
|
2851
2876
|
default: boolean;
|
|
2852
2877
|
};
|
|
2853
2878
|
always: BooleanConstructor;
|
|
2879
|
+
animation: StringConstructor;
|
|
2854
2880
|
arrow: {
|
|
2855
2881
|
type: BooleanConstructor;
|
|
2856
2882
|
default: boolean;
|
|
2857
2883
|
};
|
|
2858
2884
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
2859
|
-
animation: StringConstructor;
|
|
2860
2885
|
placement: {
|
|
2861
2886
|
type: StringConstructor;
|
|
2862
2887
|
default: string;
|
|
2863
2888
|
validator: (value: string) => boolean;
|
|
2864
2889
|
};
|
|
2865
|
-
theme: {
|
|
2866
|
-
type: StringConstructor;
|
|
2867
|
-
default: string;
|
|
2868
|
-
validator: (v: string) => boolean;
|
|
2869
|
-
};
|
|
2870
2890
|
getPopupContainer: FunctionConstructor;
|
|
2871
2891
|
autoWidth: {
|
|
2872
2892
|
type: BooleanConstructor;
|
|
@@ -2894,28 +2914,28 @@ export declare const Components: {
|
|
|
2894
2914
|
[key: string]: any;
|
|
2895
2915
|
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("close" | "update:modelValue" | "visible-change" | "ready")[], "close" | "update:modelValue" | "visible-change" | "ready", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
2896
2916
|
modelValue: BooleanConstructor;
|
|
2917
|
+
theme: {
|
|
2918
|
+
type: StringConstructor;
|
|
2919
|
+
default: string;
|
|
2920
|
+
validator: (v: string) => boolean;
|
|
2921
|
+
};
|
|
2897
2922
|
content: (StringConstructor | FunctionConstructor)[];
|
|
2898
2923
|
portal: {
|
|
2899
2924
|
type: BooleanConstructor;
|
|
2900
2925
|
default: boolean;
|
|
2901
2926
|
};
|
|
2902
2927
|
always: BooleanConstructor;
|
|
2928
|
+
animation: StringConstructor;
|
|
2903
2929
|
arrow: {
|
|
2904
2930
|
type: BooleanConstructor;
|
|
2905
2931
|
default: boolean;
|
|
2906
2932
|
};
|
|
2907
2933
|
portalClass: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
2908
|
-
animation: StringConstructor;
|
|
2909
2934
|
placement: {
|
|
2910
2935
|
type: StringConstructor;
|
|
2911
2936
|
default: string;
|
|
2912
2937
|
validator: (value: string) => boolean;
|
|
2913
2938
|
};
|
|
2914
|
-
theme: {
|
|
2915
|
-
type: StringConstructor;
|
|
2916
|
-
default: string;
|
|
2917
|
-
validator: (v: string) => boolean;
|
|
2918
|
-
};
|
|
2919
2939
|
getPopupContainer: FunctionConstructor;
|
|
2920
2940
|
autoWidth: {
|
|
2921
2941
|
type: BooleanConstructor;
|
|
@@ -2948,11 +2968,11 @@ export declare const Components: {
|
|
|
2948
2968
|
tag: string;
|
|
2949
2969
|
modelValue: boolean;
|
|
2950
2970
|
disabled: boolean;
|
|
2971
|
+
theme: string;
|
|
2951
2972
|
portal: boolean;
|
|
2952
2973
|
always: boolean;
|
|
2953
2974
|
arrow: boolean;
|
|
2954
2975
|
placement: string;
|
|
2955
|
-
theme: string;
|
|
2956
2976
|
autoWidth: boolean;
|
|
2957
2977
|
trigger: string;
|
|
2958
2978
|
outsideClickable: boolean;
|
|
@@ -3303,7 +3323,41 @@ export declare const Components: {
|
|
|
3303
3323
|
inverted: boolean;
|
|
3304
3324
|
pullable: boolean;
|
|
3305
3325
|
}, {}>;
|
|
3326
|
+
Resizer: DefineComponent< {
|
|
3327
|
+
tag: {
|
|
3328
|
+
type: StringConstructor;
|
|
3329
|
+
default: string;
|
|
3330
|
+
};
|
|
3331
|
+
}, () => VNode<RendererNode, RendererElement, {
|
|
3332
|
+
[key: string]: any;
|
|
3333
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3334
|
+
tag: {
|
|
3335
|
+
type: StringConstructor;
|
|
3336
|
+
default: string;
|
|
3337
|
+
};
|
|
3338
|
+
}>>, {
|
|
3339
|
+
tag: string;
|
|
3340
|
+
}, {}>;
|
|
3341
|
+
MResizer: DefineComponent< {
|
|
3342
|
+
tag: {
|
|
3343
|
+
type: StringConstructor;
|
|
3344
|
+
default: string;
|
|
3345
|
+
};
|
|
3346
|
+
}, () => VNode<RendererNode, RendererElement, {
|
|
3347
|
+
[key: string]: any;
|
|
3348
|
+
}>, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3349
|
+
tag: {
|
|
3350
|
+
type: StringConstructor;
|
|
3351
|
+
default: string;
|
|
3352
|
+
};
|
|
3353
|
+
}>>, {
|
|
3354
|
+
tag: string;
|
|
3355
|
+
}, {}>;
|
|
3306
3356
|
Scroller: DefineComponent< {
|
|
3357
|
+
autoResize: {
|
|
3358
|
+
type: BooleanConstructor;
|
|
3359
|
+
default: boolean;
|
|
3360
|
+
};
|
|
3307
3361
|
always: {
|
|
3308
3362
|
type: BooleanConstructor;
|
|
3309
3363
|
default: boolean;
|
|
@@ -3318,10 +3372,6 @@ export declare const Components: {
|
|
|
3318
3372
|
type: BooleanConstructor;
|
|
3319
3373
|
default: boolean;
|
|
3320
3374
|
};
|
|
3321
|
-
autoResize: {
|
|
3322
|
-
type: BooleanConstructor;
|
|
3323
|
-
default: boolean;
|
|
3324
|
-
};
|
|
3325
3375
|
trackOffsetX: {
|
|
3326
3376
|
type: PropType<number[]>;
|
|
3327
3377
|
default: () => number[];
|
|
@@ -3366,6 +3416,10 @@ export declare const Components: {
|
|
|
3366
3416
|
};
|
|
3367
3417
|
barTo: StringConstructor;
|
|
3368
3418
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3419
|
+
autoResize: {
|
|
3420
|
+
type: BooleanConstructor;
|
|
3421
|
+
default: boolean;
|
|
3422
|
+
};
|
|
3369
3423
|
always: {
|
|
3370
3424
|
type: BooleanConstructor;
|
|
3371
3425
|
default: boolean;
|
|
@@ -3380,10 +3434,6 @@ export declare const Components: {
|
|
|
3380
3434
|
type: BooleanConstructor;
|
|
3381
3435
|
default: boolean;
|
|
3382
3436
|
};
|
|
3383
|
-
autoResize: {
|
|
3384
|
-
type: BooleanConstructor;
|
|
3385
|
-
default: boolean;
|
|
3386
|
-
};
|
|
3387
3437
|
trackOffsetX: {
|
|
3388
3438
|
type: PropType<number[]>;
|
|
3389
3439
|
default: () => number[];
|
|
@@ -3431,14 +3481,14 @@ export declare const Components: {
|
|
|
3431
3481
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3432
3482
|
}, {
|
|
3433
3483
|
tag: string;
|
|
3484
|
+
autoResize: boolean;
|
|
3434
3485
|
contentStyle: StyleValue;
|
|
3435
|
-
always: boolean;
|
|
3436
|
-
wrapperStyle: StyleValue;
|
|
3437
3486
|
height: string | number;
|
|
3487
|
+
always: boolean;
|
|
3438
3488
|
maxHeight: string | number;
|
|
3489
|
+
wrapperStyle: StyleValue;
|
|
3439
3490
|
thumbMinSize: number;
|
|
3440
3491
|
native: boolean;
|
|
3441
|
-
autoResize: boolean;
|
|
3442
3492
|
trackOffsetX: number[];
|
|
3443
3493
|
trackOffsetY: number[];
|
|
3444
3494
|
wrapperClass: StyleValue;
|
|
@@ -3446,6 +3496,10 @@ export declare const Components: {
|
|
|
3446
3496
|
showBar: boolean;
|
|
3447
3497
|
}, {}>;
|
|
3448
3498
|
MScroller: DefineComponent< {
|
|
3499
|
+
autoResize: {
|
|
3500
|
+
type: BooleanConstructor;
|
|
3501
|
+
default: boolean;
|
|
3502
|
+
};
|
|
3449
3503
|
always: {
|
|
3450
3504
|
type: BooleanConstructor;
|
|
3451
3505
|
default: boolean;
|
|
@@ -3460,10 +3514,6 @@ export declare const Components: {
|
|
|
3460
3514
|
type: BooleanConstructor;
|
|
3461
3515
|
default: boolean;
|
|
3462
3516
|
};
|
|
3463
|
-
autoResize: {
|
|
3464
|
-
type: BooleanConstructor;
|
|
3465
|
-
default: boolean;
|
|
3466
|
-
};
|
|
3467
3517
|
trackOffsetX: {
|
|
3468
3518
|
type: PropType<number[]>;
|
|
3469
3519
|
default: () => number[];
|
|
@@ -3508,6 +3558,10 @@ export declare const Components: {
|
|
|
3508
3558
|
};
|
|
3509
3559
|
barTo: StringConstructor;
|
|
3510
3560
|
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, "scroll"[], "scroll", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3561
|
+
autoResize: {
|
|
3562
|
+
type: BooleanConstructor;
|
|
3563
|
+
default: boolean;
|
|
3564
|
+
};
|
|
3511
3565
|
always: {
|
|
3512
3566
|
type: BooleanConstructor;
|
|
3513
3567
|
default: boolean;
|
|
@@ -3522,10 +3576,6 @@ export declare const Components: {
|
|
|
3522
3576
|
type: BooleanConstructor;
|
|
3523
3577
|
default: boolean;
|
|
3524
3578
|
};
|
|
3525
|
-
autoResize: {
|
|
3526
|
-
type: BooleanConstructor;
|
|
3527
|
-
default: boolean;
|
|
3528
|
-
};
|
|
3529
3579
|
trackOffsetX: {
|
|
3530
3580
|
type: PropType<number[]>;
|
|
3531
3581
|
default: () => number[];
|
|
@@ -3573,14 +3623,14 @@ export declare const Components: {
|
|
|
3573
3623
|
onScroll?: ((...args: any[]) => any) | undefined;
|
|
3574
3624
|
}, {
|
|
3575
3625
|
tag: string;
|
|
3626
|
+
autoResize: boolean;
|
|
3576
3627
|
contentStyle: StyleValue;
|
|
3577
|
-
always: boolean;
|
|
3578
|
-
wrapperStyle: StyleValue;
|
|
3579
3628
|
height: string | number;
|
|
3629
|
+
always: boolean;
|
|
3580
3630
|
maxHeight: string | number;
|
|
3631
|
+
wrapperStyle: StyleValue;
|
|
3581
3632
|
thumbMinSize: number;
|
|
3582
3633
|
native: boolean;
|
|
3583
|
-
autoResize: boolean;
|
|
3584
3634
|
trackOffsetX: number[];
|
|
3585
3635
|
trackOffsetY: number[];
|
|
3586
3636
|
wrapperClass: StyleValue;
|
|
@@ -3824,30 +3874,182 @@ export declare const Components: {
|
|
|
3824
3874
|
tag: string;
|
|
3825
3875
|
}, {}>;
|
|
3826
3876
|
Tabs: DefineComponent< {
|
|
3827
|
-
|
|
3877
|
+
type: {
|
|
3828
3878
|
type: StringConstructor;
|
|
3879
|
+
validator: (v: string) => boolean;
|
|
3829
3880
|
default: string;
|
|
3830
3881
|
};
|
|
3831
|
-
|
|
3832
|
-
|
|
3882
|
+
modelValue: {
|
|
3883
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3884
|
+
};
|
|
3885
|
+
animated: {
|
|
3886
|
+
type: BooleanConstructor;
|
|
3887
|
+
default: boolean;
|
|
3888
|
+
};
|
|
3889
|
+
afloat: {
|
|
3890
|
+
type: BooleanConstructor;
|
|
3891
|
+
default: boolean;
|
|
3892
|
+
};
|
|
3893
|
+
closable: {
|
|
3894
|
+
type: BooleanConstructor;
|
|
3895
|
+
default: boolean;
|
|
3896
|
+
};
|
|
3897
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3898
|
+
type: {
|
|
3833
3899
|
type: StringConstructor;
|
|
3900
|
+
validator: (v: string) => boolean;
|
|
3834
3901
|
default: string;
|
|
3835
3902
|
};
|
|
3836
|
-
|
|
3837
|
-
|
|
3903
|
+
modelValue: {
|
|
3904
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3905
|
+
};
|
|
3906
|
+
animated: {
|
|
3907
|
+
type: BooleanConstructor;
|
|
3908
|
+
default: boolean;
|
|
3909
|
+
};
|
|
3910
|
+
afloat: {
|
|
3911
|
+
type: BooleanConstructor;
|
|
3912
|
+
default: boolean;
|
|
3913
|
+
};
|
|
3914
|
+
closable: {
|
|
3915
|
+
type: BooleanConstructor;
|
|
3916
|
+
default: boolean;
|
|
3917
|
+
};
|
|
3918
|
+
}>> & {
|
|
3919
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
3920
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
3921
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3922
|
+
}, {
|
|
3923
|
+
type: string;
|
|
3924
|
+
closable: boolean;
|
|
3925
|
+
afloat: boolean;
|
|
3926
|
+
animated: boolean;
|
|
3838
3927
|
}, {}>;
|
|
3839
3928
|
MTabs: DefineComponent< {
|
|
3840
|
-
|
|
3929
|
+
type: {
|
|
3841
3930
|
type: StringConstructor;
|
|
3931
|
+
validator: (v: string) => boolean;
|
|
3842
3932
|
default: string;
|
|
3843
3933
|
};
|
|
3844
|
-
|
|
3845
|
-
|
|
3934
|
+
modelValue: {
|
|
3935
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3936
|
+
};
|
|
3937
|
+
animated: {
|
|
3938
|
+
type: BooleanConstructor;
|
|
3939
|
+
default: boolean;
|
|
3940
|
+
};
|
|
3941
|
+
afloat: {
|
|
3942
|
+
type: BooleanConstructor;
|
|
3943
|
+
default: boolean;
|
|
3944
|
+
};
|
|
3945
|
+
closable: {
|
|
3946
|
+
type: BooleanConstructor;
|
|
3947
|
+
default: boolean;
|
|
3948
|
+
};
|
|
3949
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3950
|
+
type: {
|
|
3846
3951
|
type: StringConstructor;
|
|
3952
|
+
validator: (v: string) => boolean;
|
|
3953
|
+
default: string;
|
|
3954
|
+
};
|
|
3955
|
+
modelValue: {
|
|
3956
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3957
|
+
};
|
|
3958
|
+
animated: {
|
|
3959
|
+
type: BooleanConstructor;
|
|
3960
|
+
default: boolean;
|
|
3961
|
+
};
|
|
3962
|
+
afloat: {
|
|
3963
|
+
type: BooleanConstructor;
|
|
3964
|
+
default: boolean;
|
|
3965
|
+
};
|
|
3966
|
+
closable: {
|
|
3967
|
+
type: BooleanConstructor;
|
|
3968
|
+
default: boolean;
|
|
3969
|
+
};
|
|
3970
|
+
}>> & {
|
|
3971
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
3972
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
3973
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
3974
|
+
}, {
|
|
3975
|
+
type: string;
|
|
3976
|
+
closable: boolean;
|
|
3977
|
+
afloat: boolean;
|
|
3978
|
+
animated: boolean;
|
|
3979
|
+
}, {}>;
|
|
3980
|
+
TabsPane: DefineComponent< {
|
|
3981
|
+
value: {
|
|
3982
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3983
|
+
};
|
|
3984
|
+
label: {
|
|
3985
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
3986
|
+
default: string;
|
|
3987
|
+
};
|
|
3988
|
+
lazy: {
|
|
3989
|
+
type: BooleanConstructor;
|
|
3990
|
+
default: boolean;
|
|
3991
|
+
};
|
|
3992
|
+
closable: {
|
|
3993
|
+
type: BooleanConstructor;
|
|
3994
|
+
default: boolean;
|
|
3995
|
+
};
|
|
3996
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
3997
|
+
value: {
|
|
3998
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
3999
|
+
};
|
|
4000
|
+
label: {
|
|
4001
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
3847
4002
|
default: string;
|
|
3848
4003
|
};
|
|
4004
|
+
lazy: {
|
|
4005
|
+
type: BooleanConstructor;
|
|
4006
|
+
default: boolean;
|
|
4007
|
+
};
|
|
4008
|
+
closable: {
|
|
4009
|
+
type: BooleanConstructor;
|
|
4010
|
+
default: boolean;
|
|
4011
|
+
};
|
|
3849
4012
|
}>>, {
|
|
3850
|
-
|
|
4013
|
+
label: string | Function;
|
|
4014
|
+
closable: boolean;
|
|
4015
|
+
lazy: boolean;
|
|
4016
|
+
}, {}>;
|
|
4017
|
+
MTabsPane: DefineComponent< {
|
|
4018
|
+
value: {
|
|
4019
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4020
|
+
};
|
|
4021
|
+
label: {
|
|
4022
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
4023
|
+
default: string;
|
|
4024
|
+
};
|
|
4025
|
+
lazy: {
|
|
4026
|
+
type: BooleanConstructor;
|
|
4027
|
+
default: boolean;
|
|
4028
|
+
};
|
|
4029
|
+
closable: {
|
|
4030
|
+
type: BooleanConstructor;
|
|
4031
|
+
default: boolean;
|
|
4032
|
+
};
|
|
4033
|
+
}, () => JSX_2.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, VNodeProps & AllowedComponentProps & ComponentCustomProps, Readonly<ExtractPropTypes< {
|
|
4034
|
+
value: {
|
|
4035
|
+
type: (StringConstructor | NumberConstructor)[];
|
|
4036
|
+
};
|
|
4037
|
+
label: {
|
|
4038
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
4039
|
+
default: string;
|
|
4040
|
+
};
|
|
4041
|
+
lazy: {
|
|
4042
|
+
type: BooleanConstructor;
|
|
4043
|
+
default: boolean;
|
|
4044
|
+
};
|
|
4045
|
+
closable: {
|
|
4046
|
+
type: BooleanConstructor;
|
|
4047
|
+
default: boolean;
|
|
4048
|
+
};
|
|
4049
|
+
}>>, {
|
|
4050
|
+
label: string | Function;
|
|
4051
|
+
closable: boolean;
|
|
4052
|
+
lazy: boolean;
|
|
3851
4053
|
}, {}>;
|
|
3852
4054
|
Tag: DefineComponent< {
|
|
3853
4055
|
tag: {
|
|
@@ -5040,6 +5242,7 @@ export declare const createVcPlugin: (options?: VcOptions, transfromComponentKey
|
|
|
5040
5242
|
export { Utils }
|
|
5041
5243
|
|
|
5042
5244
|
|
|
5245
|
+
export * from "@deot/vc-components";
|
|
5043
5246
|
export * from "@deot/vc-hooks";
|
|
5044
5247
|
|
|
5045
5248
|
export { }
|