hzzt-plus 0.0.3 → 0.0.5

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 (61) hide show
  1. package/dist/index.css +1 -1
  2. package/dist/index.full.js +419 -295
  3. package/dist/index.full.min.js +13 -13
  4. package/dist/index.full.min.js.map +1 -1
  5. package/dist/index.full.min.mjs +13 -13
  6. package/dist/index.full.min.mjs.map +1 -1
  7. package/dist/index.full.mjs +420 -297
  8. package/es/components/collapse/src/collapse2.mjs.map +1 -1
  9. package/es/components/confirm-password/index.d.ts +352 -283
  10. package/es/components/confirm-password/src/confirm-password.mjs.map +1 -1
  11. package/es/components/confirm-password/src/confirm-password.vue.d.ts +352 -283
  12. package/es/components/dropdown/src/index.mjs.map +1 -1
  13. package/es/components/icon/src/index.mjs.map +1 -1
  14. package/es/components/icon/src/index.vue.d.ts +75 -39
  15. package/es/components/page-size/index.d.ts +2201 -12995
  16. package/es/components/page-size/src/index.mjs.map +1 -1
  17. package/es/components/page-size/src/index.vue.d.ts +2201 -12995
  18. package/es/components/pagination/index.d.ts +75 -39
  19. package/es/components/pagination/src/index.mjs.map +1 -1
  20. package/es/components/pagination/src/index.vue.d.ts +75 -39
  21. package/es/components/tab/src/index.mjs.map +1 -1
  22. package/es/components/title/src/title.mjs.map +1 -1
  23. package/es/components/tooltip/index.d.ts +606 -2136
  24. package/es/components/tooltip/src/tooltip.vue.d.ts +606 -2136
  25. package/es/directives/drag/index.d.ts +3 -0
  26. package/es/directives/drag/index.mjs +74 -0
  27. package/es/directives/drag/index.mjs.map +1 -0
  28. package/es/directives/index.d.ts +1 -0
  29. package/es/directives/index.mjs +1 -0
  30. package/es/directives/index.mjs.map +1 -1
  31. package/es/index.mjs +1 -0
  32. package/es/index.mjs.map +1 -1
  33. package/lib/components/collapse/src/collapse2.js.map +1 -1
  34. package/lib/components/confirm-password/index.d.ts +352 -283
  35. package/lib/components/confirm-password/src/confirm-password.js.map +1 -1
  36. package/lib/components/confirm-password/src/confirm-password.vue.d.ts +352 -283
  37. package/lib/components/dropdown/src/index.js.map +1 -1
  38. package/lib/components/icon/src/index.js.map +1 -1
  39. package/lib/components/icon/src/index.vue.d.ts +75 -39
  40. package/lib/components/page-size/index.d.ts +2201 -12995
  41. package/lib/components/page-size/src/index.js.map +1 -1
  42. package/lib/components/page-size/src/index.vue.d.ts +2201 -12995
  43. package/lib/components/pagination/index.d.ts +75 -39
  44. package/lib/components/pagination/src/index.js.map +1 -1
  45. package/lib/components/pagination/src/index.vue.d.ts +75 -39
  46. package/lib/components/tab/src/index.js.map +1 -1
  47. package/lib/components/title/src/title.js.map +1 -1
  48. package/lib/components/tooltip/index.d.ts +606 -2136
  49. package/lib/components/tooltip/src/tooltip.vue.d.ts +606 -2136
  50. package/lib/directives/drag/index.d.ts +3 -0
  51. package/lib/directives/drag/index.js +78 -0
  52. package/lib/directives/drag/index.js.map +1 -0
  53. package/lib/directives/index.d.ts +1 -0
  54. package/lib/directives/index.js +2 -0
  55. package/lib/directives/index.js.map +1 -1
  56. package/lib/index.js +18 -16
  57. package/lib/index.js.map +1 -1
  58. package/package.json +1 -1
  59. package/theme/base.css +1 -1
  60. package/theme/index.css +1 -1
  61. package/theme/src/common/display.scss +1 -1
@@ -14,87 +14,286 @@ export declare const HzztConfirmPassword: import("hzzt-plus/es/utils").SFCWithIn
14
14
  instance: import("vue").ComponentInternalInstance | null;
15
15
  dotInput: (val: string) => void;
16
16
  confirmPassForm: (e: KeyboardEvent) => void;
17
- ElInput: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
18
- readonly ariaLabel: StringConstructor;
19
- readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
20
- readonly size: {
21
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
22
- readonly required: false;
23
- readonly validator: ((val: unknown) => boolean) | undefined;
24
- __epPropKey: true;
25
- };
26
- readonly disabled: BooleanConstructor;
27
- readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
28
- readonly maxlength: {
29
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
30
- readonly required: false;
31
- readonly validator: ((val: unknown) => boolean) | undefined;
32
- __epPropKey: true;
33
- };
34
- readonly minlength: {
35
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
36
- readonly required: false;
37
- readonly validator: ((val: unknown) => boolean) | undefined;
38
- __epPropKey: true;
39
- };
40
- readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
41
- readonly resize: {
42
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "vertical" | "horizontal" | "both", unknown>>;
43
- readonly required: false;
44
- readonly validator: ((val: unknown) => boolean) | undefined;
45
- __epPropKey: true;
46
- };
47
- readonly autosize: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize) | ((new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize))[], unknown, unknown, false, boolean>;
48
- readonly autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
49
- readonly formatter: {
50
- readonly type: import("vue").PropType<Function>;
51
- readonly required: false;
52
- readonly validator: ((val: unknown) => boolean) | undefined;
53
- __epPropKey: true;
54
- };
55
- readonly parser: {
56
- readonly type: import("vue").PropType<Function>;
57
- readonly required: false;
58
- readonly validator: ((val: unknown) => boolean) | undefined;
59
- __epPropKey: true;
60
- };
61
- readonly placeholder: {
62
- readonly type: import("vue").PropType<string>;
63
- readonly required: false;
64
- readonly validator: ((val: unknown) => boolean) | undefined;
65
- __epPropKey: true;
66
- };
67
- readonly form: {
68
- readonly type: import("vue").PropType<string>;
69
- readonly required: false;
70
- readonly validator: ((val: unknown) => boolean) | undefined;
71
- __epPropKey: true;
72
- };
73
- readonly readonly: BooleanConstructor;
74
- readonly clearable: BooleanConstructor;
75
- readonly showPassword: BooleanConstructor;
76
- readonly showWordLimit: BooleanConstructor;
77
- readonly suffixIcon: {
78
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
79
- readonly required: false;
80
- readonly validator: ((val: unknown) => boolean) | undefined;
81
- __epPropKey: true;
82
- };
83
- readonly prefixIcon: {
84
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
85
- readonly required: false;
86
- readonly validator: ((val: unknown) => boolean) | undefined;
87
- __epPropKey: true;
88
- };
89
- readonly containerRole: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
90
- readonly label: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
91
- readonly tabindex: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
92
- readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
93
- readonly inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
94
- readonly autofocus: BooleanConstructor;
95
- readonly rows: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
96
- }, {
97
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
17
+ ElInput: import("element-plus/es/utils").SFCWithInstall<{
18
+ new (...args: any[]): {
19
+ $: import("vue").ComponentInternalInstance;
20
+ $data: {};
21
+ $props: Partial<{
22
+ readonly disabled: boolean;
23
+ readonly id: string;
24
+ readonly type: string;
25
+ readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
26
+ readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
27
+ readonly autosize: import("element-plus").InputAutoSize;
28
+ readonly autocomplete: string;
29
+ readonly containerRole: string;
30
+ readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
31
+ readonly inputStyle: import("vue").StyleValue;
32
+ readonly rows: number;
33
+ readonly readonly: boolean;
34
+ readonly clearable: boolean;
35
+ readonly showPassword: boolean;
36
+ readonly showWordLimit: boolean;
37
+ readonly autofocus: boolean;
38
+ }> & Omit<Readonly<import("vue").ExtractPropTypes<{
39
+ readonly ariaLabel: StringConstructor;
40
+ readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
41
+ readonly size: {
42
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
43
+ readonly required: false;
44
+ readonly validator: ((val: unknown) => boolean) | undefined;
45
+ __epPropKey: true;
46
+ };
47
+ readonly disabled: BooleanConstructor;
48
+ readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
49
+ readonly maxlength: {
50
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
51
+ readonly required: false;
52
+ readonly validator: ((val: unknown) => boolean) | undefined;
53
+ __epPropKey: true;
54
+ };
55
+ readonly minlength: {
56
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
57
+ readonly required: false;
58
+ readonly validator: ((val: unknown) => boolean) | undefined;
59
+ __epPropKey: true;
60
+ };
61
+ readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
62
+ readonly resize: {
63
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
64
+ readonly required: false;
65
+ readonly validator: ((val: unknown) => boolean) | undefined;
66
+ __epPropKey: true;
67
+ };
68
+ readonly autosize: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize) | ((new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize))[], unknown, unknown, false, boolean>;
69
+ readonly autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
70
+ readonly formatter: {
71
+ readonly type: import("vue").PropType<Function>;
72
+ readonly required: false;
73
+ readonly validator: ((val: unknown) => boolean) | undefined;
74
+ __epPropKey: true;
75
+ };
76
+ readonly parser: {
77
+ readonly type: import("vue").PropType<Function>;
78
+ readonly required: false;
79
+ readonly validator: ((val: unknown) => boolean) | undefined;
80
+ __epPropKey: true;
81
+ };
82
+ readonly placeholder: {
83
+ readonly type: import("vue").PropType<string>;
84
+ readonly required: false;
85
+ readonly validator: ((val: unknown) => boolean) | undefined;
86
+ __epPropKey: true;
87
+ };
88
+ readonly form: {
89
+ readonly type: import("vue").PropType<string>;
90
+ readonly required: false;
91
+ readonly validator: ((val: unknown) => boolean) | undefined;
92
+ __epPropKey: true;
93
+ };
94
+ readonly readonly: BooleanConstructor;
95
+ readonly clearable: BooleanConstructor;
96
+ readonly showPassword: BooleanConstructor;
97
+ readonly showWordLimit: BooleanConstructor;
98
+ readonly suffixIcon: {
99
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
100
+ readonly required: false;
101
+ readonly validator: ((val: unknown) => boolean) | undefined;
102
+ __epPropKey: true;
103
+ };
104
+ readonly prefixIcon: {
105
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
106
+ readonly required: false;
107
+ readonly validator: ((val: unknown) => boolean) | undefined;
108
+ __epPropKey: true;
109
+ };
110
+ readonly containerRole: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
111
+ readonly tabindex: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
112
+ readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
113
+ readonly inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
114
+ readonly autofocus: BooleanConstructor;
115
+ readonly rows: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
116
+ }>> & {
117
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
118
+ onChange?: ((value: string) => any) | undefined;
119
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
120
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
121
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
122
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
123
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
124
+ onInput?: ((value: string) => any) | undefined;
125
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
126
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
127
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
128
+ onClear?: (() => any) | undefined;
129
+ } & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, "type" | "modelValue" | "id" | "disabled" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "tabindex" | "validateEvent" | "inputStyle" | "autofocus" | "rows">;
130
+ $attrs: {
131
+ [x: string]: unknown;
132
+ };
133
+ $refs: {
134
+ [x: string]: unknown;
135
+ };
136
+ $slots: Readonly<{
137
+ [name: string]: import("vue").Slot | undefined;
138
+ }>;
139
+ $root: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
140
+ $parent: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null;
141
+ $emit: ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "input", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "clear") => 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);
142
+ $el: any;
143
+ $options: import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
144
+ readonly ariaLabel: StringConstructor;
145
+ readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
146
+ readonly size: {
147
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "" | "default" | "small" | "large", never>>;
148
+ readonly required: false;
149
+ readonly validator: ((val: unknown) => boolean) | undefined;
150
+ __epPropKey: true;
151
+ };
152
+ readonly disabled: BooleanConstructor;
153
+ readonly modelValue: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
154
+ readonly maxlength: {
155
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
156
+ readonly required: false;
157
+ readonly validator: ((val: unknown) => boolean) | undefined;
158
+ __epPropKey: true;
159
+ };
160
+ readonly minlength: {
161
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
162
+ readonly required: false;
163
+ readonly validator: ((val: unknown) => boolean) | undefined;
164
+ __epPropKey: true;
165
+ };
166
+ readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
167
+ readonly resize: {
168
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
169
+ readonly required: false;
170
+ readonly validator: ((val: unknown) => boolean) | undefined;
171
+ __epPropKey: true;
172
+ };
173
+ readonly autosize: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize) | ((new (...args: any[]) => import("element-plus").InputAutoSize & {}) | (() => import("element-plus").InputAutoSize))[], unknown, unknown, false, boolean>;
174
+ readonly autocomplete: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
175
+ readonly formatter: {
176
+ readonly type: import("vue").PropType<Function>;
177
+ readonly required: false;
178
+ readonly validator: ((val: unknown) => boolean) | undefined;
179
+ __epPropKey: true;
180
+ };
181
+ readonly parser: {
182
+ readonly type: import("vue").PropType<Function>;
183
+ readonly required: false;
184
+ readonly validator: ((val: unknown) => boolean) | undefined;
185
+ __epPropKey: true;
186
+ };
187
+ readonly placeholder: {
188
+ readonly type: import("vue").PropType<string>;
189
+ readonly required: false;
190
+ readonly validator: ((val: unknown) => boolean) | undefined;
191
+ __epPropKey: true;
192
+ };
193
+ readonly form: {
194
+ readonly type: import("vue").PropType<string>;
195
+ readonly required: false;
196
+ readonly validator: ((val: unknown) => boolean) | undefined;
197
+ __epPropKey: true;
198
+ };
199
+ readonly readonly: BooleanConstructor;
200
+ readonly clearable: BooleanConstructor;
201
+ readonly showPassword: BooleanConstructor;
202
+ readonly showWordLimit: BooleanConstructor;
203
+ readonly suffixIcon: {
204
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
205
+ readonly required: false;
206
+ readonly validator: ((val: unknown) => boolean) | undefined;
207
+ __epPropKey: true;
208
+ };
209
+ readonly prefixIcon: {
210
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) | ((new (...args: any[]) => (string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>) & {}) | (() => string | import("vue").Component<any, any, any, import("vue").ComputedOptions, import("vue").MethodOptions>))[], unknown, unknown>>;
211
+ readonly required: false;
212
+ readonly validator: ((val: unknown) => boolean) | undefined;
213
+ __epPropKey: true;
214
+ };
215
+ readonly containerRole: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
216
+ readonly tabindex: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
217
+ readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
218
+ readonly inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
219
+ readonly autofocus: BooleanConstructor;
220
+ readonly rows: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
221
+ }>> & {
222
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
223
+ onChange?: ((value: string) => any) | undefined;
224
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
225
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
226
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
227
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
228
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
229
+ onInput?: ((value: string) => any) | undefined;
230
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
231
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
232
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
233
+ onClear?: (() => any) | undefined;
234
+ }, {
235
+ input: import("vue").ShallowRef<HTMLInputElement | undefined>;
236
+ textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
237
+ ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
238
+ textareaStyle: import("vue").ComputedRef<import("vue").StyleValue>;
239
+ autosize: import("vue").Ref<import("element-plus").InputAutoSize>;
240
+ isComposing: import("vue").Ref<boolean>;
241
+ focus: () => Promise<void>;
242
+ blur: () => void | undefined;
243
+ select: () => void;
244
+ clear: () => void;
245
+ resizeTextarea: () => void;
246
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
247
+ input: (value: string) => void;
248
+ clear: () => void;
249
+ "update:modelValue": (value: string) => void;
250
+ change: (value: string) => void;
251
+ blur: (evt: FocusEvent) => void;
252
+ compositionend: (evt: CompositionEvent) => void;
253
+ compositionstart: (evt: CompositionEvent) => void;
254
+ compositionupdate: (evt: CompositionEvent) => void;
255
+ focus: (evt: FocusEvent) => void;
256
+ keydown: (evt: Event | KeyboardEvent) => void;
257
+ mouseenter: (evt: MouseEvent) => void;
258
+ mouseleave: (evt: MouseEvent) => void;
259
+ }, string, {
260
+ readonly disabled: boolean;
261
+ readonly id: string;
262
+ readonly type: string;
263
+ readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
264
+ readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
265
+ readonly autosize: import("element-plus").InputAutoSize;
266
+ readonly autocomplete: string;
267
+ readonly containerRole: string;
268
+ readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
269
+ readonly inputStyle: import("vue").StyleValue;
270
+ readonly rows: number;
271
+ readonly readonly: boolean;
272
+ readonly clearable: boolean;
273
+ readonly showPassword: boolean;
274
+ readonly showWordLimit: boolean;
275
+ readonly autofocus: boolean;
276
+ }> & {
277
+ beforeCreate?: ((() => void) | (() => void)[]) | undefined;
278
+ created?: ((() => void) | (() => void)[]) | undefined;
279
+ beforeMount?: ((() => void) | (() => void)[]) | undefined;
280
+ mounted?: ((() => void) | (() => void)[]) | undefined;
281
+ beforeUpdate?: ((() => void) | (() => void)[]) | undefined;
282
+ updated?: ((() => void) | (() => void)[]) | undefined;
283
+ activated?: ((() => void) | (() => void)[]) | undefined;
284
+ deactivated?: ((() => void) | (() => void)[]) | undefined;
285
+ beforeDestroy?: ((() => void) | (() => void)[]) | undefined;
286
+ beforeUnmount?: ((() => void) | (() => void)[]) | undefined;
287
+ destroyed?: ((() => void) | (() => void)[]) | undefined;
288
+ unmounted?: ((() => void) | (() => void)[]) | undefined;
289
+ renderTracked?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
290
+ renderTriggered?: (((e: import("vue").DebuggerEvent) => void) | ((e: import("vue").DebuggerEvent) => void)[]) | undefined;
291
+ errorCaptured?: (((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void) | ((err: unknown, instance: import("vue").ComponentPublicInstance<{}, {}, {}, {}, {}, {}, {}, {}, false, import("vue").ComponentOptionsBase<any, any, any, any, any, any, any, any, any, {}>> | null, info: string) => boolean | void)[]) | undefined;
292
+ };
293
+ $forceUpdate: () => void;
294
+ $nextTick: typeof import("vue").nextTick;
295
+ $watch(source: string | Function, cb: Function, options?: import("vue").WatchOptions<boolean> | undefined): import("vue").WatchStopHandle;
296
+ } & Readonly<import("vue").ExtractPropTypes<{
98
297
  readonly ariaLabel: StringConstructor;
99
298
  readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
100
299
  readonly size: {
@@ -119,7 +318,7 @@ export declare const HzztConfirmPassword: import("hzzt-plus/es/utils").SFCWithIn
119
318
  };
120
319
  readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
121
320
  readonly resize: {
122
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "vertical" | "horizontal" | "both", unknown>>;
321
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
123
322
  readonly required: false;
124
323
  readonly validator: ((val: unknown) => boolean) | undefined;
125
324
  __epPropKey: true;
@@ -167,201 +366,41 @@ export declare const HzztConfirmPassword: import("hzzt-plus/es/utils").SFCWithIn
167
366
  __epPropKey: true;
168
367
  };
169
368
  readonly containerRole: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
170
- readonly label: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
171
369
  readonly tabindex: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
172
370
  readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
173
371
  readonly inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
174
372
  readonly autofocus: BooleanConstructor;
175
373
  readonly rows: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
176
374
  }>> & {
177
- onChange?: ((value: string) => any) | undefined;
178
375
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
179
- onInput?: ((value: string) => any) | undefined;
376
+ onChange?: ((value: string) => any) | undefined;
377
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
378
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
379
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
180
380
  onFocus?: ((evt: FocusEvent) => any) | undefined;
181
381
  onBlur?: ((evt: FocusEvent) => any) | undefined;
182
- onClear?: (() => any) | undefined;
183
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
184
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
382
+ onInput?: ((value: string) => any) | undefined;
185
383
  onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
186
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
187
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
188
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
189
- }>>;
190
- emit: ((event: "update:modelValue", value: string) => void) & ((event: "change", value: string) => void) & ((event: "input", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "clear") => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "compositionend", evt: CompositionEvent) => void);
191
- rawAttrs: {
192
- [x: string]: unknown;
193
- };
194
- slots: Readonly<{
195
- [name: string]: import("vue").Slot | undefined;
196
- }>;
197
- containerAttrs: import("vue").ComputedRef<Record<string, unknown>>;
198
- containerKls: import("vue").ComputedRef<unknown[]>;
199
- wrapperKls: import("vue").ComputedRef<string[]>;
200
- attrs: import("vue").ComputedRef<Record<string, unknown>>;
201
- elForm: import("element-plus").FormContext | undefined;
202
- elFormItem: import("element-plus").FormItemContext | undefined;
203
- inputId: import("vue").Ref<string | undefined>;
204
- inputSize: import("vue").ComputedRef<"" | "default" | "small" | "large">;
205
- inputDisabled: import("vue").ComputedRef<boolean>;
206
- nsInput: {
207
- namespace: import("vue").ComputedRef<string>;
208
- b: (blockSuffix?: string | undefined) => string;
209
- e: (element?: string | undefined) => string;
210
- m: (modifier?: string | undefined) => string;
211
- be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
212
- em: (element?: string | undefined, modifier?: string | undefined) => string;
213
- bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
214
- bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
215
- is: {
216
- (name: string, state: boolean | undefined): string;
217
- (name: string): string;
218
- };
219
- cssVar: (object: Record<string, string>) => Record<string, string>;
220
- cssVarName: (name: string) => string;
221
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
222
- cssVarBlockName: (name: string) => string;
223
- };
224
- nsTextarea: {
225
- namespace: import("vue").ComputedRef<string>;
226
- b: (blockSuffix?: string | undefined) => string;
227
- e: (element?: string | undefined) => string;
228
- m: (modifier?: string | undefined) => string;
229
- be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
230
- em: (element?: string | undefined, modifier?: string | undefined) => string;
231
- bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
232
- bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
233
- is: {
234
- (name: string, state: boolean | undefined): string;
235
- (name: string): string;
236
- };
237
- cssVar: (object: Record<string, string>) => Record<string, string>;
238
- cssVarName: (name: string) => string;
239
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
240
- cssVarBlockName: (name: string) => string;
241
- };
242
- input: import("vue").ShallowRef<HTMLInputElement | undefined>;
243
- textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
244
- hovering: import("vue").Ref<boolean>;
245
- isComposing: import("vue").Ref<boolean>;
246
- passwordVisible: import("vue").Ref<boolean>;
247
- countStyle: import("vue").Ref<import("vue").StyleValue | undefined>;
248
- textareaCalcStyle: import("vue").ShallowRef<import("vue").StyleValue>;
249
- _ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
250
- wrapperRef: import("vue").ShallowRef<HTMLElement | undefined>;
251
- isFocused: import("vue").Ref<boolean>;
252
- handleFocus: (event: FocusEvent) => void;
253
- handleBlur: (event: FocusEvent) => void;
254
- needStatusIcon: import("vue").ComputedRef<boolean>;
255
- validateState: import("vue").ComputedRef<"" | "success" | "error" | "validating">;
256
- validateIcon: import("vue").ComputedRef<any>;
257
- passwordIcon: import("vue").ComputedRef<any>;
258
- containerStyle: import("vue").ComputedRef<import("vue").StyleValue>;
259
- textareaStyle: import("vue").ComputedRef<import("vue").StyleValue>;
260
- nativeInputValue: import("vue").ComputedRef<string>;
261
- showClear: import("vue").ComputedRef<boolean>;
262
- showPwdVisible: import("vue").ComputedRef<boolean>;
263
- isWordLimitVisible: import("vue").ComputedRef<boolean>;
264
- textLength: import("vue").ComputedRef<number>;
265
- inputExceed: import("vue").ComputedRef<boolean>;
266
- suffixVisible: import("vue").ComputedRef<boolean>;
267
- recordCursor: () => void;
268
- setCursor: () => void;
269
- resizeTextarea: () => void;
270
- createOnceInitResize: (resizeTextarea: () => void) => () => void;
271
- onceInitSizeTextarea: () => void;
272
- setNativeInputValue: () => void;
273
- handleInput: (event: Event) => Promise<void>;
274
- handleChange: (event: Event) => void;
275
- handleCompositionStart: (event: CompositionEvent) => void;
276
- handleCompositionUpdate: (event: CompositionEvent) => void;
277
- handleCompositionEnd: (event: CompositionEvent) => void;
278
- handlePasswordVisible: () => void;
279
- focus: () => Promise<void>;
280
- blur: () => void | undefined;
281
- handleMouseLeave: (evt: MouseEvent) => void;
282
- handleMouseEnter: (evt: MouseEvent) => void;
283
- handleKeydown: (evt: KeyboardEvent) => void;
284
- select: () => void;
285
- clear: () => void;
286
- ElIcon: import("element-plus/es/utils").SFCWithInstall<import("vue").DefineComponent<{
287
- readonly size: {
288
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
289
- readonly required: false;
290
- readonly validator: ((val: unknown) => boolean) | undefined;
291
- __epPropKey: true;
292
- };
293
- readonly color: {
294
- readonly type: import("vue").PropType<string>;
295
- readonly required: false;
296
- readonly validator: ((val: unknown) => boolean) | undefined;
297
- __epPropKey: true;
298
- };
299
- }, {
300
- props: Readonly<import("@vue/shared").LooseRequired<Readonly<import("vue").ExtractPropTypes<{
301
- readonly size: {
302
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
303
- readonly required: false;
304
- readonly validator: ((val: unknown) => boolean) | undefined;
305
- __epPropKey: true;
306
- };
307
- readonly color: {
308
- readonly type: import("vue").PropType<string>;
309
- readonly required: false;
310
- readonly validator: ((val: unknown) => boolean) | undefined;
311
- __epPropKey: true;
312
- };
313
- }>> & {
314
- [x: string & `on${string}`]: ((...args: any[]) => any) | ((...args: unknown[]) => any) | undefined;
315
- }>>;
316
- ns: {
317
- namespace: import("vue").ComputedRef<string>;
318
- b: (blockSuffix?: string | undefined) => string;
319
- e: (element?: string | undefined) => string;
320
- m: (modifier?: string | undefined) => string;
321
- be: (blockSuffix?: string | undefined, element?: string | undefined) => string;
322
- em: (element?: string | undefined, modifier?: string | undefined) => string;
323
- bm: (blockSuffix?: string | undefined, modifier?: string | undefined) => string;
324
- bem: (blockSuffix?: string | undefined, element?: string | undefined, modifier?: string | undefined) => string;
325
- is: {
326
- (name: string, state: boolean | undefined): string;
327
- (name: string): string;
328
- };
329
- cssVar: (object: Record<string, string>) => Record<string, string>;
330
- cssVarName: (name: string) => string;
331
- cssVarBlock: (object: Record<string, string>) => Record<string, string>;
332
- cssVarBlockName: (name: string) => string;
333
- };
334
- style: import("vue").ComputedRef<import("vue").CSSProperties>;
335
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, Record<string, any>, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
336
- readonly size: {
337
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number) & {}) | (() => string | number) | ((new (...args: any[]) => (string | number) & {}) | (() => string | number))[], unknown, unknown>>;
338
- readonly required: false;
339
- readonly validator: ((val: unknown) => boolean) | undefined;
340
- __epPropKey: true;
341
- };
342
- readonly color: {
343
- readonly type: import("vue").PropType<string>;
344
- readonly required: false;
345
- readonly validator: ((val: unknown) => boolean) | undefined;
346
- __epPropKey: true;
347
- };
348
- }>>, {}>> & Record<string, any>;
349
- CircleClose: any;
350
- NOOP: () => void;
351
- }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
352
- "update:modelValue": (value: string) => boolean;
353
- input: (value: string) => boolean;
354
- change: (value: string) => boolean;
355
- focus: (evt: FocusEvent) => boolean;
356
- blur: (evt: FocusEvent) => boolean;
357
- clear: () => boolean;
358
- mouseleave: (evt: MouseEvent) => boolean;
359
- mouseenter: (evt: MouseEvent) => boolean;
360
- keydown: (evt: Event | KeyboardEvent) => boolean;
361
- compositionstart: (evt: CompositionEvent) => boolean;
362
- compositionupdate: (evt: CompositionEvent) => boolean;
363
- compositionend: (evt: CompositionEvent) => boolean;
364
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
384
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
385
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
386
+ onClear?: (() => any) | undefined;
387
+ } & import("vue").ShallowUnwrapRef<{
388
+ input: import("vue").ShallowRef<HTMLInputElement | undefined>;
389
+ textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
390
+ ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
391
+ textareaStyle: import("vue").ComputedRef<import("vue").StyleValue>;
392
+ autosize: import("vue").Ref<import("element-plus").InputAutoSize>;
393
+ isComposing: import("vue").Ref<boolean>;
394
+ focus: () => Promise<void>;
395
+ blur: () => void | undefined;
396
+ select: () => void;
397
+ clear: () => void;
398
+ resizeTextarea: () => void;
399
+ }> & {} & import("vue").ComponentCustomProperties;
400
+ __isFragment?: undefined;
401
+ __isTeleport?: undefined;
402
+ __isSuspense?: undefined;
403
+ } & import("vue").ComponentOptionsBase<Readonly<import("vue").ExtractPropTypes<{
365
404
  readonly ariaLabel: StringConstructor;
366
405
  readonly id: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
367
406
  readonly size: {
@@ -386,7 +425,7 @@ export declare const HzztConfirmPassword: import("hzzt-plus/es/utils").SFCWithIn
386
425
  };
387
426
  readonly type: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
388
427
  readonly resize: {
389
- readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "vertical" | "horizontal" | "both", unknown>>;
428
+ readonly type: import("vue").PropType<import("element-plus/es/utils").EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
390
429
  readonly required: false;
391
430
  readonly validator: ((val: unknown) => boolean) | undefined;
392
431
  __epPropKey: true;
@@ -434,44 +473,74 @@ export declare const HzztConfirmPassword: import("hzzt-plus/es/utils").SFCWithIn
434
473
  __epPropKey: true;
435
474
  };
436
475
  readonly containerRole: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
437
- readonly label: import("element-plus/es/utils").EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
438
476
  readonly tabindex: import("element-plus/es/utils").EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
439
477
  readonly validateEvent: import("element-plus/es/utils").EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
440
478
  readonly inputStyle: import("element-plus/es/utils").EpPropFinalized<(new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue) | ((new (...args: any[]) => import("vue").StyleValue & {}) | (() => import("vue").StyleValue))[], unknown, unknown, () => import("element-plus/es/utils").Mutable<{}>, boolean>;
441
479
  readonly autofocus: BooleanConstructor;
442
480
  readonly rows: import("element-plus/es/utils").EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
443
481
  }>> & {
444
- onChange?: ((value: string) => any) | undefined;
445
482
  "onUpdate:modelValue"?: ((value: string) => any) | undefined;
446
- onInput?: ((value: string) => any) | undefined;
483
+ onChange?: ((value: string) => any) | undefined;
484
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
485
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
486
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
447
487
  onFocus?: ((evt: FocusEvent) => any) | undefined;
448
488
  onBlur?: ((evt: FocusEvent) => any) | undefined;
449
- onClear?: (() => any) | undefined;
450
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
451
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
489
+ onInput?: ((value: string) => any) | undefined;
452
490
  onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
453
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
454
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
455
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
491
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
492
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
493
+ onClear?: (() => any) | undefined;
456
494
  }, {
495
+ input: import("vue").ShallowRef<HTMLInputElement | undefined>;
496
+ textarea: import("vue").ShallowRef<HTMLTextAreaElement | undefined>;
497
+ ref: import("vue").ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
498
+ textareaStyle: import("vue").ComputedRef<import("vue").StyleValue>;
499
+ autosize: import("vue").Ref<import("element-plus").InputAutoSize>;
500
+ isComposing: import("vue").Ref<boolean>;
501
+ focus: () => Promise<void>;
502
+ blur: () => void | undefined;
503
+ select: () => void;
504
+ clear: () => void;
505
+ resizeTextarea: () => void;
506
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
507
+ input: (value: string) => void;
508
+ clear: () => void;
509
+ "update:modelValue": (value: string) => void;
510
+ change: (value: string) => void;
511
+ blur: (evt: FocusEvent) => void;
512
+ compositionend: (evt: CompositionEvent) => void;
513
+ compositionstart: (evt: CompositionEvent) => void;
514
+ compositionupdate: (evt: CompositionEvent) => void;
515
+ focus: (evt: FocusEvent) => void;
516
+ keydown: (evt: Event | KeyboardEvent) => void;
517
+ mouseenter: (evt: MouseEvent) => void;
518
+ mouseleave: (evt: MouseEvent) => void;
519
+ }, string, {
520
+ readonly disabled: boolean;
521
+ readonly id: string;
457
522
  readonly type: string;
458
523
  readonly modelValue: import("element-plus/es/utils").EpPropMergeType<(new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined) | ((new (...args: any[]) => (string | number | null | undefined) & {}) | (() => string | number | null | undefined))[], unknown, unknown>;
459
- readonly id: string;
460
- readonly disabled: boolean;
461
- readonly clearable: boolean;
524
+ readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
462
525
  readonly autosize: import("element-plus").InputAutoSize;
463
526
  readonly autocomplete: string;
464
527
  readonly containerRole: string;
465
- readonly label: string;
466
- readonly tabindex: import("element-plus/es/utils").EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
467
528
  readonly validateEvent: import("element-plus/es/utils").EpPropMergeType<BooleanConstructor, unknown, unknown>;
468
529
  readonly inputStyle: import("vue").StyleValue;
469
530
  readonly rows: number;
470
531
  readonly readonly: boolean;
532
+ readonly clearable: boolean;
471
533
  readonly showPassword: boolean;
472
534
  readonly showWordLimit: boolean;
473
535
  readonly autofocus: boolean;
474
- }>> & Record<string, any>;
536
+ }> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps & (new () => {
537
+ $slots: {
538
+ prepend?(_: {}): any;
539
+ prefix?(_: {}): any;
540
+ suffix?(_: {}): any;
541
+ append?(_: {}): any;
542
+ };
543
+ })>;
475
544
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("update:modelValue" | "confirm")[], "update:modelValue" | "confirm", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
476
545
  placeholder: {
477
546
  type: StringConstructor;