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