@vtj/ui 0.9.29 → 0.10.0

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.
@@ -1,5 +1,9 @@
1
1
  import { GridEditorProps } from './types';
2
- import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
2
+ import { DefineComponent, Ref, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, ComponentInternalInstance, StyleValue, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, CSSProperties, ShallowRef, ComputedRef, GlobalComponents, GlobalDirectives, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
+ import { EpPropMergeType, EpPropFinalized } from 'element-plus/es/utils/index.mjs';
4
+ import { InputAutoSize } from 'element-plus';
5
+ import { Mutable } from 'element-plus/es/utils/typescript.mjs';
6
+ import { OnCleanup } from '@vue/reactivity';
3
7
  declare const _default: DefineComponent<GridEditorProps, {
4
8
  open: () => void;
5
9
  dialogVisible: Ref<boolean, boolean>;
@@ -14,5 +18,374 @@ declare const _default: DefineComponent<GridEditorProps, {
14
18
  }>, {
15
19
  plus: boolean;
16
20
  minus: boolean;
17
- }, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
21
+ }, {}, {}, {}, string, ComponentProvideOptions, false, {
22
+ inputRef: ({
23
+ $: ComponentInternalInstance;
24
+ $data: {};
25
+ $props: Partial<{
26
+ readonly disabled: boolean;
27
+ readonly id: string;
28
+ readonly type: string;
29
+ readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
30
+ readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
31
+ readonly readonly: boolean;
32
+ readonly autosize: InputAutoSize;
33
+ readonly autocomplete: string;
34
+ readonly containerRole: string;
35
+ readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
36
+ readonly inputStyle: StyleValue;
37
+ readonly rows: number;
38
+ readonly clearable: boolean;
39
+ readonly showPassword: boolean;
40
+ readonly showWordLimit: boolean;
41
+ readonly autofocus: boolean;
42
+ }> & Omit<{
43
+ readonly type: string;
44
+ readonly disabled: boolean;
45
+ readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
46
+ readonly autofocus: boolean;
47
+ readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
48
+ readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
49
+ readonly autosize: InputAutoSize;
50
+ readonly autocomplete: string;
51
+ readonly readonly: boolean;
52
+ readonly clearable: boolean;
53
+ readonly showPassword: boolean;
54
+ readonly showWordLimit: boolean;
55
+ readonly inputStyle: StyleValue;
56
+ readonly rows: number;
57
+ readonly size?: EpPropMergeType<StringConstructor, "" | "large" | "default" | "small", never> | undefined;
58
+ readonly form?: string | undefined;
59
+ readonly id?: string | undefined;
60
+ readonly ariaLabel?: string | undefined;
61
+ readonly resize?: EpPropMergeType<StringConstructor, "none" | "horizontal" | "vertical" | "both", unknown> | undefined;
62
+ readonly maxlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
63
+ readonly minlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
64
+ readonly formatter?: Function | undefined;
65
+ readonly parser?: Function | undefined;
66
+ readonly placeholder?: string | undefined;
67
+ readonly suffixIcon?: EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown> | undefined;
68
+ readonly prefixIcon?: EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown> | undefined;
69
+ readonly containerRole?: string | undefined;
70
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
71
+ onChange?: ((value: string) => any) | undefined | undefined;
72
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
73
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
74
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
75
+ onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
76
+ onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
77
+ onInput?: ((value: string) => any) | undefined | undefined;
78
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
79
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
80
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
81
+ onClear?: (() => any) | undefined | undefined;
82
+ } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "disabled" | "id" | "tabindex" | "autofocus" | "modelValue" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
83
+ $attrs: {
84
+ [x: string]: unknown;
85
+ };
86
+ $refs: {
87
+ [x: string]: unknown;
88
+ };
89
+ $slots: Readonly<{
90
+ [name: string]: Slot<any> | undefined;
91
+ }>;
92
+ $root: ComponentPublicInstance | null;
93
+ $parent: ComponentPublicInstance | null;
94
+ $host: Element | null;
95
+ $emit: ((event: "clear") => void) & ((event: "input", value: string) => void) & ((event: "focus", evt: FocusEvent) => void) & ((event: "blur", evt: FocusEvent) => void) & ((event: "change", value: string) => void) & ((event: "compositionend", evt: CompositionEvent) => void) & ((event: "compositionstart", evt: CompositionEvent) => void) & ((event: "compositionupdate", evt: CompositionEvent) => void) & ((event: "keydown", evt: Event | KeyboardEvent) => void) & ((event: "mouseenter", evt: MouseEvent) => void) & ((event: "mouseleave", evt: MouseEvent) => void) & ((event: "update:modelValue", value: string) => void);
96
+ $el: any;
97
+ $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
98
+ readonly ariaLabel: StringConstructor;
99
+ readonly id: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
100
+ readonly size: {
101
+ readonly type: PropType<EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
102
+ readonly required: false;
103
+ readonly validator: ((val: unknown) => boolean) | undefined;
104
+ __epPropKey: true;
105
+ };
106
+ readonly disabled: BooleanConstructor;
107
+ readonly modelValue: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
108
+ readonly maxlength: {
109
+ readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
110
+ readonly required: false;
111
+ readonly validator: ((val: unknown) => boolean) | undefined;
112
+ __epPropKey: true;
113
+ };
114
+ readonly minlength: {
115
+ readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
116
+ readonly required: false;
117
+ readonly validator: ((val: unknown) => boolean) | undefined;
118
+ __epPropKey: true;
119
+ };
120
+ readonly type: EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
121
+ readonly resize: {
122
+ readonly type: PropType<EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
123
+ readonly required: false;
124
+ readonly validator: ((val: unknown) => boolean) | undefined;
125
+ __epPropKey: true;
126
+ };
127
+ readonly autosize: EpPropFinalized<(new (...args: any[]) => boolean | {
128
+ minRows?: number;
129
+ maxRows?: number;
130
+ }) | (() => InputAutoSize) | ((new (...args: any[]) => boolean | {
131
+ minRows?: number;
132
+ maxRows?: number;
133
+ }) | (() => InputAutoSize))[], unknown, unknown, false, boolean>;
134
+ readonly autocomplete: EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
135
+ readonly formatter: {
136
+ readonly type: PropType<Function>;
137
+ readonly required: false;
138
+ readonly validator: ((val: unknown) => boolean) | undefined;
139
+ __epPropKey: true;
140
+ };
141
+ readonly parser: {
142
+ readonly type: PropType<Function>;
143
+ readonly required: false;
144
+ readonly validator: ((val: unknown) => boolean) | undefined;
145
+ __epPropKey: true;
146
+ };
147
+ readonly placeholder: {
148
+ readonly type: PropType<string>;
149
+ readonly required: false;
150
+ readonly validator: ((val: unknown) => boolean) | undefined;
151
+ __epPropKey: true;
152
+ };
153
+ readonly form: {
154
+ readonly type: PropType<string>;
155
+ readonly required: false;
156
+ readonly validator: ((val: unknown) => boolean) | undefined;
157
+ __epPropKey: true;
158
+ };
159
+ readonly readonly: BooleanConstructor;
160
+ readonly clearable: BooleanConstructor;
161
+ readonly showPassword: BooleanConstructor;
162
+ readonly showWordLimit: BooleanConstructor;
163
+ readonly suffixIcon: {
164
+ readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
165
+ readonly required: false;
166
+ readonly validator: ((val: unknown) => boolean) | undefined;
167
+ __epPropKey: true;
168
+ };
169
+ readonly prefixIcon: {
170
+ readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
171
+ readonly required: false;
172
+ readonly validator: ((val: unknown) => boolean) | undefined;
173
+ __epPropKey: true;
174
+ };
175
+ readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
176
+ readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
177
+ readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
178
+ readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
179
+ readonly autofocus: BooleanConstructor;
180
+ readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
181
+ }>> & {
182
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
183
+ onChange?: ((value: string) => any) | undefined;
184
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
185
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
186
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
187
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
188
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
189
+ onInput?: ((value: string) => any) | undefined;
190
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
191
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
192
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
193
+ onClear?: (() => any) | undefined;
194
+ }, {
195
+ input: ShallowRef<HTMLInputElement | undefined>;
196
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
197
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
198
+ textareaStyle: ComputedRef<StyleValue>;
199
+ autosize: Ref<InputAutoSize>;
200
+ isComposing: Ref<boolean>;
201
+ focus: () => void | undefined;
202
+ blur: () => void | undefined;
203
+ select: () => void;
204
+ clear: () => void;
205
+ resizeTextarea: () => void;
206
+ }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
207
+ input: (value: string) => void;
208
+ clear: () => void;
209
+ "update:modelValue": (value: string) => void;
210
+ change: (value: string) => void;
211
+ blur: (evt: FocusEvent) => void;
212
+ compositionend: (evt: CompositionEvent) => void;
213
+ compositionstart: (evt: CompositionEvent) => void;
214
+ compositionupdate: (evt: CompositionEvent) => void;
215
+ focus: (evt: FocusEvent) => void;
216
+ keydown: (evt: Event | KeyboardEvent) => void;
217
+ mouseenter: (evt: MouseEvent) => void;
218
+ mouseleave: (evt: MouseEvent) => void;
219
+ }, string, {
220
+ readonly disabled: boolean;
221
+ readonly id: string;
222
+ readonly type: string;
223
+ readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
224
+ readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
225
+ readonly readonly: boolean;
226
+ readonly autosize: InputAutoSize;
227
+ readonly autocomplete: string;
228
+ readonly containerRole: string;
229
+ readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
230
+ readonly inputStyle: StyleValue;
231
+ readonly rows: number;
232
+ readonly clearable: boolean;
233
+ readonly showPassword: boolean;
234
+ readonly showWordLimit: boolean;
235
+ readonly autofocus: boolean;
236
+ }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
237
+ beforeCreate?: (() => void) | (() => void)[];
238
+ created?: (() => void) | (() => void)[];
239
+ beforeMount?: (() => void) | (() => void)[];
240
+ mounted?: (() => void) | (() => void)[];
241
+ beforeUpdate?: (() => void) | (() => void)[];
242
+ updated?: (() => void) | (() => void)[];
243
+ activated?: (() => void) | (() => void)[];
244
+ deactivated?: (() => void) | (() => void)[];
245
+ beforeDestroy?: (() => void) | (() => void)[];
246
+ beforeUnmount?: (() => void) | (() => void)[];
247
+ destroyed?: (() => void) | (() => void)[];
248
+ unmounted?: (() => void) | (() => void)[];
249
+ renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
250
+ renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
251
+ errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
252
+ };
253
+ $forceUpdate: () => void;
254
+ $nextTick: nextTick;
255
+ $watch<T extends string | ((...args: any) => any)>(source: T, cb: T extends (...args: any) => infer R ? (...args: [R, R, OnCleanup]) => any : (...args: [any, any, OnCleanup]) => any, options?: WatchOptions): WatchStopHandle;
256
+ } & Readonly<{
257
+ readonly disabled: boolean;
258
+ readonly id: string;
259
+ readonly type: string;
260
+ readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
261
+ readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
262
+ readonly readonly: boolean;
263
+ readonly autosize: InputAutoSize;
264
+ readonly autocomplete: string;
265
+ readonly containerRole: string;
266
+ readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
267
+ readonly inputStyle: StyleValue;
268
+ readonly rows: number;
269
+ readonly clearable: boolean;
270
+ readonly showPassword: boolean;
271
+ readonly showWordLimit: boolean;
272
+ readonly autofocus: boolean;
273
+ }> & Omit<Readonly< ExtractPropTypes<{
274
+ readonly ariaLabel: StringConstructor;
275
+ readonly id: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
276
+ readonly size: {
277
+ readonly type: PropType<EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
278
+ readonly required: false;
279
+ readonly validator: ((val: unknown) => boolean) | undefined;
280
+ __epPropKey: true;
281
+ };
282
+ readonly disabled: BooleanConstructor;
283
+ readonly modelValue: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
284
+ readonly maxlength: {
285
+ readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
286
+ readonly required: false;
287
+ readonly validator: ((val: unknown) => boolean) | undefined;
288
+ __epPropKey: true;
289
+ };
290
+ readonly minlength: {
291
+ readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
292
+ readonly required: false;
293
+ readonly validator: ((val: unknown) => boolean) | undefined;
294
+ __epPropKey: true;
295
+ };
296
+ readonly type: EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
297
+ readonly resize: {
298
+ readonly type: PropType<EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
299
+ readonly required: false;
300
+ readonly validator: ((val: unknown) => boolean) | undefined;
301
+ __epPropKey: true;
302
+ };
303
+ readonly autosize: EpPropFinalized<(new (...args: any[]) => boolean | {
304
+ minRows?: number;
305
+ maxRows?: number;
306
+ }) | (() => InputAutoSize) | ((new (...args: any[]) => boolean | {
307
+ minRows?: number;
308
+ maxRows?: number;
309
+ }) | (() => InputAutoSize))[], unknown, unknown, false, boolean>;
310
+ readonly autocomplete: EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
311
+ readonly formatter: {
312
+ readonly type: PropType<Function>;
313
+ readonly required: false;
314
+ readonly validator: ((val: unknown) => boolean) | undefined;
315
+ __epPropKey: true;
316
+ };
317
+ readonly parser: {
318
+ readonly type: PropType<Function>;
319
+ readonly required: false;
320
+ readonly validator: ((val: unknown) => boolean) | undefined;
321
+ __epPropKey: true;
322
+ };
323
+ readonly placeholder: {
324
+ readonly type: PropType<string>;
325
+ readonly required: false;
326
+ readonly validator: ((val: unknown) => boolean) | undefined;
327
+ __epPropKey: true;
328
+ };
329
+ readonly form: {
330
+ readonly type: PropType<string>;
331
+ readonly required: false;
332
+ readonly validator: ((val: unknown) => boolean) | undefined;
333
+ __epPropKey: true;
334
+ };
335
+ readonly readonly: BooleanConstructor;
336
+ readonly clearable: BooleanConstructor;
337
+ readonly showPassword: BooleanConstructor;
338
+ readonly showWordLimit: BooleanConstructor;
339
+ readonly suffixIcon: {
340
+ readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
341
+ readonly required: false;
342
+ readonly validator: ((val: unknown) => boolean) | undefined;
343
+ __epPropKey: true;
344
+ };
345
+ readonly prefixIcon: {
346
+ readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
347
+ readonly required: false;
348
+ readonly validator: ((val: unknown) => boolean) | undefined;
349
+ __epPropKey: true;
350
+ };
351
+ readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
352
+ readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
353
+ readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
354
+ readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
355
+ readonly autofocus: BooleanConstructor;
356
+ readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
357
+ }>> & {
358
+ "onUpdate:modelValue"?: ((value: string) => any) | undefined;
359
+ onChange?: ((value: string) => any) | undefined;
360
+ onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
361
+ onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
362
+ onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
363
+ onFocus?: ((evt: FocusEvent) => any) | undefined;
364
+ onBlur?: ((evt: FocusEvent) => any) | undefined;
365
+ onInput?: ((value: string) => any) | undefined;
366
+ onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
367
+ onMouseenter?: ((evt: MouseEvent) => any) | undefined;
368
+ onMouseleave?: ((evt: MouseEvent) => any) | undefined;
369
+ onClear?: (() => any) | undefined;
370
+ }, "clear" | "type" | "disabled" | "ref" | "input" | "select" | "textarea" | "id" | "tabindex" | "focus" | "autofocus" | "blur" | "modelValue" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows" | "textareaStyle" | "isComposing" | "resizeTextarea"> & ShallowUnwrapRef<{
371
+ input: ShallowRef<HTMLInputElement | undefined>;
372
+ textarea: ShallowRef<HTMLTextAreaElement | undefined>;
373
+ ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
374
+ textareaStyle: ComputedRef<StyleValue>;
375
+ autosize: Ref<InputAutoSize>;
376
+ isComposing: Ref<boolean>;
377
+ focus: () => void | undefined;
378
+ blur: () => void | undefined;
379
+ select: () => void;
380
+ clear: () => void;
381
+ resizeTextarea: () => void;
382
+ }> & {} & ComponentCustomProperties & {} & {
383
+ $slots: {
384
+ prepend?(_: {}): any;
385
+ prefix?(_: {}): any;
386
+ suffix?(_: {}): any;
387
+ append?(_: {}): any;
388
+ };
389
+ }) | null;
390
+ }, any>;
18
391
  export default _default;
@@ -115,7 +115,9 @@ declare const __VLS_component: DefineComponent<ExtractPropTypes<{
115
115
  height: string | number;
116
116
  page: number;
117
117
  pageSize: number;
118
- }, {}, {}, {}, string, ComponentProvideOptions, true, {}, HTMLDivElement>;
118
+ }, {}, {}, {}, string, ComponentProvideOptions, true, {
119
+ wrapperRef: HTMLDivElement;
120
+ }, HTMLDivElement>;
119
121
  declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, __VLS_TemplateResult["slots"]>;
120
122
  export default _default;
121
123
  type __VLS_WithTemplateSlots<T, S> = T & {