ra-element 0.1.6 → 0.1.7
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/docs/ra-table.md +1 -0
- package/lib/components/index.d.ts +1 -20
- package/lib/components/ra-auto-scroll/index.vue.d.ts +76 -100
- package/lib/components/ra-button/index.vue.d.ts +599 -772
- package/lib/components/ra-checkbox-group/index.vue.d.ts +329 -442
- package/lib/components/ra-date-picker/index.vue.d.ts +1062 -1261
- package/lib/components/ra-dialog/index.vue.d.ts +931 -1130
- package/lib/components/ra-dialog-select/index.vue.d.ts +57 -81
- package/lib/components/ra-help-tip/index.vue.d.ts +41 -65
- package/lib/components/ra-input/index.vue.d.ts +1042 -1256
- package/lib/components/ra-pagination/index.vue.d.ts +528 -643
- package/lib/components/ra-radio-group/index.vue.d.ts +425 -538
- package/lib/components/ra-select/index.vue.d.ts +1656 -1759
- package/lib/components/ra-svg/index.vue.d.ts +11 -35
- package/lib/components/ra-table/component/pagination-group.vue.d.ts +80 -104
- package/lib/components/ra-textarea/index.vue.d.ts +31 -55
- package/lib/components/ra-tool-tip/index.vue.d.ts +14 -38
- package/lib/components/ra-tree-select/index.vue.d.ts +35 -59
- package/lib/components/ra-upload/index.vue.d.ts +149 -173
- package/lib/index.d.ts +6 -6
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +980 -958
- package/lib/ra-element.umd.js +11 -11
- package/package.json +1 -1
|
@@ -15,452 +15,339 @@ declare function __VLS_template(): {
|
|
|
15
15
|
rootEl: any;
|
|
16
16
|
};
|
|
17
17
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
18
|
-
declare const __VLS_component: import('vue').DefineComponent<
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
18
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
19
|
+
options: {
|
|
20
|
+
type: PropType<SelectOptions[]>;
|
|
21
|
+
default: () => never[];
|
|
22
|
+
};
|
|
23
|
+
isButton: {
|
|
24
|
+
type: BooleanConstructor;
|
|
25
|
+
default: boolean;
|
|
26
|
+
};
|
|
27
|
+
}>, {
|
|
28
|
+
component: import('vue').Ref<({
|
|
29
|
+
$: import('vue').ComponentInternalInstance;
|
|
30
|
+
$data: {};
|
|
31
|
+
$props: Partial<{
|
|
32
|
+
readonly disabled: boolean;
|
|
33
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
34
|
+
readonly validateEvent: boolean;
|
|
35
|
+
readonly tag: string;
|
|
36
|
+
}> & Omit<{
|
|
37
|
+
readonly disabled: boolean;
|
|
38
|
+
readonly tag: string;
|
|
39
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
40
|
+
readonly validateEvent: boolean;
|
|
41
|
+
readonly fill?: string | undefined;
|
|
42
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
43
|
+
readonly ariaLabel?: string | undefined;
|
|
44
|
+
readonly min?: number | undefined;
|
|
45
|
+
readonly max?: number | undefined;
|
|
46
|
+
readonly textColor?: string | undefined;
|
|
47
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
48
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
49
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "tag" | "modelValue" | "validateEvent">;
|
|
50
|
+
$attrs: {
|
|
51
|
+
[x: string]: unknown;
|
|
23
52
|
};
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
default: boolean;
|
|
53
|
+
$refs: {
|
|
54
|
+
[x: string]: unknown;
|
|
27
55
|
};
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
readonly validateEvent: boolean;
|
|
46
|
-
readonly fill?: string | undefined;
|
|
47
|
-
readonly size?: ('' | 'default' | 'small' | 'large') | undefined;
|
|
48
|
-
readonly ariaLabel?: string | undefined;
|
|
49
|
-
readonly min?: number | undefined;
|
|
50
|
-
readonly max?: number | undefined;
|
|
51
|
-
readonly textColor?: string | undefined;
|
|
52
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
53
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
54
|
-
} & import('vue').VNodeProps &
|
|
55
|
-
import('vue').AllowedComponentProps &
|
|
56
|
-
import('vue').ComponentCustomProps,
|
|
57
|
-
'disabled' | 'tag' | 'modelValue' | 'validateEvent'
|
|
58
|
-
>;
|
|
59
|
-
$attrs: {
|
|
60
|
-
[x: string]: unknown;
|
|
61
|
-
};
|
|
62
|
-
$refs: {
|
|
63
|
-
[x: string]: unknown;
|
|
64
|
-
};
|
|
65
|
-
$slots: Readonly<{
|
|
66
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
67
|
-
}>;
|
|
68
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
69
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
70
|
-
$host: Element | null;
|
|
71
|
-
$emit: ((event: 'change', val: import('element-plus').CheckboxValueType[]) => void) &
|
|
72
|
-
((event: 'update:modelValue', val: import('element-plus').CheckboxGroupValueType) => void);
|
|
73
|
-
$el: any;
|
|
74
|
-
$options: import('vue').ComponentOptionsBase<
|
|
75
|
-
Readonly<
|
|
76
|
-
import('vue').ExtractPropTypes<{
|
|
77
|
-
readonly ariaLabel: StringConstructor;
|
|
78
|
-
readonly modelValue: {
|
|
79
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
80
|
-
readonly required: false;
|
|
81
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
82
|
-
__epPropKey: true;
|
|
83
|
-
} & {
|
|
84
|
-
readonly default: () => never[];
|
|
85
|
-
};
|
|
86
|
-
readonly disabled: BooleanConstructor;
|
|
87
|
-
readonly min: NumberConstructor;
|
|
88
|
-
readonly max: NumberConstructor;
|
|
89
|
-
readonly size: {
|
|
90
|
-
readonly type: PropType<'' | 'default' | 'small' | 'large'>;
|
|
91
|
-
readonly required: false;
|
|
92
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
93
|
-
__epPropKey: true;
|
|
94
|
-
};
|
|
95
|
-
readonly fill: StringConstructor;
|
|
96
|
-
readonly textColor: StringConstructor;
|
|
97
|
-
readonly tag: {
|
|
98
|
-
readonly type: PropType<string>;
|
|
99
|
-
readonly required: false;
|
|
100
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
101
|
-
__epPropKey: true;
|
|
102
|
-
} & {
|
|
103
|
-
readonly default: 'div';
|
|
104
|
-
};
|
|
105
|
-
readonly validateEvent: {
|
|
106
|
-
readonly type: PropType<boolean>;
|
|
107
|
-
readonly required: false;
|
|
108
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
109
|
-
__epPropKey: true;
|
|
110
|
-
} & {
|
|
111
|
-
readonly default: true;
|
|
112
|
-
};
|
|
113
|
-
}>
|
|
114
|
-
> & {
|
|
115
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
116
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
117
|
-
},
|
|
118
|
-
{},
|
|
119
|
-
unknown,
|
|
120
|
-
{},
|
|
121
|
-
{},
|
|
122
|
-
import('vue').ComponentOptionsMixin,
|
|
123
|
-
import('vue').ComponentOptionsMixin,
|
|
124
|
-
{
|
|
125
|
-
'update:modelValue': (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
126
|
-
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
127
|
-
},
|
|
128
|
-
string,
|
|
129
|
-
{
|
|
130
|
-
readonly disabled: boolean;
|
|
131
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
132
|
-
readonly validateEvent: boolean;
|
|
133
|
-
readonly tag: string;
|
|
134
|
-
},
|
|
135
|
-
{},
|
|
136
|
-
string,
|
|
137
|
-
{},
|
|
138
|
-
import('vue').GlobalComponents,
|
|
139
|
-
import('vue').GlobalDirectives,
|
|
140
|
-
string,
|
|
141
|
-
import('vue').ComponentProvideOptions
|
|
142
|
-
> & {
|
|
143
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
144
|
-
created?: (() => void) | (() => void)[];
|
|
145
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
146
|
-
mounted?: (() => void) | (() => void)[];
|
|
147
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
148
|
-
updated?: (() => void) | (() => void)[];
|
|
149
|
-
activated?: (() => void) | (() => void)[];
|
|
150
|
-
deactivated?: (() => void) | (() => void)[];
|
|
151
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
152
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
153
|
-
destroyed?: (() => void) | (() => void)[];
|
|
154
|
-
unmounted?: (() => void) | (() => void)[];
|
|
155
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
156
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
157
|
-
errorCaptured?:
|
|
158
|
-
| ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)
|
|
159
|
-
| ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
160
|
-
};
|
|
161
|
-
$forceUpdate: () => void;
|
|
162
|
-
$nextTick: typeof import('vue').nextTick;
|
|
163
|
-
$watch<T extends string | ((...args: any) => any)>(
|
|
164
|
-
source: T,
|
|
165
|
-
cb: T extends (...args: any) => infer R
|
|
166
|
-
? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any
|
|
167
|
-
: (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any,
|
|
168
|
-
options?: import('vue').WatchOptions,
|
|
169
|
-
): import('vue').WatchStopHandle;
|
|
170
|
-
} & Readonly<{
|
|
171
|
-
readonly disabled: boolean;
|
|
172
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
173
|
-
readonly validateEvent: boolean;
|
|
174
|
-
readonly tag: string;
|
|
175
|
-
}> &
|
|
176
|
-
Omit<
|
|
177
|
-
Readonly<
|
|
178
|
-
import('vue').ExtractPropTypes<{
|
|
179
|
-
readonly ariaLabel: StringConstructor;
|
|
180
|
-
readonly modelValue: {
|
|
181
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
182
|
-
readonly required: false;
|
|
183
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
184
|
-
__epPropKey: true;
|
|
185
|
-
} & {
|
|
186
|
-
readonly default: () => never[];
|
|
187
|
-
};
|
|
188
|
-
readonly disabled: BooleanConstructor;
|
|
189
|
-
readonly min: NumberConstructor;
|
|
190
|
-
readonly max: NumberConstructor;
|
|
191
|
-
readonly size: {
|
|
192
|
-
readonly type: PropType<'' | 'default' | 'small' | 'large'>;
|
|
193
|
-
readonly required: false;
|
|
194
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
195
|
-
__epPropKey: true;
|
|
196
|
-
};
|
|
197
|
-
readonly fill: StringConstructor;
|
|
198
|
-
readonly textColor: StringConstructor;
|
|
199
|
-
readonly tag: {
|
|
200
|
-
readonly type: PropType<string>;
|
|
201
|
-
readonly required: false;
|
|
202
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
203
|
-
__epPropKey: true;
|
|
204
|
-
} & {
|
|
205
|
-
readonly default: 'div';
|
|
206
|
-
};
|
|
207
|
-
readonly validateEvent: {
|
|
208
|
-
readonly type: PropType<boolean>;
|
|
209
|
-
readonly required: false;
|
|
210
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
211
|
-
__epPropKey: true;
|
|
212
|
-
} & {
|
|
213
|
-
readonly default: true;
|
|
214
|
-
};
|
|
215
|
-
}>
|
|
216
|
-
> & {
|
|
217
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
218
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
219
|
-
},
|
|
220
|
-
'disabled' | 'tag' | 'modelValue' | 'validateEvent'
|
|
221
|
-
> &
|
|
222
|
-
import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
223
|
-
$slots: {
|
|
224
|
-
default?(_: {}): any;
|
|
225
|
-
};
|
|
226
|
-
})
|
|
227
|
-
| null,
|
|
228
|
-
| ({
|
|
229
|
-
$: import('vue').ComponentInternalInstance;
|
|
230
|
-
$data: {};
|
|
231
|
-
$props: Partial<{
|
|
232
|
-
readonly disabled: boolean;
|
|
233
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
234
|
-
readonly validateEvent: boolean;
|
|
235
|
-
readonly tag: string;
|
|
236
|
-
}> &
|
|
237
|
-
Omit<
|
|
238
|
-
{
|
|
239
|
-
readonly disabled: boolean;
|
|
240
|
-
readonly tag: string;
|
|
241
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
242
|
-
readonly validateEvent: boolean;
|
|
243
|
-
readonly fill?: string | undefined;
|
|
244
|
-
readonly size?: ('' | 'default' | 'small' | 'large') | undefined;
|
|
245
|
-
readonly ariaLabel?: string | undefined;
|
|
246
|
-
readonly min?: number | undefined;
|
|
247
|
-
readonly max?: number | undefined;
|
|
248
|
-
readonly textColor?: string | undefined;
|
|
249
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
250
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
251
|
-
} & import('vue').VNodeProps &
|
|
252
|
-
import('vue').AllowedComponentProps &
|
|
253
|
-
import('vue').ComponentCustomProps,
|
|
254
|
-
'disabled' | 'tag' | 'modelValue' | 'validateEvent'
|
|
255
|
-
>;
|
|
256
|
-
$attrs: {
|
|
257
|
-
[x: string]: unknown;
|
|
258
|
-
};
|
|
259
|
-
$refs: {
|
|
260
|
-
[x: string]: unknown;
|
|
261
|
-
};
|
|
262
|
-
$slots: Readonly<{
|
|
263
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
264
|
-
}>;
|
|
265
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
266
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
267
|
-
$host: Element | null;
|
|
268
|
-
$emit: ((event: 'change', val: import('element-plus').CheckboxValueType[]) => void) &
|
|
269
|
-
((event: 'update:modelValue', val: import('element-plus').CheckboxGroupValueType) => void);
|
|
270
|
-
$el: any;
|
|
271
|
-
$options: import('vue').ComponentOptionsBase<
|
|
272
|
-
Readonly<
|
|
273
|
-
import('vue').ExtractPropTypes<{
|
|
274
|
-
readonly ariaLabel: StringConstructor;
|
|
275
|
-
readonly modelValue: {
|
|
276
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
277
|
-
readonly required: false;
|
|
278
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
279
|
-
__epPropKey: true;
|
|
280
|
-
} & {
|
|
281
|
-
readonly default: () => never[];
|
|
282
|
-
};
|
|
283
|
-
readonly disabled: BooleanConstructor;
|
|
284
|
-
readonly min: NumberConstructor;
|
|
285
|
-
readonly max: NumberConstructor;
|
|
286
|
-
readonly size: {
|
|
287
|
-
readonly type: PropType<'' | 'default' | 'small' | 'large'>;
|
|
288
|
-
readonly required: false;
|
|
289
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
290
|
-
__epPropKey: true;
|
|
291
|
-
};
|
|
292
|
-
readonly fill: StringConstructor;
|
|
293
|
-
readonly textColor: StringConstructor;
|
|
294
|
-
readonly tag: {
|
|
295
|
-
readonly type: PropType<string>;
|
|
296
|
-
readonly required: false;
|
|
297
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
298
|
-
__epPropKey: true;
|
|
299
|
-
} & {
|
|
300
|
-
readonly default: 'div';
|
|
301
|
-
};
|
|
302
|
-
readonly validateEvent: {
|
|
303
|
-
readonly type: PropType<boolean>;
|
|
304
|
-
readonly required: false;
|
|
305
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
306
|
-
__epPropKey: true;
|
|
307
|
-
} & {
|
|
308
|
-
readonly default: true;
|
|
309
|
-
};
|
|
310
|
-
}>
|
|
311
|
-
> & {
|
|
312
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
313
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
314
|
-
},
|
|
315
|
-
{},
|
|
316
|
-
unknown,
|
|
317
|
-
{},
|
|
318
|
-
{},
|
|
319
|
-
import('vue').ComponentOptionsMixin,
|
|
320
|
-
import('vue').ComponentOptionsMixin,
|
|
321
|
-
{
|
|
322
|
-
'update:modelValue': (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
323
|
-
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
324
|
-
},
|
|
325
|
-
string,
|
|
326
|
-
{
|
|
327
|
-
readonly disabled: boolean;
|
|
328
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
329
|
-
readonly validateEvent: boolean;
|
|
330
|
-
readonly tag: string;
|
|
331
|
-
},
|
|
332
|
-
{},
|
|
333
|
-
string,
|
|
334
|
-
{},
|
|
335
|
-
import('vue').GlobalComponents,
|
|
336
|
-
import('vue').GlobalDirectives,
|
|
337
|
-
string,
|
|
338
|
-
import('vue').ComponentProvideOptions
|
|
339
|
-
> & {
|
|
340
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
341
|
-
created?: (() => void) | (() => void)[];
|
|
342
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
343
|
-
mounted?: (() => void) | (() => void)[];
|
|
344
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
345
|
-
updated?: (() => void) | (() => void)[];
|
|
346
|
-
activated?: (() => void) | (() => void)[];
|
|
347
|
-
deactivated?: (() => void) | (() => void)[];
|
|
348
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
349
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
350
|
-
destroyed?: (() => void) | (() => void)[];
|
|
351
|
-
unmounted?: (() => void) | (() => void)[];
|
|
352
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
353
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
354
|
-
errorCaptured?:
|
|
355
|
-
| ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)
|
|
356
|
-
| ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
357
|
-
};
|
|
358
|
-
$forceUpdate: () => void;
|
|
359
|
-
$nextTick: typeof import('vue').nextTick;
|
|
360
|
-
$watch<T extends string | ((...args: any) => any)>(
|
|
361
|
-
source: T,
|
|
362
|
-
cb: T extends (...args: any) => infer R
|
|
363
|
-
? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any
|
|
364
|
-
: (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any,
|
|
365
|
-
options?: import('vue').WatchOptions,
|
|
366
|
-
): import('vue').WatchStopHandle;
|
|
367
|
-
} & Readonly<{
|
|
368
|
-
readonly disabled: boolean;
|
|
369
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
370
|
-
readonly validateEvent: boolean;
|
|
371
|
-
readonly tag: string;
|
|
372
|
-
}> &
|
|
373
|
-
Omit<
|
|
374
|
-
Readonly<
|
|
375
|
-
import('vue').ExtractPropTypes<{
|
|
376
|
-
readonly ariaLabel: StringConstructor;
|
|
377
|
-
readonly modelValue: {
|
|
378
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
379
|
-
readonly required: false;
|
|
380
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
381
|
-
__epPropKey: true;
|
|
382
|
-
} & {
|
|
383
|
-
readonly default: () => never[];
|
|
384
|
-
};
|
|
385
|
-
readonly disabled: BooleanConstructor;
|
|
386
|
-
readonly min: NumberConstructor;
|
|
387
|
-
readonly max: NumberConstructor;
|
|
388
|
-
readonly size: {
|
|
389
|
-
readonly type: PropType<'' | 'default' | 'small' | 'large'>;
|
|
390
|
-
readonly required: false;
|
|
391
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
392
|
-
__epPropKey: true;
|
|
393
|
-
};
|
|
394
|
-
readonly fill: StringConstructor;
|
|
395
|
-
readonly textColor: StringConstructor;
|
|
396
|
-
readonly tag: {
|
|
397
|
-
readonly type: PropType<string>;
|
|
398
|
-
readonly required: false;
|
|
399
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
400
|
-
__epPropKey: true;
|
|
401
|
-
} & {
|
|
402
|
-
readonly default: 'div';
|
|
403
|
-
};
|
|
404
|
-
readonly validateEvent: {
|
|
405
|
-
readonly type: PropType<boolean>;
|
|
406
|
-
readonly required: false;
|
|
407
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
|
-
__epPropKey: true;
|
|
409
|
-
} & {
|
|
410
|
-
readonly default: true;
|
|
411
|
-
};
|
|
412
|
-
}>
|
|
413
|
-
> & {
|
|
414
|
-
'onUpdate:modelValue'?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
415
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
416
|
-
},
|
|
417
|
-
'disabled' | 'tag' | 'modelValue' | 'validateEvent'
|
|
418
|
-
> &
|
|
419
|
-
import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
420
|
-
$slots: {
|
|
421
|
-
default?(_: {}): any;
|
|
422
|
-
};
|
|
423
|
-
})
|
|
424
|
-
| null
|
|
425
|
-
>;
|
|
426
|
-
},
|
|
427
|
-
{},
|
|
428
|
-
{},
|
|
429
|
-
{},
|
|
430
|
-
import('vue').ComponentOptionsMixin,
|
|
431
|
-
import('vue').ComponentOptionsMixin,
|
|
432
|
-
{},
|
|
433
|
-
string,
|
|
434
|
-
import('vue').PublicProps,
|
|
435
|
-
Readonly<
|
|
436
|
-
import('vue').ExtractPropTypes<{
|
|
437
|
-
options: {
|
|
438
|
-
type: PropType<SelectOptions[]>;
|
|
439
|
-
default: () => never[];
|
|
56
|
+
$slots: Readonly<{
|
|
57
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
58
|
+
}>;
|
|
59
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
60
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
61
|
+
$host: Element | null;
|
|
62
|
+
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
63
|
+
$el: any;
|
|
64
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
65
|
+
readonly ariaLabel: StringConstructor;
|
|
66
|
+
readonly modelValue: {
|
|
67
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
68
|
+
readonly required: false;
|
|
69
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
70
|
+
__epPropKey: true;
|
|
71
|
+
} & {
|
|
72
|
+
readonly default: () => never[];
|
|
440
73
|
};
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
74
|
+
readonly disabled: BooleanConstructor;
|
|
75
|
+
readonly min: NumberConstructor;
|
|
76
|
+
readonly max: NumberConstructor;
|
|
77
|
+
readonly size: {
|
|
78
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
79
|
+
readonly required: false;
|
|
80
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
81
|
+
__epPropKey: true;
|
|
444
82
|
};
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
83
|
+
readonly fill: StringConstructor;
|
|
84
|
+
readonly textColor: StringConstructor;
|
|
85
|
+
readonly tag: {
|
|
86
|
+
readonly type: PropType<string>;
|
|
87
|
+
readonly required: false;
|
|
88
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
89
|
+
__epPropKey: true;
|
|
90
|
+
} & {
|
|
91
|
+
readonly default: "div";
|
|
92
|
+
};
|
|
93
|
+
readonly validateEvent: {
|
|
94
|
+
readonly type: PropType<boolean>;
|
|
95
|
+
readonly required: false;
|
|
96
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
97
|
+
__epPropKey: true;
|
|
98
|
+
} & {
|
|
99
|
+
readonly default: true;
|
|
100
|
+
};
|
|
101
|
+
}>> & {
|
|
102
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
103
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
104
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
105
|
+
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
106
|
+
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
107
|
+
}, string, {
|
|
108
|
+
readonly disabled: boolean;
|
|
109
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
110
|
+
readonly validateEvent: boolean;
|
|
111
|
+
readonly tag: string;
|
|
112
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
113
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
114
|
+
created?: (() => void) | (() => void)[];
|
|
115
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
116
|
+
mounted?: (() => void) | (() => void)[];
|
|
117
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
118
|
+
updated?: (() => void) | (() => void)[];
|
|
119
|
+
activated?: (() => void) | (() => void)[];
|
|
120
|
+
deactivated?: (() => void) | (() => void)[];
|
|
121
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
122
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
123
|
+
destroyed?: (() => void) | (() => void)[];
|
|
124
|
+
unmounted?: (() => void) | (() => void)[];
|
|
125
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
126
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
127
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
128
|
+
};
|
|
129
|
+
$forceUpdate: () => void;
|
|
130
|
+
$nextTick: typeof import('vue').nextTick;
|
|
131
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
132
|
+
} & Readonly<{
|
|
133
|
+
readonly disabled: boolean;
|
|
134
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
135
|
+
readonly validateEvent: boolean;
|
|
136
|
+
readonly tag: string;
|
|
137
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
138
|
+
readonly ariaLabel: StringConstructor;
|
|
139
|
+
readonly modelValue: {
|
|
140
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
141
|
+
readonly required: false;
|
|
142
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
143
|
+
__epPropKey: true;
|
|
144
|
+
} & {
|
|
145
|
+
readonly default: () => never[];
|
|
146
|
+
};
|
|
147
|
+
readonly disabled: BooleanConstructor;
|
|
148
|
+
readonly min: NumberConstructor;
|
|
149
|
+
readonly max: NumberConstructor;
|
|
150
|
+
readonly size: {
|
|
151
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
152
|
+
readonly required: false;
|
|
153
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
154
|
+
__epPropKey: true;
|
|
155
|
+
};
|
|
156
|
+
readonly fill: StringConstructor;
|
|
157
|
+
readonly textColor: StringConstructor;
|
|
158
|
+
readonly tag: {
|
|
159
|
+
readonly type: PropType<string>;
|
|
160
|
+
readonly required: false;
|
|
161
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
162
|
+
__epPropKey: true;
|
|
163
|
+
} & {
|
|
164
|
+
readonly default: "div";
|
|
165
|
+
};
|
|
166
|
+
readonly validateEvent: {
|
|
167
|
+
readonly type: PropType<boolean>;
|
|
168
|
+
readonly required: false;
|
|
169
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
170
|
+
__epPropKey: true;
|
|
171
|
+
} & {
|
|
172
|
+
readonly default: true;
|
|
173
|
+
};
|
|
174
|
+
}>> & {
|
|
175
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
176
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
177
|
+
}, "disabled" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
178
|
+
$slots: {
|
|
179
|
+
default?(_: {}): any;
|
|
180
|
+
};
|
|
181
|
+
}) | null, ({
|
|
182
|
+
$: import('vue').ComponentInternalInstance;
|
|
183
|
+
$data: {};
|
|
184
|
+
$props: Partial<{
|
|
185
|
+
readonly disabled: boolean;
|
|
186
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
187
|
+
readonly validateEvent: boolean;
|
|
188
|
+
readonly tag: string;
|
|
189
|
+
}> & Omit<{
|
|
190
|
+
readonly disabled: boolean;
|
|
191
|
+
readonly tag: string;
|
|
192
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
193
|
+
readonly validateEvent: boolean;
|
|
194
|
+
readonly fill?: string | undefined;
|
|
195
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
196
|
+
readonly ariaLabel?: string | undefined;
|
|
197
|
+
readonly min?: number | undefined;
|
|
198
|
+
readonly max?: number | undefined;
|
|
199
|
+
readonly textColor?: string | undefined;
|
|
200
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
201
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
202
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "tag" | "modelValue" | "validateEvent">;
|
|
203
|
+
$attrs: {
|
|
204
|
+
[x: string]: unknown;
|
|
205
|
+
};
|
|
206
|
+
$refs: {
|
|
207
|
+
[x: string]: unknown;
|
|
208
|
+
};
|
|
209
|
+
$slots: Readonly<{
|
|
210
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
211
|
+
}>;
|
|
212
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
213
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
214
|
+
$host: Element | null;
|
|
215
|
+
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
216
|
+
$el: any;
|
|
217
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
218
|
+
readonly ariaLabel: StringConstructor;
|
|
219
|
+
readonly modelValue: {
|
|
220
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
221
|
+
readonly required: false;
|
|
222
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
223
|
+
__epPropKey: true;
|
|
224
|
+
} & {
|
|
225
|
+
readonly default: () => never[];
|
|
226
|
+
};
|
|
227
|
+
readonly disabled: BooleanConstructor;
|
|
228
|
+
readonly min: NumberConstructor;
|
|
229
|
+
readonly max: NumberConstructor;
|
|
230
|
+
readonly size: {
|
|
231
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
232
|
+
readonly required: false;
|
|
233
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
234
|
+
__epPropKey: true;
|
|
235
|
+
};
|
|
236
|
+
readonly fill: StringConstructor;
|
|
237
|
+
readonly textColor: StringConstructor;
|
|
238
|
+
readonly tag: {
|
|
239
|
+
readonly type: PropType<string>;
|
|
240
|
+
readonly required: false;
|
|
241
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
242
|
+
__epPropKey: true;
|
|
243
|
+
} & {
|
|
244
|
+
readonly default: "div";
|
|
245
|
+
};
|
|
246
|
+
readonly validateEvent: {
|
|
247
|
+
readonly type: PropType<boolean>;
|
|
248
|
+
readonly required: false;
|
|
249
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
250
|
+
__epPropKey: true;
|
|
251
|
+
} & {
|
|
252
|
+
readonly default: true;
|
|
253
|
+
};
|
|
254
|
+
}>> & {
|
|
255
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
256
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
257
|
+
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
258
|
+
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
259
|
+
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
260
|
+
}, string, {
|
|
261
|
+
readonly disabled: boolean;
|
|
262
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
263
|
+
readonly validateEvent: boolean;
|
|
264
|
+
readonly tag: string;
|
|
265
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
266
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
267
|
+
created?: (() => void) | (() => void)[];
|
|
268
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
269
|
+
mounted?: (() => void) | (() => void)[];
|
|
270
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
271
|
+
updated?: (() => void) | (() => void)[];
|
|
272
|
+
activated?: (() => void) | (() => void)[];
|
|
273
|
+
deactivated?: (() => void) | (() => void)[];
|
|
274
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
275
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
276
|
+
destroyed?: (() => void) | (() => void)[];
|
|
277
|
+
unmounted?: (() => void) | (() => void)[];
|
|
278
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
279
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
280
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
281
|
+
};
|
|
282
|
+
$forceUpdate: () => void;
|
|
283
|
+
$nextTick: typeof import('vue').nextTick;
|
|
284
|
+
$watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, import('@vue/reactivity').OnCleanup]) => any : (...args: [any, any, import('@vue/reactivity').OnCleanup]) => any, options?: import('vue').WatchOptions): import('vue').WatchStopHandle;
|
|
285
|
+
} & Readonly<{
|
|
286
|
+
readonly disabled: boolean;
|
|
287
|
+
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
288
|
+
readonly validateEvent: boolean;
|
|
289
|
+
readonly tag: string;
|
|
290
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
291
|
+
readonly ariaLabel: StringConstructor;
|
|
292
|
+
readonly modelValue: {
|
|
293
|
+
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
294
|
+
readonly required: false;
|
|
295
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
296
|
+
__epPropKey: true;
|
|
297
|
+
} & {
|
|
298
|
+
readonly default: () => never[];
|
|
299
|
+
};
|
|
300
|
+
readonly disabled: BooleanConstructor;
|
|
301
|
+
readonly min: NumberConstructor;
|
|
302
|
+
readonly max: NumberConstructor;
|
|
303
|
+
readonly size: {
|
|
304
|
+
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
305
|
+
readonly required: false;
|
|
306
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
307
|
+
__epPropKey: true;
|
|
308
|
+
};
|
|
309
|
+
readonly fill: StringConstructor;
|
|
310
|
+
readonly textColor: StringConstructor;
|
|
311
|
+
readonly tag: {
|
|
312
|
+
readonly type: PropType<string>;
|
|
313
|
+
readonly required: false;
|
|
314
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
315
|
+
__epPropKey: true;
|
|
316
|
+
} & {
|
|
317
|
+
readonly default: "div";
|
|
318
|
+
};
|
|
319
|
+
readonly validateEvent: {
|
|
320
|
+
readonly type: PropType<boolean>;
|
|
321
|
+
readonly required: false;
|
|
322
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
323
|
+
__epPropKey: true;
|
|
324
|
+
} & {
|
|
325
|
+
readonly default: true;
|
|
326
|
+
};
|
|
327
|
+
}>> & {
|
|
328
|
+
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
329
|
+
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
330
|
+
}, "disabled" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
331
|
+
$slots: {
|
|
332
|
+
default?(_: {}): any;
|
|
333
|
+
};
|
|
334
|
+
}) | null>;
|
|
335
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
336
|
+
options: {
|
|
337
|
+
type: PropType<SelectOptions[]>;
|
|
338
|
+
default: () => never[];
|
|
339
|
+
};
|
|
340
|
+
isButton: {
|
|
341
|
+
type: BooleanConstructor;
|
|
342
|
+
default: boolean;
|
|
343
|
+
};
|
|
344
|
+
}>> & Readonly<{}>, {
|
|
345
|
+
options: SelectOptions[];
|
|
346
|
+
isButton: boolean;
|
|
347
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
348
|
+
componentRef: unknown;
|
|
349
|
+
}, any>;
|
|
350
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
464
351
|
export default _default;
|
|
465
352
|
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
466
353
|
new (): {
|