@deot/vc 1.0.23 → 1.0.25
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 +459 -54
- package/dist/index.iife.js +36819 -27243
- package/dist/index.umd.cjs +36819 -27243
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -1601,6 +1601,8 @@ export declare const Components: {
|
|
|
1601
1601
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
1602
1602
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
1603
1603
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
1604
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1605
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
1604
1606
|
closeWithCancel: {
|
|
1605
1607
|
type: BooleanConstructor;
|
|
1606
1608
|
default: boolean;
|
|
@@ -1694,6 +1696,8 @@ export declare const Components: {
|
|
|
1694
1696
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
1695
1697
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
1696
1698
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
1699
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1700
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
1697
1701
|
closeWithCancel: {
|
|
1698
1702
|
type: BooleanConstructor;
|
|
1699
1703
|
default: boolean;
|
|
@@ -1784,6 +1788,8 @@ export declare const Components: {
|
|
|
1784
1788
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
1785
1789
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
1786
1790
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
1791
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1792
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
1787
1793
|
closeWithCancel: {
|
|
1788
1794
|
type: BooleanConstructor;
|
|
1789
1795
|
default: boolean;
|
|
@@ -1855,6 +1861,8 @@ export declare const Components: {
|
|
|
1855
1861
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
1856
1862
|
onOk?: Function | undefined;
|
|
1857
1863
|
wrapperClass?: string | Record<string, any> | undefined;
|
|
1864
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
1865
|
+
contentClass?: string | Record<string, any> | undefined;
|
|
1858
1866
|
maskStyle?: string | Record<string, any> | undefined;
|
|
1859
1867
|
} & {
|
|
1860
1868
|
onClose: (...args: any[]) => any;
|
|
@@ -1899,6 +1907,8 @@ export declare const Components: {
|
|
|
1899
1907
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
1900
1908
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
1901
1909
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
1910
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
1911
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
1902
1912
|
closeWithCancel: {
|
|
1903
1913
|
type: BooleanConstructor;
|
|
1904
1914
|
default: boolean;
|
|
@@ -1992,6 +2002,8 @@ export declare const Components: {
|
|
|
1992
2002
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
1993
2003
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
1994
2004
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2005
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2006
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
1995
2007
|
closeWithCancel: {
|
|
1996
2008
|
type: BooleanConstructor;
|
|
1997
2009
|
default: boolean;
|
|
@@ -2082,6 +2094,8 @@ export declare const Components: {
|
|
|
2082
2094
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2083
2095
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2084
2096
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2097
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2098
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2085
2099
|
closeWithCancel: {
|
|
2086
2100
|
type: BooleanConstructor;
|
|
2087
2101
|
default: boolean;
|
|
@@ -2153,6 +2167,8 @@ export declare const Components: {
|
|
|
2153
2167
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
2154
2168
|
onOk?: Function | undefined;
|
|
2155
2169
|
wrapperClass?: string | Record<string, any> | undefined;
|
|
2170
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
2171
|
+
contentClass?: string | Record<string, any> | undefined;
|
|
2156
2172
|
maskStyle?: string | Record<string, any> | undefined;
|
|
2157
2173
|
} & {
|
|
2158
2174
|
onClose: (...args: any[]) => any;
|
|
@@ -2196,6 +2212,8 @@ export declare const Components: {
|
|
|
2196
2212
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2197
2213
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2198
2214
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2215
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2216
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2199
2217
|
closeWithCancel: {
|
|
2200
2218
|
type: BooleanConstructor;
|
|
2201
2219
|
default: boolean;
|
|
@@ -2263,6 +2281,8 @@ export declare const Components: {
|
|
|
2263
2281
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2264
2282
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2265
2283
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2284
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2285
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2266
2286
|
closeWithCancel: {
|
|
2267
2287
|
type: BooleanConstructor;
|
|
2268
2288
|
default: boolean;
|
|
@@ -2350,6 +2370,8 @@ export declare const Components: {
|
|
|
2350
2370
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2351
2371
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2352
2372
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2373
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2374
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2353
2375
|
closeWithCancel: {
|
|
2354
2376
|
type: BooleanConstructor;
|
|
2355
2377
|
default: boolean;
|
|
@@ -2417,6 +2439,8 @@ export declare const Components: {
|
|
|
2417
2439
|
maskStyle: (ObjectConstructor | StringConstructor)[];
|
|
2418
2440
|
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
2419
2441
|
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
2442
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2443
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2420
2444
|
closeWithCancel: {
|
|
2421
2445
|
type: BooleanConstructor;
|
|
2422
2446
|
default: boolean;
|
|
@@ -2797,9 +2821,11 @@ export declare const Components: {
|
|
|
2797
2821
|
};
|
|
2798
2822
|
labelPosition: {
|
|
2799
2823
|
type: PropType<"left" | "right" | "top">;
|
|
2800
|
-
default: string;
|
|
2801
2824
|
};
|
|
2802
|
-
contentStyle: StringConstructor;
|
|
2825
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2826
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2827
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
2828
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
2803
2829
|
}>, () => JSX_2.Element | (VNode<RendererNode, RendererElement, {
|
|
2804
2830
|
[key: string]: any;
|
|
2805
2831
|
}>[] | undefined)[], {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -2844,15 +2870,16 @@ export declare const Components: {
|
|
|
2844
2870
|
};
|
|
2845
2871
|
labelPosition: {
|
|
2846
2872
|
type: PropType<"left" | "right" | "top">;
|
|
2847
|
-
default: string;
|
|
2848
2873
|
};
|
|
2849
|
-
contentStyle: StringConstructor;
|
|
2874
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2875
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2876
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
2877
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
2850
2878
|
}>> & Readonly<{}>, {
|
|
2851
2879
|
label: string;
|
|
2852
2880
|
styleless: boolean;
|
|
2853
2881
|
required: string | boolean;
|
|
2854
2882
|
showMessage: boolean;
|
|
2855
|
-
labelPosition: "left" | "top" | "right";
|
|
2856
2883
|
asterisk: boolean;
|
|
2857
2884
|
resetByRulesChanged: boolean;
|
|
2858
2885
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
@@ -2902,9 +2929,11 @@ export declare const Components: {
|
|
|
2902
2929
|
};
|
|
2903
2930
|
labelPosition: {
|
|
2904
2931
|
type: PropType<"left" | "right" | "top">;
|
|
2905
|
-
default: string;
|
|
2906
2932
|
};
|
|
2907
|
-
contentStyle: StringConstructor;
|
|
2933
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2934
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2935
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
2936
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
2908
2937
|
}>, () => JSX_2.Element | (VNode<RendererNode, RendererElement, {
|
|
2909
2938
|
[key: string]: any;
|
|
2910
2939
|
}>[] | undefined)[], {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<ExtractPropTypes< {
|
|
@@ -2953,15 +2982,16 @@ export declare const Components: {
|
|
|
2953
2982
|
};
|
|
2954
2983
|
labelPosition: {
|
|
2955
2984
|
type: PropType<"left" | "right" | "top">;
|
|
2956
|
-
default: string;
|
|
2957
2985
|
};
|
|
2958
|
-
contentStyle: StringConstructor;
|
|
2986
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
2987
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
2988
|
+
labelStyle: (ObjectConstructor | StringConstructor)[];
|
|
2989
|
+
labelClass: (ObjectConstructor | StringConstructor)[];
|
|
2959
2990
|
}>> & Readonly<{}>, {
|
|
2960
2991
|
label: string;
|
|
2961
2992
|
styleless: boolean;
|
|
2962
2993
|
required: string | boolean;
|
|
2963
2994
|
showMessage: boolean;
|
|
2964
|
-
labelPosition: "left" | "top" | "right";
|
|
2965
2995
|
asterisk: boolean;
|
|
2966
2996
|
resetByRulesChanged: boolean;
|
|
2967
2997
|
indent: number;
|
|
@@ -3080,32 +3110,86 @@ export declare const Components: {
|
|
|
3080
3110
|
}>> & Readonly<{}>, {
|
|
3081
3111
|
tag: string;
|
|
3082
3112
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
3083
|
-
ImagePreview:
|
|
3084
|
-
|
|
3085
|
-
|
|
3086
|
-
|
|
3087
|
-
|
|
3088
|
-
|
|
3113
|
+
ImagePreview: {
|
|
3114
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
3115
|
+
tag: {
|
|
3116
|
+
type: StringConstructor;
|
|
3117
|
+
default: string;
|
|
3118
|
+
};
|
|
3119
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3120
|
+
tag: string;
|
|
3121
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
3122
|
+
P: {};
|
|
3123
|
+
B: {};
|
|
3124
|
+
D: {};
|
|
3125
|
+
C: {};
|
|
3126
|
+
M: {};
|
|
3127
|
+
Defaults: {};
|
|
3128
|
+
}, Readonly<ExtractPropTypes< {
|
|
3129
|
+
tag: {
|
|
3130
|
+
type: StringConstructor;
|
|
3131
|
+
default: string;
|
|
3132
|
+
};
|
|
3133
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, {
|
|
3134
|
+
tag: string;
|
|
3135
|
+
}>;
|
|
3136
|
+
__isFragment?: never;
|
|
3137
|
+
__isTeleport?: never;
|
|
3138
|
+
__isSuspense?: never;
|
|
3139
|
+
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
3089
3140
|
tag: {
|
|
3090
3141
|
type: StringConstructor;
|
|
3091
3142
|
default: string;
|
|
3092
3143
|
};
|
|
3093
|
-
}>> & Readonly<{}>, {
|
|
3144
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3094
3145
|
tag: string;
|
|
3095
|
-
}, {},
|
|
3096
|
-
|
|
3097
|
-
|
|
3098
|
-
|
|
3099
|
-
|
|
3146
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
3147
|
+
open: (options: {
|
|
3148
|
+
current?: number;
|
|
3149
|
+
data: any[];
|
|
3150
|
+
onClose: any;
|
|
3151
|
+
}) => Promise<void>;
|
|
3100
3152
|
};
|
|
3101
|
-
|
|
3153
|
+
MImagePreview: {
|
|
3154
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly<ExtractPropTypes< {
|
|
3155
|
+
tag: {
|
|
3156
|
+
type: StringConstructor;
|
|
3157
|
+
default: string;
|
|
3158
|
+
};
|
|
3159
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
3160
|
+
tag: string;
|
|
3161
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
3162
|
+
P: {};
|
|
3163
|
+
B: {};
|
|
3164
|
+
D: {};
|
|
3165
|
+
C: {};
|
|
3166
|
+
M: {};
|
|
3167
|
+
Defaults: {};
|
|
3168
|
+
}, Readonly<ExtractPropTypes< {
|
|
3169
|
+
tag: {
|
|
3170
|
+
type: StringConstructor;
|
|
3171
|
+
default: string;
|
|
3172
|
+
};
|
|
3173
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, {
|
|
3174
|
+
tag: string;
|
|
3175
|
+
}>;
|
|
3176
|
+
__isFragment?: never;
|
|
3177
|
+
__isTeleport?: never;
|
|
3178
|
+
__isSuspense?: never;
|
|
3179
|
+
} & ComponentOptionsBase<Readonly<ExtractPropTypes< {
|
|
3102
3180
|
tag: {
|
|
3103
3181
|
type: StringConstructor;
|
|
3104
3182
|
default: string;
|
|
3105
3183
|
};
|
|
3106
|
-
}>> & Readonly<{}>, {
|
|
3184
|
+
}>> & Readonly<{}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
3107
3185
|
tag: string;
|
|
3108
|
-
}, {},
|
|
3186
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & {
|
|
3187
|
+
open: (options: {
|
|
3188
|
+
current?: number;
|
|
3189
|
+
data: any[];
|
|
3190
|
+
onClose: any;
|
|
3191
|
+
}) => Promise<void>;
|
|
3192
|
+
};
|
|
3109
3193
|
ImageProcessing: DefineComponent<ExtractPropTypes< {
|
|
3110
3194
|
tag: {
|
|
3111
3195
|
type: StringConstructor;
|
|
@@ -4275,10 +4359,14 @@ export declare const Components: {
|
|
|
4275
4359
|
validator: (v: string) => boolean;
|
|
4276
4360
|
default: string;
|
|
4277
4361
|
};
|
|
4362
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4278
4363
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
4279
4364
|
width: {
|
|
4280
4365
|
type: NumberConstructor;
|
|
4281
4366
|
};
|
|
4367
|
+
height: {
|
|
4368
|
+
type: NumberConstructor;
|
|
4369
|
+
};
|
|
4282
4370
|
mask: {
|
|
4283
4371
|
type: BooleanConstructor;
|
|
4284
4372
|
default: boolean;
|
|
@@ -4316,9 +4404,8 @@ export declare const Components: {
|
|
|
4316
4404
|
type: (StringConstructor | BooleanConstructor)[];
|
|
4317
4405
|
default: string;
|
|
4318
4406
|
};
|
|
4319
|
-
wrapperStyle:
|
|
4320
|
-
|
|
4321
|
-
};
|
|
4407
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
4408
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
4322
4409
|
footer: {
|
|
4323
4410
|
type: BooleanConstructor;
|
|
4324
4411
|
default: boolean;
|
|
@@ -4390,10 +4477,14 @@ export declare const Components: {
|
|
|
4390
4477
|
validator: (v: string) => boolean;
|
|
4391
4478
|
default: string;
|
|
4392
4479
|
};
|
|
4480
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4393
4481
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
4394
4482
|
width: {
|
|
4395
4483
|
type: NumberConstructor;
|
|
4396
4484
|
};
|
|
4485
|
+
height: {
|
|
4486
|
+
type: NumberConstructor;
|
|
4487
|
+
};
|
|
4397
4488
|
mask: {
|
|
4398
4489
|
type: BooleanConstructor;
|
|
4399
4490
|
default: boolean;
|
|
@@ -4431,9 +4522,8 @@ export declare const Components: {
|
|
|
4431
4522
|
type: (StringConstructor | BooleanConstructor)[];
|
|
4432
4523
|
default: string;
|
|
4433
4524
|
};
|
|
4434
|
-
wrapperStyle:
|
|
4435
|
-
|
|
4436
|
-
};
|
|
4525
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
4526
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
4437
4527
|
footer: {
|
|
4438
4528
|
type: BooleanConstructor;
|
|
4439
4529
|
default: boolean;
|
|
@@ -4502,10 +4592,14 @@ export declare const Components: {
|
|
|
4502
4592
|
validator: (v: string) => boolean;
|
|
4503
4593
|
default: string;
|
|
4504
4594
|
};
|
|
4595
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4505
4596
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
4506
4597
|
width: {
|
|
4507
4598
|
type: NumberConstructor;
|
|
4508
4599
|
};
|
|
4600
|
+
height: {
|
|
4601
|
+
type: NumberConstructor;
|
|
4602
|
+
};
|
|
4509
4603
|
mask: {
|
|
4510
4604
|
type: BooleanConstructor;
|
|
4511
4605
|
default: boolean;
|
|
@@ -4543,9 +4637,8 @@ export declare const Components: {
|
|
|
4543
4637
|
type: (StringConstructor | BooleanConstructor)[];
|
|
4544
4638
|
default: string;
|
|
4545
4639
|
};
|
|
4546
|
-
wrapperStyle:
|
|
4547
|
-
|
|
4548
|
-
};
|
|
4640
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
4641
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
4549
4642
|
footer: {
|
|
4550
4643
|
type: BooleanConstructor;
|
|
4551
4644
|
default: boolean;
|
|
@@ -4615,9 +4708,12 @@ export declare const Components: {
|
|
|
4615
4708
|
title?: string | undefined;
|
|
4616
4709
|
mode?: "error" | "success" | "info" | "warning" | undefined;
|
|
4617
4710
|
onCancel?: Function | undefined;
|
|
4711
|
+
height?: number | undefined;
|
|
4618
4712
|
width?: number | undefined;
|
|
4619
4713
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
4620
4714
|
onOk?: Function | undefined;
|
|
4715
|
+
wrapperClass?: string | Record<string, any> | undefined;
|
|
4716
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
4621
4717
|
contentClass?: string | Record<string, any> | undefined;
|
|
4622
4718
|
} & {
|
|
4623
4719
|
onClose: (...args: any[]) => any;
|
|
@@ -4643,9 +4739,12 @@ export declare const Components: {
|
|
|
4643
4739
|
title?: string | undefined;
|
|
4644
4740
|
mode?: "error" | "success" | "info" | "warning" | undefined;
|
|
4645
4741
|
onCancel?: Function | undefined;
|
|
4742
|
+
height?: number | undefined;
|
|
4646
4743
|
width?: number | undefined;
|
|
4647
4744
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
4648
4745
|
onOk?: Function | undefined;
|
|
4746
|
+
wrapperClass?: string | Record<string, any> | undefined;
|
|
4747
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
4649
4748
|
contentClass?: string | Record<string, any> | undefined;
|
|
4650
4749
|
} & {
|
|
4651
4750
|
onClose: (...args: any[]) => any;
|
|
@@ -4671,9 +4770,12 @@ export declare const Components: {
|
|
|
4671
4770
|
title?: string | undefined;
|
|
4672
4771
|
mode?: "error" | "success" | "info" | "warning" | undefined;
|
|
4673
4772
|
onCancel?: Function | undefined;
|
|
4773
|
+
height?: number | undefined;
|
|
4674
4774
|
width?: number | undefined;
|
|
4675
4775
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
4676
4776
|
onOk?: Function | undefined;
|
|
4777
|
+
wrapperClass?: string | Record<string, any> | undefined;
|
|
4778
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
4677
4779
|
contentClass?: string | Record<string, any> | undefined;
|
|
4678
4780
|
} & {
|
|
4679
4781
|
onClose: (...args: any[]) => any;
|
|
@@ -4699,9 +4801,12 @@ export declare const Components: {
|
|
|
4699
4801
|
title?: string | undefined;
|
|
4700
4802
|
mode?: "error" | "success" | "info" | "warning" | undefined;
|
|
4701
4803
|
onCancel?: Function | undefined;
|
|
4804
|
+
height?: number | undefined;
|
|
4702
4805
|
width?: number | undefined;
|
|
4703
4806
|
wrapperStyle?: string | Record<string, any> | undefined;
|
|
4704
4807
|
onOk?: Function | undefined;
|
|
4808
|
+
wrapperClass?: string | Record<string, any> | undefined;
|
|
4809
|
+
contentStyle?: string | Record<string, any> | undefined;
|
|
4705
4810
|
contentClass?: string | Record<string, any> | undefined;
|
|
4706
4811
|
} & {
|
|
4707
4812
|
onClose: (...args: any[]) => any;
|
|
@@ -4726,10 +4831,14 @@ export declare const Components: {
|
|
|
4726
4831
|
validator: (v: string) => boolean;
|
|
4727
4832
|
default: string;
|
|
4728
4833
|
};
|
|
4834
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4729
4835
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
4730
4836
|
width: {
|
|
4731
4837
|
type: NumberConstructor;
|
|
4732
4838
|
};
|
|
4839
|
+
height: {
|
|
4840
|
+
type: NumberConstructor;
|
|
4841
|
+
};
|
|
4733
4842
|
mask: {
|
|
4734
4843
|
type: BooleanConstructor;
|
|
4735
4844
|
default: boolean;
|
|
@@ -4767,9 +4876,8 @@ export declare const Components: {
|
|
|
4767
4876
|
type: (StringConstructor | BooleanConstructor)[];
|
|
4768
4877
|
default: string;
|
|
4769
4878
|
};
|
|
4770
|
-
wrapperStyle:
|
|
4771
|
-
|
|
4772
|
-
};
|
|
4879
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
4880
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
4773
4881
|
footer: {
|
|
4774
4882
|
type: BooleanConstructor;
|
|
4775
4883
|
default: boolean;
|
|
@@ -4810,10 +4918,14 @@ export declare const Components: {
|
|
|
4810
4918
|
validator: (v: string) => boolean;
|
|
4811
4919
|
default: string;
|
|
4812
4920
|
};
|
|
4921
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
4813
4922
|
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
4814
4923
|
width: {
|
|
4815
4924
|
type: NumberConstructor;
|
|
4816
4925
|
};
|
|
4926
|
+
height: {
|
|
4927
|
+
type: NumberConstructor;
|
|
4928
|
+
};
|
|
4817
4929
|
mask: {
|
|
4818
4930
|
type: BooleanConstructor;
|
|
4819
4931
|
default: boolean;
|
|
@@ -4851,9 +4963,8 @@ export declare const Components: {
|
|
|
4851
4963
|
type: (StringConstructor | BooleanConstructor)[];
|
|
4852
4964
|
default: string;
|
|
4853
4965
|
};
|
|
4854
|
-
wrapperStyle:
|
|
4855
|
-
|
|
4856
|
-
};
|
|
4966
|
+
wrapperStyle: (ObjectConstructor | StringConstructor)[];
|
|
4967
|
+
wrapperClass: (ObjectConstructor | StringConstructor)[];
|
|
4857
4968
|
footer: {
|
|
4858
4969
|
type: BooleanConstructor;
|
|
4859
4970
|
default: boolean;
|
|
@@ -7859,6 +7970,7 @@ export declare const Components: {
|
|
|
7859
7970
|
};
|
|
7860
7971
|
stripe: BooleanConstructor;
|
|
7861
7972
|
border: BooleanConstructor;
|
|
7973
|
+
divider: BooleanConstructor;
|
|
7862
7974
|
rows: {
|
|
7863
7975
|
type: NumberConstructor;
|
|
7864
7976
|
default: number;
|
|
@@ -7930,6 +8042,7 @@ export declare const Components: {
|
|
|
7930
8042
|
};
|
|
7931
8043
|
stripe: BooleanConstructor;
|
|
7932
8044
|
border: BooleanConstructor;
|
|
8045
|
+
divider: BooleanConstructor;
|
|
7933
8046
|
rows: {
|
|
7934
8047
|
type: NumberConstructor;
|
|
7935
8048
|
default: number;
|
|
@@ -8017,6 +8130,7 @@ export declare const Components: {
|
|
|
8017
8130
|
rows: number;
|
|
8018
8131
|
defaultSort: Record<string, any>;
|
|
8019
8132
|
stripe: boolean;
|
|
8133
|
+
divider: boolean;
|
|
8020
8134
|
showSummary: boolean;
|
|
8021
8135
|
highlight: boolean;
|
|
8022
8136
|
treeMap: Record<string, any>;
|
|
@@ -8036,6 +8150,7 @@ export declare const Components: {
|
|
|
8036
8150
|
};
|
|
8037
8151
|
stripe: BooleanConstructor;
|
|
8038
8152
|
border: BooleanConstructor;
|
|
8153
|
+
divider: BooleanConstructor;
|
|
8039
8154
|
rows: {
|
|
8040
8155
|
type: NumberConstructor;
|
|
8041
8156
|
default: number;
|
|
@@ -8107,6 +8222,7 @@ export declare const Components: {
|
|
|
8107
8222
|
};
|
|
8108
8223
|
stripe: BooleanConstructor;
|
|
8109
8224
|
border: BooleanConstructor;
|
|
8225
|
+
divider: BooleanConstructor;
|
|
8110
8226
|
rows: {
|
|
8111
8227
|
type: NumberConstructor;
|
|
8112
8228
|
default: number;
|
|
@@ -8194,6 +8310,7 @@ export declare const Components: {
|
|
|
8194
8310
|
rows: number;
|
|
8195
8311
|
defaultSort: Record<string, any>;
|
|
8196
8312
|
stripe: boolean;
|
|
8313
|
+
divider: boolean;
|
|
8197
8314
|
showSummary: boolean;
|
|
8198
8315
|
highlight: boolean;
|
|
8199
8316
|
treeMap: Record<string, any>;
|
|
@@ -8395,6 +8512,10 @@ export declare const Components: {
|
|
|
8395
8512
|
type: BooleanConstructor;
|
|
8396
8513
|
default: boolean;
|
|
8397
8514
|
};
|
|
8515
|
+
barStyle: (ObjectConstructor | StringConstructor)[];
|
|
8516
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8517
|
+
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8518
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8398
8519
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8399
8520
|
type: {
|
|
8400
8521
|
type: StringConstructor;
|
|
@@ -8416,6 +8537,10 @@ export declare const Components: {
|
|
|
8416
8537
|
type: BooleanConstructor;
|
|
8417
8538
|
default: boolean;
|
|
8418
8539
|
};
|
|
8540
|
+
barStyle: (ObjectConstructor | StringConstructor)[];
|
|
8541
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8542
|
+
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8543
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8419
8544
|
}>> & Readonly<{
|
|
8420
8545
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8421
8546
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -8480,6 +8605,9 @@ export declare const Components: {
|
|
|
8480
8605
|
type: BooleanConstructor;
|
|
8481
8606
|
default: boolean;
|
|
8482
8607
|
};
|
|
8608
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8609
|
+
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8610
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8483
8611
|
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("click" | "change" | "update:modelValue")[], "click" | "change" | "update:modelValue", PublicProps, Readonly<ExtractPropTypes< {
|
|
8484
8612
|
theme: {
|
|
8485
8613
|
type: StringConstructor;
|
|
@@ -8534,6 +8662,9 @@ export declare const Components: {
|
|
|
8534
8662
|
type: BooleanConstructor;
|
|
8535
8663
|
default: boolean;
|
|
8536
8664
|
};
|
|
8665
|
+
contentStyle: (ObjectConstructor | StringConstructor)[];
|
|
8666
|
+
barClass: (ObjectConstructor | StringConstructor)[];
|
|
8667
|
+
contentClass: (ObjectConstructor | StringConstructor)[];
|
|
8537
8668
|
}>> & Readonly<{
|
|
8538
8669
|
onChange?: ((...args: any[]) => any) | undefined;
|
|
8539
8670
|
onClick?: ((...args: any[]) => any) | undefined;
|
|
@@ -10755,30 +10886,304 @@ export declare const Components: {
|
|
|
10755
10886
|
parallel: boolean;
|
|
10756
10887
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10757
10888
|
UploadPicker: DefineComponent<ExtractPropTypes< {
|
|
10758
|
-
|
|
10759
|
-
type:
|
|
10889
|
+
picker: {
|
|
10890
|
+
type: ArrayConstructor;
|
|
10891
|
+
default: () => string[];
|
|
10892
|
+
};
|
|
10893
|
+
sortable: {
|
|
10894
|
+
type: BooleanConstructor;
|
|
10895
|
+
default: boolean;
|
|
10896
|
+
};
|
|
10897
|
+
mask: {
|
|
10898
|
+
type: BooleanConstructor;
|
|
10899
|
+
default: boolean;
|
|
10900
|
+
};
|
|
10901
|
+
uploadOptions: {
|
|
10902
|
+
type: ObjectConstructor;
|
|
10903
|
+
default(): {};
|
|
10904
|
+
};
|
|
10905
|
+
modelValue: {
|
|
10906
|
+
type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
10907
|
+
default: () => never[];
|
|
10908
|
+
};
|
|
10909
|
+
keyValue: {
|
|
10910
|
+
type: ObjectConstructor;
|
|
10911
|
+
default: () => {
|
|
10912
|
+
label: string;
|
|
10913
|
+
value: string;
|
|
10914
|
+
};
|
|
10915
|
+
};
|
|
10916
|
+
output: {
|
|
10917
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
10760
10918
|
default: string;
|
|
10919
|
+
validator: (v: any) => boolean;
|
|
10761
10920
|
};
|
|
10762
|
-
|
|
10763
|
-
|
|
10764
|
-
|
|
10921
|
+
max: {
|
|
10922
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
10923
|
+
default: number;
|
|
10924
|
+
};
|
|
10925
|
+
disabled: {
|
|
10926
|
+
type: BooleanConstructor;
|
|
10927
|
+
default: boolean;
|
|
10928
|
+
};
|
|
10929
|
+
formatter: FunctionConstructor;
|
|
10930
|
+
boxClass: StringConstructor;
|
|
10931
|
+
imagePreviewOptions: {
|
|
10932
|
+
type: ObjectConstructor;
|
|
10933
|
+
default: () => {};
|
|
10934
|
+
};
|
|
10935
|
+
imageClass: StringConstructor;
|
|
10936
|
+
videoClass: StringConstructor;
|
|
10937
|
+
audioClass: StringConstructor;
|
|
10938
|
+
fileClass: StringConstructor;
|
|
10939
|
+
compressOptions: {
|
|
10940
|
+
type: ObjectConstructor;
|
|
10941
|
+
default: () => {
|
|
10942
|
+
compress: boolean;
|
|
10943
|
+
width: number;
|
|
10944
|
+
height: number;
|
|
10945
|
+
filetype: string;
|
|
10946
|
+
encoderOptions: number;
|
|
10947
|
+
};
|
|
10948
|
+
};
|
|
10949
|
+
showMessage: BooleanConstructor;
|
|
10950
|
+
gallery: BooleanConstructor;
|
|
10951
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "success" | "update:modelValue" | "file-start" | "file-success" | "complete" | "remove-before")[], "change" | "error" | "success" | "update:modelValue" | "file-start" | "file-success" | "complete" | "remove-before", PublicProps, Readonly<ExtractPropTypes< {
|
|
10952
|
+
picker: {
|
|
10953
|
+
type: ArrayConstructor;
|
|
10954
|
+
default: () => string[];
|
|
10955
|
+
};
|
|
10956
|
+
sortable: {
|
|
10957
|
+
type: BooleanConstructor;
|
|
10958
|
+
default: boolean;
|
|
10959
|
+
};
|
|
10960
|
+
mask: {
|
|
10961
|
+
type: BooleanConstructor;
|
|
10962
|
+
default: boolean;
|
|
10963
|
+
};
|
|
10964
|
+
uploadOptions: {
|
|
10965
|
+
type: ObjectConstructor;
|
|
10966
|
+
default(): {};
|
|
10967
|
+
};
|
|
10968
|
+
modelValue: {
|
|
10969
|
+
type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
10970
|
+
default: () => never[];
|
|
10971
|
+
};
|
|
10972
|
+
keyValue: {
|
|
10973
|
+
type: ObjectConstructor;
|
|
10974
|
+
default: () => {
|
|
10975
|
+
label: string;
|
|
10976
|
+
value: string;
|
|
10977
|
+
};
|
|
10978
|
+
};
|
|
10979
|
+
output: {
|
|
10980
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
10765
10981
|
default: string;
|
|
10982
|
+
validator: (v: any) => boolean;
|
|
10766
10983
|
};
|
|
10767
|
-
|
|
10768
|
-
|
|
10984
|
+
max: {
|
|
10985
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
10986
|
+
default: number;
|
|
10987
|
+
};
|
|
10988
|
+
disabled: {
|
|
10989
|
+
type: BooleanConstructor;
|
|
10990
|
+
default: boolean;
|
|
10991
|
+
};
|
|
10992
|
+
formatter: FunctionConstructor;
|
|
10993
|
+
boxClass: StringConstructor;
|
|
10994
|
+
imagePreviewOptions: {
|
|
10995
|
+
type: ObjectConstructor;
|
|
10996
|
+
default: () => {};
|
|
10997
|
+
};
|
|
10998
|
+
imageClass: StringConstructor;
|
|
10999
|
+
videoClass: StringConstructor;
|
|
11000
|
+
audioClass: StringConstructor;
|
|
11001
|
+
fileClass: StringConstructor;
|
|
11002
|
+
compressOptions: {
|
|
11003
|
+
type: ObjectConstructor;
|
|
11004
|
+
default: () => {
|
|
11005
|
+
compress: boolean;
|
|
11006
|
+
width: number;
|
|
11007
|
+
height: number;
|
|
11008
|
+
filetype: string;
|
|
11009
|
+
encoderOptions: number;
|
|
11010
|
+
};
|
|
11011
|
+
};
|
|
11012
|
+
showMessage: BooleanConstructor;
|
|
11013
|
+
gallery: BooleanConstructor;
|
|
11014
|
+
}>> & Readonly<{
|
|
11015
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
11016
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
11017
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11018
|
+
"onFile-start"?: ((...args: any[]) => any) | undefined;
|
|
11019
|
+
"onFile-success"?: ((...args: any[]) => any) | undefined;
|
|
11020
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
11021
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
11022
|
+
"onRemove-before"?: ((...args: any[]) => any) | undefined;
|
|
11023
|
+
}>, {
|
|
11024
|
+
output: string | Function;
|
|
11025
|
+
mask: boolean;
|
|
11026
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
11027
|
+
disabled: boolean;
|
|
11028
|
+
max: number | Record<string, any>;
|
|
11029
|
+
showMessage: boolean;
|
|
11030
|
+
gallery: boolean;
|
|
11031
|
+
sortable: boolean;
|
|
11032
|
+
picker: unknown[];
|
|
11033
|
+
uploadOptions: Record<string, any>;
|
|
11034
|
+
keyValue: Record<string, any>;
|
|
11035
|
+
imagePreviewOptions: Record<string, any>;
|
|
11036
|
+
compressOptions: Record<string, any>;
|
|
10769
11037
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10770
11038
|
MUploadPicker: DefineComponent<ExtractPropTypes< {
|
|
10771
|
-
|
|
10772
|
-
type:
|
|
11039
|
+
picker: {
|
|
11040
|
+
type: ArrayConstructor;
|
|
11041
|
+
default: () => string[];
|
|
11042
|
+
};
|
|
11043
|
+
sortable: {
|
|
11044
|
+
type: BooleanConstructor;
|
|
11045
|
+
default: boolean;
|
|
11046
|
+
};
|
|
11047
|
+
mask: {
|
|
11048
|
+
type: BooleanConstructor;
|
|
11049
|
+
default: boolean;
|
|
11050
|
+
};
|
|
11051
|
+
uploadOptions: {
|
|
11052
|
+
type: ObjectConstructor;
|
|
11053
|
+
default(): {};
|
|
11054
|
+
};
|
|
11055
|
+
modelValue: {
|
|
11056
|
+
type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
11057
|
+
default: () => never[];
|
|
11058
|
+
};
|
|
11059
|
+
keyValue: {
|
|
11060
|
+
type: ObjectConstructor;
|
|
11061
|
+
default: () => {
|
|
11062
|
+
label: string;
|
|
11063
|
+
value: string;
|
|
11064
|
+
};
|
|
11065
|
+
};
|
|
11066
|
+
output: {
|
|
11067
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
10773
11068
|
default: string;
|
|
11069
|
+
validator: (v: any) => boolean;
|
|
10774
11070
|
};
|
|
10775
|
-
|
|
10776
|
-
|
|
10777
|
-
|
|
11071
|
+
max: {
|
|
11072
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11073
|
+
default: number;
|
|
11074
|
+
};
|
|
11075
|
+
disabled: {
|
|
11076
|
+
type: BooleanConstructor;
|
|
11077
|
+
default: boolean;
|
|
11078
|
+
};
|
|
11079
|
+
formatter: FunctionConstructor;
|
|
11080
|
+
boxClass: StringConstructor;
|
|
11081
|
+
imagePreviewOptions: {
|
|
11082
|
+
type: ObjectConstructor;
|
|
11083
|
+
default: () => {};
|
|
11084
|
+
};
|
|
11085
|
+
imageClass: StringConstructor;
|
|
11086
|
+
videoClass: StringConstructor;
|
|
11087
|
+
audioClass: StringConstructor;
|
|
11088
|
+
fileClass: StringConstructor;
|
|
11089
|
+
compressOptions: {
|
|
11090
|
+
type: ObjectConstructor;
|
|
11091
|
+
default: () => {
|
|
11092
|
+
compress: boolean;
|
|
11093
|
+
width: number;
|
|
11094
|
+
height: number;
|
|
11095
|
+
filetype: string;
|
|
11096
|
+
encoderOptions: number;
|
|
11097
|
+
};
|
|
11098
|
+
};
|
|
11099
|
+
showMessage: BooleanConstructor;
|
|
11100
|
+
gallery: BooleanConstructor;
|
|
11101
|
+
}>, () => JSX_2.Element, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, ("change" | "error" | "success" | "update:modelValue" | "file-start" | "file-success" | "complete" | "remove-before")[], "change" | "error" | "success" | "update:modelValue" | "file-start" | "file-success" | "complete" | "remove-before", PublicProps, Readonly<ExtractPropTypes< {
|
|
11102
|
+
picker: {
|
|
11103
|
+
type: ArrayConstructor;
|
|
11104
|
+
default: () => string[];
|
|
11105
|
+
};
|
|
11106
|
+
sortable: {
|
|
11107
|
+
type: BooleanConstructor;
|
|
11108
|
+
default: boolean;
|
|
11109
|
+
};
|
|
11110
|
+
mask: {
|
|
11111
|
+
type: BooleanConstructor;
|
|
11112
|
+
default: boolean;
|
|
11113
|
+
};
|
|
11114
|
+
uploadOptions: {
|
|
11115
|
+
type: ObjectConstructor;
|
|
11116
|
+
default(): {};
|
|
11117
|
+
};
|
|
11118
|
+
modelValue: {
|
|
11119
|
+
type: (ObjectConstructor | StringConstructor | ArrayConstructor)[];
|
|
11120
|
+
default: () => never[];
|
|
11121
|
+
};
|
|
11122
|
+
keyValue: {
|
|
11123
|
+
type: ObjectConstructor;
|
|
11124
|
+
default: () => {
|
|
11125
|
+
label: string;
|
|
11126
|
+
value: string;
|
|
11127
|
+
};
|
|
11128
|
+
};
|
|
11129
|
+
output: {
|
|
11130
|
+
type: (StringConstructor | FunctionConstructor)[];
|
|
10778
11131
|
default: string;
|
|
11132
|
+
validator: (v: any) => boolean;
|
|
10779
11133
|
};
|
|
10780
|
-
|
|
10781
|
-
|
|
11134
|
+
max: {
|
|
11135
|
+
type: (ObjectConstructor | NumberConstructor)[];
|
|
11136
|
+
default: number;
|
|
11137
|
+
};
|
|
11138
|
+
disabled: {
|
|
11139
|
+
type: BooleanConstructor;
|
|
11140
|
+
default: boolean;
|
|
11141
|
+
};
|
|
11142
|
+
formatter: FunctionConstructor;
|
|
11143
|
+
boxClass: StringConstructor;
|
|
11144
|
+
imagePreviewOptions: {
|
|
11145
|
+
type: ObjectConstructor;
|
|
11146
|
+
default: () => {};
|
|
11147
|
+
};
|
|
11148
|
+
imageClass: StringConstructor;
|
|
11149
|
+
videoClass: StringConstructor;
|
|
11150
|
+
audioClass: StringConstructor;
|
|
11151
|
+
fileClass: StringConstructor;
|
|
11152
|
+
compressOptions: {
|
|
11153
|
+
type: ObjectConstructor;
|
|
11154
|
+
default: () => {
|
|
11155
|
+
compress: boolean;
|
|
11156
|
+
width: number;
|
|
11157
|
+
height: number;
|
|
11158
|
+
filetype: string;
|
|
11159
|
+
encoderOptions: number;
|
|
11160
|
+
};
|
|
11161
|
+
};
|
|
11162
|
+
showMessage: BooleanConstructor;
|
|
11163
|
+
gallery: BooleanConstructor;
|
|
11164
|
+
}>> & Readonly<{
|
|
11165
|
+
onError?: ((...args: any[]) => any) | undefined;
|
|
11166
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
11167
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
11168
|
+
"onFile-start"?: ((...args: any[]) => any) | undefined;
|
|
11169
|
+
"onFile-success"?: ((...args: any[]) => any) | undefined;
|
|
11170
|
+
onComplete?: ((...args: any[]) => any) | undefined;
|
|
11171
|
+
onSuccess?: ((...args: any[]) => any) | undefined;
|
|
11172
|
+
"onRemove-before"?: ((...args: any[]) => any) | undefined;
|
|
11173
|
+
}>, {
|
|
11174
|
+
output: string | Function;
|
|
11175
|
+
mask: boolean;
|
|
11176
|
+
modelValue: string | Record<string, any> | unknown[];
|
|
11177
|
+
disabled: boolean;
|
|
11178
|
+
max: number | Record<string, any>;
|
|
11179
|
+
showMessage: boolean;
|
|
11180
|
+
gallery: boolean;
|
|
11181
|
+
sortable: boolean;
|
|
11182
|
+
picker: unknown[];
|
|
11183
|
+
uploadOptions: Record<string, any>;
|
|
11184
|
+
keyValue: Record<string, any>;
|
|
11185
|
+
imagePreviewOptions: Record<string, any>;
|
|
11186
|
+
compressOptions: Record<string, any>;
|
|
10782
11187
|
}, {}, {}, {}, string, ComponentProvideOptions, true, {}, any>;
|
|
10783
11188
|
};
|
|
10784
11189
|
|