@bscjc/webui 1.4.1 → 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.
Files changed (46) hide show
  1. package/dist/components/JcCascader/index.d.ts +25 -187
  2. package/dist/components/JcCascader/index.vue.d.ts +37 -100
  3. package/dist/components/JcColumnConfig/index.d.ts +7 -106
  4. package/dist/components/JcColumnConfig/index.vue.d.ts +23 -71
  5. package/dist/components/JcDatePicker/index.d.ts +24 -105
  6. package/dist/components/JcDatePicker/index.vue.d.ts +26 -58
  7. package/dist/components/JcImportButton/index.d.ts +14 -41
  8. package/dist/components/JcImportButton/index.vue.d.ts +19 -26
  9. package/dist/components/JcImportDialog/index.d.ts +14 -74
  10. package/dist/components/JcImportDialog/index.vue.d.ts +25 -48
  11. package/dist/components/JcInputComplex/index.d.ts +48 -90
  12. package/dist/components/JcInputComplex/index.vue.d.ts +32 -48
  13. package/dist/components/JcInputSwitch/index.d.ts +42 -90
  14. package/dist/components/JcInputSwitch/index.vue.d.ts +30 -48
  15. package/dist/components/JcMoreQueryContain/index.d.ts +14 -197
  16. package/dist/components/JcMoreQueryContain/index.vue.d.ts +23 -88
  17. package/dist/components/JcSelectQuery/index.d.ts +19 -178
  18. package/dist/components/JcSelectQuery/index.vue.d.ts +37 -106
  19. package/dist/components/JcTagQuery/index.d.ts +4 -19
  20. package/dist/components/JcTagQuery/index.vue.d.ts +7 -12
  21. package/dist/es/index.mjs +2098 -2167
  22. package/dist/index.css +2 -2
  23. package/dist/index.d.ts +3 -1
  24. package/dist/lib/index.cjs +8 -8
  25. package/dist/types/components/JcCascader/index.d.ts +25 -187
  26. package/dist/types/components/JcCascader/index.vue.d.ts +37 -100
  27. package/dist/types/components/JcColumnConfig/index.d.ts +7 -106
  28. package/dist/types/components/JcColumnConfig/index.vue.d.ts +23 -71
  29. package/dist/types/components/JcDatePicker/index.d.ts +24 -105
  30. package/dist/types/components/JcDatePicker/index.vue.d.ts +26 -58
  31. package/dist/types/components/JcImportButton/index.d.ts +14 -41
  32. package/dist/types/components/JcImportButton/index.vue.d.ts +19 -26
  33. package/dist/types/components/JcImportDialog/index.d.ts +14 -74
  34. package/dist/types/components/JcImportDialog/index.vue.d.ts +25 -48
  35. package/dist/types/components/JcInputComplex/index.d.ts +51 -93
  36. package/dist/types/components/JcInputComplex/index.vue.d.ts +126 -141
  37. package/dist/types/components/JcInputSwitch/index.d.ts +45 -93
  38. package/dist/types/components/JcInputSwitch/index.vue.d.ts +74 -91
  39. package/dist/types/components/JcMoreQueryContain/index.d.ts +14 -197
  40. package/dist/types/components/JcMoreQueryContain/index.vue.d.ts +108 -172
  41. package/dist/types/components/JcSelectQuery/index.d.ts +19 -178
  42. package/dist/types/components/JcSelectQuery/index.vue.d.ts +137 -206
  43. package/dist/types/components/JcTagQuery/index.d.ts +4 -19
  44. package/dist/types/components/JcTagQuery/index.vue.d.ts +7 -12
  45. package/dist/types/index.d.ts +3 -1
  46. package/package.json +2 -2
@@ -1,41 +1,25 @@
1
1
  export declare const JcInputSwitch: {
2
- new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('vue').ExtractPropTypes<{
3
- fieldList: {
4
- type: import('vue').PropType<Array<{
5
- label: string;
6
- value: string;
7
- }>>;
8
- required: true;
9
- default: () => never[];
10
- };
11
- size: {
12
- type: import('vue').PropType<"small" | "default" | "large">;
13
- default: string;
14
- validator: (value: string) => boolean;
15
- };
16
- width: {
17
- type: StringConstructor;
18
- default: string;
19
- };
20
- injectionKey: {
21
- type: StringConstructor;
22
- default: string;
23
- };
24
- }>> & Readonly<{
25
- onFieldChange?: ((...args: any[]) => any) | undefined;
2
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./index.vue').Props> & Readonly<{
3
+ onFieldChange?: ((val: string) => any) | undefined;
26
4
  }>, {
27
- [x: string]: any;
5
+ blur: () => void | undefined;
6
+ clear: () => void | undefined;
7
+ focus: () => void | undefined;
8
+ select: () => void | undefined;
9
+ resizeTextarea: () => void | undefined;
10
+ input: HTMLInputElement | undefined;
11
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
12
+ textarea: HTMLTextAreaElement | undefined;
13
+ textareaStyle: import('vue').StyleValue;
14
+ isComposing: boolean | undefined;
28
15
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
29
- fieldChange: (...args: any[]) => void;
16
+ fieldChange: (val: string) => any;
30
17
  }, import('vue').PublicProps, {
31
18
  size: "small" | "default" | "large";
32
19
  injectionKey: string;
33
20
  width: string;
34
- fieldList: {
35
- label: string;
36
- value: string;
37
- }[];
38
- }, true, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
21
+ fieldList: import('./index.vue').InputSwitchFieldItem[];
22
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {
39
23
  inputRef: ({
40
24
  $: import('vue').ComponentInternalInstance;
41
25
  $data: {};
@@ -57,13 +41,13 @@ export declare const JcInputSwitch: {
57
41
  readonly showWordLimit: boolean;
58
42
  readonly autofocus: boolean;
59
43
  }> & Omit<{
60
- readonly type: string;
61
44
  readonly modelValue: string | number | null;
62
45
  readonly autocomplete: string;
63
46
  readonly disabled: boolean;
64
47
  readonly clearable: boolean;
65
48
  readonly validateEvent: boolean;
66
49
  readonly tabindex: string | number;
50
+ readonly type: string;
67
51
  readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
68
52
  readonly autofocus: boolean;
69
53
  readonly readonly: boolean;
@@ -96,7 +80,7 @@ export declare const JcInputSwitch: {
96
80
  onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
97
81
  onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
98
82
  onClear?: (() => any) | undefined | undefined;
99
- } & 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">;
83
+ } & 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">;
100
84
  $attrs: {
101
85
  [x: string]: unknown;
102
86
  };
@@ -512,7 +496,7 @@ export declare const JcInputSwitch: {
512
496
  onMouseenter?: ((evt: MouseEvent) => any) | undefined;
513
497
  onMouseleave?: ((evt: MouseEvent) => any) | undefined;
514
498
  onClear?: (() => any) | undefined;
515
- }, "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<{
499
+ }, "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<{
516
500
  input: import('vue').ShallowRef<HTMLInputElement | undefined>;
517
501
  textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
518
502
  ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
@@ -539,79 +523,47 @@ export declare const JcInputSwitch: {
539
523
  C: {};
540
524
  M: {};
541
525
  Defaults: {};
542
- }, Readonly<import('vue').ExtractPropTypes<{
543
- fieldList: {
544
- type: import('vue').PropType<Array<{
545
- label: string;
546
- value: string;
547
- }>>;
548
- required: true;
549
- default: () => never[];
550
- };
551
- size: {
552
- type: import('vue').PropType<"small" | "default" | "large">;
553
- default: string;
554
- validator: (value: string) => boolean;
555
- };
556
- width: {
557
- type: StringConstructor;
558
- default: string;
559
- };
560
- injectionKey: {
561
- type: StringConstructor;
562
- default: string;
563
- };
564
- }>> & Readonly<{
565
- onFieldChange?: ((...args: any[]) => any) | undefined;
526
+ }, Readonly<import('./index.vue').Props> & Readonly<{
527
+ onFieldChange?: ((val: string) => any) | undefined;
566
528
  }>, {
567
- [x: string]: any;
529
+ blur: () => void | undefined;
530
+ clear: () => void | undefined;
531
+ focus: () => void | undefined;
532
+ select: () => void | undefined;
533
+ resizeTextarea: () => void | undefined;
534
+ input: HTMLInputElement | undefined;
535
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
536
+ textarea: HTMLTextAreaElement | undefined;
537
+ textareaStyle: import('vue').StyleValue;
538
+ isComposing: boolean | undefined;
568
539
  }, {}, {}, {}, {
569
540
  size: "small" | "default" | "large";
570
541
  injectionKey: string;
571
542
  width: string;
572
- fieldList: {
573
- label: string;
574
- value: string;
575
- }[];
543
+ fieldList: import('./index.vue').InputSwitchFieldItem[];
576
544
  }>;
577
545
  __isFragment?: never;
578
546
  __isTeleport?: never;
579
547
  __isSuspense?: never;
580
- } & import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
581
- fieldList: {
582
- type: import('vue').PropType<Array<{
583
- label: string;
584
- value: string;
585
- }>>;
586
- required: true;
587
- default: () => never[];
588
- };
589
- size: {
590
- type: import('vue').PropType<"small" | "default" | "large">;
591
- default: string;
592
- validator: (value: string) => boolean;
593
- };
594
- width: {
595
- type: StringConstructor;
596
- default: string;
597
- };
598
- injectionKey: {
599
- type: StringConstructor;
600
- default: string;
601
- };
602
- }>> & Readonly<{
603
- onFieldChange?: ((...args: any[]) => any) | undefined;
548
+ } & import('vue').ComponentOptionsBase<Readonly<import('./index.vue').Props> & Readonly<{
549
+ onFieldChange?: ((val: string) => any) | undefined;
604
550
  }>, {
605
- [x: string]: any;
551
+ blur: () => void | undefined;
552
+ clear: () => void | undefined;
553
+ focus: () => void | undefined;
554
+ select: () => void | undefined;
555
+ resizeTextarea: () => void | undefined;
556
+ input: HTMLInputElement | undefined;
557
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
558
+ textarea: HTMLTextAreaElement | undefined;
559
+ textareaStyle: import('vue').StyleValue;
560
+ isComposing: boolean | undefined;
606
561
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
607
- fieldChange: (...args: any[]) => void;
562
+ fieldChange: (val: string) => any;
608
563
  }, string, {
609
564
  size: "small" | "default" | "large";
610
565
  injectionKey: string;
611
566
  width: string;
612
- fieldList: {
613
- label: string;
614
- value: string;
615
- }[];
567
+ fieldList: import('./index.vue').InputSwitchFieldItem[];
616
568
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & import('vue').Plugin;
617
569
  export default JcInputSwitch;
@@ -1,58 +1,41 @@
1
- import { PropType, nextTick } from 'vue';
2
- type fieldType = {
1
+ import { nextTick } from 'vue';
2
+ /** 字段选项类型 */
3
+ export interface InputSwitchFieldItem {
3
4
  label: string;
4
5
  value: string;
5
- };
6
- declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
7
- fieldList: {
8
- type: PropType<Array<fieldType>>;
9
- required: true;
10
- default: () => never[];
11
- };
12
- size: {
13
- type: PropType<"small" | "default" | "large">;
14
- default: string;
15
- validator: (value: string) => boolean;
16
- };
17
- width: {
18
- type: StringConstructor;
19
- default: string;
20
- };
21
- injectionKey: {
22
- type: StringConstructor;
23
- default: string;
24
- };
25
- }>, {
26
- [x: string]: any;
6
+ }
7
+ /** 组件 Props 类型 */
8
+ export interface Props {
9
+ /** 字段列表 */
10
+ fieldList: InputSwitchFieldItem[];
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
+ input: HTMLInputElement | undefined;
25
+ ref: HTMLInputElement | HTMLTextAreaElement | undefined;
26
+ textarea: HTMLTextAreaElement | undefined;
27
+ textareaStyle: import('vue').StyleValue;
28
+ isComposing: boolean | undefined;
27
29
  }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
28
- fieldChange: (...args: any[]) => void;
29
- }, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
30
- fieldList: {
31
- type: PropType<Array<fieldType>>;
32
- required: true;
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;
30
+ fieldChange: (val: string) => any;
31
+ }, string, import('vue').PublicProps, Readonly<Props> & Readonly<{
32
+ onFieldChange?: ((val: string) => any) | undefined;
50
33
  }>, {
51
34
  size: "small" | "default" | "large";
52
35
  injectionKey: string;
53
36
  width: string;
54
- fieldList: fieldType[];
55
- }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {
37
+ fieldList: InputSwitchFieldItem[];
38
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {
56
39
  inputRef: ({
57
40
  $: import('vue').ComponentInternalInstance;
58
41
  $data: {};
@@ -74,13 +57,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
74
57
  readonly showWordLimit: boolean;
75
58
  readonly autofocus: boolean;
76
59
  }> & Omit<{
77
- readonly type: string;
78
60
  readonly modelValue: string | number | null;
79
61
  readonly autocomplete: string;
80
62
  readonly disabled: boolean;
81
63
  readonly clearable: boolean;
82
64
  readonly validateEvent: boolean;
83
65
  readonly tabindex: string | number;
66
+ readonly type: string;
84
67
  readonly inputStyle: string | false | import('vue').CSSProperties | import('vue').StyleValue[] | null;
85
68
  readonly autofocus: boolean;
86
69
  readonly readonly: boolean;
@@ -113,7 +96,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
113
96
  onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
114
97
  onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
115
98
  onClear?: (() => any) | undefined | undefined;
116
- } & 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">;
99
+ } & 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
100
  $attrs: {
118
101
  [x: string]: unknown;
119
102
  };
@@ -131,7 +114,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
131
114
  $options: import('vue').ComponentOptionsBase<Readonly<import('vue').ExtractPropTypes<{
132
115
  readonly ariaLabel: StringConstructor;
133
116
  readonly id: {
134
- readonly type: PropType<string>;
117
+ readonly type: import('vue').PropType<string>;
135
118
  readonly required: false;
136
119
  readonly validator: ((val: unknown) => boolean) | undefined;
137
120
  __epPropKey: true;
@@ -139,14 +122,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
139
122
  readonly default: undefined;
140
123
  };
141
124
  readonly size: {
142
- readonly type: PropType<"" | "small" | "default" | "large">;
125
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
143
126
  readonly required: false;
144
127
  readonly validator: ((val: unknown) => boolean) | undefined;
145
128
  __epPropKey: true;
146
129
  };
147
130
  readonly disabled: BooleanConstructor;
148
131
  readonly modelValue: {
149
- readonly type: PropType<string | number | null | undefined>;
132
+ readonly type: import('vue').PropType<string | number | null | undefined>;
150
133
  readonly required: false;
151
134
  readonly validator: ((val: unknown) => boolean) | undefined;
152
135
  __epPropKey: true;
@@ -154,19 +137,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
154
137
  readonly default: "";
155
138
  };
156
139
  readonly maxlength: {
157
- readonly type: PropType<string | number>;
140
+ readonly type: import('vue').PropType<string | number>;
158
141
  readonly required: false;
159
142
  readonly validator: ((val: unknown) => boolean) | undefined;
160
143
  __epPropKey: true;
161
144
  };
162
145
  readonly minlength: {
163
- readonly type: PropType<string | number>;
146
+ readonly type: import('vue').PropType<string | number>;
164
147
  readonly required: false;
165
148
  readonly validator: ((val: unknown) => boolean) | undefined;
166
149
  __epPropKey: true;
167
150
  };
168
151
  readonly type: {
169
- readonly type: PropType<string>;
152
+ readonly type: import('vue').PropType<string>;
170
153
  readonly required: false;
171
154
  readonly validator: ((val: unknown) => boolean) | undefined;
172
155
  __epPropKey: true;
@@ -174,13 +157,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
174
157
  readonly default: "text";
175
158
  };
176
159
  readonly resize: {
177
- readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
160
+ readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
178
161
  readonly required: false;
179
162
  readonly validator: ((val: unknown) => boolean) | undefined;
180
163
  __epPropKey: true;
181
164
  };
182
165
  readonly autosize: {
183
- readonly type: PropType<import('element-plus').InputAutoSize>;
166
+ readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
184
167
  readonly required: false;
185
168
  readonly validator: ((val: unknown) => boolean) | undefined;
186
169
  __epPropKey: true;
@@ -188,7 +171,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
188
171
  readonly default: false;
189
172
  };
190
173
  readonly autocomplete: {
191
- readonly type: PropType<string>;
174
+ readonly type: import('vue').PropType<string>;
192
175
  readonly required: false;
193
176
  readonly validator: ((val: unknown) => boolean) | undefined;
194
177
  __epPropKey: true;
@@ -196,25 +179,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
196
179
  readonly default: "off";
197
180
  };
198
181
  readonly formatter: {
199
- readonly type: PropType<Function>;
182
+ readonly type: import('vue').PropType<Function>;
200
183
  readonly required: false;
201
184
  readonly validator: ((val: unknown) => boolean) | undefined;
202
185
  __epPropKey: true;
203
186
  };
204
187
  readonly parser: {
205
- readonly type: PropType<Function>;
188
+ readonly type: import('vue').PropType<Function>;
206
189
  readonly required: false;
207
190
  readonly validator: ((val: unknown) => boolean) | undefined;
208
191
  __epPropKey: true;
209
192
  };
210
193
  readonly placeholder: {
211
- readonly type: PropType<string>;
194
+ readonly type: import('vue').PropType<string>;
212
195
  readonly required: false;
213
196
  readonly validator: ((val: unknown) => boolean) | undefined;
214
197
  __epPropKey: true;
215
198
  };
216
199
  readonly form: {
217
- readonly type: PropType<string>;
200
+ readonly type: import('vue').PropType<string>;
218
201
  readonly required: false;
219
202
  readonly validator: ((val: unknown) => boolean) | undefined;
220
203
  __epPropKey: true;
@@ -224,19 +207,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
224
207
  readonly showPassword: BooleanConstructor;
225
208
  readonly showWordLimit: BooleanConstructor;
226
209
  readonly suffixIcon: {
227
- readonly type: PropType<string | import('vue').Component>;
210
+ readonly type: import('vue').PropType<string | import('vue').Component>;
228
211
  readonly required: false;
229
212
  readonly validator: ((val: unknown) => boolean) | undefined;
230
213
  __epPropKey: true;
231
214
  };
232
215
  readonly prefixIcon: {
233
- readonly type: PropType<string | import('vue').Component>;
216
+ readonly type: import('vue').PropType<string | import('vue').Component>;
234
217
  readonly required: false;
235
218
  readonly validator: ((val: unknown) => boolean) | undefined;
236
219
  __epPropKey: true;
237
220
  };
238
221
  readonly containerRole: {
239
- readonly type: PropType<string>;
222
+ readonly type: import('vue').PropType<string>;
240
223
  readonly required: false;
241
224
  readonly validator: ((val: unknown) => boolean) | undefined;
242
225
  __epPropKey: true;
@@ -244,7 +227,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
244
227
  readonly default: undefined;
245
228
  };
246
229
  readonly tabindex: {
247
- readonly type: PropType<string | number>;
230
+ readonly type: import('vue').PropType<string | number>;
248
231
  readonly required: false;
249
232
  readonly validator: ((val: unknown) => boolean) | undefined;
250
233
  __epPropKey: true;
@@ -252,7 +235,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
252
235
  readonly default: 0;
253
236
  };
254
237
  readonly validateEvent: {
255
- readonly type: PropType<boolean>;
238
+ readonly type: import('vue').PropType<boolean>;
256
239
  readonly required: false;
257
240
  readonly validator: ((val: unknown) => boolean) | undefined;
258
241
  __epPropKey: true;
@@ -260,7 +243,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
260
243
  readonly default: true;
261
244
  };
262
245
  readonly inputStyle: {
263
- readonly type: PropType<import('vue').StyleValue>;
246
+ readonly type: import('vue').PropType<import('vue').StyleValue>;
264
247
  readonly required: false;
265
248
  readonly validator: ((val: unknown) => boolean) | undefined;
266
249
  __epPropKey: true;
@@ -269,7 +252,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
269
252
  };
270
253
  readonly autofocus: BooleanConstructor;
271
254
  readonly rows: {
272
- readonly type: PropType<number>;
255
+ readonly type: import('vue').PropType<number>;
273
256
  readonly required: false;
274
257
  readonly validator: ((val: unknown) => boolean) | undefined;
275
258
  __epPropKey: true;
@@ -371,7 +354,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
371
354
  }> & Omit<Readonly<import('vue').ExtractPropTypes<{
372
355
  readonly ariaLabel: StringConstructor;
373
356
  readonly id: {
374
- readonly type: PropType<string>;
357
+ readonly type: import('vue').PropType<string>;
375
358
  readonly required: false;
376
359
  readonly validator: ((val: unknown) => boolean) | undefined;
377
360
  __epPropKey: true;
@@ -379,14 +362,14 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
379
362
  readonly default: undefined;
380
363
  };
381
364
  readonly size: {
382
- readonly type: PropType<"" | "small" | "default" | "large">;
365
+ readonly type: import('vue').PropType<"" | "small" | "default" | "large">;
383
366
  readonly required: false;
384
367
  readonly validator: ((val: unknown) => boolean) | undefined;
385
368
  __epPropKey: true;
386
369
  };
387
370
  readonly disabled: BooleanConstructor;
388
371
  readonly modelValue: {
389
- readonly type: PropType<string | number | null | undefined>;
372
+ readonly type: import('vue').PropType<string | number | null | undefined>;
390
373
  readonly required: false;
391
374
  readonly validator: ((val: unknown) => boolean) | undefined;
392
375
  __epPropKey: true;
@@ -394,19 +377,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
394
377
  readonly default: "";
395
378
  };
396
379
  readonly maxlength: {
397
- readonly type: PropType<string | number>;
380
+ readonly type: import('vue').PropType<string | number>;
398
381
  readonly required: false;
399
382
  readonly validator: ((val: unknown) => boolean) | undefined;
400
383
  __epPropKey: true;
401
384
  };
402
385
  readonly minlength: {
403
- readonly type: PropType<string | number>;
386
+ readonly type: import('vue').PropType<string | number>;
404
387
  readonly required: false;
405
388
  readonly validator: ((val: unknown) => boolean) | undefined;
406
389
  __epPropKey: true;
407
390
  };
408
391
  readonly type: {
409
- readonly type: PropType<string>;
392
+ readonly type: import('vue').PropType<string>;
410
393
  readonly required: false;
411
394
  readonly validator: ((val: unknown) => boolean) | undefined;
412
395
  __epPropKey: true;
@@ -414,13 +397,13 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
414
397
  readonly default: "text";
415
398
  };
416
399
  readonly resize: {
417
- readonly type: PropType<"none" | "both" | "horizontal" | "vertical">;
400
+ readonly type: import('vue').PropType<"none" | "both" | "horizontal" | "vertical">;
418
401
  readonly required: false;
419
402
  readonly validator: ((val: unknown) => boolean) | undefined;
420
403
  __epPropKey: true;
421
404
  };
422
405
  readonly autosize: {
423
- readonly type: PropType<import('element-plus').InputAutoSize>;
406
+ readonly type: import('vue').PropType<import('element-plus').InputAutoSize>;
424
407
  readonly required: false;
425
408
  readonly validator: ((val: unknown) => boolean) | undefined;
426
409
  __epPropKey: true;
@@ -428,7 +411,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
428
411
  readonly default: false;
429
412
  };
430
413
  readonly autocomplete: {
431
- readonly type: PropType<string>;
414
+ readonly type: import('vue').PropType<string>;
432
415
  readonly required: false;
433
416
  readonly validator: ((val: unknown) => boolean) | undefined;
434
417
  __epPropKey: true;
@@ -436,25 +419,25 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
436
419
  readonly default: "off";
437
420
  };
438
421
  readonly formatter: {
439
- readonly type: PropType<Function>;
422
+ readonly type: import('vue').PropType<Function>;
440
423
  readonly required: false;
441
424
  readonly validator: ((val: unknown) => boolean) | undefined;
442
425
  __epPropKey: true;
443
426
  };
444
427
  readonly parser: {
445
- readonly type: PropType<Function>;
428
+ readonly type: import('vue').PropType<Function>;
446
429
  readonly required: false;
447
430
  readonly validator: ((val: unknown) => boolean) | undefined;
448
431
  __epPropKey: true;
449
432
  };
450
433
  readonly placeholder: {
451
- readonly type: PropType<string>;
434
+ readonly type: import('vue').PropType<string>;
452
435
  readonly required: false;
453
436
  readonly validator: ((val: unknown) => boolean) | undefined;
454
437
  __epPropKey: true;
455
438
  };
456
439
  readonly form: {
457
- readonly type: PropType<string>;
440
+ readonly type: import('vue').PropType<string>;
458
441
  readonly required: false;
459
442
  readonly validator: ((val: unknown) => boolean) | undefined;
460
443
  __epPropKey: true;
@@ -464,19 +447,19 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
464
447
  readonly showPassword: BooleanConstructor;
465
448
  readonly showWordLimit: BooleanConstructor;
466
449
  readonly suffixIcon: {
467
- readonly type: PropType<string | import('vue').Component>;
450
+ readonly type: import('vue').PropType<string | import('vue').Component>;
468
451
  readonly required: false;
469
452
  readonly validator: ((val: unknown) => boolean) | undefined;
470
453
  __epPropKey: true;
471
454
  };
472
455
  readonly prefixIcon: {
473
- readonly type: PropType<string | import('vue').Component>;
456
+ readonly type: import('vue').PropType<string | import('vue').Component>;
474
457
  readonly required: false;
475
458
  readonly validator: ((val: unknown) => boolean) | undefined;
476
459
  __epPropKey: true;
477
460
  };
478
461
  readonly containerRole: {
479
- readonly type: PropType<string>;
462
+ readonly type: import('vue').PropType<string>;
480
463
  readonly required: false;
481
464
  readonly validator: ((val: unknown) => boolean) | undefined;
482
465
  __epPropKey: true;
@@ -484,7 +467,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
484
467
  readonly default: undefined;
485
468
  };
486
469
  readonly tabindex: {
487
- readonly type: PropType<string | number>;
470
+ readonly type: import('vue').PropType<string | number>;
488
471
  readonly required: false;
489
472
  readonly validator: ((val: unknown) => boolean) | undefined;
490
473
  __epPropKey: true;
@@ -492,7 +475,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
492
475
  readonly default: 0;
493
476
  };
494
477
  readonly validateEvent: {
495
- readonly type: PropType<boolean>;
478
+ readonly type: import('vue').PropType<boolean>;
496
479
  readonly required: false;
497
480
  readonly validator: ((val: unknown) => boolean) | undefined;
498
481
  __epPropKey: true;
@@ -500,7 +483,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
500
483
  readonly default: true;
501
484
  };
502
485
  readonly inputStyle: {
503
- readonly type: PropType<import('vue').StyleValue>;
486
+ readonly type: import('vue').PropType<import('vue').StyleValue>;
504
487
  readonly required: false;
505
488
  readonly validator: ((val: unknown) => boolean) | undefined;
506
489
  __epPropKey: true;
@@ -509,7 +492,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
509
492
  };
510
493
  readonly autofocus: BooleanConstructor;
511
494
  readonly rows: {
512
- readonly type: PropType<number>;
495
+ readonly type: import('vue').PropType<number>;
513
496
  readonly required: false;
514
497
  readonly validator: ((val: unknown) => boolean) | undefined;
515
498
  __epPropKey: true;
@@ -529,7 +512,7 @@ declare const _default: import('vue').DefineComponent<import('vue').ExtractPropT
529
512
  onMouseenter?: ((evt: MouseEvent) => any) | undefined;
530
513
  onMouseleave?: ((evt: MouseEvent) => any) | undefined;
531
514
  onClear?: (() => any) | undefined;
532
- }, "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<{
515
+ }, "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
516
  input: import('vue').ShallowRef<HTMLInputElement | undefined>;
534
517
  textarea: import('vue').ShallowRef<HTMLTextAreaElement | undefined>;
535
518
  ref: import('vue').ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;