@vtj/ui 0.10.4 → 0.10.6

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 (43) hide show
  1. package/dist/index.mjs +180 -180
  2. package/dist/index.umd.js +3 -3
  3. package/package.json +3 -3
  4. package/types/components/action/Action.d.ts +3 -10
  5. package/types/components/attachment/Attachment.d.ts +274 -805
  6. package/types/components/container/Container.d.ts +178 -15
  7. package/types/components/data-item/DataItem.d.ts +517 -18
  8. package/types/components/dialog/Dialog.d.ts +372 -1143
  9. package/types/components/dialog-form/DialogForm.d.ts +104 -3049
  10. package/types/components/dialog-grid/DialogGrid.d.ts +69 -4907
  11. package/types/components/field/Field.d.ts +222 -353
  12. package/types/components/field/editors/SelectEditor.d.ts +21 -12
  13. package/types/components/form/Form.d.ts +116 -389
  14. package/types/components/grid/Grid.d.ts +787 -57
  15. package/types/components/grid/renderers/components/DateEdit.d.ts +2 -255
  16. package/types/components/grid/renderers/components/DateFilter.d.ts +1 -1
  17. package/types/components/grid/renderers/components/GridEdit.d.ts +2 -410
  18. package/types/components/grid/renderers/components/InputFilter.d.ts +1 -1
  19. package/types/components/grid/renderers/components/NumberFilter.d.ts +1 -1
  20. package/types/components/grid/renderers/components/PickerEdit.d.ts +2 -1926
  21. package/types/components/grid/renderers/components/SelectFilter.d.ts +1 -1
  22. package/types/components/grid-editor/GridEditor.d.ts +2 -375
  23. package/types/components/header/Header.d.ts +76 -14
  24. package/types/components/import-button/ImportButton.d.ts +47 -10
  25. package/types/components/list/List.d.ts +155 -30
  26. package/types/components/mask/Mask.d.ts +546 -562
  27. package/types/components/mask/components/Avatar.d.ts +16 -11
  28. package/types/components/mask/components/Brand.d.ts +17 -12
  29. package/types/components/mask/components/Content.d.ts +13 -12
  30. package/types/components/mask/components/Sidebar.d.ts +15 -12
  31. package/types/components/mask/components/Tabs.d.ts +2 -255
  32. package/types/components/mask/components/ThemeSwitch.d.ts +1 -1
  33. package/types/components/mask/components/Toolbar.d.ts +55 -13
  34. package/types/components/panel/Panel.d.ts +124 -521
  35. package/types/components/picker/Dialog.d.ts +2 -1291
  36. package/types/components/picker/Picker.d.ts +2 -1730
  37. package/types/components/qr-code/QrCode.d.ts +35 -13
  38. package/types/components/query-form/QueryForm.d.ts +418 -1105
  39. package/types/components/startup/Startup.d.ts +1 -1
  40. package/types/components/tabs/Tabs.d.ts +297 -53
  41. package/types/components/test/Test.d.ts +268 -41
  42. package/types/version.d.ts +2 -2
  43. package/types/components/icon/Icon.d.ts +0 -74
@@ -1,416 +1,8 @@
1
1
  import { VxeGlobalRendererHandles } from '../../types';
2
- import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, Ref, GlobalComponents, GlobalDirectives, ComponentInternalInstance, StyleValue, Component, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, ExtractPropTypes, PropType, CSSProperties, ShallowRef, ComputedRef, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties } from 'vue';
3
- import { GridEditorProps } from '../../..';
4
- import { EpPropMergeType, EpPropFinalized } from 'element-plus/es/utils/index.mjs';
5
- import { InputAutoSize } from 'element-plus';
6
- import { Mutable } from 'element-plus/es/utils/typescript.mjs';
7
- import { OnCleanup } from '@vue/reactivity';
2
+ import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
8
3
  export interface Props {
9
4
  params: VxeGlobalRendererHandles.RenderEditParams;
10
5
  renderOpts: VxeGlobalRendererHandles.RenderEditOptions;
11
6
  }
12
- declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {
13
- elRef: CreateComponentPublicInstanceWithMixins<Readonly< GridEditorProps> & Readonly<{
14
- onChange?: ((model: any) => any) | undefined;
15
- "onUpdate:modelValue"?: ((model: any) => any) | undefined;
16
- }>, {
17
- open: () => void;
18
- dialogVisible: Ref<boolean, boolean>;
19
- focus: () => void;
20
- blur: () => void;
21
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
22
- change: (model: any) => any;
23
- "update:modelValue": (model: any) => any;
24
- }, PublicProps, {
25
- plus: boolean;
26
- minus: boolean;
27
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
28
- inputRef: ({
29
- $: ComponentInternalInstance;
30
- $data: {};
31
- $props: Partial<{
32
- readonly disabled: boolean;
33
- readonly id: string;
34
- readonly type: string;
35
- readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
36
- readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
37
- readonly readonly: boolean;
38
- readonly autosize: InputAutoSize;
39
- readonly autocomplete: string;
40
- readonly containerRole: string;
41
- readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
42
- readonly inputStyle: StyleValue;
43
- readonly rows: number;
44
- readonly clearable: boolean;
45
- readonly showPassword: boolean;
46
- readonly showWordLimit: boolean;
47
- readonly autofocus: boolean;
48
- }> & Omit<{
49
- readonly type: string;
50
- readonly disabled: boolean;
51
- readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
52
- readonly autofocus: boolean;
53
- readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
54
- readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
55
- readonly autosize: InputAutoSize;
56
- readonly autocomplete: string;
57
- readonly readonly: boolean;
58
- readonly clearable: boolean;
59
- readonly showPassword: boolean;
60
- readonly showWordLimit: boolean;
61
- readonly inputStyle: StyleValue;
62
- readonly rows: number;
63
- readonly size?: EpPropMergeType<StringConstructor, "" | "large" | "default" | "small", never> | undefined;
64
- readonly form?: string | undefined;
65
- readonly id?: string | undefined;
66
- readonly ariaLabel?: string | undefined;
67
- readonly resize?: EpPropMergeType<StringConstructor, "none" | "horizontal" | "vertical" | "both", unknown> | undefined;
68
- readonly maxlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
69
- readonly minlength?: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown> | undefined;
70
- readonly formatter?: Function | undefined;
71
- readonly parser?: Function | undefined;
72
- readonly placeholder?: string | undefined;
73
- readonly suffixIcon?: EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown> | undefined;
74
- readonly prefixIcon?: EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown> | undefined;
75
- readonly containerRole?: string | undefined;
76
- "onUpdate:modelValue"?: ((value: string) => any) | undefined | undefined;
77
- onChange?: ((value: string) => any) | undefined | undefined;
78
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined | undefined;
79
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined | undefined;
80
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined | undefined;
81
- onFocus?: ((evt: FocusEvent) => any) | undefined | undefined;
82
- onBlur?: ((evt: FocusEvent) => any) | undefined | undefined;
83
- onInput?: ((value: string) => any) | undefined | undefined;
84
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined | undefined;
85
- onMouseenter?: ((evt: MouseEvent) => any) | undefined | undefined;
86
- onMouseleave?: ((evt: MouseEvent) => any) | undefined | undefined;
87
- onClear?: (() => any) | undefined | undefined;
88
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps, "type" | "disabled" | "id" | "tabindex" | "autofocus" | "modelValue" | "validateEvent" | "autosize" | "autocomplete" | "readonly" | "clearable" | "showPassword" | "showWordLimit" | "containerRole" | "inputStyle" | "rows">;
89
- $attrs: {
90
- [x: string]: unknown;
91
- };
92
- $refs: {
93
- [x: string]: unknown;
94
- };
95
- $slots: Readonly<{
96
- [name: string]: Slot<any> | undefined;
97
- }>;
98
- $root: ComponentPublicInstance | null;
99
- $parent: ComponentPublicInstance | null;
100
- $host: Element | null;
101
- $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);
102
- $el: any;
103
- $options: ComponentOptionsBase<Readonly< ExtractPropTypes<{
104
- readonly ariaLabel: StringConstructor;
105
- readonly id: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
106
- readonly size: {
107
- readonly type: PropType<EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
108
- readonly required: false;
109
- readonly validator: ((val: unknown) => boolean) | undefined;
110
- __epPropKey: true;
111
- };
112
- readonly disabled: BooleanConstructor;
113
- readonly modelValue: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
114
- readonly maxlength: {
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 minlength: {
121
- readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
122
- readonly required: false;
123
- readonly validator: ((val: unknown) => boolean) | undefined;
124
- __epPropKey: true;
125
- };
126
- readonly type: EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
127
- readonly resize: {
128
- readonly type: PropType<EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
129
- readonly required: false;
130
- readonly validator: ((val: unknown) => boolean) | undefined;
131
- __epPropKey: true;
132
- };
133
- readonly autosize: EpPropFinalized<(new (...args: any[]) => boolean | {
134
- minRows?: number;
135
- maxRows?: number;
136
- }) | (() => InputAutoSize) | ((new (...args: any[]) => boolean | {
137
- minRows?: number;
138
- maxRows?: number;
139
- }) | (() => InputAutoSize))[], unknown, unknown, false, boolean>;
140
- readonly autocomplete: EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
141
- readonly formatter: {
142
- readonly type: PropType<Function>;
143
- readonly required: false;
144
- readonly validator: ((val: unknown) => boolean) | undefined;
145
- __epPropKey: true;
146
- };
147
- readonly parser: {
148
- readonly type: PropType<Function>;
149
- readonly required: false;
150
- readonly validator: ((val: unknown) => boolean) | undefined;
151
- __epPropKey: true;
152
- };
153
- readonly placeholder: {
154
- readonly type: PropType<string>;
155
- readonly required: false;
156
- readonly validator: ((val: unknown) => boolean) | undefined;
157
- __epPropKey: true;
158
- };
159
- readonly form: {
160
- readonly type: PropType<string>;
161
- readonly required: false;
162
- readonly validator: ((val: unknown) => boolean) | undefined;
163
- __epPropKey: true;
164
- };
165
- readonly readonly: BooleanConstructor;
166
- readonly clearable: BooleanConstructor;
167
- readonly showPassword: BooleanConstructor;
168
- readonly showWordLimit: BooleanConstructor;
169
- readonly suffixIcon: {
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 prefixIcon: {
176
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
177
- readonly required: false;
178
- readonly validator: ((val: unknown) => boolean) | undefined;
179
- __epPropKey: true;
180
- };
181
- readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
182
- readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
183
- readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
184
- readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
185
- readonly autofocus: BooleanConstructor;
186
- readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
187
- }>> & {
188
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
189
- onChange?: ((value: string) => any) | undefined;
190
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
191
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
192
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
193
- onFocus?: ((evt: FocusEvent) => any) | undefined;
194
- onBlur?: ((evt: FocusEvent) => any) | undefined;
195
- onInput?: ((value: string) => any) | undefined;
196
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
197
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
198
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
199
- onClear?: (() => any) | undefined;
200
- }, {
201
- input: ShallowRef<HTMLInputElement | undefined>;
202
- textarea: ShallowRef<HTMLTextAreaElement | undefined>;
203
- ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
204
- textareaStyle: ComputedRef<StyleValue>;
205
- autosize: Ref<InputAutoSize>;
206
- isComposing: Ref<boolean>;
207
- focus: () => void | undefined;
208
- blur: () => void | undefined;
209
- select: () => void;
210
- clear: () => void;
211
- resizeTextarea: () => void;
212
- }, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
213
- input: (value: string) => void;
214
- clear: () => void;
215
- "update:modelValue": (value: string) => void;
216
- change: (value: string) => void;
217
- blur: (evt: FocusEvent) => void;
218
- compositionend: (evt: CompositionEvent) => void;
219
- compositionstart: (evt: CompositionEvent) => void;
220
- compositionupdate: (evt: CompositionEvent) => void;
221
- focus: (evt: FocusEvent) => void;
222
- keydown: (evt: Event | KeyboardEvent) => void;
223
- mouseenter: (evt: MouseEvent) => void;
224
- mouseleave: (evt: MouseEvent) => void;
225
- }, string, {
226
- readonly disabled: boolean;
227
- readonly id: string;
228
- readonly type: string;
229
- readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
230
- readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
231
- readonly readonly: boolean;
232
- readonly autosize: InputAutoSize;
233
- readonly autocomplete: string;
234
- readonly containerRole: string;
235
- readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
236
- readonly inputStyle: StyleValue;
237
- readonly rows: number;
238
- readonly clearable: boolean;
239
- readonly showPassword: boolean;
240
- readonly showWordLimit: boolean;
241
- readonly autofocus: boolean;
242
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
243
- beforeCreate?: (() => void) | (() => void)[];
244
- created?: (() => void) | (() => void)[];
245
- beforeMount?: (() => void) | (() => void)[];
246
- mounted?: (() => void) | (() => void)[];
247
- beforeUpdate?: (() => void) | (() => void)[];
248
- updated?: (() => void) | (() => void)[];
249
- activated?: (() => void) | (() => void)[];
250
- deactivated?: (() => void) | (() => void)[];
251
- beforeDestroy?: (() => void) | (() => void)[];
252
- beforeUnmount?: (() => void) | (() => void)[];
253
- destroyed?: (() => void) | (() => void)[];
254
- unmounted?: (() => void) | (() => void)[];
255
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
256
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
257
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
258
- };
259
- $forceUpdate: () => void;
260
- $nextTick: nextTick;
261
- $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;
262
- } & Readonly<{
263
- readonly disabled: boolean;
264
- readonly id: string;
265
- readonly type: string;
266
- readonly modelValue: EpPropMergeType<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown>;
267
- readonly tabindex: EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>;
268
- readonly readonly: boolean;
269
- readonly autosize: InputAutoSize;
270
- readonly autocomplete: string;
271
- readonly containerRole: string;
272
- readonly validateEvent: EpPropMergeType<BooleanConstructor, unknown, unknown>;
273
- readonly inputStyle: StyleValue;
274
- readonly rows: number;
275
- readonly clearable: boolean;
276
- readonly showPassword: boolean;
277
- readonly showWordLimit: boolean;
278
- readonly autofocus: boolean;
279
- }> & Omit<Readonly< ExtractPropTypes<{
280
- readonly ariaLabel: StringConstructor;
281
- readonly id: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
282
- readonly size: {
283
- readonly type: PropType<EpPropMergeType<StringConstructor, "" | "small" | "default" | "large", never>>;
284
- readonly required: false;
285
- readonly validator: ((val: unknown) => boolean) | undefined;
286
- __epPropKey: true;
287
- };
288
- readonly disabled: BooleanConstructor;
289
- readonly modelValue: EpPropFinalized<(new (...args: any[]) => string | number) | (() => string | number | null | undefined) | ((new (...args: any[]) => string | number) | (() => string | number | null | undefined))[], unknown, unknown, "", boolean>;
290
- readonly maxlength: {
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 minlength: {
297
- readonly type: PropType<EpPropMergeType<readonly [StringConstructor, NumberConstructor], unknown, unknown>>;
298
- readonly required: false;
299
- readonly validator: ((val: unknown) => boolean) | undefined;
300
- __epPropKey: true;
301
- };
302
- readonly type: EpPropFinalized<StringConstructor, unknown, unknown, "text", boolean>;
303
- readonly resize: {
304
- readonly type: PropType<EpPropMergeType<StringConstructor, "none" | "both" | "horizontal" | "vertical", unknown>>;
305
- readonly required: false;
306
- readonly validator: ((val: unknown) => boolean) | undefined;
307
- __epPropKey: true;
308
- };
309
- readonly autosize: EpPropFinalized<(new (...args: any[]) => boolean | {
310
- minRows?: number;
311
- maxRows?: number;
312
- }) | (() => InputAutoSize) | ((new (...args: any[]) => boolean | {
313
- minRows?: number;
314
- maxRows?: number;
315
- }) | (() => InputAutoSize))[], unknown, unknown, false, boolean>;
316
- readonly autocomplete: EpPropFinalized<StringConstructor, unknown, unknown, "off", boolean>;
317
- readonly formatter: {
318
- readonly type: PropType<Function>;
319
- readonly required: false;
320
- readonly validator: ((val: unknown) => boolean) | undefined;
321
- __epPropKey: true;
322
- };
323
- readonly parser: {
324
- readonly type: PropType<Function>;
325
- readonly required: false;
326
- readonly validator: ((val: unknown) => boolean) | undefined;
327
- __epPropKey: true;
328
- };
329
- readonly placeholder: {
330
- readonly type: PropType<string>;
331
- readonly required: false;
332
- readonly validator: ((val: unknown) => boolean) | undefined;
333
- __epPropKey: true;
334
- };
335
- readonly form: {
336
- readonly type: PropType<string>;
337
- readonly required: false;
338
- readonly validator: ((val: unknown) => boolean) | undefined;
339
- __epPropKey: true;
340
- };
341
- readonly readonly: BooleanConstructor;
342
- readonly clearable: BooleanConstructor;
343
- readonly showPassword: BooleanConstructor;
344
- readonly showWordLimit: BooleanConstructor;
345
- readonly suffixIcon: {
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 prefixIcon: {
352
- readonly type: PropType<EpPropMergeType<(new (...args: any[]) => (string | Component) & {}) | (() => string | Component) | ((new (...args: any[]) => (string | Component) & {}) | (() => string | Component))[], unknown, unknown>>;
353
- readonly required: false;
354
- readonly validator: ((val: unknown) => boolean) | undefined;
355
- __epPropKey: true;
356
- };
357
- readonly containerRole: EpPropFinalized<StringConstructor, unknown, unknown, undefined, boolean>;
358
- readonly tabindex: EpPropFinalized<readonly [StringConstructor, NumberConstructor], unknown, unknown, 0, boolean>;
359
- readonly validateEvent: EpPropFinalized<BooleanConstructor, unknown, unknown, true, boolean>;
360
- readonly inputStyle: EpPropFinalized<(new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue) | ((new (...args: any[]) => string | CSSProperties | StyleValue[]) | (() => StyleValue))[], unknown, unknown, () => Mutable<{}>, boolean>;
361
- readonly autofocus: BooleanConstructor;
362
- readonly rows: EpPropFinalized<NumberConstructor, unknown, unknown, 2, boolean>;
363
- }>> & {
364
- "onUpdate:modelValue"?: ((value: string) => any) | undefined;
365
- onChange?: ((value: string) => any) | undefined;
366
- onCompositionend?: ((evt: CompositionEvent) => any) | undefined;
367
- onCompositionstart?: ((evt: CompositionEvent) => any) | undefined;
368
- onCompositionupdate?: ((evt: CompositionEvent) => any) | undefined;
369
- onFocus?: ((evt: FocusEvent) => any) | undefined;
370
- onBlur?: ((evt: FocusEvent) => any) | undefined;
371
- onInput?: ((value: string) => any) | undefined;
372
- onKeydown?: ((evt: Event | KeyboardEvent) => any) | undefined;
373
- onMouseenter?: ((evt: MouseEvent) => any) | undefined;
374
- onMouseleave?: ((evt: MouseEvent) => any) | undefined;
375
- onClear?: (() => any) | undefined;
376
- }, "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<{
377
- input: ShallowRef<HTMLInputElement | undefined>;
378
- textarea: ShallowRef<HTMLTextAreaElement | undefined>;
379
- ref: ComputedRef<HTMLInputElement | HTMLTextAreaElement | undefined>;
380
- textareaStyle: ComputedRef<StyleValue>;
381
- autosize: Ref<InputAutoSize>;
382
- isComposing: Ref<boolean>;
383
- focus: () => void | undefined;
384
- blur: () => void | undefined;
385
- select: () => void;
386
- clear: () => void;
387
- resizeTextarea: () => void;
388
- }> & {} & ComponentCustomProperties & {} & {
389
- $slots: {
390
- prepend?(_: {}): any;
391
- prefix?(_: {}): any;
392
- suffix?(_: {}): any;
393
- append?(_: {}): any;
394
- };
395
- }) | null;
396
- }, any, ComponentProvideOptions, {
397
- P: {};
398
- B: {};
399
- D: {};
400
- C: {};
401
- M: {};
402
- Defaults: {};
403
- }, Readonly< GridEditorProps> & Readonly<{
404
- onChange?: ((model: any) => any) | undefined;
405
- "onUpdate:modelValue"?: ((model: any) => any) | undefined;
406
- }>, {
407
- open: () => void;
408
- dialogVisible: Ref<boolean, boolean>;
409
- focus: () => void;
410
- blur: () => void;
411
- }, {}, {}, {}, {
412
- plus: boolean;
413
- minus: boolean;
414
- }> | null;
415
- }, any>;
7
+ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
416
8
  export default _default;
@@ -4,5 +4,5 @@ export interface Props {
4
4
  params: VxeGlobalRendererHandles.RenderFilterParams;
5
5
  renderOpts: VxeGlobalRendererHandles.RenderFilterOptions;
6
6
  }
7
- declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
8
8
  export default _default;
@@ -4,5 +4,5 @@ export interface Props {
4
4
  params: VxeGlobalRendererHandles.RenderFilterParams;
5
5
  renderOpts: VxeGlobalRendererHandles.RenderFilterOptions;
6
6
  }
7
- declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, HTMLDivElement>;
7
+ declare const _default: DefineComponent<Props, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
8
8
  export default _default;