ra-element 0.1.63 → 0.1.64
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/lib/components/ra-button/index.vue.d.ts +1 -213
- package/lib/components/ra-checkbox-group/index.vue.d.ts +3 -607
- package/lib/components/ra-date-picker/index.vue.d.ts +1 -582
- package/lib/components/ra-dialog/index.vue.d.ts +3 -362
- package/lib/components/ra-input/index.vue.d.ts +1 -378
- package/lib/components/ra-pagination/index.vue.d.ts +3 -726
- package/lib/components/ra-radio-group/index.vue.d.ts +3 -639
- package/lib/components/ra-textarea/index.vue.d.ts +1 -378
- package/lib/components/ra-tool-tip/index.vue.d.ts +1 -634
- package/lib/components/ra-tree-select/index.vue.d.ts +1 -103
- package/lib/components/ra-upload/index.vue.d.ts +4 -377
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +1675 -1636
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +1 -1
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -9,227 +9,7 @@ declare function __VLS_template(): {
|
|
|
9
9
|
slots: {
|
|
10
10
|
default?(_: {}): any;
|
|
11
11
|
};
|
|
12
|
-
refs: {
|
|
13
|
-
componentRef: ({
|
|
14
|
-
$: import('vue').ComponentInternalInstance;
|
|
15
|
-
$data: {};
|
|
16
|
-
$props: Partial<{
|
|
17
|
-
readonly disabled: boolean;
|
|
18
|
-
readonly props: {
|
|
19
|
-
value?: string;
|
|
20
|
-
label?: string;
|
|
21
|
-
disabled?: string;
|
|
22
|
-
};
|
|
23
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
24
|
-
readonly validateEvent: boolean;
|
|
25
|
-
readonly tag: string;
|
|
26
|
-
}> & Omit<{
|
|
27
|
-
readonly disabled: boolean;
|
|
28
|
-
readonly props: {
|
|
29
|
-
value?: string;
|
|
30
|
-
label?: string;
|
|
31
|
-
disabled?: string;
|
|
32
|
-
};
|
|
33
|
-
readonly tag: string;
|
|
34
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
35
|
-
readonly validateEvent: boolean;
|
|
36
|
-
readonly fill?: string | undefined;
|
|
37
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
38
|
-
readonly options?: import('element-plus').CheckboxOption[] | undefined;
|
|
39
|
-
readonly ariaLabel?: string | undefined;
|
|
40
|
-
readonly min?: number | undefined;
|
|
41
|
-
readonly max?: number | undefined;
|
|
42
|
-
readonly textColor?: string | undefined;
|
|
43
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
44
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
45
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
|
|
46
|
-
$attrs: {
|
|
47
|
-
[x: string]: unknown;
|
|
48
|
-
};
|
|
49
|
-
$refs: {
|
|
50
|
-
[x: string]: unknown;
|
|
51
|
-
};
|
|
52
|
-
$slots: Readonly<{
|
|
53
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
54
|
-
}>;
|
|
55
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
56
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
57
|
-
$host: Element | null;
|
|
58
|
-
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
59
|
-
$el: any;
|
|
60
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
61
|
-
readonly ariaLabel: StringConstructor;
|
|
62
|
-
readonly modelValue: {
|
|
63
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
64
|
-
readonly required: false;
|
|
65
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
66
|
-
__epPropKey: true;
|
|
67
|
-
} & {
|
|
68
|
-
readonly default: () => never[];
|
|
69
|
-
};
|
|
70
|
-
readonly disabled: BooleanConstructor;
|
|
71
|
-
readonly min: NumberConstructor;
|
|
72
|
-
readonly max: NumberConstructor;
|
|
73
|
-
readonly size: {
|
|
74
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
75
|
-
readonly required: false;
|
|
76
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
77
|
-
__epPropKey: true;
|
|
78
|
-
};
|
|
79
|
-
readonly fill: StringConstructor;
|
|
80
|
-
readonly textColor: StringConstructor;
|
|
81
|
-
readonly tag: {
|
|
82
|
-
readonly type: PropType<string>;
|
|
83
|
-
readonly required: false;
|
|
84
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
85
|
-
__epPropKey: true;
|
|
86
|
-
} & {
|
|
87
|
-
readonly default: "div";
|
|
88
|
-
};
|
|
89
|
-
readonly validateEvent: {
|
|
90
|
-
readonly type: PropType<boolean>;
|
|
91
|
-
readonly required: false;
|
|
92
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
93
|
-
__epPropKey: true;
|
|
94
|
-
} & {
|
|
95
|
-
readonly default: true;
|
|
96
|
-
};
|
|
97
|
-
readonly options: {
|
|
98
|
-
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
99
|
-
readonly required: false;
|
|
100
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
101
|
-
__epPropKey: true;
|
|
102
|
-
};
|
|
103
|
-
readonly props: {
|
|
104
|
-
readonly type: PropType<{
|
|
105
|
-
value?: string;
|
|
106
|
-
label?: string;
|
|
107
|
-
disabled?: string;
|
|
108
|
-
}>;
|
|
109
|
-
readonly required: false;
|
|
110
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
111
|
-
__epPropKey: true;
|
|
112
|
-
} & {
|
|
113
|
-
readonly default: () => Required<{
|
|
114
|
-
value?: string;
|
|
115
|
-
label?: string;
|
|
116
|
-
disabled?: string;
|
|
117
|
-
}>;
|
|
118
|
-
};
|
|
119
|
-
}>> & {
|
|
120
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
121
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
122
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
123
|
-
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
124
|
-
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
125
|
-
}, string, {
|
|
126
|
-
readonly disabled: boolean;
|
|
127
|
-
readonly props: {
|
|
128
|
-
value?: string;
|
|
129
|
-
label?: string;
|
|
130
|
-
disabled?: string;
|
|
131
|
-
};
|
|
132
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
133
|
-
readonly validateEvent: boolean;
|
|
134
|
-
readonly tag: string;
|
|
135
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
136
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
137
|
-
created?: (() => void) | (() => void)[];
|
|
138
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
139
|
-
mounted?: (() => void) | (() => void)[];
|
|
140
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
141
|
-
updated?: (() => void) | (() => void)[];
|
|
142
|
-
activated?: (() => void) | (() => void)[];
|
|
143
|
-
deactivated?: (() => void) | (() => void)[];
|
|
144
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
145
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
146
|
-
destroyed?: (() => void) | (() => void)[];
|
|
147
|
-
unmounted?: (() => void) | (() => void)[];
|
|
148
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
149
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
150
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
151
|
-
};
|
|
152
|
-
$forceUpdate: () => void;
|
|
153
|
-
$nextTick: typeof import('vue').nextTick;
|
|
154
|
-
$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;
|
|
155
|
-
} & Readonly<{
|
|
156
|
-
readonly disabled: boolean;
|
|
157
|
-
readonly props: {
|
|
158
|
-
value?: string;
|
|
159
|
-
label?: string;
|
|
160
|
-
disabled?: string;
|
|
161
|
-
};
|
|
162
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
163
|
-
readonly validateEvent: boolean;
|
|
164
|
-
readonly tag: string;
|
|
165
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
166
|
-
readonly ariaLabel: StringConstructor;
|
|
167
|
-
readonly modelValue: {
|
|
168
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
169
|
-
readonly required: false;
|
|
170
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
171
|
-
__epPropKey: true;
|
|
172
|
-
} & {
|
|
173
|
-
readonly default: () => never[];
|
|
174
|
-
};
|
|
175
|
-
readonly disabled: BooleanConstructor;
|
|
176
|
-
readonly min: NumberConstructor;
|
|
177
|
-
readonly max: NumberConstructor;
|
|
178
|
-
readonly size: {
|
|
179
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
180
|
-
readonly required: false;
|
|
181
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
182
|
-
__epPropKey: true;
|
|
183
|
-
};
|
|
184
|
-
readonly fill: StringConstructor;
|
|
185
|
-
readonly textColor: StringConstructor;
|
|
186
|
-
readonly tag: {
|
|
187
|
-
readonly type: PropType<string>;
|
|
188
|
-
readonly required: false;
|
|
189
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
190
|
-
__epPropKey: true;
|
|
191
|
-
} & {
|
|
192
|
-
readonly default: "div";
|
|
193
|
-
};
|
|
194
|
-
readonly validateEvent: {
|
|
195
|
-
readonly type: PropType<boolean>;
|
|
196
|
-
readonly required: false;
|
|
197
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
198
|
-
__epPropKey: true;
|
|
199
|
-
} & {
|
|
200
|
-
readonly default: true;
|
|
201
|
-
};
|
|
202
|
-
readonly options: {
|
|
203
|
-
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
204
|
-
readonly required: false;
|
|
205
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
206
|
-
__epPropKey: true;
|
|
207
|
-
};
|
|
208
|
-
readonly props: {
|
|
209
|
-
readonly type: PropType<{
|
|
210
|
-
value?: string;
|
|
211
|
-
label?: string;
|
|
212
|
-
disabled?: string;
|
|
213
|
-
}>;
|
|
214
|
-
readonly required: false;
|
|
215
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
216
|
-
__epPropKey: true;
|
|
217
|
-
} & {
|
|
218
|
-
readonly default: () => Required<{
|
|
219
|
-
value?: string;
|
|
220
|
-
label?: string;
|
|
221
|
-
disabled?: string;
|
|
222
|
-
}>;
|
|
223
|
-
};
|
|
224
|
-
}>> & {
|
|
225
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
226
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
227
|
-
}, "disabled" | "props" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
228
|
-
$slots: {
|
|
229
|
-
default?(_: {}): any;
|
|
230
|
-
};
|
|
231
|
-
}) | null;
|
|
232
|
-
};
|
|
12
|
+
refs: {};
|
|
233
13
|
rootEl: any;
|
|
234
14
|
};
|
|
235
15
|
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
@@ -242,171 +22,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
242
22
|
type: BooleanConstructor;
|
|
243
23
|
default: boolean;
|
|
244
24
|
};
|
|
245
|
-
}>, {
|
|
246
|
-
$: import('vue').ComponentInternalInstance;
|
|
247
|
-
$data: {};
|
|
248
|
-
$props: Partial<{
|
|
249
|
-
readonly disabled: boolean;
|
|
250
|
-
readonly props: {
|
|
251
|
-
value?: string;
|
|
252
|
-
label?: string;
|
|
253
|
-
disabled?: string;
|
|
254
|
-
};
|
|
255
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
256
|
-
readonly validateEvent: boolean;
|
|
257
|
-
readonly tag: string;
|
|
258
|
-
}> & Omit<{
|
|
259
|
-
readonly disabled: boolean;
|
|
260
|
-
readonly props: {
|
|
261
|
-
value?: string;
|
|
262
|
-
label?: string;
|
|
263
|
-
disabled?: string;
|
|
264
|
-
};
|
|
265
|
-
readonly tag: string;
|
|
266
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
267
|
-
readonly validateEvent: boolean;
|
|
268
|
-
readonly fill?: string | undefined;
|
|
269
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
270
|
-
readonly options?: import('element-plus').CheckboxOption[] | undefined;
|
|
271
|
-
readonly ariaLabel?: string | undefined;
|
|
272
|
-
readonly min?: number | undefined;
|
|
273
|
-
readonly max?: number | undefined;
|
|
274
|
-
readonly textColor?: string | undefined;
|
|
275
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
276
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
277
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
|
|
278
|
-
$attrs: {
|
|
279
|
-
[x: string]: unknown;
|
|
280
|
-
};
|
|
281
|
-
$refs: {
|
|
282
|
-
[x: string]: unknown;
|
|
283
|
-
};
|
|
284
|
-
$slots: Readonly<{
|
|
285
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
286
|
-
}> & {
|
|
287
|
-
default?(_: {}): any;
|
|
288
|
-
};
|
|
289
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
290
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
291
|
-
$host: Element | null;
|
|
292
|
-
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
293
|
-
$el: any;
|
|
294
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
295
|
-
readonly ariaLabel: StringConstructor;
|
|
296
|
-
readonly modelValue: {
|
|
297
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
298
|
-
readonly required: false;
|
|
299
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
300
|
-
__epPropKey: true;
|
|
301
|
-
} & {
|
|
302
|
-
readonly default: () => never[];
|
|
303
|
-
};
|
|
304
|
-
readonly disabled: BooleanConstructor;
|
|
305
|
-
readonly min: NumberConstructor;
|
|
306
|
-
readonly max: NumberConstructor;
|
|
307
|
-
readonly size: {
|
|
308
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
309
|
-
readonly required: false;
|
|
310
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
311
|
-
__epPropKey: true;
|
|
312
|
-
};
|
|
313
|
-
readonly fill: StringConstructor;
|
|
314
|
-
readonly textColor: StringConstructor;
|
|
315
|
-
readonly tag: {
|
|
316
|
-
readonly type: PropType<string>;
|
|
317
|
-
readonly required: false;
|
|
318
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
319
|
-
__epPropKey: true;
|
|
320
|
-
} & {
|
|
321
|
-
readonly default: "div";
|
|
322
|
-
};
|
|
323
|
-
readonly validateEvent: {
|
|
324
|
-
readonly type: PropType<boolean>;
|
|
325
|
-
readonly required: false;
|
|
326
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
327
|
-
__epPropKey: true;
|
|
328
|
-
} & {
|
|
329
|
-
readonly default: true;
|
|
330
|
-
};
|
|
331
|
-
readonly options: {
|
|
332
|
-
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
333
|
-
readonly required: false;
|
|
334
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
335
|
-
__epPropKey: true;
|
|
336
|
-
};
|
|
337
|
-
readonly props: {
|
|
338
|
-
readonly type: PropType<{
|
|
339
|
-
value?: string;
|
|
340
|
-
label?: string;
|
|
341
|
-
disabled?: string;
|
|
342
|
-
}>;
|
|
343
|
-
readonly required: false;
|
|
344
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
345
|
-
__epPropKey: true;
|
|
346
|
-
} & {
|
|
347
|
-
readonly default: () => Required<{
|
|
348
|
-
value?: string;
|
|
349
|
-
label?: string;
|
|
350
|
-
disabled?: string;
|
|
351
|
-
}>;
|
|
352
|
-
};
|
|
353
|
-
}>> & {
|
|
354
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
355
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
356
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
357
|
-
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
358
|
-
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
359
|
-
}, string, {
|
|
360
|
-
readonly disabled: boolean;
|
|
361
|
-
readonly props: {
|
|
362
|
-
value?: string;
|
|
363
|
-
label?: string;
|
|
364
|
-
disabled?: string;
|
|
365
|
-
};
|
|
366
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
367
|
-
readonly validateEvent: boolean;
|
|
368
|
-
readonly tag: string;
|
|
369
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
370
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
371
|
-
created?: (() => void) | (() => void)[];
|
|
372
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
373
|
-
mounted?: (() => void) | (() => void)[];
|
|
374
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
375
|
-
updated?: (() => void) | (() => void)[];
|
|
376
|
-
activated?: (() => void) | (() => void)[];
|
|
377
|
-
deactivated?: (() => void) | (() => void)[];
|
|
378
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
379
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
380
|
-
destroyed?: (() => void) | (() => void)[];
|
|
381
|
-
unmounted?: (() => void) | (() => void)[];
|
|
382
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
383
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
384
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
385
|
-
};
|
|
386
|
-
$forceUpdate: () => void;
|
|
387
|
-
$nextTick: typeof import('vue').nextTick;
|
|
388
|
-
$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;
|
|
389
|
-
disabled: boolean;
|
|
390
|
-
props: {
|
|
391
|
-
value?: string;
|
|
392
|
-
label?: string;
|
|
393
|
-
disabled?: string;
|
|
394
|
-
};
|
|
395
|
-
modelValue: import('element-plus').CheckboxGroupValueType;
|
|
396
|
-
validateEvent: boolean;
|
|
397
|
-
tag: string;
|
|
398
|
-
fill?: string | undefined;
|
|
399
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
400
|
-
size?: ("" | "default" | "small" | "large") | undefined;
|
|
401
|
-
options?: import('element-plus').CheckboxOption[] | undefined;
|
|
402
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
403
|
-
ariaLabel?: string | undefined;
|
|
404
|
-
min?: number | undefined;
|
|
405
|
-
max?: number | undefined;
|
|
406
|
-
textColor?: string | undefined;
|
|
407
|
-
$route: import('vue-router').TypesConfig extends Record<"$route", infer T> ? T : import('vue-router').RouteLocationNormalizedLoaded;
|
|
408
|
-
$router: import('vue-router').TypesConfig extends Record<"$router", infer T> ? T : import('vue-router').Router;
|
|
409
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
25
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
410
26
|
options: {
|
|
411
27
|
type: PropType<SelectOptions[]>;
|
|
412
28
|
default: () => never[];
|
|
@@ -418,227 +34,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
418
34
|
}>> & Readonly<{}>, {
|
|
419
35
|
options: SelectOptions[];
|
|
420
36
|
isButton: boolean;
|
|
421
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
422
|
-
componentRef: ({
|
|
423
|
-
$: import('vue').ComponentInternalInstance;
|
|
424
|
-
$data: {};
|
|
425
|
-
$props: Partial<{
|
|
426
|
-
readonly disabled: boolean;
|
|
427
|
-
readonly props: {
|
|
428
|
-
value?: string;
|
|
429
|
-
label?: string;
|
|
430
|
-
disabled?: string;
|
|
431
|
-
};
|
|
432
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
433
|
-
readonly validateEvent: boolean;
|
|
434
|
-
readonly tag: string;
|
|
435
|
-
}> & Omit<{
|
|
436
|
-
readonly disabled: boolean;
|
|
437
|
-
readonly props: {
|
|
438
|
-
value?: string;
|
|
439
|
-
label?: string;
|
|
440
|
-
disabled?: string;
|
|
441
|
-
};
|
|
442
|
-
readonly tag: string;
|
|
443
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
444
|
-
readonly validateEvent: boolean;
|
|
445
|
-
readonly fill?: string | undefined;
|
|
446
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
447
|
-
readonly options?: import('element-plus').CheckboxOption[] | undefined;
|
|
448
|
-
readonly ariaLabel?: string | undefined;
|
|
449
|
-
readonly min?: number | undefined;
|
|
450
|
-
readonly max?: number | undefined;
|
|
451
|
-
readonly textColor?: string | undefined;
|
|
452
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined | undefined;
|
|
453
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined | undefined;
|
|
454
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "props" | "tag" | "modelValue" | "validateEvent">;
|
|
455
|
-
$attrs: {
|
|
456
|
-
[x: string]: unknown;
|
|
457
|
-
};
|
|
458
|
-
$refs: {
|
|
459
|
-
[x: string]: unknown;
|
|
460
|
-
};
|
|
461
|
-
$slots: Readonly<{
|
|
462
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
463
|
-
}>;
|
|
464
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
465
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
466
|
-
$host: Element | null;
|
|
467
|
-
$emit: ((event: "change", val: import('element-plus').CheckboxValueType[]) => void) & ((event: "update:modelValue", val: import('element-plus').CheckboxGroupValueType) => void);
|
|
468
|
-
$el: any;
|
|
469
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
470
|
-
readonly ariaLabel: StringConstructor;
|
|
471
|
-
readonly modelValue: {
|
|
472
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
473
|
-
readonly required: false;
|
|
474
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
475
|
-
__epPropKey: true;
|
|
476
|
-
} & {
|
|
477
|
-
readonly default: () => never[];
|
|
478
|
-
};
|
|
479
|
-
readonly disabled: BooleanConstructor;
|
|
480
|
-
readonly min: NumberConstructor;
|
|
481
|
-
readonly max: NumberConstructor;
|
|
482
|
-
readonly size: {
|
|
483
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
484
|
-
readonly required: false;
|
|
485
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
486
|
-
__epPropKey: true;
|
|
487
|
-
};
|
|
488
|
-
readonly fill: StringConstructor;
|
|
489
|
-
readonly textColor: StringConstructor;
|
|
490
|
-
readonly tag: {
|
|
491
|
-
readonly type: PropType<string>;
|
|
492
|
-
readonly required: false;
|
|
493
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
494
|
-
__epPropKey: true;
|
|
495
|
-
} & {
|
|
496
|
-
readonly default: "div";
|
|
497
|
-
};
|
|
498
|
-
readonly validateEvent: {
|
|
499
|
-
readonly type: PropType<boolean>;
|
|
500
|
-
readonly required: false;
|
|
501
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
502
|
-
__epPropKey: true;
|
|
503
|
-
} & {
|
|
504
|
-
readonly default: true;
|
|
505
|
-
};
|
|
506
|
-
readonly options: {
|
|
507
|
-
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
508
|
-
readonly required: false;
|
|
509
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
510
|
-
__epPropKey: true;
|
|
511
|
-
};
|
|
512
|
-
readonly props: {
|
|
513
|
-
readonly type: PropType<{
|
|
514
|
-
value?: string;
|
|
515
|
-
label?: string;
|
|
516
|
-
disabled?: string;
|
|
517
|
-
}>;
|
|
518
|
-
readonly required: false;
|
|
519
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
520
|
-
__epPropKey: true;
|
|
521
|
-
} & {
|
|
522
|
-
readonly default: () => Required<{
|
|
523
|
-
value?: string;
|
|
524
|
-
label?: string;
|
|
525
|
-
disabled?: string;
|
|
526
|
-
}>;
|
|
527
|
-
};
|
|
528
|
-
}>> & {
|
|
529
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
530
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
531
|
-
}, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
532
|
-
"update:modelValue": (val: import('element-plus').CheckboxGroupValueType) => void;
|
|
533
|
-
change: (val: import('element-plus').CheckboxValueType[]) => void;
|
|
534
|
-
}, string, {
|
|
535
|
-
readonly disabled: boolean;
|
|
536
|
-
readonly props: {
|
|
537
|
-
value?: string;
|
|
538
|
-
label?: string;
|
|
539
|
-
disabled?: string;
|
|
540
|
-
};
|
|
541
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
542
|
-
readonly validateEvent: boolean;
|
|
543
|
-
readonly tag: string;
|
|
544
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
545
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
546
|
-
created?: (() => void) | (() => void)[];
|
|
547
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
548
|
-
mounted?: (() => void) | (() => void)[];
|
|
549
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
550
|
-
updated?: (() => void) | (() => void)[];
|
|
551
|
-
activated?: (() => void) | (() => void)[];
|
|
552
|
-
deactivated?: (() => void) | (() => void)[];
|
|
553
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
554
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
555
|
-
destroyed?: (() => void) | (() => void)[];
|
|
556
|
-
unmounted?: (() => void) | (() => void)[];
|
|
557
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
558
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
559
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
560
|
-
};
|
|
561
|
-
$forceUpdate: () => void;
|
|
562
|
-
$nextTick: typeof import('vue').nextTick;
|
|
563
|
-
$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;
|
|
564
|
-
} & Readonly<{
|
|
565
|
-
readonly disabled: boolean;
|
|
566
|
-
readonly props: {
|
|
567
|
-
value?: string;
|
|
568
|
-
label?: string;
|
|
569
|
-
disabled?: string;
|
|
570
|
-
};
|
|
571
|
-
readonly modelValue: import('element-plus').CheckboxGroupValueType;
|
|
572
|
-
readonly validateEvent: boolean;
|
|
573
|
-
readonly tag: string;
|
|
574
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
575
|
-
readonly ariaLabel: StringConstructor;
|
|
576
|
-
readonly modelValue: {
|
|
577
|
-
readonly type: PropType<import('element-plus').CheckboxGroupValueType>;
|
|
578
|
-
readonly required: false;
|
|
579
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
580
|
-
__epPropKey: true;
|
|
581
|
-
} & {
|
|
582
|
-
readonly default: () => never[];
|
|
583
|
-
};
|
|
584
|
-
readonly disabled: BooleanConstructor;
|
|
585
|
-
readonly min: NumberConstructor;
|
|
586
|
-
readonly max: NumberConstructor;
|
|
587
|
-
readonly size: {
|
|
588
|
-
readonly type: PropType<"" | "default" | "small" | "large">;
|
|
589
|
-
readonly required: false;
|
|
590
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
591
|
-
__epPropKey: true;
|
|
592
|
-
};
|
|
593
|
-
readonly fill: StringConstructor;
|
|
594
|
-
readonly textColor: StringConstructor;
|
|
595
|
-
readonly tag: {
|
|
596
|
-
readonly type: PropType<string>;
|
|
597
|
-
readonly required: false;
|
|
598
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
599
|
-
__epPropKey: true;
|
|
600
|
-
} & {
|
|
601
|
-
readonly default: "div";
|
|
602
|
-
};
|
|
603
|
-
readonly validateEvent: {
|
|
604
|
-
readonly type: PropType<boolean>;
|
|
605
|
-
readonly required: false;
|
|
606
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
607
|
-
__epPropKey: true;
|
|
608
|
-
} & {
|
|
609
|
-
readonly default: true;
|
|
610
|
-
};
|
|
611
|
-
readonly options: {
|
|
612
|
-
readonly type: PropType<import('element-plus').CheckboxOption[]>;
|
|
613
|
-
readonly required: false;
|
|
614
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
615
|
-
__epPropKey: true;
|
|
616
|
-
};
|
|
617
|
-
readonly props: {
|
|
618
|
-
readonly type: PropType<{
|
|
619
|
-
value?: string;
|
|
620
|
-
label?: string;
|
|
621
|
-
disabled?: string;
|
|
622
|
-
}>;
|
|
623
|
-
readonly required: false;
|
|
624
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
625
|
-
__epPropKey: true;
|
|
626
|
-
} & {
|
|
627
|
-
readonly default: () => Required<{
|
|
628
|
-
value?: string;
|
|
629
|
-
label?: string;
|
|
630
|
-
disabled?: string;
|
|
631
|
-
}>;
|
|
632
|
-
};
|
|
633
|
-
}>> & {
|
|
634
|
-
"onUpdate:modelValue"?: ((val: import('element-plus').CheckboxGroupValueType) => any) | undefined;
|
|
635
|
-
onChange?: ((val: import('element-plus').CheckboxValueType[]) => any) | undefined;
|
|
636
|
-
}, "disabled" | "props" | "tag" | "modelValue" | "validateEvent"> & import('vue').ShallowUnwrapRef<{}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
637
|
-
$slots: {
|
|
638
|
-
default?(_: {}): any;
|
|
639
|
-
};
|
|
640
|
-
}) | null;
|
|
641
|
-
}, any>;
|
|
37
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
642
38
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
643
39
|
export default _default;
|
|
644
40
|
type __VLS_WithTemplateSlots<T, S> = T & {
|