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