ra-element 0.1.52 → 0.1.53
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 +229 -229
- package/lib/components/ra-checkbox-group/index.vue.d.ts +179 -179
- package/lib/components/ra-dialog/index.vue.d.ts +382 -382
- package/lib/components/ra-dialog-select/index.vue.d.ts +1 -1
- package/lib/components/ra-input/index.vue.d.ts +354 -354
- package/lib/components/ra-pagination/index.vue.d.ts +271 -271
- package/lib/components/ra-radio-group/index.vue.d.ts +189 -189
- package/lib/components/ra-tree-select/index.vue.d.ts +100 -32
- package/lib/components/ra-upload/index.vue.d.ts +549 -2
- package/lib/ra-element.css +1 -1
- package/lib/ra-element.es.js +7499 -14891
- package/lib/ra-element.es.js.map +1 -1
- package/lib/ra-element.umd.js +3 -19
- package/lib/ra-element.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -8,21 +8,325 @@ declare function __VLS_template(): {
|
|
|
8
8
|
append?(_: {}): any;
|
|
9
9
|
};
|
|
10
10
|
refs: {
|
|
11
|
-
componentRef:
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
11
|
+
componentRef: ({
|
|
12
|
+
$: import('vue').ComponentInternalInstance;
|
|
13
|
+
$data: {};
|
|
14
|
+
$props: Partial<{
|
|
15
|
+
readonly disabled: boolean;
|
|
16
|
+
readonly tabindex: string | number;
|
|
17
|
+
readonly id: string;
|
|
18
|
+
readonly type: string;
|
|
19
|
+
readonly modelValue: string | number | null | undefined;
|
|
20
|
+
readonly readonly: boolean;
|
|
21
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
22
|
+
readonly autocomplete: AutoFill;
|
|
23
|
+
readonly containerRole: string;
|
|
24
|
+
readonly validateEvent: boolean;
|
|
25
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
26
|
+
readonly rows: number;
|
|
27
|
+
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
28
|
+
readonly clearable: boolean;
|
|
29
|
+
readonly showPassword: boolean;
|
|
30
|
+
readonly showWordLimit: boolean;
|
|
31
|
+
readonly autofocus: boolean;
|
|
32
|
+
}> & Omit<{
|
|
33
|
+
readonly disabled: boolean;
|
|
34
|
+
readonly type: string;
|
|
35
|
+
readonly autofocus: boolean;
|
|
36
|
+
readonly modelValue: string | number | null;
|
|
37
|
+
readonly tabindex: string | number;
|
|
38
|
+
readonly validateEvent: boolean;
|
|
39
|
+
readonly clearable: boolean;
|
|
40
|
+
readonly readonly: boolean;
|
|
41
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
42
|
+
readonly autocomplete: AutoFill;
|
|
43
|
+
readonly showPassword: boolean;
|
|
44
|
+
readonly showWordLimit: boolean;
|
|
45
|
+
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
46
|
+
readonly rows: number;
|
|
47
|
+
readonly name?: string | undefined;
|
|
48
|
+
readonly form?: string | undefined;
|
|
49
|
+
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
50
|
+
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
51
|
+
readonly id?: string | undefined;
|
|
52
|
+
readonly ariaLabel?: string | undefined;
|
|
53
|
+
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
54
|
+
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
55
|
+
readonly placeholder?: string | undefined;
|
|
56
|
+
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
57
|
+
readonly maxlength?: (string | number) | undefined;
|
|
58
|
+
readonly minlength?: (string | number) | undefined;
|
|
59
|
+
readonly formatter?: Function | undefined;
|
|
60
|
+
readonly parser?: Function | undefined;
|
|
61
|
+
readonly suffixIcon?: (string | import('vue').Component) | undefined;
|
|
62
|
+
readonly containerRole?: string | undefined;
|
|
63
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
64
|
+
onChange?: ((value: string) => any) | undefined | undefined;
|
|
65
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
66
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
67
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
68
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
69
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
70
|
+
onInput?: ((value: string) => any) | undefined | undefined;
|
|
71
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
72
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
73
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
74
|
+
onClear?: (() => any) | undefined | undefined;
|
|
75
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
76
|
+
$attrs: {
|
|
77
|
+
[x: string]: unknown;
|
|
78
|
+
};
|
|
79
|
+
$refs: {
|
|
80
|
+
[x: string]: unknown;
|
|
81
|
+
};
|
|
82
|
+
$slots: Readonly<{
|
|
83
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
84
|
+
}>;
|
|
85
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
86
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
87
|
+
$host: Element | null;
|
|
88
|
+
$emit: ((event: "input", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void);
|
|
89
|
+
$el: any;
|
|
90
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
91
|
+
readonly inputmode: {
|
|
92
|
+
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
93
|
+
readonly required: false;
|
|
94
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
95
|
+
__epPropKey: true;
|
|
96
|
+
} & {
|
|
97
|
+
readonly default: undefined;
|
|
98
|
+
};
|
|
99
|
+
readonly name: StringConstructor;
|
|
100
|
+
readonly ariaLabel: StringConstructor;
|
|
101
|
+
readonly id: {
|
|
102
|
+
readonly type: import('vue').PropType<string>;
|
|
103
|
+
readonly required: false;
|
|
104
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
105
|
+
__epPropKey: true;
|
|
106
|
+
} & {
|
|
107
|
+
readonly default: undefined;
|
|
108
|
+
};
|
|
109
|
+
readonly size: {
|
|
110
|
+
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
111
|
+
readonly required: false;
|
|
112
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
113
|
+
__epPropKey: true;
|
|
114
|
+
};
|
|
115
|
+
readonly disabled: BooleanConstructor;
|
|
116
|
+
readonly modelValue: {
|
|
117
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
118
|
+
readonly required: false;
|
|
119
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
120
|
+
__epPropKey: true;
|
|
121
|
+
} & {
|
|
122
|
+
readonly default: "";
|
|
123
|
+
};
|
|
124
|
+
readonly maxlength: {
|
|
125
|
+
readonly type: import('vue').PropType<string | number>;
|
|
126
|
+
readonly required: false;
|
|
127
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
128
|
+
__epPropKey: true;
|
|
129
|
+
};
|
|
130
|
+
readonly minlength: {
|
|
131
|
+
readonly type: import('vue').PropType<string | number>;
|
|
132
|
+
readonly required: false;
|
|
133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
|
+
__epPropKey: true;
|
|
135
|
+
};
|
|
136
|
+
readonly type: {
|
|
137
|
+
readonly type: import('vue').PropType<string>;
|
|
138
|
+
readonly required: false;
|
|
139
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
140
|
+
__epPropKey: true;
|
|
141
|
+
} & {
|
|
142
|
+
readonly default: "text";
|
|
143
|
+
};
|
|
144
|
+
readonly resize: {
|
|
145
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
146
|
+
readonly required: false;
|
|
147
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
148
|
+
__epPropKey: true;
|
|
149
|
+
};
|
|
150
|
+
readonly autosize: {
|
|
151
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
152
|
+
readonly required: false;
|
|
153
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
154
|
+
__epPropKey: true;
|
|
155
|
+
} & {
|
|
156
|
+
readonly default: false;
|
|
157
|
+
};
|
|
158
|
+
readonly autocomplete: {
|
|
159
|
+
readonly type: import('vue').PropType<AutoFill>;
|
|
160
|
+
readonly required: false;
|
|
161
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
162
|
+
__epPropKey: true;
|
|
163
|
+
} & {
|
|
164
|
+
readonly default: "off";
|
|
165
|
+
};
|
|
166
|
+
readonly formatter: {
|
|
167
|
+
readonly type: import('vue').PropType<Function>;
|
|
168
|
+
readonly required: false;
|
|
169
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
170
|
+
__epPropKey: true;
|
|
171
|
+
};
|
|
172
|
+
readonly parser: {
|
|
173
|
+
readonly type: import('vue').PropType<Function>;
|
|
174
|
+
readonly required: false;
|
|
175
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
176
|
+
__epPropKey: true;
|
|
177
|
+
};
|
|
178
|
+
readonly placeholder: {
|
|
179
|
+
readonly type: import('vue').PropType<string>;
|
|
180
|
+
readonly required: false;
|
|
181
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
182
|
+
__epPropKey: true;
|
|
183
|
+
};
|
|
184
|
+
readonly form: {
|
|
185
|
+
readonly type: import('vue').PropType<string>;
|
|
186
|
+
readonly required: false;
|
|
187
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
188
|
+
__epPropKey: true;
|
|
189
|
+
};
|
|
190
|
+
readonly readonly: BooleanConstructor;
|
|
191
|
+
readonly clearable: BooleanConstructor;
|
|
192
|
+
readonly clearIcon: {
|
|
193
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
194
|
+
readonly required: false;
|
|
195
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
196
|
+
__epPropKey: true;
|
|
197
|
+
};
|
|
198
|
+
readonly showPassword: BooleanConstructor;
|
|
199
|
+
readonly showWordLimit: BooleanConstructor;
|
|
200
|
+
readonly suffixIcon: {
|
|
201
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
202
|
+
readonly required: false;
|
|
203
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
204
|
+
__epPropKey: true;
|
|
205
|
+
};
|
|
206
|
+
readonly prefixIcon: {
|
|
207
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
208
|
+
readonly required: false;
|
|
209
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
210
|
+
__epPropKey: true;
|
|
211
|
+
};
|
|
212
|
+
readonly containerRole: {
|
|
213
|
+
readonly type: import('vue').PropType<string>;
|
|
214
|
+
readonly required: false;
|
|
215
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
216
|
+
__epPropKey: true;
|
|
217
|
+
} & {
|
|
218
|
+
readonly default: undefined;
|
|
219
|
+
};
|
|
220
|
+
readonly tabindex: {
|
|
221
|
+
readonly type: import('vue').PropType<string | number>;
|
|
222
|
+
readonly required: false;
|
|
223
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
224
|
+
__epPropKey: true;
|
|
225
|
+
} & {
|
|
226
|
+
readonly default: 0;
|
|
227
|
+
};
|
|
228
|
+
readonly validateEvent: {
|
|
229
|
+
readonly type: import('vue').PropType<boolean>;
|
|
230
|
+
readonly required: false;
|
|
231
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
232
|
+
__epPropKey: true;
|
|
233
|
+
} & {
|
|
234
|
+
readonly default: true;
|
|
235
|
+
};
|
|
236
|
+
readonly inputStyle: {
|
|
237
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
238
|
+
readonly required: false;
|
|
239
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
240
|
+
__epPropKey: true;
|
|
241
|
+
} & {
|
|
242
|
+
readonly default: () => {};
|
|
243
|
+
};
|
|
244
|
+
readonly autofocus: BooleanConstructor;
|
|
245
|
+
readonly rows: {
|
|
246
|
+
readonly type: import('vue').PropType<number>;
|
|
247
|
+
readonly required: false;
|
|
248
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
249
|
+
__epPropKey: true;
|
|
250
|
+
} & {
|
|
251
|
+
readonly default: 2;
|
|
252
|
+
};
|
|
253
|
+
}>> & {
|
|
254
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
255
|
+
onChange?: ((value: string) => any) | undefined;
|
|
256
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
257
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
258
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
259
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
260
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
261
|
+
onInput?: ((value: string) => any) | undefined;
|
|
262
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
263
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
264
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
265
|
+
onClear?: (() => any) | undefined;
|
|
266
|
+
}, {
|
|
267
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
268
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
269
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
270
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
271
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
272
|
+
isComposing: import('vue').Ref<boolean>;
|
|
273
|
+
focus: () => void | undefined;
|
|
274
|
+
blur: () => void | undefined;
|
|
275
|
+
select: () => void;
|
|
276
|
+
clear: () => void;
|
|
277
|
+
resizeTextarea: () => void;
|
|
278
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
279
|
+
input: (value: string) => void;
|
|
280
|
+
focus: (evt: FocusEvent) => void;
|
|
281
|
+
clear: () => void;
|
|
282
|
+
"update:modelValue": (value: string) => void;
|
|
283
|
+
change: (value: string) => void;
|
|
284
|
+
blur: (evt: FocusEvent) => void;
|
|
285
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
286
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
287
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
288
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
289
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
290
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
291
|
+
}, string, {
|
|
292
|
+
readonly disabled: boolean;
|
|
293
|
+
readonly tabindex: string | number;
|
|
294
|
+
readonly id: string;
|
|
295
|
+
readonly type: string;
|
|
296
|
+
readonly modelValue: string | number | null | undefined;
|
|
297
|
+
readonly readonly: boolean;
|
|
298
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
299
|
+
readonly autocomplete: AutoFill;
|
|
300
|
+
readonly containerRole: string;
|
|
301
|
+
readonly validateEvent: boolean;
|
|
302
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
303
|
+
readonly rows: number;
|
|
304
|
+
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
305
|
+
readonly clearable: boolean;
|
|
306
|
+
readonly showPassword: boolean;
|
|
307
|
+
readonly showWordLimit: boolean;
|
|
308
|
+
readonly autofocus: boolean;
|
|
309
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
310
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
311
|
+
created?: (() => void) | (() => void)[];
|
|
312
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
313
|
+
mounted?: (() => void) | (() => void)[];
|
|
314
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
315
|
+
updated?: (() => void) | (() => void)[];
|
|
316
|
+
activated?: (() => void) | (() => void)[];
|
|
317
|
+
deactivated?: (() => void) | (() => void)[];
|
|
318
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
319
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
320
|
+
destroyed?: (() => void) | (() => void)[];
|
|
321
|
+
unmounted?: (() => void) | (() => void)[];
|
|
322
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
323
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
324
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
325
|
+
};
|
|
326
|
+
$forceUpdate: () => void;
|
|
327
|
+
$nextTick: typeof import('vue').nextTick;
|
|
328
|
+
$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;
|
|
329
|
+
} & Readonly<{
|
|
26
330
|
readonly disabled: boolean;
|
|
27
331
|
readonly tabindex: string | number;
|
|
28
332
|
readonly id: string;
|
|
@@ -40,65 +344,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
40
344
|
readonly showPassword: boolean;
|
|
41
345
|
readonly showWordLimit: boolean;
|
|
42
346
|
readonly autofocus: boolean;
|
|
43
|
-
}> & Omit<{
|
|
44
|
-
readonly disabled: boolean;
|
|
45
|
-
readonly type: string;
|
|
46
|
-
readonly autofocus: boolean;
|
|
47
|
-
readonly modelValue: string | number | null;
|
|
48
|
-
readonly validateEvent: boolean;
|
|
49
|
-
readonly tabindex: string | number;
|
|
50
|
-
readonly clearable: boolean;
|
|
51
|
-
readonly readonly: boolean;
|
|
52
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
53
|
-
readonly autocomplete: AutoFill;
|
|
54
|
-
readonly showPassword: boolean;
|
|
55
|
-
readonly showWordLimit: boolean;
|
|
56
|
-
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
57
|
-
readonly rows: number;
|
|
58
|
-
readonly name?: string | undefined;
|
|
59
|
-
readonly form?: string | undefined;
|
|
60
|
-
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
61
|
-
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
62
|
-
readonly ariaLabel?: string | undefined;
|
|
63
|
-
readonly id?: string | undefined;
|
|
64
|
-
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
65
|
-
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
66
|
-
readonly placeholder?: string | undefined;
|
|
67
|
-
readonly inputmode?: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
68
|
-
readonly maxlength?: (string | number) | undefined;
|
|
69
|
-
readonly minlength?: (string | number) | undefined;
|
|
70
|
-
readonly formatter?: Function | undefined;
|
|
71
|
-
readonly parser?: Function | undefined;
|
|
72
|
-
readonly suffixIcon?: (string | import('vue').Component) | undefined;
|
|
73
|
-
readonly containerRole?: string | undefined;
|
|
74
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
75
|
-
onChange?: ((value: string) => any) | undefined | undefined;
|
|
76
|
-
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
77
|
-
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
78
|
-
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
79
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
80
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
81
|
-
onInput?: ((value: string) => any) | undefined | undefined;
|
|
82
|
-
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
83
|
-
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
84
|
-
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
85
|
-
onClear?: (() => any) | undefined | undefined;
|
|
86
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
87
|
-
$attrs: {
|
|
88
|
-
[x: string]: unknown;
|
|
89
|
-
};
|
|
90
|
-
$refs: {
|
|
91
|
-
[x: string]: unknown;
|
|
92
|
-
};
|
|
93
|
-
$slots: Readonly<{
|
|
94
|
-
[name: string]: import('vue').Slot<any> | undefined;
|
|
95
|
-
}>;
|
|
96
|
-
$root: import('vue').ComponentPublicInstance | null;
|
|
97
|
-
$parent: import('vue').ComponentPublicInstance | null;
|
|
98
|
-
$host: Element | null;
|
|
99
|
-
$emit: ((event: "input", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void);
|
|
100
|
-
$el: any;
|
|
101
|
-
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
347
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
102
348
|
readonly inputmode: {
|
|
103
349
|
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
104
350
|
readonly required: false;
|
|
@@ -274,7 +520,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
274
520
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
275
521
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
276
522
|
onClear?: (() => any) | undefined;
|
|
277
|
-
}, {
|
|
523
|
+
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
278
524
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
279
525
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
280
526
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -286,271 +532,34 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
286
532
|
select: () => void;
|
|
287
533
|
clear: () => void;
|
|
288
534
|
resizeTextarea: () => void;
|
|
289
|
-
}
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
readonly showPassword: boolean;
|
|
318
|
-
readonly showWordLimit: boolean;
|
|
319
|
-
readonly autofocus: boolean;
|
|
320
|
-
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
321
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
322
|
-
created?: (() => void) | (() => void)[];
|
|
323
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
324
|
-
mounted?: (() => void) | (() => void)[];
|
|
325
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
326
|
-
updated?: (() => void) | (() => void)[];
|
|
327
|
-
activated?: (() => void) | (() => void)[];
|
|
328
|
-
deactivated?: (() => void) | (() => void)[];
|
|
329
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
330
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
331
|
-
destroyed?: (() => void) | (() => void)[];
|
|
332
|
-
unmounted?: (() => void) | (() => void)[];
|
|
333
|
-
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
334
|
-
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
335
|
-
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
336
|
-
};
|
|
337
|
-
$forceUpdate: () => void;
|
|
338
|
-
$nextTick: typeof import('vue').nextTick;
|
|
339
|
-
$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;
|
|
340
|
-
} & Readonly<{
|
|
341
|
-
readonly disabled: boolean;
|
|
342
|
-
readonly tabindex: string | number;
|
|
343
|
-
readonly id: string;
|
|
344
|
-
readonly type: string;
|
|
345
|
-
readonly modelValue: string | number | null | undefined;
|
|
346
|
-
readonly readonly: boolean;
|
|
347
|
-
readonly autosize: import('element-plus').InputAutoSize;
|
|
348
|
-
readonly autocomplete: AutoFill;
|
|
349
|
-
readonly containerRole: string;
|
|
350
|
-
readonly validateEvent: boolean;
|
|
351
|
-
readonly inputStyle: import('vue').StyleValue;
|
|
352
|
-
readonly rows: number;
|
|
353
|
-
readonly inputmode: "none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined;
|
|
354
|
-
readonly clearable: boolean;
|
|
355
|
-
readonly showPassword: boolean;
|
|
356
|
-
readonly showWordLimit: boolean;
|
|
357
|
-
readonly autofocus: boolean;
|
|
358
|
-
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
359
|
-
readonly inputmode: {
|
|
360
|
-
readonly type: import('vue').PropType<"none" | "text" | "search" | "url" | "email" | "tel" | "numeric" | "decimal" | undefined>;
|
|
361
|
-
readonly required: false;
|
|
362
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
363
|
-
__epPropKey: true;
|
|
364
|
-
} & {
|
|
365
|
-
readonly default: undefined;
|
|
366
|
-
};
|
|
367
|
-
readonly name: StringConstructor;
|
|
368
|
-
readonly ariaLabel: StringConstructor;
|
|
369
|
-
readonly id: {
|
|
370
|
-
readonly type: import('vue').PropType<string>;
|
|
371
|
-
readonly required: false;
|
|
372
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
373
|
-
__epPropKey: true;
|
|
374
|
-
} & {
|
|
375
|
-
readonly default: undefined;
|
|
376
|
-
};
|
|
377
|
-
readonly size: {
|
|
378
|
-
readonly type: import('vue').PropType<"" | "default" | "small" | "large">;
|
|
379
|
-
readonly required: false;
|
|
380
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
381
|
-
__epPropKey: true;
|
|
382
|
-
};
|
|
383
|
-
readonly disabled: BooleanConstructor;
|
|
384
|
-
readonly modelValue: {
|
|
385
|
-
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
386
|
-
readonly required: false;
|
|
387
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
388
|
-
__epPropKey: true;
|
|
389
|
-
} & {
|
|
390
|
-
readonly default: "";
|
|
391
|
-
};
|
|
392
|
-
readonly maxlength: {
|
|
393
|
-
readonly type: import('vue').PropType<string | number>;
|
|
394
|
-
readonly required: false;
|
|
395
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
396
|
-
__epPropKey: true;
|
|
397
|
-
};
|
|
398
|
-
readonly minlength: {
|
|
399
|
-
readonly type: import('vue').PropType<string | number>;
|
|
400
|
-
readonly required: false;
|
|
401
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
402
|
-
__epPropKey: true;
|
|
403
|
-
};
|
|
404
|
-
readonly type: {
|
|
405
|
-
readonly type: import('vue').PropType<string>;
|
|
406
|
-
readonly required: false;
|
|
407
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
408
|
-
__epPropKey: true;
|
|
409
|
-
} & {
|
|
410
|
-
readonly default: "text";
|
|
411
|
-
};
|
|
412
|
-
readonly resize: {
|
|
413
|
-
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
414
|
-
readonly required: false;
|
|
415
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
416
|
-
__epPropKey: true;
|
|
417
|
-
};
|
|
418
|
-
readonly autosize: {
|
|
419
|
-
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
420
|
-
readonly required: false;
|
|
421
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
422
|
-
__epPropKey: true;
|
|
423
|
-
} & {
|
|
424
|
-
readonly default: false;
|
|
425
|
-
};
|
|
426
|
-
readonly autocomplete: {
|
|
427
|
-
readonly type: import('vue').PropType<AutoFill>;
|
|
428
|
-
readonly required: false;
|
|
429
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
430
|
-
__epPropKey: true;
|
|
431
|
-
} & {
|
|
432
|
-
readonly default: "off";
|
|
433
|
-
};
|
|
434
|
-
readonly formatter: {
|
|
435
|
-
readonly type: import('vue').PropType<Function>;
|
|
436
|
-
readonly required: false;
|
|
437
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
438
|
-
__epPropKey: true;
|
|
439
|
-
};
|
|
440
|
-
readonly parser: {
|
|
441
|
-
readonly type: import('vue').PropType<Function>;
|
|
442
|
-
readonly required: false;
|
|
443
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
444
|
-
__epPropKey: true;
|
|
445
|
-
};
|
|
446
|
-
readonly placeholder: {
|
|
447
|
-
readonly type: import('vue').PropType<string>;
|
|
448
|
-
readonly required: false;
|
|
449
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
450
|
-
__epPropKey: true;
|
|
451
|
-
};
|
|
452
|
-
readonly form: {
|
|
453
|
-
readonly type: import('vue').PropType<string>;
|
|
454
|
-
readonly required: false;
|
|
455
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
456
|
-
__epPropKey: true;
|
|
457
|
-
};
|
|
458
|
-
readonly readonly: BooleanConstructor;
|
|
459
|
-
readonly clearable: BooleanConstructor;
|
|
460
|
-
readonly clearIcon: {
|
|
461
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
462
|
-
readonly required: false;
|
|
463
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
464
|
-
__epPropKey: true;
|
|
465
|
-
};
|
|
466
|
-
readonly showPassword: BooleanConstructor;
|
|
467
|
-
readonly showWordLimit: BooleanConstructor;
|
|
468
|
-
readonly suffixIcon: {
|
|
469
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
470
|
-
readonly required: false;
|
|
471
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
472
|
-
__epPropKey: true;
|
|
473
|
-
};
|
|
474
|
-
readonly prefixIcon: {
|
|
475
|
-
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
476
|
-
readonly required: false;
|
|
477
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
478
|
-
__epPropKey: true;
|
|
479
|
-
};
|
|
480
|
-
readonly containerRole: {
|
|
481
|
-
readonly type: import('vue').PropType<string>;
|
|
482
|
-
readonly required: false;
|
|
483
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
484
|
-
__epPropKey: true;
|
|
485
|
-
} & {
|
|
486
|
-
readonly default: undefined;
|
|
487
|
-
};
|
|
488
|
-
readonly tabindex: {
|
|
489
|
-
readonly type: import('vue').PropType<string | number>;
|
|
490
|
-
readonly required: false;
|
|
491
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
492
|
-
__epPropKey: true;
|
|
493
|
-
} & {
|
|
494
|
-
readonly default: 0;
|
|
495
|
-
};
|
|
496
|
-
readonly validateEvent: {
|
|
497
|
-
readonly type: import('vue').PropType<boolean>;
|
|
498
|
-
readonly required: false;
|
|
499
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
500
|
-
__epPropKey: true;
|
|
501
|
-
} & {
|
|
502
|
-
readonly default: true;
|
|
503
|
-
};
|
|
504
|
-
readonly inputStyle: {
|
|
505
|
-
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
506
|
-
readonly required: false;
|
|
507
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
508
|
-
__epPropKey: true;
|
|
509
|
-
} & {
|
|
510
|
-
readonly default: () => {};
|
|
511
|
-
};
|
|
512
|
-
readonly autofocus: BooleanConstructor;
|
|
513
|
-
readonly rows: {
|
|
514
|
-
readonly type: import('vue').PropType<number>;
|
|
515
|
-
readonly required: false;
|
|
516
|
-
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
517
|
-
__epPropKey: true;
|
|
518
|
-
} & {
|
|
519
|
-
readonly default: 2;
|
|
520
|
-
};
|
|
521
|
-
}>> & {
|
|
522
|
-
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
523
|
-
onChange?: ((value: string) => any) | undefined;
|
|
524
|
-
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
525
|
-
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
526
|
-
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
527
|
-
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
528
|
-
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
529
|
-
onInput?: ((value: string) => any) | undefined;
|
|
530
|
-
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
531
|
-
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
532
|
-
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
533
|
-
onClear?: (() => any) | undefined;
|
|
534
|
-
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "validateEvent" | "id" | "tabindex" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
535
|
-
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
536
|
-
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
537
|
-
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
538
|
-
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
539
|
-
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
540
|
-
isComposing: import('vue').Ref<boolean>;
|
|
541
|
-
focus: () => void | undefined;
|
|
542
|
-
blur: () => void | undefined;
|
|
543
|
-
select: () => void;
|
|
544
|
-
clear: () => void;
|
|
545
|
-
resizeTextarea: () => void;
|
|
546
|
-
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
547
|
-
$slots: {
|
|
548
|
-
prepend?(_: {}): any;
|
|
549
|
-
prefix?(_: {}): any;
|
|
550
|
-
suffix?(_: {}): any;
|
|
551
|
-
append?(_: {}): any;
|
|
552
|
-
};
|
|
553
|
-
}) | null, ({
|
|
535
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
536
|
+
$slots: {
|
|
537
|
+
prepend?(_: {}): any;
|
|
538
|
+
prefix?(_: {}): any;
|
|
539
|
+
suffix?(_: {}): any;
|
|
540
|
+
append?(_: {}): any;
|
|
541
|
+
};
|
|
542
|
+
}) | null;
|
|
543
|
+
};
|
|
544
|
+
rootEl: any;
|
|
545
|
+
};
|
|
546
|
+
type __VLS_TemplateResult = ReturnType<typeof __VLS_template>;
|
|
547
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
548
|
+
cssStyle: {
|
|
549
|
+
type: StringConstructor;
|
|
550
|
+
default: string;
|
|
551
|
+
};
|
|
552
|
+
}>, {
|
|
553
|
+
component: any;
|
|
554
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
555
|
+
cssStyle: {
|
|
556
|
+
type: StringConstructor;
|
|
557
|
+
default: string;
|
|
558
|
+
};
|
|
559
|
+
}>> & Readonly<{}>, {
|
|
560
|
+
cssStyle: string;
|
|
561
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
562
|
+
componentRef: ({
|
|
554
563
|
$: import('vue').ComponentInternalInstance;
|
|
555
564
|
$data: {};
|
|
556
565
|
$props: Partial<{
|
|
@@ -576,8 +585,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
576
585
|
readonly type: string;
|
|
577
586
|
readonly autofocus: boolean;
|
|
578
587
|
readonly modelValue: string | number | null;
|
|
579
|
-
readonly validateEvent: boolean;
|
|
580
588
|
readonly tabindex: string | number;
|
|
589
|
+
readonly validateEvent: boolean;
|
|
581
590
|
readonly clearable: boolean;
|
|
582
591
|
readonly readonly: boolean;
|
|
583
592
|
readonly autosize: import('element-plus').InputAutoSize;
|
|
@@ -590,8 +599,8 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
590
599
|
readonly form?: string | undefined;
|
|
591
600
|
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
592
601
|
readonly size?: ("" | "default" | "small" | "large") | undefined;
|
|
593
|
-
readonly ariaLabel?: string | undefined;
|
|
594
602
|
readonly id?: string | undefined;
|
|
603
|
+
readonly ariaLabel?: string | undefined;
|
|
595
604
|
readonly clearIcon?: (string | import('vue').Component) | undefined;
|
|
596
605
|
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
597
606
|
readonly placeholder?: string | undefined;
|
|
@@ -614,7 +623,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
614
623
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
615
624
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
616
625
|
onClear?: (() => any) | undefined | undefined;
|
|
617
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "
|
|
626
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "disabled" | "type" | "autofocus" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
|
|
618
627
|
$attrs: {
|
|
619
628
|
[x: string]: unknown;
|
|
620
629
|
};
|
|
@@ -1062,7 +1071,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1062
1071
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
1063
1072
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
1064
1073
|
onClear?: (() => any) | undefined;
|
|
1065
|
-
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "
|
|
1074
|
+
}, "disabled" | "type" | "input" | "select" | "textarea" | "ref" | "blur" | "focus" | "autofocus" | "clear" | "modelValue" | "id" | "tabindex" | "validateEvent" | "clearable" | "readonly" | "inputmode" | "autosize" | "autocomplete" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
1066
1075
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
1067
1076
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
1068
1077
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -1081,16 +1090,7 @@ declare const __VLS_component: import('vue').DefineComponent<import('vue').Extra
|
|
|
1081
1090
|
suffix?(_: {}): any;
|
|
1082
1091
|
append?(_: {}): any;
|
|
1083
1092
|
};
|
|
1084
|
-
}) | null
|
|
1085
|
-
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
1086
|
-
cssStyle: {
|
|
1087
|
-
type: StringConstructor;
|
|
1088
|
-
default: string;
|
|
1089
|
-
};
|
|
1090
|
-
}>> & Readonly<{}>, {
|
|
1091
|
-
cssStyle: string;
|
|
1092
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
1093
|
-
componentRef: unknown;
|
|
1093
|
+
}) | null;
|
|
1094
1094
|
}, any>;
|
|
1095
1095
|
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
|
|
1096
1096
|
export default _default;
|