@bscjc/webui 1.4.0 → 1.4.2
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/components/JcCascader/index.d.ts +25 -187
- package/dist/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/components/JcColumnConfig/index.d.ts +10 -94
- package/dist/components/JcColumnConfig/index.vue.d.ts +24 -63
- package/dist/components/JcColumnConfig/types.d.ts +2 -0
- package/dist/components/JcColumnConfig/useColumnConfig.d.ts +2 -0
- package/dist/components/JcDatePicker/index.d.ts +24 -105
- package/dist/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/components/JcImportButton/index.d.ts +14 -41
- package/dist/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/components/JcImportDialog/index.d.ts +14 -74
- package/dist/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/components/JcInputComplex/index.d.ts +48 -90
- package/dist/components/JcInputComplex/index.vue.d.ts +32 -48
- package/dist/components/JcInputSwitch/index.d.ts +42 -90
- package/dist/components/JcInputSwitch/index.vue.d.ts +30 -48
- package/dist/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/components/JcMoreQueryContain/index.vue.d.ts +23 -88
- package/dist/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/components/JcSelectQuery/index.vue.d.ts +37 -106
- package/dist/components/JcTagQuery/index.d.ts +4 -19
- package/dist/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/es/index.mjs +2032 -2066
- package/dist/index.css +2 -2
- package/dist/index.d.ts +3 -1
- package/dist/lib/index.cjs +8 -8
- package/dist/types/components/JcCascader/index.d.ts +25 -187
- package/dist/types/components/JcCascader/index.vue.d.ts +37 -100
- package/dist/types/components/JcColumnConfig/index.d.ts +10 -94
- package/dist/types/components/JcColumnConfig/index.vue.d.ts +24 -63
- package/dist/types/components/JcColumnConfig/types.d.ts +2 -0
- package/dist/types/components/JcColumnConfig/useColumnConfig.d.ts +2 -0
- package/dist/types/components/JcDatePicker/index.d.ts +24 -105
- package/dist/types/components/JcDatePicker/index.vue.d.ts +26 -58
- package/dist/types/components/JcImportButton/index.d.ts +14 -41
- package/dist/types/components/JcImportButton/index.vue.d.ts +19 -26
- package/dist/types/components/JcImportDialog/index.d.ts +14 -74
- package/dist/types/components/JcImportDialog/index.vue.d.ts +25 -48
- package/dist/types/components/JcInputComplex/index.d.ts +51 -93
- package/dist/types/components/JcInputComplex/index.vue.d.ts +126 -141
- package/dist/types/components/JcInputSwitch/index.d.ts +45 -93
- package/dist/types/components/JcInputSwitch/index.vue.d.ts +74 -91
- package/dist/types/components/JcMoreQueryContain/index.d.ts +14 -197
- package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +108 -172
- package/dist/types/components/JcSelectQuery/index.d.ts +19 -178
- package/dist/types/components/JcSelectQuery/index.vue.d.ts +137 -206
- package/dist/types/components/JcTagQuery/index.d.ts +4 -19
- package/dist/types/components/JcTagQuery/index.vue.d.ts +7 -12
- package/dist/types/index.d.ts +3 -1
- package/package.json +2 -2
|
@@ -1,58 +1,43 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
1
|
+
import { nextTick } from 'vue';
|
|
2
|
+
/** 字段选项类型 */
|
|
3
|
+
export interface InputComplexFieldItem {
|
|
3
4
|
label: string;
|
|
4
5
|
value: string;
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
6
|
+
}
|
|
7
|
+
/** 组件 Props 类型 */
|
|
8
|
+
export interface Props {
|
|
9
|
+
/** 字段列表 */
|
|
10
|
+
fieldList: InputComplexFieldItem[];
|
|
11
|
+
/** 组件尺寸 */
|
|
12
|
+
size?: "small" | "default" | "large";
|
|
13
|
+
/** 组件宽度 */
|
|
14
|
+
width?: string;
|
|
15
|
+
/** 自定义注入键值 */
|
|
16
|
+
injectionKey?: string;
|
|
17
|
+
}
|
|
18
|
+
declare const _default: import('vue').DefineComponent<Props, {
|
|
19
|
+
blur: () => void | undefined;
|
|
20
|
+
clear: () => void | undefined;
|
|
21
|
+
focus: () => void | undefined;
|
|
22
|
+
select: () => void | undefined;
|
|
23
|
+
resizeTextarea: () => void | undefined;
|
|
24
|
+
setInputValueMult: (query: any) => void;
|
|
25
|
+
setInputByOutside: () => void;
|
|
26
|
+
input: HTMLInputElement | undefined;
|
|
27
|
+
ref: HTMLInputElement | HTMLTextAreaElement | undefined;
|
|
28
|
+
textarea: HTMLTextAreaElement | undefined;
|
|
29
|
+
textareaStyle: import('vue').StyleValue;
|
|
30
|
+
isComposing: boolean | undefined;
|
|
27
31
|
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
-
fieldChange: (
|
|
29
|
-
}, string, import('vue').PublicProps, Readonly<
|
|
30
|
-
|
|
31
|
-
type: PropType<Array<fieldType>>;
|
|
32
|
-
require: boolean;
|
|
33
|
-
default: () => never[];
|
|
34
|
-
};
|
|
35
|
-
size: {
|
|
36
|
-
type: PropType<"small" | "default" | "large">;
|
|
37
|
-
default: string;
|
|
38
|
-
validator: (value: string) => boolean;
|
|
39
|
-
};
|
|
40
|
-
width: {
|
|
41
|
-
type: StringConstructor;
|
|
42
|
-
default: string;
|
|
43
|
-
};
|
|
44
|
-
injectionKey: {
|
|
45
|
-
type: StringConstructor;
|
|
46
|
-
default: string;
|
|
47
|
-
};
|
|
48
|
-
}>> & Readonly<{
|
|
49
|
-
onFieldChange?: ((...args: any[]) => any) | undefined;
|
|
32
|
+
fieldChange: (val: string) => any;
|
|
33
|
+
}, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
|
|
34
|
+
onFieldChange?: ((val: string) => any) | undefined;
|
|
50
35
|
}>, {
|
|
51
36
|
size: "small" | "default" | "large";
|
|
52
37
|
injectionKey: string;
|
|
53
38
|
width: string;
|
|
54
|
-
fieldList:
|
|
55
|
-
}, {}, {}, {}, string, import('vue').ComponentProvideOptions,
|
|
39
|
+
fieldList: InputComplexFieldItem[];
|
|
40
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
|
|
56
41
|
inputRef: ({
|
|
57
42
|
$: import('vue').ComponentInternalInstance;
|
|
58
43
|
$data: {};
|
|
@@ -74,13 +59,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
74
59
|
readonly showWordLimit: boolean;
|
|
75
60
|
readonly autofocus: boolean;
|
|
76
61
|
}> & Omit<{
|
|
77
|
-
readonly type: string;
|
|
78
62
|
readonly modelValue: string | number | null;
|
|
79
63
|
readonly autocomplete: string;
|
|
80
64
|
readonly disabled: boolean;
|
|
81
65
|
readonly clearable: boolean;
|
|
82
66
|
readonly validateEvent: boolean;
|
|
83
67
|
readonly tabindex: string | number;
|
|
68
|
+
readonly type: string;
|
|
84
69
|
readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
|
|
85
70
|
readonly autofocus: boolean;
|
|
86
71
|
readonly readonly: boolean;
|
|
@@ -113,7 +98,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
113
98
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
114
99
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
|
|
115
100
|
onClear?: (() => any) | undefined | undefined;
|
|
116
|
-
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "
|
|
101
|
+
} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputStyle" | "autofocus" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows">;
|
|
117
102
|
$attrs: {
|
|
118
103
|
[x: string]: unknown;
|
|
119
104
|
};
|
|
@@ -131,7 +116,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
131
116
|
$options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
|
|
132
117
|
readonly ariaLabel: StringConstructor;
|
|
133
118
|
readonly id: {
|
|
134
|
-
readonly type: PropType<string>;
|
|
119
|
+
readonly type: import('vue').PropType<string>;
|
|
135
120
|
readonly required: false;
|
|
136
121
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
137
122
|
__epPropKey: true;
|
|
@@ -139,14 +124,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
139
124
|
readonly default: undefined;
|
|
140
125
|
};
|
|
141
126
|
readonly size: {
|
|
142
|
-
readonly type: PropType<"" | "small" | "default" | "large">;
|
|
127
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
143
128
|
readonly required: false;
|
|
144
129
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
145
130
|
__epPropKey: true;
|
|
146
131
|
};
|
|
147
132
|
readonly disabled: BooleanConstructor;
|
|
148
133
|
readonly modelValue: {
|
|
149
|
-
readonly type: PropType<string | number | null | undefined>;
|
|
134
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
150
135
|
readonly required: false;
|
|
151
136
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
152
137
|
__epPropKey: true;
|
|
@@ -154,19 +139,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
154
139
|
readonly default: "";
|
|
155
140
|
};
|
|
156
141
|
readonly maxlength: {
|
|
157
|
-
readonly type: PropType<string | number>;
|
|
142
|
+
readonly type: import('vue').PropType<string | number>;
|
|
158
143
|
readonly required: false;
|
|
159
144
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
160
145
|
__epPropKey: true;
|
|
161
146
|
};
|
|
162
147
|
readonly minlength: {
|
|
163
|
-
readonly type: PropType<string | number>;
|
|
148
|
+
readonly type: import('vue').PropType<string | number>;
|
|
164
149
|
readonly required: false;
|
|
165
150
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
166
151
|
__epPropKey: true;
|
|
167
152
|
};
|
|
168
153
|
readonly type: {
|
|
169
|
-
readonly type: PropType<string>;
|
|
154
|
+
readonly type: import('vue').PropType<string>;
|
|
170
155
|
readonly required: false;
|
|
171
156
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
172
157
|
__epPropKey: true;
|
|
@@ -174,13 +159,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
174
159
|
readonly default: "text";
|
|
175
160
|
};
|
|
176
161
|
readonly resize: {
|
|
177
|
-
readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
162
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
178
163
|
readonly required: false;
|
|
179
164
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
180
165
|
__epPropKey: true;
|
|
181
166
|
};
|
|
182
167
|
readonly autosize: {
|
|
183
|
-
readonly type: PropType<import('element-plus').InputAutoSize>;
|
|
168
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
184
169
|
readonly required: false;
|
|
185
170
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
186
171
|
__epPropKey: true;
|
|
@@ -188,7 +173,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
188
173
|
readonly default: false;
|
|
189
174
|
};
|
|
190
175
|
readonly autocomplete: {
|
|
191
|
-
readonly type: PropType<string>;
|
|
176
|
+
readonly type: import('vue').PropType<string>;
|
|
192
177
|
readonly required: false;
|
|
193
178
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
194
179
|
__epPropKey: true;
|
|
@@ -196,25 +181,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
196
181
|
readonly default: "off";
|
|
197
182
|
};
|
|
198
183
|
readonly formatter: {
|
|
199
|
-
readonly type: PropType<Function>;
|
|
184
|
+
readonly type: import('vue').PropType<Function>;
|
|
200
185
|
readonly required: false;
|
|
201
186
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
202
187
|
__epPropKey: true;
|
|
203
188
|
};
|
|
204
189
|
readonly parser: {
|
|
205
|
-
readonly type: PropType<Function>;
|
|
190
|
+
readonly type: import('vue').PropType<Function>;
|
|
206
191
|
readonly required: false;
|
|
207
192
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
208
193
|
__epPropKey: true;
|
|
209
194
|
};
|
|
210
195
|
readonly placeholder: {
|
|
211
|
-
readonly type: PropType<string>;
|
|
196
|
+
readonly type: import('vue').PropType<string>;
|
|
212
197
|
readonly required: false;
|
|
213
198
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
214
199
|
__epPropKey: true;
|
|
215
200
|
};
|
|
216
201
|
readonly form: {
|
|
217
|
-
readonly type: PropType<string>;
|
|
202
|
+
readonly type: import('vue').PropType<string>;
|
|
218
203
|
readonly required: false;
|
|
219
204
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
220
205
|
__epPropKey: true;
|
|
@@ -224,19 +209,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
224
209
|
readonly showPassword: BooleanConstructor;
|
|
225
210
|
readonly showWordLimit: BooleanConstructor;
|
|
226
211
|
readonly suffixIcon: {
|
|
227
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
212
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
228
213
|
readonly required: false;
|
|
229
214
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
230
215
|
__epPropKey: true;
|
|
231
216
|
};
|
|
232
217
|
readonly prefixIcon: {
|
|
233
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
218
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
234
219
|
readonly required: false;
|
|
235
220
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
236
221
|
__epPropKey: true;
|
|
237
222
|
};
|
|
238
223
|
readonly containerRole: {
|
|
239
|
-
readonly type: PropType<string>;
|
|
224
|
+
readonly type: import('vue').PropType<string>;
|
|
240
225
|
readonly required: false;
|
|
241
226
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
242
227
|
__epPropKey: true;
|
|
@@ -244,7 +229,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
244
229
|
readonly default: undefined;
|
|
245
230
|
};
|
|
246
231
|
readonly tabindex: {
|
|
247
|
-
readonly type: PropType<string | number>;
|
|
232
|
+
readonly type: import('vue').PropType<string | number>;
|
|
248
233
|
readonly required: false;
|
|
249
234
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
250
235
|
__epPropKey: true;
|
|
@@ -252,7 +237,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
252
237
|
readonly default: 0;
|
|
253
238
|
};
|
|
254
239
|
readonly validateEvent: {
|
|
255
|
-
readonly type: PropType<boolean>;
|
|
240
|
+
readonly type: import('vue').PropType<boolean>;
|
|
256
241
|
readonly required: false;
|
|
257
242
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
258
243
|
__epPropKey: true;
|
|
@@ -260,7 +245,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
260
245
|
readonly default: true;
|
|
261
246
|
};
|
|
262
247
|
readonly inputStyle: {
|
|
263
|
-
readonly type: PropType<import('vue').StyleValue>;
|
|
248
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
264
249
|
readonly required: false;
|
|
265
250
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
266
251
|
__epPropKey: true;
|
|
@@ -269,7 +254,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
269
254
|
};
|
|
270
255
|
readonly autofocus: BooleanConstructor;
|
|
271
256
|
readonly rows: {
|
|
272
|
-
readonly type: PropType<number>;
|
|
257
|
+
readonly type: import('vue').PropType<number>;
|
|
273
258
|
readonly required: false;
|
|
274
259
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
275
260
|
__epPropKey: true;
|
|
@@ -371,7 +356,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
371
356
|
}> & Omit<Readonly<import('vue').ExtractPropTypes<{
|
|
372
357
|
readonly ariaLabel: StringConstructor;
|
|
373
358
|
readonly id: {
|
|
374
|
-
readonly type: PropType<string>;
|
|
359
|
+
readonly type: import('vue').PropType<string>;
|
|
375
360
|
readonly required: false;
|
|
376
361
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
377
362
|
__epPropKey: true;
|
|
@@ -379,14 +364,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
379
364
|
readonly default: undefined;
|
|
380
365
|
};
|
|
381
366
|
readonly size: {
|
|
382
|
-
readonly type: PropType<"" | "small" | "default" | "large">;
|
|
367
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
383
368
|
readonly required: false;
|
|
384
369
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
385
370
|
__epPropKey: true;
|
|
386
371
|
};
|
|
387
372
|
readonly disabled: BooleanConstructor;
|
|
388
373
|
readonly modelValue: {
|
|
389
|
-
readonly type: PropType<string | number | null | undefined>;
|
|
374
|
+
readonly type: import('vue').PropType<string | number | null | undefined>;
|
|
390
375
|
readonly required: false;
|
|
391
376
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
392
377
|
__epPropKey: true;
|
|
@@ -394,19 +379,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
394
379
|
readonly default: "";
|
|
395
380
|
};
|
|
396
381
|
readonly maxlength: {
|
|
397
|
-
readonly type: PropType<string | number>;
|
|
382
|
+
readonly type: import('vue').PropType<string | number>;
|
|
398
383
|
readonly required: false;
|
|
399
384
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
400
385
|
__epPropKey: true;
|
|
401
386
|
};
|
|
402
387
|
readonly minlength: {
|
|
403
|
-
readonly type: PropType<string | number>;
|
|
388
|
+
readonly type: import('vue').PropType<string | number>;
|
|
404
389
|
readonly required: false;
|
|
405
390
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
406
391
|
__epPropKey: true;
|
|
407
392
|
};
|
|
408
393
|
readonly type: {
|
|
409
|
-
readonly type: PropType<string>;
|
|
394
|
+
readonly type: import('vue').PropType<string>;
|
|
410
395
|
readonly required: false;
|
|
411
396
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
412
397
|
__epPropKey: true;
|
|
@@ -414,13 +399,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
414
399
|
readonly default: "text";
|
|
415
400
|
};
|
|
416
401
|
readonly resize: {
|
|
417
|
-
readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
402
|
+
readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
|
|
418
403
|
readonly required: false;
|
|
419
404
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
420
405
|
__epPropKey: true;
|
|
421
406
|
};
|
|
422
407
|
readonly autosize: {
|
|
423
|
-
readonly type: PropType<import('element-plus').InputAutoSize>;
|
|
408
|
+
readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
|
|
424
409
|
readonly required: false;
|
|
425
410
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
426
411
|
__epPropKey: true;
|
|
@@ -428,7 +413,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
428
413
|
readonly default: false;
|
|
429
414
|
};
|
|
430
415
|
readonly autocomplete: {
|
|
431
|
-
readonly type: PropType<string>;
|
|
416
|
+
readonly type: import('vue').PropType<string>;
|
|
432
417
|
readonly required: false;
|
|
433
418
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
434
419
|
__epPropKey: true;
|
|
@@ -436,25 +421,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
436
421
|
readonly default: "off";
|
|
437
422
|
};
|
|
438
423
|
readonly formatter: {
|
|
439
|
-
readonly type: PropType<Function>;
|
|
424
|
+
readonly type: import('vue').PropType<Function>;
|
|
440
425
|
readonly required: false;
|
|
441
426
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
442
427
|
__epPropKey: true;
|
|
443
428
|
};
|
|
444
429
|
readonly parser: {
|
|
445
|
-
readonly type: PropType<Function>;
|
|
430
|
+
readonly type: import('vue').PropType<Function>;
|
|
446
431
|
readonly required: false;
|
|
447
432
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
448
433
|
__epPropKey: true;
|
|
449
434
|
};
|
|
450
435
|
readonly placeholder: {
|
|
451
|
-
readonly type: PropType<string>;
|
|
436
|
+
readonly type: import('vue').PropType<string>;
|
|
452
437
|
readonly required: false;
|
|
453
438
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
454
439
|
__epPropKey: true;
|
|
455
440
|
};
|
|
456
441
|
readonly form: {
|
|
457
|
-
readonly type: PropType<string>;
|
|
442
|
+
readonly type: import('vue').PropType<string>;
|
|
458
443
|
readonly required: false;
|
|
459
444
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
460
445
|
__epPropKey: true;
|
|
@@ -464,19 +449,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
464
449
|
readonly showPassword: BooleanConstructor;
|
|
465
450
|
readonly showWordLimit: BooleanConstructor;
|
|
466
451
|
readonly suffixIcon: {
|
|
467
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
452
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
468
453
|
readonly required: false;
|
|
469
454
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
470
455
|
__epPropKey: true;
|
|
471
456
|
};
|
|
472
457
|
readonly prefixIcon: {
|
|
473
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
458
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
474
459
|
readonly required: false;
|
|
475
460
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
476
461
|
__epPropKey: true;
|
|
477
462
|
};
|
|
478
463
|
readonly containerRole: {
|
|
479
|
-
readonly type: PropType<string>;
|
|
464
|
+
readonly type: import('vue').PropType<string>;
|
|
480
465
|
readonly required: false;
|
|
481
466
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
482
467
|
__epPropKey: true;
|
|
@@ -484,7 +469,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
484
469
|
readonly default: undefined;
|
|
485
470
|
};
|
|
486
471
|
readonly tabindex: {
|
|
487
|
-
readonly type: PropType<string | number>;
|
|
472
|
+
readonly type: import('vue').PropType<string | number>;
|
|
488
473
|
readonly required: false;
|
|
489
474
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
490
475
|
__epPropKey: true;
|
|
@@ -492,7 +477,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
492
477
|
readonly default: 0;
|
|
493
478
|
};
|
|
494
479
|
readonly validateEvent: {
|
|
495
|
-
readonly type: PropType<boolean>;
|
|
480
|
+
readonly type: import('vue').PropType<boolean>;
|
|
496
481
|
readonly required: false;
|
|
497
482
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
498
483
|
__epPropKey: true;
|
|
@@ -500,7 +485,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
500
485
|
readonly default: true;
|
|
501
486
|
};
|
|
502
487
|
readonly inputStyle: {
|
|
503
|
-
readonly type: PropType<import('vue').StyleValue>;
|
|
488
|
+
readonly type: import('vue').PropType<import('vue').StyleValue>;
|
|
504
489
|
readonly required: false;
|
|
505
490
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
506
491
|
__epPropKey: true;
|
|
@@ -509,7 +494,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
509
494
|
};
|
|
510
495
|
readonly autofocus: BooleanConstructor;
|
|
511
496
|
readonly rows: {
|
|
512
|
-
readonly type: PropType<number>;
|
|
497
|
+
readonly type: import('vue').PropType<number>;
|
|
513
498
|
readonly required: false;
|
|
514
499
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
515
500
|
__epPropKey: true;
|
|
@@ -529,7 +514,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
529
514
|
onMouseenter?: ((evt: MouseEvent) => any) | undefined;
|
|
530
515
|
onMouseleave?: ((evt: MouseEvent) => any) | undefined;
|
|
531
516
|
onClear?: (() => any) | undefined;
|
|
532
|
-
}, "clear" | "
|
|
517
|
+
}, "clear" | "blur" | "focus" | "id" | "modelValue" | "autocomplete" | "disabled" | "clearable" | "validateEvent" | "tabindex" | "type" | "inputStyle" | "select" | "autofocus" | "ref" | "input" | "textarea" | "readonly" | "autosize" | "showPassword" | "showWordLimit" | "containerRole" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & import('vue').ShallowUnwrapRef<{
|
|
533
518
|
input: import('vue').ShallowRef<HTMLInputElement | undefined>;
|
|
534
519
|
textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
|
|
535
520
|
ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
|
|
@@ -553,7 +538,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
553
538
|
ariaLabel: StringConstructor;
|
|
554
539
|
emptyValues: ArrayConstructor;
|
|
555
540
|
valueOnClear: {
|
|
556
|
-
readonly type: PropType<string | number | boolean | Function>;
|
|
541
|
+
readonly type: import('vue').PropType<string | number | boolean | Function>;
|
|
557
542
|
readonly required: false;
|
|
558
543
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
559
544
|
__epPropKey: true;
|
|
@@ -563,7 +548,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
563
548
|
name: StringConstructor;
|
|
564
549
|
id: StringConstructor;
|
|
565
550
|
modelValue: {
|
|
566
|
-
readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
551
|
+
readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
567
552
|
readonly required: false;
|
|
568
553
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
569
554
|
__epPropKey: true;
|
|
@@ -571,7 +556,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
571
556
|
readonly default: undefined;
|
|
572
557
|
};
|
|
573
558
|
autocomplete: {
|
|
574
|
-
readonly type: PropType<string>;
|
|
559
|
+
readonly type: import('vue').PropType<string>;
|
|
575
560
|
readonly required: false;
|
|
576
561
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
577
562
|
__epPropKey: true;
|
|
@@ -580,13 +565,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
580
565
|
};
|
|
581
566
|
automaticDropdown: BooleanConstructor;
|
|
582
567
|
size: {
|
|
583
|
-
readonly type: PropType<"" | "small" | "default" | "large">;
|
|
568
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
584
569
|
readonly required: false;
|
|
585
570
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
586
571
|
__epPropKey: true;
|
|
587
572
|
};
|
|
588
573
|
effect: {
|
|
589
|
-
readonly type: PropType<import('element-plus').PopperEffect>;
|
|
574
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
590
575
|
readonly required: false;
|
|
591
576
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
592
577
|
__epPropKey: true;
|
|
@@ -599,7 +584,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
599
584
|
allowCreate: BooleanConstructor;
|
|
600
585
|
loading: BooleanConstructor;
|
|
601
586
|
popperClass: {
|
|
602
|
-
readonly type: PropType<string>;
|
|
587
|
+
readonly type: import('vue').PropType<string>;
|
|
603
588
|
readonly required: false;
|
|
604
589
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
605
590
|
__epPropKey: true;
|
|
@@ -607,7 +592,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
607
592
|
readonly default: string;
|
|
608
593
|
};
|
|
609
594
|
popperOptions: {
|
|
610
|
-
readonly type: PropType<any>;
|
|
595
|
+
readonly type: import('vue').PropType<any>;
|
|
611
596
|
readonly required: false;
|
|
612
597
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
613
598
|
__epPropKey: true;
|
|
@@ -622,7 +607,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
622
607
|
filterMethod: FunctionConstructor;
|
|
623
608
|
multiple: BooleanConstructor;
|
|
624
609
|
multipleLimit: {
|
|
625
|
-
readonly type: PropType<number>;
|
|
610
|
+
readonly type: import('vue').PropType<number>;
|
|
626
611
|
readonly required: false;
|
|
627
612
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
628
613
|
__epPropKey: true;
|
|
@@ -630,14 +615,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
630
615
|
readonly default: number;
|
|
631
616
|
};
|
|
632
617
|
placeholder: {
|
|
633
|
-
readonly type: PropType<string>;
|
|
618
|
+
readonly type: import('vue').PropType<string>;
|
|
634
619
|
readonly required: false;
|
|
635
620
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
636
621
|
__epPropKey: true;
|
|
637
622
|
};
|
|
638
623
|
defaultFirstOption: BooleanConstructor;
|
|
639
624
|
reserveKeyword: {
|
|
640
|
-
readonly type: PropType<boolean>;
|
|
625
|
+
readonly type: import('vue').PropType<boolean>;
|
|
641
626
|
readonly required: false;
|
|
642
627
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
643
628
|
__epPropKey: true;
|
|
@@ -645,7 +630,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
645
630
|
readonly default: boolean;
|
|
646
631
|
};
|
|
647
632
|
valueKey: {
|
|
648
|
-
readonly type: PropType<string>;
|
|
633
|
+
readonly type: import('vue').PropType<string>;
|
|
649
634
|
readonly required: false;
|
|
650
635
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
651
636
|
__epPropKey: true;
|
|
@@ -655,7 +640,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
655
640
|
collapseTags: BooleanConstructor;
|
|
656
641
|
collapseTagsTooltip: BooleanConstructor;
|
|
657
642
|
maxCollapseTags: {
|
|
658
|
-
readonly type: PropType<number>;
|
|
643
|
+
readonly type: import('vue').PropType<number>;
|
|
659
644
|
readonly required: false;
|
|
660
645
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
661
646
|
__epPropKey: true;
|
|
@@ -663,7 +648,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
663
648
|
readonly default: number;
|
|
664
649
|
};
|
|
665
650
|
teleported: {
|
|
666
|
-
readonly type: PropType<boolean>;
|
|
651
|
+
readonly type: import('vue').PropType<boolean>;
|
|
667
652
|
readonly required: false;
|
|
668
653
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
669
654
|
__epPropKey: true;
|
|
@@ -671,7 +656,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
671
656
|
readonly default: true;
|
|
672
657
|
};
|
|
673
658
|
persistent: {
|
|
674
|
-
readonly type: PropType<boolean>;
|
|
659
|
+
readonly type: import('vue').PropType<boolean>;
|
|
675
660
|
readonly required: false;
|
|
676
661
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
677
662
|
__epPropKey: true;
|
|
@@ -679,34 +664,34 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
679
664
|
readonly default: boolean;
|
|
680
665
|
};
|
|
681
666
|
clearIcon: {
|
|
682
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
667
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
683
668
|
readonly required: false;
|
|
684
669
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
685
670
|
__epPropKey: true;
|
|
686
671
|
};
|
|
687
672
|
fitInputWidth: BooleanConstructor;
|
|
688
673
|
suffixIcon: {
|
|
689
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
674
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
690
675
|
readonly required: false;
|
|
691
676
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
692
677
|
__epPropKey: true;
|
|
693
678
|
};
|
|
694
679
|
tagType: {
|
|
695
680
|
default: string;
|
|
696
|
-
type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
681
|
+
type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
697
682
|
required: false;
|
|
698
683
|
validator: ((val: unknown) => boolean) | undefined;
|
|
699
684
|
__epPropKey: true;
|
|
700
685
|
};
|
|
701
686
|
tagEffect: {
|
|
702
687
|
default: string;
|
|
703
|
-
type: PropType<"light" | "dark" | "plain">;
|
|
688
|
+
type: import('vue').PropType<"light" | "dark" | "plain">;
|
|
704
689
|
required: false;
|
|
705
690
|
validator: ((val: unknown) => boolean) | undefined;
|
|
706
691
|
__epPropKey: true;
|
|
707
692
|
};
|
|
708
693
|
validateEvent: {
|
|
709
|
-
readonly type: PropType<boolean>;
|
|
694
|
+
readonly type: import('vue').PropType<boolean>;
|
|
710
695
|
readonly required: false;
|
|
711
696
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
712
697
|
__epPropKey: true;
|
|
@@ -715,7 +700,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
715
700
|
};
|
|
716
701
|
remoteShowSuffix: BooleanConstructor;
|
|
717
702
|
showArrow: {
|
|
718
|
-
readonly type: PropType<boolean>;
|
|
703
|
+
readonly type: import('vue').PropType<boolean>;
|
|
719
704
|
readonly required: false;
|
|
720
705
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
721
706
|
__epPropKey: true;
|
|
@@ -723,7 +708,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
723
708
|
readonly default: boolean;
|
|
724
709
|
};
|
|
725
710
|
offset: {
|
|
726
|
-
readonly type: PropType<number>;
|
|
711
|
+
readonly type: import('vue').PropType<number>;
|
|
727
712
|
readonly required: false;
|
|
728
713
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
729
714
|
__epPropKey: true;
|
|
@@ -731,7 +716,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
731
716
|
readonly default: number;
|
|
732
717
|
};
|
|
733
718
|
placement: {
|
|
734
|
-
readonly type: PropType<any>;
|
|
719
|
+
readonly type: import('vue').PropType<any>;
|
|
735
720
|
readonly required: false;
|
|
736
721
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
737
722
|
__epPropKey: true;
|
|
@@ -739,7 +724,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
739
724
|
readonly default: string;
|
|
740
725
|
};
|
|
741
726
|
fallbackPlacements: {
|
|
742
|
-
readonly type: PropType<Placement[]>;
|
|
727
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
743
728
|
readonly required: false;
|
|
744
729
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
745
730
|
__epPropKey: true;
|
|
@@ -747,7 +732,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
747
732
|
readonly default: string[];
|
|
748
733
|
};
|
|
749
734
|
tabindex: {
|
|
750
|
-
readonly type: PropType<string | number>;
|
|
735
|
+
readonly type: import('vue').PropType<string | number>;
|
|
751
736
|
readonly required: false;
|
|
752
737
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
753
738
|
__epPropKey: true;
|
|
@@ -755,7 +740,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
755
740
|
readonly default: number;
|
|
756
741
|
};
|
|
757
742
|
appendTo: {
|
|
758
|
-
readonly type: PropType<string | HTMLElement>;
|
|
743
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
759
744
|
readonly required: false;
|
|
760
745
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
761
746
|
__epPropKey: true;
|
|
@@ -958,7 +943,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
958
943
|
ariaLabel: StringConstructor;
|
|
959
944
|
emptyValues: ArrayConstructor;
|
|
960
945
|
valueOnClear: {
|
|
961
|
-
readonly type: PropType<string | number | boolean | Function>;
|
|
946
|
+
readonly type: import('vue').PropType<string | number | boolean | Function>;
|
|
962
947
|
readonly required: false;
|
|
963
948
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
964
949
|
__epPropKey: true;
|
|
@@ -968,7 +953,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
968
953
|
name: StringConstructor;
|
|
969
954
|
id: StringConstructor;
|
|
970
955
|
modelValue: {
|
|
971
|
-
readonly type: PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
956
|
+
readonly type: import('vue').PropType<(string | number | boolean | Record<string, any>) | (string | number | boolean | Record<string, any>)[]>;
|
|
972
957
|
readonly required: false;
|
|
973
958
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
974
959
|
__epPropKey: true;
|
|
@@ -976,7 +961,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
976
961
|
readonly default: undefined;
|
|
977
962
|
};
|
|
978
963
|
autocomplete: {
|
|
979
|
-
readonly type: PropType<string>;
|
|
964
|
+
readonly type: import('vue').PropType<string>;
|
|
980
965
|
readonly required: false;
|
|
981
966
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
982
967
|
__epPropKey: true;
|
|
@@ -985,13 +970,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
985
970
|
};
|
|
986
971
|
automaticDropdown: BooleanConstructor;
|
|
987
972
|
size: {
|
|
988
|
-
readonly type: PropType<"" | "small" | "default" | "large">;
|
|
973
|
+
readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
|
|
989
974
|
readonly required: false;
|
|
990
975
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
991
976
|
__epPropKey: true;
|
|
992
977
|
};
|
|
993
978
|
effect: {
|
|
994
|
-
readonly type: PropType<import('element-plus').PopperEffect>;
|
|
979
|
+
readonly type: import('vue').PropType<import('element-plus').PopperEffect>;
|
|
995
980
|
readonly required: false;
|
|
996
981
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
997
982
|
__epPropKey: true;
|
|
@@ -1004,7 +989,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1004
989
|
allowCreate: BooleanConstructor;
|
|
1005
990
|
loading: BooleanConstructor;
|
|
1006
991
|
popperClass: {
|
|
1007
|
-
readonly type: PropType<string>;
|
|
992
|
+
readonly type: import('vue').PropType<string>;
|
|
1008
993
|
readonly required: false;
|
|
1009
994
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1010
995
|
__epPropKey: true;
|
|
@@ -1012,7 +997,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1012
997
|
readonly default: string;
|
|
1013
998
|
};
|
|
1014
999
|
popperOptions: {
|
|
1015
|
-
readonly type: PropType<any>;
|
|
1000
|
+
readonly type: import('vue').PropType<any>;
|
|
1016
1001
|
readonly required: false;
|
|
1017
1002
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1018
1003
|
__epPropKey: true;
|
|
@@ -1027,7 +1012,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1027
1012
|
filterMethod: FunctionConstructor;
|
|
1028
1013
|
multiple: BooleanConstructor;
|
|
1029
1014
|
multipleLimit: {
|
|
1030
|
-
readonly type: PropType<number>;
|
|
1015
|
+
readonly type: import('vue').PropType<number>;
|
|
1031
1016
|
readonly required: false;
|
|
1032
1017
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1033
1018
|
__epPropKey: true;
|
|
@@ -1035,14 +1020,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1035
1020
|
readonly default: number;
|
|
1036
1021
|
};
|
|
1037
1022
|
placeholder: {
|
|
1038
|
-
readonly type: PropType<string>;
|
|
1023
|
+
readonly type: import('vue').PropType<string>;
|
|
1039
1024
|
readonly required: false;
|
|
1040
1025
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1041
1026
|
__epPropKey: true;
|
|
1042
1027
|
};
|
|
1043
1028
|
defaultFirstOption: BooleanConstructor;
|
|
1044
1029
|
reserveKeyword: {
|
|
1045
|
-
readonly type: PropType<boolean>;
|
|
1030
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1046
1031
|
readonly required: false;
|
|
1047
1032
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1048
1033
|
__epPropKey: true;
|
|
@@ -1050,7 +1035,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1050
1035
|
readonly default: boolean;
|
|
1051
1036
|
};
|
|
1052
1037
|
valueKey: {
|
|
1053
|
-
readonly type: PropType<string>;
|
|
1038
|
+
readonly type: import('vue').PropType<string>;
|
|
1054
1039
|
readonly required: false;
|
|
1055
1040
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1056
1041
|
__epPropKey: true;
|
|
@@ -1060,7 +1045,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1060
1045
|
collapseTags: BooleanConstructor;
|
|
1061
1046
|
collapseTagsTooltip: BooleanConstructor;
|
|
1062
1047
|
maxCollapseTags: {
|
|
1063
|
-
readonly type: PropType<number>;
|
|
1048
|
+
readonly type: import('vue').PropType<number>;
|
|
1064
1049
|
readonly required: false;
|
|
1065
1050
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1066
1051
|
__epPropKey: true;
|
|
@@ -1068,7 +1053,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1068
1053
|
readonly default: number;
|
|
1069
1054
|
};
|
|
1070
1055
|
teleported: {
|
|
1071
|
-
readonly type: PropType<boolean>;
|
|
1056
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1072
1057
|
readonly required: false;
|
|
1073
1058
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1074
1059
|
__epPropKey: true;
|
|
@@ -1076,7 +1061,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1076
1061
|
readonly default: true;
|
|
1077
1062
|
};
|
|
1078
1063
|
persistent: {
|
|
1079
|
-
readonly type: PropType<boolean>;
|
|
1064
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1080
1065
|
readonly required: false;
|
|
1081
1066
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1082
1067
|
__epPropKey: true;
|
|
@@ -1084,34 +1069,34 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1084
1069
|
readonly default: boolean;
|
|
1085
1070
|
};
|
|
1086
1071
|
clearIcon: {
|
|
1087
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
1072
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1088
1073
|
readonly required: false;
|
|
1089
1074
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1090
1075
|
__epPropKey: true;
|
|
1091
1076
|
};
|
|
1092
1077
|
fitInputWidth: BooleanConstructor;
|
|
1093
1078
|
suffixIcon: {
|
|
1094
|
-
readonly type: PropType<string | import('vue').Component>;
|
|
1079
|
+
readonly type: import('vue').PropType<string | import('vue').Component>;
|
|
1095
1080
|
readonly required: false;
|
|
1096
1081
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1097
1082
|
__epPropKey: true;
|
|
1098
1083
|
};
|
|
1099
1084
|
tagType: {
|
|
1100
1085
|
default: string;
|
|
1101
|
-
type: PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
1086
|
+
type: import('vue').PropType<"success" | "primary" | "warning" | "info" | "danger">;
|
|
1102
1087
|
required: false;
|
|
1103
1088
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1104
1089
|
__epPropKey: true;
|
|
1105
1090
|
};
|
|
1106
1091
|
tagEffect: {
|
|
1107
1092
|
default: string;
|
|
1108
|
-
type: PropType<"light" | "dark" | "plain">;
|
|
1093
|
+
type: import('vue').PropType<"light" | "dark" | "plain">;
|
|
1109
1094
|
required: false;
|
|
1110
1095
|
validator: ((val: unknown) => boolean) | undefined;
|
|
1111
1096
|
__epPropKey: true;
|
|
1112
1097
|
};
|
|
1113
1098
|
validateEvent: {
|
|
1114
|
-
readonly type: PropType<boolean>;
|
|
1099
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1115
1100
|
readonly required: false;
|
|
1116
1101
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1117
1102
|
__epPropKey: true;
|
|
@@ -1120,7 +1105,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1120
1105
|
};
|
|
1121
1106
|
remoteShowSuffix: BooleanConstructor;
|
|
1122
1107
|
showArrow: {
|
|
1123
|
-
readonly type: PropType<boolean>;
|
|
1108
|
+
readonly type: import('vue').PropType<boolean>;
|
|
1124
1109
|
readonly required: false;
|
|
1125
1110
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1126
1111
|
__epPropKey: true;
|
|
@@ -1128,7 +1113,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1128
1113
|
readonly default: boolean;
|
|
1129
1114
|
};
|
|
1130
1115
|
offset: {
|
|
1131
|
-
readonly type: PropType<number>;
|
|
1116
|
+
readonly type: import('vue').PropType<number>;
|
|
1132
1117
|
readonly required: false;
|
|
1133
1118
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1134
1119
|
__epPropKey: true;
|
|
@@ -1136,7 +1121,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1136
1121
|
readonly default: number;
|
|
1137
1122
|
};
|
|
1138
1123
|
placement: {
|
|
1139
|
-
readonly type: PropType<any>;
|
|
1124
|
+
readonly type: import('vue').PropType<any>;
|
|
1140
1125
|
readonly required: false;
|
|
1141
1126
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1142
1127
|
__epPropKey: true;
|
|
@@ -1144,7 +1129,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1144
1129
|
readonly default: string;
|
|
1145
1130
|
};
|
|
1146
1131
|
fallbackPlacements: {
|
|
1147
|
-
readonly type: PropType<Placement[]>;
|
|
1132
|
+
readonly type: import('vue').PropType<Placement[]>;
|
|
1148
1133
|
readonly required: false;
|
|
1149
1134
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1150
1135
|
__epPropKey: true;
|
|
@@ -1152,7 +1137,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1152
1137
|
readonly default: string[];
|
|
1153
1138
|
};
|
|
1154
1139
|
tabindex: {
|
|
1155
|
-
readonly type: PropType<string | number>;
|
|
1140
|
+
readonly type: import('vue').PropType<string | number>;
|
|
1156
1141
|
readonly required: false;
|
|
1157
1142
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1158
1143
|
__epPropKey: true;
|
|
@@ -1160,7 +1145,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
|
|
|
1160
1145
|
readonly default: number;
|
|
1161
1146
|
};
|
|
1162
1147
|
appendTo: {
|
|
1163
|
-
readonly type: PropType<string | HTMLElement>;
|
|
1148
|
+
readonly type: import('vue').PropType<string | HTMLElement>;
|
|
1164
1149
|
readonly required: false;
|
|
1165
1150
|
readonly validator: ((val: unknown) => boolean) | undefined;
|
|
1166
1151
|
__epPropKey: true;
|