@bscjc/webui 0.0.18 → 0.0.20
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/dist/types/components/JcDatePicker/index.d.ts +66 -0
- package/dist/types/components/JcDatePicker/index.vue.d.ts +60 -0
- package/dist/types/components/JcInputComplex/index.d.ts +1354 -0
- package/dist/types/components/JcInputComplex/index.vue.d.ts +1348 -0
- package/dist/types/components/JcInputSwitch/index.d.ts +550 -0
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +544 -0
- package/dist/types/components/JcListLayout/index.d.ts +22 -0
- package/dist/types/components/JcListLayout/index.vue.d.ts +19 -0
- package/dist/types/components/JcMoreQueryContain/index.d.ts +759 -0
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +1191 -0
- package/dist/types/components/JcSelectQuery/index.d.ts +1002 -0
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +1728 -0
- package/dist/types/components/JcTagQuery/index.d.ts +4 -0
- package/dist/types/components/JcTagQuery/index.vue.d.ts +2 -0
- package/dist/types/components/index.d.ts +7 -0
- package/dist/types/hooks/useQuery.d.ts +14 -0
- package/dist/types/hooks/useQueryStore.d.ts +50 -0
- package/dist/types/index.d.ts +9 -0
- package/package.json +2 -9
|
@@ -0,0 +1,1354 @@
|
|
|
1
|
+
import { Plugin } from 'vue';
|
|
2
|
+
type SFCWithInstall<T> = T & Plugin;
|
|
3
|
+
export declare const JcInputComplex: SFCWithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
fieldList: {
|
|
5
|
+
type: import('vue').PropType<Array<{
|
|
6
|
+
label: string;
|
|
7
|
+
value: string;
|
|
8
|
+
}>>;
|
|
9
|
+
require: boolean;
|
|
10
|
+
default: () => never[];
|
|
11
|
+
};
|
|
12
|
+
size: {
|
|
13
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
14
|
+
default: string;
|
|
15
|
+
validator: (value: string) => boolean;
|
|
16
|
+
};
|
|
17
|
+
width: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
default: string;
|
|
20
|
+
};
|
|
21
|
+
}>, {
|
|
22
|
+
[x: string]: any;
|
|
23
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
24
|
+
fieldChange: (...args: any[]) => void;
|
|
25
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
26
|
+
fieldList: {
|
|
27
|
+
type: import('vue').PropType<Array<{
|
|
28
|
+
label: string;
|
|
29
|
+
value: string;
|
|
30
|
+
}>>;
|
|
31
|
+
require: boolean;
|
|
32
|
+
default: () => never[];
|
|
33
|
+
};
|
|
34
|
+
size: {
|
|
35
|
+
type: import('vue').PropType<"small" | "default" | "large">;
|
|
36
|
+
default: string;
|
|
37
|
+
validator: (value: string) => boolean;
|
|
38
|
+
};
|
|
39
|
+
width: {
|
|
40
|
+
type: StringConstructor;
|
|
41
|
+
default: string;
|
|
42
|
+
};
|
|
43
|
+
}>> & Readonly<{
|
|
44
|
+
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
45
|
+
}>, {
|
|
46
|
+
size: "small" | "default" | "large";
|
|
47
|
+
width: string;
|
|
48
|
+
fieldList: {
|
|
49
|
+
label: string;
|
|
50
|
+
value: string;
|
|
51
|
+
}[];
|
|
52
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
|
|
53
|
+
inputRef: ({
|
|
54
|
+
$: import('vue').ComponentInternalInstance;
|
|
55
|
+
$data: {};
|
|
56
|
+
$props: Partial<{
|
|
57
|
+
readonly disabled: boolean;
|
|
58
|
+
readonly id: string;
|
|
59
|
+
readonly type: string;
|
|
60
|
+
readonly modelValue: string | number | null | undefined;
|
|
61
|
+
readonly tabindex: string | number;
|
|
62
|
+
readonly readonly: boolean;
|
|
63
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
64
|
+
readonly autocomplete: string;
|
|
65
|
+
readonly containerRole: string;
|
|
66
|
+
readonly validateEvent: boolean;
|
|
67
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
68
|
+
readonly rows: number;
|
|
69
|
+
readonly clearable: boolean;
|
|
70
|
+
readonly showPassword: boolean;
|
|
71
|
+
readonly showWordLimit: boolean;
|
|
72
|
+
readonly autofocus: boolean;
|
|
73
|
+
}> & Omit<{
|
|
74
|
+
readonly type: string;
|
|
75
|
+
readonly modelValue: string | number | null;
|
|
76
|
+
readonly autocomplete: string;
|
|
77
|
+
readonly disabled: boolean;
|
|
78
|
+
readonly clearable: boolean;
|
|
79
|
+
readonly validateEvent: boolean;
|
|
80
|
+
readonly tabindex: string | number;
|
|
81
|
+
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
82
|
+
readonly autofocus: boolean;
|
|
83
|
+
readonly readonly: boolean;
|
|
84
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
85
|
+
readonly showPassword: boolean;
|
|
86
|
+
readonly showWordLimit: boolean;
|
|
87
|
+
readonly rows: number;
|
|
88
|
+
readonly size?: ("" | "small" | "default" | "large") | undefined;
|
|
89
|
+
readonly ariaLabel?: string | undefined;
|
|
90
|
+
readonly id?: string | undefined;
|
|
91
|
+
readonly placeholder?: string | undefined;
|
|
92
|
+
readonly suffixIcon?: (string | import('vue').Component) | undefined;
|
|
93
|
+
readonly form?: string | undefined;
|
|
94
|
+
readonly resize?: ("none" | "both" | "horizontal" | "vertical") | undefined;
|
|
95
|
+
readonly prefixIcon?: (string | import('vue').Component) | undefined;
|
|
96
|
+
readonly maxlength?: (string | number) | undefined;
|
|
97
|
+
readonly minlength?: (string | number) | undefined;
|
|
98
|
+
readonly formatter?: Function | undefined;
|
|
99
|
+
readonly parser?: Function | undefined;
|
|
100
|
+
readonly containerRole?: string | undefined;
|
|
101
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
|
|
102
|
+
onChange?: ((value: string) => any) | undefined | undefined;
|
|
103
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
104
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
105
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
|
|
106
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
107
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
|
|
108
|
+
onInput?: ((value: string) => any) | undefined | undefined;
|
|
109
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
|
|
110
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
111
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
112
|
+
onClear?: (() => any) | undefined | undefined;
|
|
113
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "type" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "autofocus" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
114
|
+
$attrs: {
|
|
115
|
+
[x: string]: unknown;
|
|
116
|
+
};
|
|
117
|
+
$refs: {
|
|
118
|
+
[x: string]: unknown;
|
|
119
|
+
};
|
|
120
|
+
$slots: Readonly<{
|
|
121
|
+
[name: string]: import('vue').Slot<any> | undefined;
|
|
122
|
+
}>;
|
|
123
|
+
$root: import('vue').ComponentPublicInstance | null;
|
|
124
|
+
$parent: import('vue').ComponentPublicInstance | null;
|
|
125
|
+
$host: Element | null;
|
|
126
|
+
$emit: ((event: "clear") => void) & ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "input", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void);
|
|
127
|
+
$el: any;
|
|
128
|
+
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
129
|
+
readonly ariaLabel: StringConstructor;
|
|
130
|
+
readonly id: {
|
|
131
|
+
readonly type: import('vue').PropType<string>;
|
|
132
|
+
readonly required: false;
|
|
133
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
134
|
+
__epPropKey: true;
|
|
135
|
+
} & {
|
|
136
|
+
readonly default: undefined;
|
|
137
|
+
};
|
|
138
|
+
readonly size: {
|
|
139
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
140
|
+
readonly required: false;
|
|
141
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
142
|
+
__epPropKey: true;
|
|
143
|
+
};
|
|
144
|
+
readonly disabled: BooleanConstructor;
|
|
145
|
+
readonly modelValue: {
|
|
146
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
147
|
+
readonly required: false;
|
|
148
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
149
|
+
__epPropKey: true;
|
|
150
|
+
} & {
|
|
151
|
+
readonly default: "";
|
|
152
|
+
};
|
|
153
|
+
readonly maxlength: {
|
|
154
|
+
readonly type: import('vue').PropType<string | number>;
|
|
155
|
+
readonly required: false;
|
|
156
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
157
|
+
__epPropKey: true;
|
|
158
|
+
};
|
|
159
|
+
readonly minlength: {
|
|
160
|
+
readonly type: import('vue').PropType<string | number>;
|
|
161
|
+
readonly required: false;
|
|
162
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
163
|
+
__epPropKey: true;
|
|
164
|
+
};
|
|
165
|
+
readonly type: {
|
|
166
|
+
readonly type: import('vue').PropType<string>;
|
|
167
|
+
readonly required: false;
|
|
168
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
169
|
+
__epPropKey: true;
|
|
170
|
+
} & {
|
|
171
|
+
readonly default: "text";
|
|
172
|
+
};
|
|
173
|
+
readonly resize: {
|
|
174
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
175
|
+
readonly required: false;
|
|
176
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
177
|
+
__epPropKey: true;
|
|
178
|
+
};
|
|
179
|
+
readonly autosize: {
|
|
180
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
181
|
+
readonly required: false;
|
|
182
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
183
|
+
__epPropKey: true;
|
|
184
|
+
} & {
|
|
185
|
+
readonly default: false;
|
|
186
|
+
};
|
|
187
|
+
readonly autocomplete: {
|
|
188
|
+
readonly type: import('vue').PropType<string>;
|
|
189
|
+
readonly required: false;
|
|
190
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
191
|
+
__epPropKey: true;
|
|
192
|
+
} & {
|
|
193
|
+
readonly default: "off";
|
|
194
|
+
};
|
|
195
|
+
readonly formatter: {
|
|
196
|
+
readonly type: import('vue').PropType<Function>;
|
|
197
|
+
readonly required: false;
|
|
198
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
199
|
+
__epPropKey: true;
|
|
200
|
+
};
|
|
201
|
+
readonly parser: {
|
|
202
|
+
readonly type: import('vue').PropType<Function>;
|
|
203
|
+
readonly required: false;
|
|
204
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
205
|
+
__epPropKey: true;
|
|
206
|
+
};
|
|
207
|
+
readonly placeholder: {
|
|
208
|
+
readonly type: import('vue').PropType<string>;
|
|
209
|
+
readonly required: false;
|
|
210
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
211
|
+
__epPropKey: true;
|
|
212
|
+
};
|
|
213
|
+
readonly form: {
|
|
214
|
+
readonly type: import('vue').PropType<string>;
|
|
215
|
+
readonly required: false;
|
|
216
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
217
|
+
__epPropKey: true;
|
|
218
|
+
};
|
|
219
|
+
readonly readonly: BooleanConstructor;
|
|
220
|
+
readonly clearable: BooleanConstructor;
|
|
221
|
+
readonly showPassword: BooleanConstructor;
|
|
222
|
+
readonly showWordLimit: BooleanConstructor;
|
|
223
|
+
readonly suffixIcon: {
|
|
224
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
225
|
+
readonly required: false;
|
|
226
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
227
|
+
__epPropKey: true;
|
|
228
|
+
};
|
|
229
|
+
readonly prefixIcon: {
|
|
230
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
231
|
+
readonly required: false;
|
|
232
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
233
|
+
__epPropKey: true;
|
|
234
|
+
};
|
|
235
|
+
readonly containerRole: {
|
|
236
|
+
readonly type: import('vue').PropType<string>;
|
|
237
|
+
readonly required: false;
|
|
238
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
239
|
+
__epPropKey: true;
|
|
240
|
+
} & {
|
|
241
|
+
readonly default: undefined;
|
|
242
|
+
};
|
|
243
|
+
readonly tabindex: {
|
|
244
|
+
readonly type: import('vue').PropType<string | number>;
|
|
245
|
+
readonly required: false;
|
|
246
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
247
|
+
__epPropKey: true;
|
|
248
|
+
} & {
|
|
249
|
+
readonly default: 0;
|
|
250
|
+
};
|
|
251
|
+
readonly validateEvent: {
|
|
252
|
+
readonly type: import('vue').PropType<boolean>;
|
|
253
|
+
readonly required: false;
|
|
254
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
255
|
+
__epPropKey: true;
|
|
256
|
+
} & {
|
|
257
|
+
readonly default: true;
|
|
258
|
+
};
|
|
259
|
+
readonly inputStyle: {
|
|
260
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
261
|
+
readonly required: false;
|
|
262
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
263
|
+
__epPropKey: true;
|
|
264
|
+
} & {
|
|
265
|
+
readonly default: () => {};
|
|
266
|
+
};
|
|
267
|
+
readonly autofocus: BooleanConstructor;
|
|
268
|
+
readonly rows: {
|
|
269
|
+
readonly type: import('vue').PropType<number>;
|
|
270
|
+
readonly required: false;
|
|
271
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
272
|
+
__epPropKey: true;
|
|
273
|
+
} & {
|
|
274
|
+
readonly default: 2;
|
|
275
|
+
};
|
|
276
|
+
}>> & {
|
|
277
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
278
|
+
onChange?: ((value: string) => any) | undefined;
|
|
279
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
280
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
281
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
282
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
283
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
284
|
+
onInput?: ((value: string) => any) | undefined;
|
|
285
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
286
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
287
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
288
|
+
onClear?: (() => any) | undefined;
|
|
289
|
+
}, {
|
|
290
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
291
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
292
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
293
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
294
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
295
|
+
isComposing: import('vue').Ref<boolean>;
|
|
296
|
+
focus: () => void | undefined;
|
|
297
|
+
blur: () => void | undefined;
|
|
298
|
+
select: () => void;
|
|
299
|
+
clear: () => void;
|
|
300
|
+
resizeTextarea: () => void;
|
|
301
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
302
|
+
input: (value: string) => void;
|
|
303
|
+
clear: () => void;
|
|
304
|
+
"update:modelValue": (value: string) => void;
|
|
305
|
+
change: (value: string) => void;
|
|
306
|
+
blur: (evt: FocusEvent) => void;
|
|
307
|
+
compositionend: (evt: CompositionEvent) => void;
|
|
308
|
+
compositionstart: (evt: CompositionEvent) => void;
|
|
309
|
+
compositionupdate: (evt: CompositionEvent) => void;
|
|
310
|
+
focus: (evt: FocusEvent) => void;
|
|
311
|
+
keydown: (evt: Event | KeyboardEvent) => void;
|
|
312
|
+
mouseenter: (evt: MouseEvent) => void;
|
|
313
|
+
mouseleave: (evt: MouseEvent) => void;
|
|
314
|
+
}, string, {
|
|
315
|
+
readonly disabled: boolean;
|
|
316
|
+
readonly id: string;
|
|
317
|
+
readonly type: string;
|
|
318
|
+
readonly modelValue: string | number | null | undefined;
|
|
319
|
+
readonly tabindex: string | number;
|
|
320
|
+
readonly readonly: boolean;
|
|
321
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
322
|
+
readonly autocomplete: string;
|
|
323
|
+
readonly containerRole: string;
|
|
324
|
+
readonly validateEvent: boolean;
|
|
325
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
326
|
+
readonly rows: number;
|
|
327
|
+
readonly clearable: boolean;
|
|
328
|
+
readonly showPassword: boolean;
|
|
329
|
+
readonly showWordLimit: boolean;
|
|
330
|
+
readonly autofocus: boolean;
|
|
331
|
+
}, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & {
|
|
332
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
333
|
+
created?: (() => void) | (() => void)[];
|
|
334
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
335
|
+
mounted?: (() => void) | (() => void)[];
|
|
336
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
337
|
+
updated?: (() => void) | (() => void)[];
|
|
338
|
+
activated?: (() => void) | (() => void)[];
|
|
339
|
+
deactivated?: (() => void) | (() => void)[];
|
|
340
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
341
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
342
|
+
destroyed?: (() => void) | (() => void)[];
|
|
343
|
+
unmounted?: (() => void) | (() => void)[];
|
|
344
|
+
renderTracked?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
345
|
+
renderTriggered?: ((e: import('vue').DebuggerEvent) => void) | ((e: import('vue').DebuggerEvent) => void)[];
|
|
346
|
+
errorCaptured?: ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: import('vue').ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
347
|
+
};
|
|
348
|
+
$forceUpdate: () => void;
|
|
349
|
+
$nextTick: typeof import('vue').nextTick;
|
|
350
|
+
$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;
|
|
351
|
+
} & Readonly<{
|
|
352
|
+
readonly disabled: boolean;
|
|
353
|
+
readonly id: string;
|
|
354
|
+
readonly type: string;
|
|
355
|
+
readonly modelValue: string | number | null | undefined;
|
|
356
|
+
readonly tabindex: string | number;
|
|
357
|
+
readonly readonly: boolean;
|
|
358
|
+
readonly autosize: import('element-plus').InputAutoSize;
|
|
359
|
+
readonly autocomplete: string;
|
|
360
|
+
readonly containerRole: string;
|
|
361
|
+
readonly validateEvent: boolean;
|
|
362
|
+
readonly inputStyle: import('vue').StyleValue;
|
|
363
|
+
readonly rows: number;
|
|
364
|
+
readonly clearable: boolean;
|
|
365
|
+
readonly showPassword: boolean;
|
|
366
|
+
readonly showWordLimit: boolean;
|
|
367
|
+
readonly autofocus: boolean;
|
|
368
|
+
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
369
|
+
readonly ariaLabel: StringConstructor;
|
|
370
|
+
readonly id: {
|
|
371
|
+
readonly type: import('vue').PropType<string>;
|
|
372
|
+
readonly required: false;
|
|
373
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
374
|
+
__epPropKey: true;
|
|
375
|
+
} & {
|
|
376
|
+
readonly default: undefined;
|
|
377
|
+
};
|
|
378
|
+
readonly size: {
|
|
379
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
380
|
+
readonly required: false;
|
|
381
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
382
|
+
__epPropKey: true;
|
|
383
|
+
};
|
|
384
|
+
readonly disabled: BooleanConstructor;
|
|
385
|
+
readonly modelValue: {
|
|
386
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
387
|
+
readonly required: false;
|
|
388
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
389
|
+
__epPropKey: true;
|
|
390
|
+
} & {
|
|
391
|
+
readonly default: "";
|
|
392
|
+
};
|
|
393
|
+
readonly maxlength: {
|
|
394
|
+
readonly type: import('vue').PropType<string | number>;
|
|
395
|
+
readonly required: false;
|
|
396
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
397
|
+
__epPropKey: true;
|
|
398
|
+
};
|
|
399
|
+
readonly minlength: {
|
|
400
|
+
readonly type: import('vue').PropType<string | number>;
|
|
401
|
+
readonly required: false;
|
|
402
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
403
|
+
__epPropKey: true;
|
|
404
|
+
};
|
|
405
|
+
readonly type: {
|
|
406
|
+
readonly type: import('vue').PropType<string>;
|
|
407
|
+
readonly required: false;
|
|
408
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
409
|
+
__epPropKey: true;
|
|
410
|
+
} & {
|
|
411
|
+
readonly default: "text";
|
|
412
|
+
};
|
|
413
|
+
readonly resize: {
|
|
414
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
415
|
+
readonly required: false;
|
|
416
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
417
|
+
__epPropKey: true;
|
|
418
|
+
};
|
|
419
|
+
readonly autosize: {
|
|
420
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
421
|
+
readonly required: false;
|
|
422
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
423
|
+
__epPropKey: true;
|
|
424
|
+
} & {
|
|
425
|
+
readonly default: false;
|
|
426
|
+
};
|
|
427
|
+
readonly autocomplete: {
|
|
428
|
+
readonly type: import('vue').PropType<string>;
|
|
429
|
+
readonly required: false;
|
|
430
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
431
|
+
__epPropKey: true;
|
|
432
|
+
} & {
|
|
433
|
+
readonly default: "off";
|
|
434
|
+
};
|
|
435
|
+
readonly formatter: {
|
|
436
|
+
readonly type: import('vue').PropType<Function>;
|
|
437
|
+
readonly required: false;
|
|
438
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
439
|
+
__epPropKey: true;
|
|
440
|
+
};
|
|
441
|
+
readonly parser: {
|
|
442
|
+
readonly type: import('vue').PropType<Function>;
|
|
443
|
+
readonly required: false;
|
|
444
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
445
|
+
__epPropKey: true;
|
|
446
|
+
};
|
|
447
|
+
readonly placeholder: {
|
|
448
|
+
readonly type: import('vue').PropType<string>;
|
|
449
|
+
readonly required: false;
|
|
450
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
451
|
+
__epPropKey: true;
|
|
452
|
+
};
|
|
453
|
+
readonly form: {
|
|
454
|
+
readonly type: import('vue').PropType<string>;
|
|
455
|
+
readonly required: false;
|
|
456
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
457
|
+
__epPropKey: true;
|
|
458
|
+
};
|
|
459
|
+
readonly readonly: BooleanConstructor;
|
|
460
|
+
readonly clearable: BooleanConstructor;
|
|
461
|
+
readonly showPassword: BooleanConstructor;
|
|
462
|
+
readonly showWordLimit: BooleanConstructor;
|
|
463
|
+
readonly suffixIcon: {
|
|
464
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
465
|
+
readonly required: false;
|
|
466
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
467
|
+
__epPropKey: true;
|
|
468
|
+
};
|
|
469
|
+
readonly prefixIcon: {
|
|
470
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
471
|
+
readonly required: false;
|
|
472
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
473
|
+
__epPropKey: true;
|
|
474
|
+
};
|
|
475
|
+
readonly containerRole: {
|
|
476
|
+
readonly type: import('vue').PropType<string>;
|
|
477
|
+
readonly required: false;
|
|
478
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
479
|
+
__epPropKey: true;
|
|
480
|
+
} & {
|
|
481
|
+
readonly default: undefined;
|
|
482
|
+
};
|
|
483
|
+
readonly tabindex: {
|
|
484
|
+
readonly type: import('vue').PropType<string | number>;
|
|
485
|
+
readonly required: false;
|
|
486
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
487
|
+
__epPropKey: true;
|
|
488
|
+
} & {
|
|
489
|
+
readonly default: 0;
|
|
490
|
+
};
|
|
491
|
+
readonly validateEvent: {
|
|
492
|
+
readonly type: import('vue').PropType<boolean>;
|
|
493
|
+
readonly required: false;
|
|
494
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
495
|
+
__epPropKey: true;
|
|
496
|
+
} & {
|
|
497
|
+
readonly default: true;
|
|
498
|
+
};
|
|
499
|
+
readonly inputStyle: {
|
|
500
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
501
|
+
readonly required: false;
|
|
502
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
503
|
+
__epPropKey: true;
|
|
504
|
+
} & {
|
|
505
|
+
readonly default: () => {};
|
|
506
|
+
};
|
|
507
|
+
readonly autofocus: BooleanConstructor;
|
|
508
|
+
readonly rows: {
|
|
509
|
+
readonly type: import('vue').PropType<number>;
|
|
510
|
+
readonly required: false;
|
|
511
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
512
|
+
__epPropKey: true;
|
|
513
|
+
} & {
|
|
514
|
+
readonly default: 2;
|
|
515
|
+
};
|
|
516
|
+
}>> & {
|
|
517
|
+
"onUpdate:modelValue"?: ((value: string) => any) | undefined;
|
|
518
|
+
onChange?: ((value: string) => any) | undefined;
|
|
519
|
+
onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
|
|
520
|
+
onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
|
|
521
|
+
onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
|
|
522
|
+
onFocus?: ((evt: FocusEvent) => any) | undefined;
|
|
523
|
+
onBlur?: ((evt: FocusEvent) => any) | undefined;
|
|
524
|
+
onInput?: ((value: string) => any) | undefined;
|
|
525
|
+
onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
|
|
526
|
+
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
527
|
+
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
528
|
+
onClear?: (() => any) | undefined;
|
|
529
|
+
}, "clear" | "type" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
530
|
+
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
531
|
+
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
532
|
+
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
533
|
+
textareaStyle: import('vue').ComputedRef<import('vue').StyleValue>;
|
|
534
|
+
autosize: import('vue').Ref<import('element-plus').InputAutoSize>;
|
|
535
|
+
isComposing: import('vue').Ref<boolean>;
|
|
536
|
+
focus: () => void | undefined;
|
|
537
|
+
blur: () => void | undefined;
|
|
538
|
+
select: () => void;
|
|
539
|
+
clear: () => void;
|
|
540
|
+
resizeTextarea: () => void;
|
|
541
|
+
}> & {} & import('vue').ComponentCustomProperties & {} & {
|
|
542
|
+
$slots: {
|
|
543
|
+
prepend?(_: {}): any;
|
|
544
|
+
prefix?(_: {}): any;
|
|
545
|
+
suffix?(_: {}): any;
|
|
546
|
+
append?(_: {}): any;
|
|
547
|
+
};
|
|
548
|
+
}) | null;
|
|
549
|
+
selectRef: import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
|
|
550
|
+
ariaLabel: StringConstructor;
|
|
551
|
+
emptyValues: ArrayConstructor;
|
|
552
|
+
valueOnClear: {
|
|
553
|
+
readonly type: import('vue').PropType<string | number | boolean | Function>;
|
|
554
|
+
readonly required: false;
|
|
555
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
556
|
+
__epPropKey: true;
|
|
557
|
+
} & {
|
|
558
|
+
readonly default: undefined;
|
|
559
|
+
};
|
|
560
|
+
name: StringConstructor;
|
|
561
|
+
id: StringConstructor;
|
|
562
|
+
modelValue: {
|
|
563
|
+
readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
564
|
+
readonly required: false;
|
|
565
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
566
|
+
__epPropKey: true;
|
|
567
|
+
} & {
|
|
568
|
+
readonly default: undefined;
|
|
569
|
+
};
|
|
570
|
+
autocomplete: {
|
|
571
|
+
readonly type: import('vue').PropType<string>;
|
|
572
|
+
readonly required: false;
|
|
573
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
574
|
+
__epPropKey: true;
|
|
575
|
+
} & {
|
|
576
|
+
readonly default: string;
|
|
577
|
+
};
|
|
578
|
+
automaticDropdown: BooleanConstructor;
|
|
579
|
+
size: {
|
|
580
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
581
|
+
readonly required: false;
|
|
582
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
583
|
+
__epPropKey: true;
|
|
584
|
+
};
|
|
585
|
+
effect: {
|
|
586
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
587
|
+
readonly required: false;
|
|
588
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
589
|
+
__epPropKey: true;
|
|
590
|
+
} & {
|
|
591
|
+
readonly default: string;
|
|
592
|
+
};
|
|
593
|
+
disabled: BooleanConstructor;
|
|
594
|
+
clearable: BooleanConstructor;
|
|
595
|
+
filterable: BooleanConstructor;
|
|
596
|
+
allowCreate: BooleanConstructor;
|
|
597
|
+
loading: BooleanConstructor;
|
|
598
|
+
popperClass: {
|
|
599
|
+
readonly type: import('vue').PropType<string>;
|
|
600
|
+
readonly required: false;
|
|
601
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
602
|
+
__epPropKey: true;
|
|
603
|
+
} & {
|
|
604
|
+
readonly default: string;
|
|
605
|
+
};
|
|
606
|
+
popperOptions: {
|
|
607
|
+
readonly type: import('vue').PropType<any>;
|
|
608
|
+
readonly required: false;
|
|
609
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
610
|
+
__epPropKey: true;
|
|
611
|
+
} & {
|
|
612
|
+
readonly default: () => Partial<Options>;
|
|
613
|
+
};
|
|
614
|
+
remote: BooleanConstructor;
|
|
615
|
+
loadingText: StringConstructor;
|
|
616
|
+
noMatchText: StringConstructor;
|
|
617
|
+
noDataText: StringConstructor;
|
|
618
|
+
remoteMethod: FunctionConstructor;
|
|
619
|
+
filterMethod: FunctionConstructor;
|
|
620
|
+
multiple: BooleanConstructor;
|
|
621
|
+
multipleLimit: {
|
|
622
|
+
readonly type: import('vue').PropType<number>;
|
|
623
|
+
readonly required: false;
|
|
624
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
625
|
+
__epPropKey: true;
|
|
626
|
+
} & {
|
|
627
|
+
readonly default: number;
|
|
628
|
+
};
|
|
629
|
+
placeholder: {
|
|
630
|
+
readonly type: import('vue').PropType<string>;
|
|
631
|
+
readonly required: false;
|
|
632
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
633
|
+
__epPropKey: true;
|
|
634
|
+
};
|
|
635
|
+
defaultFirstOption: BooleanConstructor;
|
|
636
|
+
reserveKeyword: {
|
|
637
|
+
readonly type: import('vue').PropType<boolean>;
|
|
638
|
+
readonly required: false;
|
|
639
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
640
|
+
__epPropKey: true;
|
|
641
|
+
} & {
|
|
642
|
+
readonly default: boolean;
|
|
643
|
+
};
|
|
644
|
+
valueKey: {
|
|
645
|
+
readonly type: import('vue').PropType<string>;
|
|
646
|
+
readonly required: false;
|
|
647
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
648
|
+
__epPropKey: true;
|
|
649
|
+
} & {
|
|
650
|
+
readonly default: string;
|
|
651
|
+
};
|
|
652
|
+
collapseTags: BooleanConstructor;
|
|
653
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
654
|
+
maxCollapseTags: {
|
|
655
|
+
readonly type: import('vue').PropType<number>;
|
|
656
|
+
readonly required: false;
|
|
657
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
658
|
+
__epPropKey: true;
|
|
659
|
+
} & {
|
|
660
|
+
readonly default: number;
|
|
661
|
+
};
|
|
662
|
+
teleported: {
|
|
663
|
+
readonly type: import('vue').PropType<boolean>;
|
|
664
|
+
readonly required: false;
|
|
665
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
666
|
+
__epPropKey: true;
|
|
667
|
+
} & {
|
|
668
|
+
readonly default: true;
|
|
669
|
+
};
|
|
670
|
+
persistent: {
|
|
671
|
+
readonly type: import('vue').PropType<boolean>;
|
|
672
|
+
readonly required: false;
|
|
673
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
674
|
+
__epPropKey: true;
|
|
675
|
+
} & {
|
|
676
|
+
readonly default: boolean;
|
|
677
|
+
};
|
|
678
|
+
clearIcon: {
|
|
679
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
680
|
+
readonly required: false;
|
|
681
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
682
|
+
__epPropKey: true;
|
|
683
|
+
};
|
|
684
|
+
fitInputWidth: BooleanConstructor;
|
|
685
|
+
suffixIcon: {
|
|
686
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
687
|
+
readonly required: false;
|
|
688
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
689
|
+
__epPropKey: true;
|
|
690
|
+
};
|
|
691
|
+
tagType: {
|
|
692
|
+
default: string;
|
|
693
|
+
type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
694
|
+
required: false;
|
|
695
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
696
|
+
__epPropKey: true;
|
|
697
|
+
};
|
|
698
|
+
tagEffect: {
|
|
699
|
+
default: string;
|
|
700
|
+
type: import('vue').PropType<"light" | "dark" | "plain">;
|
|
701
|
+
required: false;
|
|
702
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
703
|
+
__epPropKey: true;
|
|
704
|
+
};
|
|
705
|
+
validateEvent: {
|
|
706
|
+
readonly type: import('vue').PropType<boolean>;
|
|
707
|
+
readonly required: false;
|
|
708
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
709
|
+
__epPropKey: true;
|
|
710
|
+
} & {
|
|
711
|
+
readonly default: boolean;
|
|
712
|
+
};
|
|
713
|
+
remoteShowSuffix: BooleanConstructor;
|
|
714
|
+
showArrow: {
|
|
715
|
+
readonly type: import('vue').PropType<boolean>;
|
|
716
|
+
readonly required: false;
|
|
717
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
718
|
+
__epPropKey: true;
|
|
719
|
+
} & {
|
|
720
|
+
readonly default: boolean;
|
|
721
|
+
};
|
|
722
|
+
offset: {
|
|
723
|
+
readonly type: import('vue').PropType<number>;
|
|
724
|
+
readonly required: false;
|
|
725
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
726
|
+
__epPropKey: true;
|
|
727
|
+
} & {
|
|
728
|
+
readonly default: number;
|
|
729
|
+
};
|
|
730
|
+
placement: {
|
|
731
|
+
readonly type: import('vue').PropType<any>;
|
|
732
|
+
readonly required: false;
|
|
733
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
734
|
+
__epPropKey: true;
|
|
735
|
+
} & {
|
|
736
|
+
readonly default: string;
|
|
737
|
+
};
|
|
738
|
+
fallbackPlacements: {
|
|
739
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
740
|
+
readonly required: false;
|
|
741
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
742
|
+
__epPropKey: true;
|
|
743
|
+
} & {
|
|
744
|
+
readonly default: string[];
|
|
745
|
+
};
|
|
746
|
+
tabindex: {
|
|
747
|
+
readonly type: import('vue').PropType<string | number>;
|
|
748
|
+
readonly required: false;
|
|
749
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
750
|
+
__epPropKey: true;
|
|
751
|
+
} & {
|
|
752
|
+
readonly default: number;
|
|
753
|
+
};
|
|
754
|
+
appendTo: {
|
|
755
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
756
|
+
readonly required: false;
|
|
757
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
758
|
+
__epPropKey: true;
|
|
759
|
+
};
|
|
760
|
+
}>> & {
|
|
761
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
762
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
763
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
764
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
765
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
766
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
767
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
768
|
+
"onPopup-scroll"?: ((...args: any[]) => any) | undefined;
|
|
769
|
+
}, {
|
|
770
|
+
modelValue: import('vue').ComputedRef<string | number | boolean | any[] | Record<string, any> | undefined>;
|
|
771
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
772
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
773
|
+
inputStyle: import('vue').ComputedRef<{
|
|
774
|
+
minWidth: string;
|
|
775
|
+
}>;
|
|
776
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
777
|
+
contentId: import('vue').Ref<string>;
|
|
778
|
+
nsSelect: {
|
|
779
|
+
namespace: import('vue').ComputedRef<string>;
|
|
780
|
+
b: (blockSuffix?: string) => string;
|
|
781
|
+
e: (element?: string) => string;
|
|
782
|
+
m: (modifier?: string) => string;
|
|
783
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
784
|
+
em: (element?: string, modifier?: string) => string;
|
|
785
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
786
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
787
|
+
is: {
|
|
788
|
+
(name: string, state: boolean | undefined): string;
|
|
789
|
+
(name: string): string;
|
|
790
|
+
};
|
|
791
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
792
|
+
cssVarName: (name: string) => string;
|
|
793
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
794
|
+
cssVarBlockName: (name: string) => string;
|
|
795
|
+
};
|
|
796
|
+
nsInput: {
|
|
797
|
+
namespace: import('vue').ComputedRef<string>;
|
|
798
|
+
b: (blockSuffix?: string) => string;
|
|
799
|
+
e: (element?: string) => string;
|
|
800
|
+
m: (modifier?: string) => string;
|
|
801
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
802
|
+
em: (element?: string, modifier?: string) => string;
|
|
803
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
804
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
805
|
+
is: {
|
|
806
|
+
(name: string, state: boolean | undefined): string;
|
|
807
|
+
(name: string): string;
|
|
808
|
+
};
|
|
809
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
810
|
+
cssVarName: (name: string) => string;
|
|
811
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
812
|
+
cssVarBlockName: (name: string) => string;
|
|
813
|
+
};
|
|
814
|
+
states: {
|
|
815
|
+
inputValue: string;
|
|
816
|
+
options: Map<string | number | boolean | Record<string, any>, import('element-plus').SelectOptionProxy>;
|
|
817
|
+
cachedOptions: Map<string | number | boolean | Record<string, any>, import('element-plus').SelectOptionProxy>;
|
|
818
|
+
optionValues: (string | number | boolean | Record<string, any>)[];
|
|
819
|
+
selected: {
|
|
820
|
+
value: string | number | boolean | Record<string, any>;
|
|
821
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
822
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
823
|
+
}[];
|
|
824
|
+
hoveringIndex: number;
|
|
825
|
+
inputHovering: boolean;
|
|
826
|
+
selectionWidth: number;
|
|
827
|
+
collapseItemWidth: number;
|
|
828
|
+
previousQuery: string | null;
|
|
829
|
+
selectedLabel: string;
|
|
830
|
+
menuVisibleOnFocus: boolean;
|
|
831
|
+
isBeforeHide: boolean;
|
|
832
|
+
};
|
|
833
|
+
isFocused: import('vue').Ref<boolean>;
|
|
834
|
+
expanded: import('vue').Ref<boolean>;
|
|
835
|
+
optionsArray: import('vue').ComputedRef<import('element-plus').SelectOptionProxy[]>;
|
|
836
|
+
hoverOption: import('vue').Ref<any>;
|
|
837
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
838
|
+
filteredOptionsCount: import('vue').ComputedRef<number>;
|
|
839
|
+
updateTooltip: () => void;
|
|
840
|
+
updateTagTooltip: () => void;
|
|
841
|
+
debouncedOnInputChange: import('lodash-es').DebouncedFunc<() => void>;
|
|
842
|
+
onInput: (event: Event) => void;
|
|
843
|
+
deletePrevTag: (e: KeyboardEvent) => void;
|
|
844
|
+
deleteTag: (event: MouseEvent, tag: import('element-plus').SelectOptionProxy | import('element-plus').OptionBasic) => void;
|
|
845
|
+
deleteSelected: (event: Event) => void;
|
|
846
|
+
handleOptionSelect: (option: import('element-plus').SelectOptionProxy) => void;
|
|
847
|
+
scrollToOption: (option: import('element-plus').SelectOptionProxy | import('element-plus').SelectOptionProxy[] | import('element-plus').OptionBasic[]) => void;
|
|
848
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
849
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
850
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
851
|
+
mouseEnterEventName: import('vue').ComputedRef<"mouseenter" | null>;
|
|
852
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
853
|
+
showClose: import('vue').ComputedRef<boolean>;
|
|
854
|
+
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
855
|
+
iconReverse: import('vue').ComputedRef<string>;
|
|
856
|
+
validateState: import('vue').ComputedRef<"" | "error" | "validating" | "success">;
|
|
857
|
+
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
858
|
+
showNewOption: import('vue').ComputedRef<boolean>;
|
|
859
|
+
updateOptions: () => void;
|
|
860
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
861
|
+
setSelected: () => void;
|
|
862
|
+
selectDisabled: import('vue').ComputedRef<boolean | undefined>;
|
|
863
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
864
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
865
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
866
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
867
|
+
onOptionCreate: (vm: import('element-plus').SelectOptionProxy) => void;
|
|
868
|
+
onOptionDestroy: (key: string | number | boolean | Record<string, any>, vm: import('element-plus').SelectOptionProxy) => void;
|
|
869
|
+
handleMenuEnter: () => void;
|
|
870
|
+
focus: () => void;
|
|
871
|
+
blur: () => void;
|
|
872
|
+
handleClearClick: (event: Event) => void;
|
|
873
|
+
handleClickOutside: (event: Event) => void;
|
|
874
|
+
handleEsc: () => void;
|
|
875
|
+
toggleMenu: () => void;
|
|
876
|
+
selectOption: () => void;
|
|
877
|
+
getValueKey: (item: import('element-plus').SelectOptionProxy | import('element-plus').OptionBasic) => any;
|
|
878
|
+
navigateOptions: (direction: "prev" | "next") => void;
|
|
879
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
880
|
+
showTagList: import('vue').ComputedRef<{
|
|
881
|
+
value: string | number | boolean | Record<string, any>;
|
|
882
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
883
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
884
|
+
}[]>;
|
|
885
|
+
collapseTagList: import('vue').ComputedRef<{
|
|
886
|
+
value: string | number | boolean | Record<string, any>;
|
|
887
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
888
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
889
|
+
}[]>;
|
|
890
|
+
popupScroll: (data: {
|
|
891
|
+
scrollTop: number;
|
|
892
|
+
scrollLeft: number;
|
|
893
|
+
}) => void;
|
|
894
|
+
tagStyle: import('vue').ComputedRef<{
|
|
895
|
+
maxWidth: string;
|
|
896
|
+
}>;
|
|
897
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
898
|
+
maxWidth: string;
|
|
899
|
+
}>;
|
|
900
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
901
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
902
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
903
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
904
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
905
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
906
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
907
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
908
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
909
|
+
scrollbarRef: import('vue').Ref<import('element-plus').ScrollbarInstance | undefined>;
|
|
910
|
+
menuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
911
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
912
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
913
|
+
}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "update:modelValue" | "change" | "blur" | "focus" | "visible-change" | "remove-tag" | "popup-scroll")[], import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, {
|
|
914
|
+
disabled: boolean;
|
|
915
|
+
offset: number;
|
|
916
|
+
multiple: boolean;
|
|
917
|
+
loading: boolean;
|
|
918
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
919
|
+
placement: any;
|
|
920
|
+
effect: import('element-plus').PopperEffect;
|
|
921
|
+
tabindex: string | number;
|
|
922
|
+
valueOnClear: string | number | boolean | Function;
|
|
923
|
+
autocomplete: string;
|
|
924
|
+
validateEvent: boolean;
|
|
925
|
+
clearable: boolean;
|
|
926
|
+
fallbackPlacements: Placement[];
|
|
927
|
+
popperOptions: Partial<Options>;
|
|
928
|
+
popperClass: string;
|
|
929
|
+
teleported: boolean;
|
|
930
|
+
persistent: boolean;
|
|
931
|
+
showArrow: boolean;
|
|
932
|
+
valueKey: string;
|
|
933
|
+
fitInputWidth: boolean;
|
|
934
|
+
filterable: boolean;
|
|
935
|
+
collapseTags: boolean;
|
|
936
|
+
maxCollapseTags: number;
|
|
937
|
+
collapseTagsTooltip: boolean;
|
|
938
|
+
tagType: "success" | "primary" | "warning" | "info" | "danger";
|
|
939
|
+
tagEffect: "light" | "dark" | "plain";
|
|
940
|
+
automaticDropdown: boolean;
|
|
941
|
+
allowCreate: boolean;
|
|
942
|
+
remote: boolean;
|
|
943
|
+
multipleLimit: number;
|
|
944
|
+
defaultFirstOption: boolean;
|
|
945
|
+
reserveKeyword: boolean;
|
|
946
|
+
remoteShowSuffix: boolean;
|
|
947
|
+
}, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
|
|
948
|
+
P: {};
|
|
949
|
+
B: {};
|
|
950
|
+
D: {};
|
|
951
|
+
C: {};
|
|
952
|
+
M: {};
|
|
953
|
+
Defaults: {};
|
|
954
|
+
}, Readonly<import('vue').ExtractPropTypes<{
|
|
955
|
+
ariaLabel: StringConstructor;
|
|
956
|
+
emptyValues: ArrayConstructor;
|
|
957
|
+
valueOnClear: {
|
|
958
|
+
readonly type: import('vue').PropType<string | number | boolean | Function>;
|
|
959
|
+
readonly required: false;
|
|
960
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
961
|
+
__epPropKey: true;
|
|
962
|
+
} & {
|
|
963
|
+
readonly default: undefined;
|
|
964
|
+
};
|
|
965
|
+
name: StringConstructor;
|
|
966
|
+
id: StringConstructor;
|
|
967
|
+
modelValue: {
|
|
968
|
+
readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
969
|
+
readonly required: false;
|
|
970
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
971
|
+
__epPropKey: true;
|
|
972
|
+
} & {
|
|
973
|
+
readonly default: undefined;
|
|
974
|
+
};
|
|
975
|
+
autocomplete: {
|
|
976
|
+
readonly type: import('vue').PropType<string>;
|
|
977
|
+
readonly required: false;
|
|
978
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
979
|
+
__epPropKey: true;
|
|
980
|
+
} & {
|
|
981
|
+
readonly default: string;
|
|
982
|
+
};
|
|
983
|
+
automaticDropdown: BooleanConstructor;
|
|
984
|
+
size: {
|
|
985
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
986
|
+
readonly required: false;
|
|
987
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
988
|
+
__epPropKey: true;
|
|
989
|
+
};
|
|
990
|
+
effect: {
|
|
991
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
992
|
+
readonly required: false;
|
|
993
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
994
|
+
__epPropKey: true;
|
|
995
|
+
} & {
|
|
996
|
+
readonly default: string;
|
|
997
|
+
};
|
|
998
|
+
disabled: BooleanConstructor;
|
|
999
|
+
clearable: BooleanConstructor;
|
|
1000
|
+
filterable: BooleanConstructor;
|
|
1001
|
+
allowCreate: BooleanConstructor;
|
|
1002
|
+
loading: BooleanConstructor;
|
|
1003
|
+
popperClass: {
|
|
1004
|
+
readonly type: import('vue').PropType<string>;
|
|
1005
|
+
readonly required: false;
|
|
1006
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1007
|
+
__epPropKey: true;
|
|
1008
|
+
} & {
|
|
1009
|
+
readonly default: string;
|
|
1010
|
+
};
|
|
1011
|
+
popperOptions: {
|
|
1012
|
+
readonly type: import('vue').PropType<any>;
|
|
1013
|
+
readonly required: false;
|
|
1014
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1015
|
+
__epPropKey: true;
|
|
1016
|
+
} & {
|
|
1017
|
+
readonly default: () => Partial<Options>;
|
|
1018
|
+
};
|
|
1019
|
+
remote: BooleanConstructor;
|
|
1020
|
+
loadingText: StringConstructor;
|
|
1021
|
+
noMatchText: StringConstructor;
|
|
1022
|
+
noDataText: StringConstructor;
|
|
1023
|
+
remoteMethod: FunctionConstructor;
|
|
1024
|
+
filterMethod: FunctionConstructor;
|
|
1025
|
+
multiple: BooleanConstructor;
|
|
1026
|
+
multipleLimit: {
|
|
1027
|
+
readonly type: import('vue').PropType<number>;
|
|
1028
|
+
readonly required: false;
|
|
1029
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1030
|
+
__epPropKey: true;
|
|
1031
|
+
} & {
|
|
1032
|
+
readonly default: number;
|
|
1033
|
+
};
|
|
1034
|
+
placeholder: {
|
|
1035
|
+
readonly type: import('vue').PropType<string>;
|
|
1036
|
+
readonly required: false;
|
|
1037
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1038
|
+
__epPropKey: true;
|
|
1039
|
+
};
|
|
1040
|
+
defaultFirstOption: BooleanConstructor;
|
|
1041
|
+
reserveKeyword: {
|
|
1042
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1043
|
+
readonly required: false;
|
|
1044
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1045
|
+
__epPropKey: true;
|
|
1046
|
+
} & {
|
|
1047
|
+
readonly default: boolean;
|
|
1048
|
+
};
|
|
1049
|
+
valueKey: {
|
|
1050
|
+
readonly type: import('vue').PropType<string>;
|
|
1051
|
+
readonly required: false;
|
|
1052
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1053
|
+
__epPropKey: true;
|
|
1054
|
+
} & {
|
|
1055
|
+
readonly default: string;
|
|
1056
|
+
};
|
|
1057
|
+
collapseTags: BooleanConstructor;
|
|
1058
|
+
collapseTagsTooltip: BooleanConstructor;
|
|
1059
|
+
maxCollapseTags: {
|
|
1060
|
+
readonly type: import('vue').PropType<number>;
|
|
1061
|
+
readonly required: false;
|
|
1062
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1063
|
+
__epPropKey: true;
|
|
1064
|
+
} & {
|
|
1065
|
+
readonly default: number;
|
|
1066
|
+
};
|
|
1067
|
+
teleported: {
|
|
1068
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1069
|
+
readonly required: false;
|
|
1070
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1071
|
+
__epPropKey: true;
|
|
1072
|
+
} & {
|
|
1073
|
+
readonly default: true;
|
|
1074
|
+
};
|
|
1075
|
+
persistent: {
|
|
1076
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1077
|
+
readonly required: false;
|
|
1078
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1079
|
+
__epPropKey: true;
|
|
1080
|
+
} & {
|
|
1081
|
+
readonly default: boolean;
|
|
1082
|
+
};
|
|
1083
|
+
clearIcon: {
|
|
1084
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1085
|
+
readonly required: false;
|
|
1086
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1087
|
+
__epPropKey: true;
|
|
1088
|
+
};
|
|
1089
|
+
fitInputWidth: BooleanConstructor;
|
|
1090
|
+
suffixIcon: {
|
|
1091
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1092
|
+
readonly required: false;
|
|
1093
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1094
|
+
__epPropKey: true;
|
|
1095
|
+
};
|
|
1096
|
+
tagType: {
|
|
1097
|
+
default: string;
|
|
1098
|
+
type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
1099
|
+
required: false;
|
|
1100
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
1101
|
+
__epPropKey: true;
|
|
1102
|
+
};
|
|
1103
|
+
tagEffect: {
|
|
1104
|
+
default: string;
|
|
1105
|
+
type: import('vue').PropType<"light" | "dark" | "plain">;
|
|
1106
|
+
required: false;
|
|
1107
|
+
validator: ((val: unknown) => boolean) | undefined;
|
|
1108
|
+
__epPropKey: true;
|
|
1109
|
+
};
|
|
1110
|
+
validateEvent: {
|
|
1111
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1112
|
+
readonly required: false;
|
|
1113
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1114
|
+
__epPropKey: true;
|
|
1115
|
+
} & {
|
|
1116
|
+
readonly default: boolean;
|
|
1117
|
+
};
|
|
1118
|
+
remoteShowSuffix: BooleanConstructor;
|
|
1119
|
+
showArrow: {
|
|
1120
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1121
|
+
readonly required: false;
|
|
1122
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1123
|
+
__epPropKey: true;
|
|
1124
|
+
} & {
|
|
1125
|
+
readonly default: boolean;
|
|
1126
|
+
};
|
|
1127
|
+
offset: {
|
|
1128
|
+
readonly type: import('vue').PropType<number>;
|
|
1129
|
+
readonly required: false;
|
|
1130
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1131
|
+
__epPropKey: true;
|
|
1132
|
+
} & {
|
|
1133
|
+
readonly default: number;
|
|
1134
|
+
};
|
|
1135
|
+
placement: {
|
|
1136
|
+
readonly type: import('vue').PropType<any>;
|
|
1137
|
+
readonly required: false;
|
|
1138
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1139
|
+
__epPropKey: true;
|
|
1140
|
+
} & {
|
|
1141
|
+
readonly default: string;
|
|
1142
|
+
};
|
|
1143
|
+
fallbackPlacements: {
|
|
1144
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
1145
|
+
readonly required: false;
|
|
1146
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1147
|
+
__epPropKey: true;
|
|
1148
|
+
} & {
|
|
1149
|
+
readonly default: string[];
|
|
1150
|
+
};
|
|
1151
|
+
tabindex: {
|
|
1152
|
+
readonly type: import('vue').PropType<string | number>;
|
|
1153
|
+
readonly required: false;
|
|
1154
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1155
|
+
__epPropKey: true;
|
|
1156
|
+
} & {
|
|
1157
|
+
readonly default: number;
|
|
1158
|
+
};
|
|
1159
|
+
appendTo: {
|
|
1160
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
1161
|
+
readonly required: false;
|
|
1162
|
+
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1163
|
+
__epPropKey: true;
|
|
1164
|
+
};
|
|
1165
|
+
}>> & {
|
|
1166
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
1167
|
+
onChange?: ((...args: any[]) => any) | undefined;
|
|
1168
|
+
onFocus?: ((...args: any[]) => any) | undefined;
|
|
1169
|
+
onBlur?: ((...args: any[]) => any) | undefined;
|
|
1170
|
+
onClear?: ((...args: any[]) => any) | undefined;
|
|
1171
|
+
"onVisible-change"?: ((...args: any[]) => any) | undefined;
|
|
1172
|
+
"onRemove-tag"?: ((...args: any[]) => any) | undefined;
|
|
1173
|
+
"onPopup-scroll"?: ((...args: any[]) => any) | undefined;
|
|
1174
|
+
}, {
|
|
1175
|
+
modelValue: import('vue').ComputedRef<string | number | boolean | any[] | Record<string, any> | undefined>;
|
|
1176
|
+
selectedLabel: import('vue').ComputedRef<string | string[]>;
|
|
1177
|
+
calculatorRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
1178
|
+
inputStyle: import('vue').ComputedRef<{
|
|
1179
|
+
minWidth: string;
|
|
1180
|
+
}>;
|
|
1181
|
+
inputId: import('vue').Ref<string | undefined>;
|
|
1182
|
+
contentId: import('vue').Ref<string>;
|
|
1183
|
+
nsSelect: {
|
|
1184
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1185
|
+
b: (blockSuffix?: string) => string;
|
|
1186
|
+
e: (element?: string) => string;
|
|
1187
|
+
m: (modifier?: string) => string;
|
|
1188
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1189
|
+
em: (element?: string, modifier?: string) => string;
|
|
1190
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1191
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1192
|
+
is: {
|
|
1193
|
+
(name: string, state: boolean | undefined): string;
|
|
1194
|
+
(name: string): string;
|
|
1195
|
+
};
|
|
1196
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1197
|
+
cssVarName: (name: string) => string;
|
|
1198
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1199
|
+
cssVarBlockName: (name: string) => string;
|
|
1200
|
+
};
|
|
1201
|
+
nsInput: {
|
|
1202
|
+
namespace: import('vue').ComputedRef<string>;
|
|
1203
|
+
b: (blockSuffix?: string) => string;
|
|
1204
|
+
e: (element?: string) => string;
|
|
1205
|
+
m: (modifier?: string) => string;
|
|
1206
|
+
be: (blockSuffix?: string, element?: string) => string;
|
|
1207
|
+
em: (element?: string, modifier?: string) => string;
|
|
1208
|
+
bm: (blockSuffix?: string, modifier?: string) => string;
|
|
1209
|
+
bem: (blockSuffix?: string, element?: string, modifier?: string) => string;
|
|
1210
|
+
is: {
|
|
1211
|
+
(name: string, state: boolean | undefined): string;
|
|
1212
|
+
(name: string): string;
|
|
1213
|
+
};
|
|
1214
|
+
cssVar: (object: Record<string, string>) => Record<string, string>;
|
|
1215
|
+
cssVarName: (name: string) => string;
|
|
1216
|
+
cssVarBlock: (object: Record<string, string>) => Record<string, string>;
|
|
1217
|
+
cssVarBlockName: (name: string) => string;
|
|
1218
|
+
};
|
|
1219
|
+
states: {
|
|
1220
|
+
inputValue: string;
|
|
1221
|
+
options: Map<string | number | boolean | Record<string, any>, import('element-plus').SelectOptionProxy>;
|
|
1222
|
+
cachedOptions: Map<string | number | boolean | Record<string, any>, import('element-plus').SelectOptionProxy>;
|
|
1223
|
+
optionValues: (string | number | boolean | Record<string, any>)[];
|
|
1224
|
+
selected: {
|
|
1225
|
+
value: string | number | boolean | Record<string, any>;
|
|
1226
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
1227
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
1228
|
+
}[];
|
|
1229
|
+
hoveringIndex: number;
|
|
1230
|
+
inputHovering: boolean;
|
|
1231
|
+
selectionWidth: number;
|
|
1232
|
+
collapseItemWidth: number;
|
|
1233
|
+
previousQuery: string | null;
|
|
1234
|
+
selectedLabel: string;
|
|
1235
|
+
menuVisibleOnFocus: boolean;
|
|
1236
|
+
isBeforeHide: boolean;
|
|
1237
|
+
};
|
|
1238
|
+
isFocused: import('vue').Ref<boolean>;
|
|
1239
|
+
expanded: import('vue').Ref<boolean>;
|
|
1240
|
+
optionsArray: import('vue').ComputedRef<import('element-plus').SelectOptionProxy[]>;
|
|
1241
|
+
hoverOption: import('vue').Ref<any>;
|
|
1242
|
+
selectSize: import('vue').ComputedRef<"" | "small" | "default" | "large">;
|
|
1243
|
+
filteredOptionsCount: import('vue').ComputedRef<number>;
|
|
1244
|
+
updateTooltip: () => void;
|
|
1245
|
+
updateTagTooltip: () => void;
|
|
1246
|
+
debouncedOnInputChange: import('lodash-es').DebouncedFunc<() => void>;
|
|
1247
|
+
onInput: (event: Event) => void;
|
|
1248
|
+
deletePrevTag: (e: KeyboardEvent) => void;
|
|
1249
|
+
deleteTag: (event: MouseEvent, tag: import('element-plus').SelectOptionProxy | import('element-plus').OptionBasic) => void;
|
|
1250
|
+
deleteSelected: (event: Event) => void;
|
|
1251
|
+
handleOptionSelect: (option: import('element-plus').SelectOptionProxy) => void;
|
|
1252
|
+
scrollToOption: (option: import('element-plus').SelectOptionProxy | import('element-plus').SelectOptionProxy[] | import('element-plus').OptionBasic[]) => void;
|
|
1253
|
+
hasModelValue: import('vue').ComputedRef<boolean>;
|
|
1254
|
+
shouldShowPlaceholder: import('vue').ComputedRef<boolean>;
|
|
1255
|
+
currentPlaceholder: import('vue').ComputedRef<string>;
|
|
1256
|
+
mouseEnterEventName: import('vue').ComputedRef<"mouseenter" | null>;
|
|
1257
|
+
needStatusIcon: import('vue').ComputedRef<boolean>;
|
|
1258
|
+
showClose: import('vue').ComputedRef<boolean>;
|
|
1259
|
+
iconComponent: import('vue').ComputedRef<(string | import('vue').Component) | undefined>;
|
|
1260
|
+
iconReverse: import('vue').ComputedRef<string>;
|
|
1261
|
+
validateState: import('vue').ComputedRef<"" | "error" | "validating" | "success">;
|
|
1262
|
+
validateIcon: import('vue').ComputedRef<"" | import('vue').Component>;
|
|
1263
|
+
showNewOption: import('vue').ComputedRef<boolean>;
|
|
1264
|
+
updateOptions: () => void;
|
|
1265
|
+
collapseTagSize: import('vue').ComputedRef<"default" | "small">;
|
|
1266
|
+
setSelected: () => void;
|
|
1267
|
+
selectDisabled: import('vue').ComputedRef<boolean | undefined>;
|
|
1268
|
+
emptyText: import('vue').ComputedRef<string | null>;
|
|
1269
|
+
handleCompositionStart: (event: CompositionEvent) => void;
|
|
1270
|
+
handleCompositionUpdate: (event: CompositionEvent) => void;
|
|
1271
|
+
handleCompositionEnd: (event: CompositionEvent) => void;
|
|
1272
|
+
onOptionCreate: (vm: import('element-plus').SelectOptionProxy) => void;
|
|
1273
|
+
onOptionDestroy: (key: string | number | boolean | Record<string, any>, vm: import('element-plus').SelectOptionProxy) => void;
|
|
1274
|
+
handleMenuEnter: () => void;
|
|
1275
|
+
focus: () => void;
|
|
1276
|
+
blur: () => void;
|
|
1277
|
+
handleClearClick: (event: Event) => void;
|
|
1278
|
+
handleClickOutside: (event: Event) => void;
|
|
1279
|
+
handleEsc: () => void;
|
|
1280
|
+
toggleMenu: () => void;
|
|
1281
|
+
selectOption: () => void;
|
|
1282
|
+
getValueKey: (item: import('element-plus').SelectOptionProxy | import('element-plus').OptionBasic) => any;
|
|
1283
|
+
navigateOptions: (direction: "prev" | "next") => void;
|
|
1284
|
+
dropdownMenuVisible: import('vue').WritableComputedRef<boolean>;
|
|
1285
|
+
showTagList: import('vue').ComputedRef<{
|
|
1286
|
+
value: string | number | boolean | Record<string, any>;
|
|
1287
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
1288
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
1289
|
+
}[]>;
|
|
1290
|
+
collapseTagList: import('vue').ComputedRef<{
|
|
1291
|
+
value: string | number | boolean | Record<string, any>;
|
|
1292
|
+
currentLabel: import('element-plus').SelectOptionProxy["currentLabel"];
|
|
1293
|
+
isDisabled?: import('element-plus').SelectOptionProxy["isDisabled"] | undefined;
|
|
1294
|
+
}[]>;
|
|
1295
|
+
popupScroll: (data: {
|
|
1296
|
+
scrollTop: number;
|
|
1297
|
+
scrollLeft: number;
|
|
1298
|
+
}) => void;
|
|
1299
|
+
tagStyle: import('vue').ComputedRef<{
|
|
1300
|
+
maxWidth: string;
|
|
1301
|
+
}>;
|
|
1302
|
+
collapseTagStyle: import('vue').ComputedRef<{
|
|
1303
|
+
maxWidth: string;
|
|
1304
|
+
}>;
|
|
1305
|
+
popperRef: import('vue').ComputedRef<HTMLElement | undefined>;
|
|
1306
|
+
inputRef: import('vue').Ref<HTMLInputElement | undefined>;
|
|
1307
|
+
tooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1308
|
+
tagTooltipRef: import('vue').Ref<import('element-plus').TooltipInstance | undefined>;
|
|
1309
|
+
prefixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1310
|
+
suffixRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1311
|
+
selectRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1312
|
+
wrapperRef: import('vue').ShallowRef<HTMLElement | undefined>;
|
|
1313
|
+
selectionRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1314
|
+
scrollbarRef: import('vue').Ref<import('element-plus').ScrollbarInstance | undefined>;
|
|
1315
|
+
menuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1316
|
+
tagMenuRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1317
|
+
collapseItemRef: import('vue').Ref<HTMLElement | undefined>;
|
|
1318
|
+
}, {}, {}, {}, {
|
|
1319
|
+
disabled: boolean;
|
|
1320
|
+
offset: number;
|
|
1321
|
+
multiple: boolean;
|
|
1322
|
+
loading: boolean;
|
|
1323
|
+
modelValue: (string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[];
|
|
1324
|
+
placement: any;
|
|
1325
|
+
effect: import('element-plus').PopperEffect;
|
|
1326
|
+
tabindex: string | number;
|
|
1327
|
+
valueOnClear: string | number | boolean | Function;
|
|
1328
|
+
autocomplete: string;
|
|
1329
|
+
validateEvent: boolean;
|
|
1330
|
+
clearable: boolean;
|
|
1331
|
+
fallbackPlacements: Placement[];
|
|
1332
|
+
popperOptions: Partial<Options>;
|
|
1333
|
+
popperClass: string;
|
|
1334
|
+
teleported: boolean;
|
|
1335
|
+
persistent: boolean;
|
|
1336
|
+
showArrow: boolean;
|
|
1337
|
+
valueKey: string;
|
|
1338
|
+
fitInputWidth: boolean;
|
|
1339
|
+
filterable: boolean;
|
|
1340
|
+
collapseTags: boolean;
|
|
1341
|
+
maxCollapseTags: number;
|
|
1342
|
+
collapseTagsTooltip: boolean;
|
|
1343
|
+
tagType: "success" | "primary" | "warning" | "info" | "danger";
|
|
1344
|
+
tagEffect: "light" | "dark" | "plain";
|
|
1345
|
+
automaticDropdown: boolean;
|
|
1346
|
+
allowCreate: boolean;
|
|
1347
|
+
remote: boolean;
|
|
1348
|
+
multipleLimit: number;
|
|
1349
|
+
defaultFirstOption: boolean;
|
|
1350
|
+
reserveKeyword: boolean;
|
|
1351
|
+
remoteShowSuffix: boolean;
|
|
1352
|
+
}> | null;
|
|
1353
|
+
}, any>>;
|
|
1354
|
+
export default JcInputComplex;
|