@aplus-frontend/ui 6.12.0 → 6.13.1

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 (70) hide show
  1. package/es/src/ap-descriptions/interface.d.ts +1 -1
  2. package/es/src/ap-form/ap-form.vue2.mjs +118 -108
  3. package/es/src/ap-form/items/number/index.vue.d.ts +2 -2
  4. package/es/src/ap-form/items/select/index.vue.d.ts +2 -2
  5. package/es/src/ap-form/items/text/index.vue.d.ts +2 -2
  6. package/es/src/ap-form/items/text/password.vue.d.ts +2 -2
  7. package/es/src/ap-form/items/tree-select/index.vue.d.ts +2 -2
  8. package/es/src/ap-form/search-form/hooks/use-collapse-input-count.d.ts +8 -1
  9. package/es/src/ap-form/search-form/hooks/use-collapse-input-count.mjs +23 -18
  10. package/es/src/ap-form/search-form/hooks/use-sorter.mjs +31 -30
  11. package/es/src/ap-form/search-form/index.vue.mjs +42 -41
  12. package/es/src/ap-grid/index.vue.mjs +221 -225
  13. package/es/src/ap-modal/interface.d.ts +8 -0
  14. package/es/src/ap-modal/utils/createModalStream.mjs +69 -66
  15. package/es/src/ap-table/ap-table.vue2.mjs +107 -111
  16. package/es/src/ap-table/constants.d.ts +5 -5
  17. package/es/src/ap-table/context.d.ts +1 -0
  18. package/es/src/ap-table/context.mjs +6 -5
  19. package/es/src/ap-table/utils.d.ts +5 -3247
  20. package/es/src/ap-table/utils.mjs +107 -121
  21. package/es/src/business/ap-view/ap-view.vue2.mjs +76 -74
  22. package/es/src/business/ap-view/interface.d.ts +1 -0
  23. package/es/src/business/batch-input-group/index.vue.d.ts +2 -1
  24. package/es/src/business/batch-input-group/index.vue.mjs +56 -52
  25. package/es/src/business/batch-input-group/interface.d.ts +5 -0
  26. package/es/src/business/batch-input-group/popover-input/index.vue2.mjs +36 -32
  27. package/es/src/business/batch-input-group/utils.d.ts +8 -0
  28. package/es/src/business/batch-input-group/utils.mjs +10 -0
  29. package/es/src/version.d.ts +1 -1
  30. package/es/src/version.mjs +1 -1
  31. package/lib/src/ap-descriptions/interface.d.ts +1 -1
  32. package/lib/src/ap-form/ap-form.vue2.js +1 -1
  33. package/lib/src/ap-form/items/number/index.vue.d.ts +2 -2
  34. package/lib/src/ap-form/items/select/index.vue.d.ts +2 -2
  35. package/lib/src/ap-form/items/text/index.vue.d.ts +2 -2
  36. package/lib/src/ap-form/items/text/password.vue.d.ts +2 -2
  37. package/lib/src/ap-form/items/tree-select/index.vue.d.ts +2 -2
  38. package/lib/src/ap-form/search-form/hooks/use-collapse-input-count.d.ts +8 -1
  39. package/lib/src/ap-form/search-form/hooks/use-collapse-input-count.js +1 -1
  40. package/lib/src/ap-form/search-form/hooks/use-sorter.js +1 -1
  41. package/lib/src/ap-form/search-form/index.vue.js +1 -1
  42. package/lib/src/ap-grid/index.vue.js +1 -1
  43. package/lib/src/ap-modal/interface.d.ts +8 -0
  44. package/lib/src/ap-modal/utils/createModalStream.js +1 -1
  45. package/lib/src/ap-table/ap-table.vue2.js +1 -1
  46. package/lib/src/ap-table/constants.d.ts +5 -5
  47. package/lib/src/ap-table/context.d.ts +1 -0
  48. package/lib/src/ap-table/context.js +1 -1
  49. package/lib/src/ap-table/utils.d.ts +5 -3247
  50. package/lib/src/ap-table/utils.js +1 -1
  51. package/lib/src/business/ap-view/ap-view.vue2.js +1 -1
  52. package/lib/src/business/ap-view/interface.d.ts +1 -0
  53. package/lib/src/business/batch-input-group/index.vue.d.ts +2 -1
  54. package/lib/src/business/batch-input-group/index.vue.js +2 -2
  55. package/lib/src/business/batch-input-group/interface.d.ts +5 -0
  56. package/lib/src/business/batch-input-group/popover-input/index.vue2.js +3 -2
  57. package/lib/src/business/batch-input-group/utils.d.ts +8 -0
  58. package/lib/src/business/batch-input-group/utils.js +1 -0
  59. package/lib/src/version.d.ts +1 -1
  60. package/lib/src/version.js +1 -1
  61. package/package.json +1 -1
  62. package/theme/ap-grid/index.css +3 -0
  63. package/theme/ap-grid/index.less +3 -4
  64. package/theme/index.css +3 -0
  65. package/es/src/ap-table/components/dynamic-component/index.vue.d.ts +0 -4
  66. package/es/src/ap-table/components/dynamic-component/index.vue.mjs +0 -4
  67. package/es/src/ap-table/components/dynamic-component/index.vue2.mjs +0 -15
  68. package/lib/src/ap-table/components/dynamic-component/index.vue.d.ts +0 -4
  69. package/lib/src/ap-table/components/dynamic-component/index.vue.js +0 -1
  70. package/lib/src/ap-table/components/dynamic-component/index.vue2.js +0 -1
@@ -1,35 +1,11 @@
1
1
  import { ApColumnType, ValueEnum, ValueEnumType } from './interface';
2
2
  import { ValueTypeRenderConfig } from '../config-provider';
3
3
  import { apTableRenderItemMap } from './constants';
4
- import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, ExtractPropTypes, PropType, CSSProperties, VNodeArrayChildren, RendererNode, RendererElement } from 'vue';
4
+ import { VNode, VNodeArrayChildren, RendererNode, RendererElement } from 'vue';
5
5
  import { EditableColumnType } from '../editable-table/interface';
6
6
  import { ColumnType, ColumnGroupType } from '@aplus-frontend/antdv/es/table';
7
- import { ApTableDynamicCompProps } from './components/interface';
8
- import { ApFormItemTextPasswordProps, ApFormItemTextProps, ApFormItemTextAreaProps, ApFormItemNumberProps, ApFormItemDateProps, ApFormItemDateRangeProps, ApFormItemRadioProps, ApFormItemSelectProps, ApFormItemSwitchProps, ApFormItemCheckboxProps, ApFormItemTreeSelectProps } from '../ap-form/items/interface';
9
- import { ApFieldTextPasswordProps, FieldMode, ApFormItemSlots, ApFieldTextProps, ApFormItemTextPassword, ApFieldTextAreaProps, ApFieldNumberProps, ApFieldDateProps, ApFieldDateRangeProps, ApFieldRadioProps, ApFieldSelectProps, ApFieldSwitchProps, ApFieldCheckboxProps, ApFieldTreeSelectProps } from '..';
10
- import { ButtonSize, SizeType } from '@aplus-frontend/antdv/es/button';
11
- import { FocusEventHandler, ChangeEventHandler, CompositionEventHandler, KeyboardEventHandler, MouseEventHandler } from '@aplus-frontend/antdv/es/_util/EventInterface';
12
- import { ShowCountProps } from '@aplus-frontend/antdv/es/vc-input/inputProps';
13
- import { OnCleanup } from '@vue/reactivity';
14
- import { InputFocusOptions } from '@aplus-frontend/antdv/es/vc-input/utils/commonUtils';
15
- import { ApFormItemTextGroup } from '../ap-form/items/text';
16
- import { AutoSizeType } from '@aplus-frontend/antdv/es/input/inputProps';
17
- import { VueTypeValidableDef } from '../../node_modules/vue-types';
18
- import { VueNode, CustomSlotsType } from '@aplus-frontend/antdv/es/_util/type';
19
- import { ValueType } from '@aplus-frontend/antdv/es/input-number/src/utils/MiniDecimal';
20
- import { RadioGroupChildOption } from '@aplus-frontend/antdv/es/radio/Group';
21
- import { RadioGroupButtonStyle, RadioGroupOptionType } from '@aplus-frontend/antdv/es/radio/interface';
22
- import { RadioChangeEvent, TreeSelectProps } from '@aplus-frontend/antdv';
23
- import { SelectValue, DefaultOptionType, LabeledValue, BaseOptionType } from '@aplus-frontend/antdv/es/select';
24
- import { SelectHandler, FieldNames, FilterFunc } from '@aplus-frontend/antdv/es/vc-select/Select';
25
- import { RenderDOMFunc, DropdownRender, CustomTagProps, DisplayValueType } from '@aplus-frontend/antdv/es/vc-select/BaseSelect';
26
- import { AlignType } from '@aplus-frontend/antdv/es/vc-trigger/interface';
27
- import { Recordable } from '../type';
28
- import { LegacyDataNode, FieldNames, Key } from '@aplus-frontend/antdv/es/vc-tree-select/interface';
29
- import { ChangeEventExtra, FieldNames, DefaultOptionType, BaseOptionType, SimpleModeConfig, LegacyDataNode } from '@aplus-frontend/antdv/es/vc-tree-select/TreeSelect';
30
- import { CheckedStrategy } from '@aplus-frontend/antdv/es/vc-tree-select/utils/strategyUtil';
31
- import { ExpandAction } from '@aplus-frontend/antdv/es/vc-tree/props';
32
7
  import { ColumnTitleProps } from '@aplus-frontend/antdv/es/table/interface';
8
+ import { VueNode } from '@aplus-frontend/antdv/es/_util/type';
33
9
  export type FieldValueType = 'multiple' | 'multipleNumber' | 'dayjs' | 'dayjsRange' | 'dayjsDayRange' | 'number' | 'boolean' | 'object';
34
10
  export declare const formatParamsValueType: (type: FieldValueType | Record<string, FieldValueType>, value: any, cb: (t: FieldValueType, value: any) => any) => any;
35
11
  /**
@@ -92,3227 +68,9 @@ export declare function getTableCellRenderNode(renderType: keyof typeof apTableR
92
68
  * @param extraRenderMap
93
69
  * @returns
94
70
  */
95
- export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?: Record<string, ValueTypeRenderConfig>): {
96
- Comp: DefineComponent<ApTableDynamicCompProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ApTableDynamicCompProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
97
- render: (config: any) => VNode<unknown, unknown, {
98
- [key: string]: any;
99
- }>;
100
- } | {
101
- Comp: ({
102
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
103
- focus: () => void;
104
- blur: () => void;
105
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
106
- disabled: boolean;
107
- hasFeedback: boolean;
108
- colon: boolean;
109
- autoLink: boolean;
110
- required: boolean;
111
- validateFirst: boolean;
112
- field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
113
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
114
- inputRef: ({
115
- $: ComponentInternalInstance;
116
- $data: {};
117
- $props: {
118
- readonly mode?: FieldMode | undefined;
119
- readonly class?: unknown;
120
- readonly style?: unknown;
121
- readonly type?: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password" | undefined;
122
- readonly lazy?: boolean | undefined;
123
- readonly size?: ButtonSize;
124
- readonly hidden?: boolean | undefined;
125
- readonly onBlur?: FocusEventHandler | undefined;
126
- readonly onChange?: ChangeEventHandler | undefined;
127
- readonly onCompositionend?: CompositionEventHandler | undefined;
128
- readonly onCompositionstart?: CompositionEventHandler | undefined;
129
- readonly onFocus?: FocusEventHandler | undefined;
130
- readonly onInput?: ChangeEventHandler | undefined;
131
- readonly onKeydown?: KeyboardEventHandler | undefined;
132
- readonly onKeyup?: KeyboardEventHandler | undefined;
133
- readonly onMousedown?: MouseEventHandler | undefined;
134
- readonly value?: string | number | undefined;
135
- readonly disabled?: boolean | undefined;
136
- readonly prefixCls?: string | undefined;
137
- readonly name?: string | undefined;
138
- readonly loading?: boolean | undefined;
139
- readonly autofocus?: boolean | undefined;
140
- readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
141
- readonly bordered?: boolean | undefined;
142
- readonly suffix?: any;
143
- readonly focused?: boolean | undefined;
144
- readonly handleReset?: MouseEventHandler | undefined;
145
- readonly placeholder?: string | number | undefined;
146
- readonly defaultValue?: string | number | undefined;
147
- readonly id?: string | undefined;
148
- readonly autocomplete?: string | undefined;
149
- readonly maxlength?: number | undefined;
150
- readonly showCount?: boolean | ShowCountProps | undefined;
151
- readonly htmlSize?: number | undefined;
152
- readonly onPressEnter?: KeyboardEventHandler | undefined;
153
- readonly onMouseUp?: MouseEventHandler | undefined;
154
- readonly onRawInput?: ChangeEventHandler | undefined;
155
- readonly valueModifiers?: Record<string, any> | undefined;
156
- readonly status?: "" | "error" | "warning" | undefined;
157
- readonly inputElement?: any;
158
- readonly triggerFocus?: (() => void) | undefined;
159
- readonly readonly?: boolean | undefined;
160
- readonly addonBefore?: any;
161
- readonly addonAfter?: any;
162
- readonly prefix?: any;
163
- readonly clearIcon?: any;
164
- readonly allowClear?: boolean | undefined;
165
- readonly inputPrefixCls?: string | undefined;
166
- readonly action?: string | undefined;
167
- readonly visibilityToggle?: boolean | undefined;
168
- readonly visible?: boolean | undefined;
169
- readonly 'onUpdate:visible'?: (((visible: boolean) => void) & ((...args: any[]) => any)) | undefined;
170
- readonly emptyText?: string | undefined;
171
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
172
- $attrs: {
173
- [x: string]: unknown;
174
- };
175
- $refs: {
176
- [x: string]: unknown;
177
- };
178
- $slots: Readonly<{
179
- [name: string]: Slot<any> | undefined;
180
- }>;
181
- $root: ComponentPublicInstance | null;
182
- $parent: ComponentPublicInstance | null;
183
- $host: Element | null;
184
- $emit: ((event: "update:value", ...args: any[]) => void) & ((event: "update:visible", ...args: any[]) => void);
185
- $el: any;
186
- $options: ComponentOptionsBase<Readonly< ApFieldTextPasswordProps> & Readonly<{
187
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
188
- "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
189
- }>, {
190
- focus: () => void;
191
- blur: () => void;
192
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
193
- "update:value": (...args: any[]) => void;
194
- "update:visible": (...args: any[]) => void;
195
- }, string, {
196
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
197
- mode: FieldMode;
198
- visible: boolean;
199
- disabled: boolean;
200
- bordered: boolean;
201
- lazy: boolean;
202
- allowClear: boolean;
203
- emptyText: string;
204
- action: string;
205
- visibilityToggle: boolean;
206
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
207
- beforeCreate?: (() => void) | (() => void)[];
208
- created?: (() => void) | (() => void)[];
209
- beforeMount?: (() => void) | (() => void)[];
210
- mounted?: (() => void) | (() => void)[];
211
- beforeUpdate?: (() => void) | (() => void)[];
212
- updated?: (() => void) | (() => void)[];
213
- activated?: (() => void) | (() => void)[];
214
- deactivated?: (() => void) | (() => void)[];
215
- beforeDestroy?: (() => void) | (() => void)[];
216
- beforeUnmount?: (() => void) | (() => void)[];
217
- destroyed?: (() => void) | (() => void)[];
218
- unmounted?: (() => void) | (() => void)[];
219
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
220
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
221
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
222
- };
223
- $forceUpdate: () => void;
224
- $nextTick: nextTick;
225
- $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;
226
- } & Readonly<{
227
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
228
- mode: FieldMode;
229
- visible: boolean;
230
- disabled: boolean;
231
- bordered: boolean;
232
- lazy: boolean;
233
- allowClear: boolean;
234
- emptyText: string;
235
- action: string;
236
- visibilityToggle: boolean;
237
- }> & Omit<Readonly< ApFieldTextPasswordProps> & Readonly<{
238
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
239
- "onUpdate:visible"?: ((...args: any[]) => any) | undefined;
240
- }>, "blur" | "focus" | ("type" | "mode" | "visible" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText" | "action" | "visibilityToggle")> & ShallowUnwrapRef<{
241
- focus: () => void;
242
- blur: () => void;
243
- }> & {} & ComponentCustomProperties & {} & {
244
- $slots: Readonly<{
245
- addonAfter: any;
246
- addonBefore: any;
247
- prefix: any;
248
- suffix: any;
249
- clearIcon: any;
250
- iconRender: any;
251
- }> & {
252
- addonAfter: any;
253
- addonBefore: any;
254
- prefix: any;
255
- suffix: any;
256
- clearIcon: any;
257
- iconRender: any;
258
- };
259
- }) | null;
260
- }, any, ComponentProvideOptions, {
261
- P: {};
262
- B: {};
263
- D: {};
264
- C: {};
265
- M: {};
266
- Defaults: {};
267
- }, Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
268
- focus: () => void;
269
- blur: () => void;
270
- }, {}, {}, {}, {
271
- disabled: boolean;
272
- hasFeedback: boolean;
273
- colon: boolean;
274
- autoLink: boolean;
275
- required: boolean;
276
- validateFirst: boolean;
277
- field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
278
- }>;
279
- __isFragment?: never;
280
- __isTeleport?: never;
281
- __isSuspense?: never;
282
- } & ComponentOptionsBase<Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
283
- focus: () => void;
284
- blur: () => void;
285
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
286
- disabled: boolean;
287
- hasFeedback: boolean;
288
- colon: boolean;
289
- autoLink: boolean;
290
- required: boolean;
291
- validateFirst: boolean;
292
- field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
293
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
294
- $slots: Readonly<{
295
- addonAfter: any;
296
- addonBefore: any;
297
- prefix: any;
298
- suffix: any;
299
- clearIcon: any;
300
- iconRender: any;
301
- } & Omit< ApFormItemSlots, "default">> & {
302
- addonAfter: any;
303
- addonBefore: any;
304
- prefix: any;
305
- suffix: any;
306
- clearIcon: any;
307
- iconRender: any;
308
- } & Omit< ApFormItemSlots, "default">;
309
- })) | ({
310
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextProps> & Readonly<{}>, {
311
- focus: (options?: InputFocusOptions) => void;
312
- blur: () => void;
313
- input: any;
314
- setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
315
- select: () => void;
316
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
317
- disabled: boolean;
318
- hasFeedback: boolean;
319
- colon: boolean;
320
- autoLink: boolean;
321
- required: boolean;
322
- validateFirst: boolean;
323
- field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
324
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
325
- inputRef: ({
326
- $: ComponentInternalInstance;
327
- $data: {};
328
- $props: {
329
- readonly mode?: FieldMode | undefined;
330
- readonly class?: unknown;
331
- readonly style?: unknown;
332
- readonly type?: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password" | undefined;
333
- readonly lazy?: boolean | undefined;
334
- readonly size?: ButtonSize;
335
- readonly hidden?: boolean | undefined;
336
- readonly onBlur?: FocusEventHandler | undefined;
337
- readonly onChange?: ChangeEventHandler | undefined;
338
- readonly onCompositionend?: CompositionEventHandler | undefined;
339
- readonly onCompositionstart?: CompositionEventHandler | undefined;
340
- readonly onFocus?: FocusEventHandler | undefined;
341
- readonly onInput?: ChangeEventHandler | undefined;
342
- readonly onKeydown?: KeyboardEventHandler | undefined;
343
- readonly onKeyup?: KeyboardEventHandler | undefined;
344
- readonly onMousedown?: MouseEventHandler | undefined;
345
- readonly value?: string | number | undefined;
346
- readonly disabled?: boolean | undefined;
347
- readonly prefixCls?: string | undefined;
348
- readonly name?: string | undefined;
349
- readonly loading?: boolean | undefined;
350
- readonly autofocus?: boolean | undefined;
351
- readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
352
- readonly bordered?: boolean | undefined;
353
- readonly suffix?: any;
354
- readonly focused?: boolean | undefined;
355
- readonly handleReset?: MouseEventHandler | undefined;
356
- readonly placeholder?: string | number | undefined;
357
- readonly defaultValue?: string | number | undefined;
358
- readonly id?: string | undefined;
359
- readonly autocomplete?: string | undefined;
360
- readonly maxlength?: number | undefined;
361
- readonly showCount?: boolean | ShowCountProps | undefined;
362
- readonly htmlSize?: number | undefined;
363
- readonly onPressEnter?: KeyboardEventHandler | undefined;
364
- readonly onMouseUp?: MouseEventHandler | undefined;
365
- readonly onRawInput?: ChangeEventHandler | undefined;
366
- readonly valueModifiers?: Record<string, any> | undefined;
367
- readonly status?: "" | "error" | "warning" | undefined;
368
- readonly inputElement?: any;
369
- readonly triggerFocus?: (() => void) | undefined;
370
- readonly readonly?: boolean | undefined;
371
- readonly addonBefore?: any;
372
- readonly addonAfter?: any;
373
- readonly prefix?: any;
374
- readonly clearIcon?: any;
375
- readonly allowClear?: boolean | undefined;
376
- readonly emptyText?: string | undefined;
377
- readonly beforeInput?: ((nextVal: string) => string) | undefined;
378
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
379
- $attrs: {
380
- [x: string]: unknown;
381
- };
382
- $refs: {
383
- [x: string]: unknown;
384
- };
385
- $slots: Readonly<{
386
- [name: string]: Slot<any> | undefined;
387
- }>;
388
- $root: ComponentPublicInstance | null;
389
- $parent: ComponentPublicInstance | null;
390
- $host: Element | null;
391
- $emit: (event: "update:value", ...args: any[]) => void;
392
- $el: any;
393
- $options: ComponentOptionsBase<Readonly< ApFieldTextProps> & Readonly<{
394
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
395
- }>, {
396
- focus: (options?: InputFocusOptions) => void;
397
- blur: () => void;
398
- input: any;
399
- setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
400
- select: () => void;
401
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
402
- "update:value": (...args: any[]) => void;
403
- }, string, {
404
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
405
- mode: FieldMode;
406
- disabled: boolean;
407
- bordered: boolean;
408
- lazy: boolean;
409
- allowClear: boolean;
410
- emptyText: string;
411
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
412
- beforeCreate?: (() => void) | (() => void)[];
413
- created?: (() => void) | (() => void)[];
414
- beforeMount?: (() => void) | (() => void)[];
415
- mounted?: (() => void) | (() => void)[];
416
- beforeUpdate?: (() => void) | (() => void)[];
417
- updated?: (() => void) | (() => void)[];
418
- activated?: (() => void) | (() => void)[];
419
- deactivated?: (() => void) | (() => void)[];
420
- beforeDestroy?: (() => void) | (() => void)[];
421
- beforeUnmount?: (() => void) | (() => void)[];
422
- destroyed?: (() => void) | (() => void)[];
423
- unmounted?: (() => void) | (() => void)[];
424
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
425
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
426
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
427
- };
428
- $forceUpdate: () => void;
429
- $nextTick: nextTick;
430
- $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;
431
- } & Readonly<{
432
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
433
- mode: FieldMode;
434
- disabled: boolean;
435
- bordered: boolean;
436
- lazy: boolean;
437
- allowClear: boolean;
438
- emptyText: string;
439
- }> & Omit<Readonly< ApFieldTextProps> & Readonly<{
440
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
441
- }>, "blur" | "focus" | "input" | "select" | ("type" | "mode" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText") | "setSelectionRange"> & ShallowUnwrapRef<{
442
- focus: (options?: InputFocusOptions) => void;
443
- blur: () => void;
444
- input: any;
445
- setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
446
- select: () => void;
447
- }> & {} & ComponentCustomProperties & {} & {
448
- $slots: Readonly<{
449
- addonAfter?: any;
450
- addonBefore?: any;
451
- prefix?: any;
452
- suffix?: any;
453
- clearIcon?: any;
454
- }> & {
455
- addonAfter?: any;
456
- addonBefore?: any;
457
- prefix?: any;
458
- suffix?: any;
459
- clearIcon?: any;
460
- };
461
- }) | null;
462
- }, any, ComponentProvideOptions, {
463
- P: {};
464
- B: {};
465
- D: {};
466
- C: {};
467
- M: {};
468
- Defaults: {};
469
- }, Readonly< ApFormItemTextProps> & Readonly<{}>, {
470
- focus: (options?: InputFocusOptions) => void;
471
- blur: () => void;
472
- input: any;
473
- setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
474
- select: () => void;
475
- }, {}, {}, {}, {
476
- disabled: boolean;
477
- hasFeedback: boolean;
478
- colon: boolean;
479
- autoLink: boolean;
480
- required: boolean;
481
- validateFirst: boolean;
482
- field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
483
- }>;
484
- __isFragment?: never;
485
- __isTeleport?: never;
486
- __isSuspense?: never;
487
- } & ComponentOptionsBase<Readonly< ApFormItemTextProps> & Readonly<{}>, {
488
- focus: (options?: InputFocusOptions) => void;
489
- blur: () => void;
490
- input: any;
491
- setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
492
- select: () => void;
493
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
494
- disabled: boolean;
495
- hasFeedback: boolean;
496
- colon: boolean;
497
- autoLink: boolean;
498
- required: boolean;
499
- validateFirst: boolean;
500
- field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
501
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
502
- $slots: Readonly<{
503
- addonAfter: any;
504
- addonBefore: any;
505
- prefix: any;
506
- suffix: any;
507
- clearIcon: any;
508
- } & Omit< ApFormItemSlots, "default">> & {
509
- addonAfter: any;
510
- addonBefore: any;
511
- prefix: any;
512
- suffix: any;
513
- clearIcon: any;
514
- } & Omit< ApFormItemSlots, "default">;
515
- }) & {
516
- Password: ApFormItemTextPassword;
517
- Group: ApFormItemTextGroup;
518
- }) | ({
519
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
520
- focus: (options?: InputFocusOptions) => void;
521
- blur: () => void;
522
- resizableTextArea: any;
523
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
524
- disabled: boolean;
525
- hasFeedback: boolean;
526
- colon: boolean;
527
- autoLink: boolean;
528
- required: boolean;
529
- validateFirst: boolean;
530
- field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
531
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
532
- textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldTextAreaProps> & Readonly<{
533
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
534
- }>, {
535
- focus: (options?: InputFocusOptions) => void;
536
- blur: () => void;
537
- resizableTextArea: any;
538
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
539
- "update:value": (...args: any[]) => void;
540
- }, PublicProps, {
541
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
542
- mode: FieldMode;
543
- disabled: boolean;
544
- bordered: boolean;
545
- lazy: boolean;
546
- allowClear: boolean;
547
- emptyText: string;
548
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
549
- textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
550
- rows: NumberConstructor;
551
- autosize: {
552
- type: PropType<boolean | AutoSizeType>;
553
- default: any;
554
- };
555
- autoSize: {
556
- type: PropType<boolean | AutoSizeType>;
557
- default: any;
558
- };
559
- onResize: {
560
- type: PropType<(size: {
561
- width: number;
562
- height: number;
563
- }) => void>;
564
- };
565
- onCompositionstart: {
566
- type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
567
- };
568
- onCompositionend: {
569
- type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
570
- };
571
- valueModifiers: ObjectConstructor;
572
- size: {
573
- type: PropType<SizeType>;
574
- };
575
- value: {
576
- type: PropType<string | number>;
577
- default: any;
578
- };
579
- name: StringConstructor;
580
- type: {
581
- type: PropType<"number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel">;
582
- default: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
583
- };
584
- onFocus: PropType<FocusEventHandler>;
585
- onBlur: PropType<FocusEventHandler>;
586
- onChange: PropType<ChangeEventHandler>;
587
- onInput: PropType<ChangeEventHandler>;
588
- onKeydown: PropType<KeyboardEventHandler>;
589
- onKeyup: PropType<KeyboardEventHandler>;
590
- onMousedown: {
591
- type: PropType<MouseEventHandler>;
592
- default: any;
593
- };
594
- focused: {
595
- type: BooleanConstructor;
596
- default: any;
597
- };
598
- hidden: {
599
- type: BooleanConstructor;
600
- default: any;
601
- };
602
- disabled: {
603
- type: BooleanConstructor;
604
- default: any;
605
- };
606
- prefixCls: StringConstructor;
607
- id: StringConstructor;
608
- autofocus: {
609
- type: BooleanConstructor;
610
- default: any;
611
- };
612
- autocomplete: StringConstructor;
613
- readonly: {
614
- type: BooleanConstructor;
615
- default: any;
616
- };
617
- status: PropType<"" | "error" | "warning">;
618
- defaultValue: {
619
- type: PropType<string | number>;
620
- default: any;
621
- };
622
- 'onUpdate:value': PropType<(val: string) => void>;
623
- loading: {
624
- type: BooleanConstructor;
625
- default: any;
626
- };
627
- placeholder: {
628
- type: PropType<string | number>;
629
- };
630
- lazy: {
631
- type: BooleanConstructor;
632
- default: boolean;
633
- };
634
- maxlength: NumberConstructor;
635
- bordered: {
636
- type: BooleanConstructor;
637
- default: any;
638
- };
639
- showCount: {
640
- type: PropType<boolean | ShowCountProps>;
641
- };
642
- htmlSize: NumberConstructor;
643
- onPressEnter: PropType<KeyboardEventHandler>;
644
- onMouseUp: {
645
- type: PropType<MouseEventHandler>;
646
- default: any;
647
- };
648
- onRawInput: PropType<ChangeEventHandler>;
649
- inputElement: VueTypeValidableDef<any>;
650
- triggerFocus: PropType<() => void>;
651
- handleReset: PropType<MouseEventHandler>;
652
- clearIcon: VueTypeValidableDef<any>;
653
- allowClear: {
654
- type: BooleanConstructor;
655
- default: any;
656
- };
657
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
658
- value: string | number;
659
- type: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
660
- onMousedown: MouseEventHandler;
661
- focused: boolean;
662
- hidden: boolean;
663
- disabled: boolean;
664
- autofocus: boolean;
665
- readonly: boolean;
666
- defaultValue: string | number;
667
- loading: boolean;
668
- lazy: boolean;
669
- bordered: boolean;
670
- onMouseUp: MouseEventHandler;
671
- allowClear: boolean;
672
- autosize: any;
673
- autoSize: any;
674
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
675
- P: {};
676
- B: {};
677
- D: {};
678
- C: {};
679
- M: {};
680
- Defaults: {};
681
- }, Readonly< ExtractPropTypes<{
682
- rows: NumberConstructor;
683
- autosize: {
684
- type: PropType<boolean | AutoSizeType>;
685
- default: any;
686
- };
687
- autoSize: {
688
- type: PropType<boolean | AutoSizeType>;
689
- default: any;
690
- };
691
- onResize: {
692
- type: PropType<(size: {
693
- width: number;
694
- height: number;
695
- }) => void>;
696
- };
697
- onCompositionstart: {
698
- type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
699
- };
700
- onCompositionend: {
701
- type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
702
- };
703
- valueModifiers: ObjectConstructor;
704
- size: {
705
- type: PropType<SizeType>;
706
- };
707
- value: {
708
- type: PropType<string | number>;
709
- default: any;
710
- };
711
- name: StringConstructor;
712
- type: {
713
- type: PropType<"number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel">;
714
- default: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
715
- };
716
- onFocus: PropType<FocusEventHandler>;
717
- onBlur: PropType<FocusEventHandler>;
718
- onChange: PropType<ChangeEventHandler>;
719
- onInput: PropType<ChangeEventHandler>;
720
- onKeydown: PropType<KeyboardEventHandler>;
721
- onKeyup: PropType<KeyboardEventHandler>;
722
- onMousedown: {
723
- type: PropType<MouseEventHandler>;
724
- default: any;
725
- };
726
- focused: {
727
- type: BooleanConstructor;
728
- default: any;
729
- };
730
- hidden: {
731
- type: BooleanConstructor;
732
- default: any;
733
- };
734
- disabled: {
735
- type: BooleanConstructor;
736
- default: any;
737
- };
738
- prefixCls: StringConstructor;
739
- id: StringConstructor;
740
- autofocus: {
741
- type: BooleanConstructor;
742
- default: any;
743
- };
744
- autocomplete: StringConstructor;
745
- readonly: {
746
- type: BooleanConstructor;
747
- default: any;
748
- };
749
- status: PropType<"" | "error" | "warning">;
750
- defaultValue: {
751
- type: PropType<string | number>;
752
- default: any;
753
- };
754
- 'onUpdate:value': PropType<(val: string) => void>;
755
- loading: {
756
- type: BooleanConstructor;
757
- default: any;
758
- };
759
- placeholder: {
760
- type: PropType<string | number>;
761
- };
762
- lazy: {
763
- type: BooleanConstructor;
764
- default: boolean;
765
- };
766
- maxlength: NumberConstructor;
767
- bordered: {
768
- type: BooleanConstructor;
769
- default: any;
770
- };
771
- showCount: {
772
- type: PropType<boolean | ShowCountProps>;
773
- };
774
- htmlSize: NumberConstructor;
775
- onPressEnter: PropType<KeyboardEventHandler>;
776
- onMouseUp: {
777
- type: PropType<MouseEventHandler>;
778
- default: any;
779
- };
780
- onRawInput: PropType<ChangeEventHandler>;
781
- inputElement: VueTypeValidableDef<any>;
782
- triggerFocus: PropType<() => void>;
783
- handleReset: PropType<MouseEventHandler>;
784
- clearIcon: VueTypeValidableDef<any>;
785
- allowClear: {
786
- type: BooleanConstructor;
787
- default: any;
788
- };
789
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
790
- value: string | number;
791
- type: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
792
- onMousedown: MouseEventHandler;
793
- focused: boolean;
794
- hidden: boolean;
795
- disabled: boolean;
796
- autofocus: boolean;
797
- readonly: boolean;
798
- defaultValue: string | number;
799
- loading: boolean;
800
- lazy: boolean;
801
- bordered: boolean;
802
- onMouseUp: MouseEventHandler;
803
- allowClear: boolean;
804
- autosize: any;
805
- autoSize: any;
806
- }> | null;
807
- }, any, ComponentProvideOptions, {
808
- P: {};
809
- B: {};
810
- D: {};
811
- C: {};
812
- M: {};
813
- Defaults: {};
814
- }, Readonly< ApFieldTextAreaProps> & Readonly<{
815
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
816
- }>, {
817
- focus: (options?: InputFocusOptions) => void;
818
- blur: () => void;
819
- resizableTextArea: any;
820
- }, {}, {}, {}, {
821
- type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
822
- mode: FieldMode;
823
- disabled: boolean;
824
- bordered: boolean;
825
- lazy: boolean;
826
- allowClear: boolean;
827
- emptyText: string;
828
- }> | null;
829
- }, any, ComponentProvideOptions, {
830
- P: {};
831
- B: {};
832
- D: {};
833
- C: {};
834
- M: {};
835
- Defaults: {};
836
- }, Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
837
- focus: (options?: InputFocusOptions) => void;
838
- blur: () => void;
839
- resizableTextArea: any;
840
- }, {}, {}, {}, {
841
- disabled: boolean;
842
- hasFeedback: boolean;
843
- colon: boolean;
844
- autoLink: boolean;
845
- required: boolean;
846
- validateFirst: boolean;
847
- field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
848
- }>;
849
- __isFragment?: never;
850
- __isTeleport?: never;
851
- __isSuspense?: never;
852
- } & ComponentOptionsBase<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
853
- focus: (options?: InputFocusOptions) => void;
854
- blur: () => void;
855
- resizableTextArea: any;
856
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
857
- disabled: boolean;
858
- hasFeedback: boolean;
859
- colon: boolean;
860
- autoLink: boolean;
861
- required: boolean;
862
- validateFirst: boolean;
863
- field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
864
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
865
- $slots: Readonly<{
866
- label?: any;
867
- help?: any;
868
- extra?: any;
869
- }> & {
870
- label?: any;
871
- help?: any;
872
- extra?: any;
873
- };
874
- })) | ({
875
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemNumberProps> & Readonly<{}>, {
876
- focus: () => void;
877
- blur: () => void;
878
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
879
- disabled: boolean;
880
- hasFeedback: boolean;
881
- colon: boolean;
882
- autoLink: boolean;
883
- required: boolean;
884
- validateFirst: boolean;
885
- field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
886
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
887
- inputNumberRef: ({
888
- $: ComponentInternalInstance;
889
- $data: {};
890
- $props: {
891
- readonly mode?: FieldMode | undefined;
892
- readonly class?: unknown;
893
- readonly style?: unknown;
894
- readonly size?: ButtonSize;
895
- readonly step?: ValueType | undefined;
896
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
897
- readonly onChange?: ((value: ValueType) => void) | undefined;
898
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
899
- readonly onInput?: ((text: string) => void) | undefined;
900
- readonly value?: ValueType | undefined;
901
- readonly disabled?: boolean | undefined;
902
- readonly prefixCls?: string | undefined;
903
- readonly keyboard?: boolean | undefined;
904
- readonly autofocus?: boolean | undefined;
905
- readonly 'onUpdate:value'?: (((value: ValueType) => void) & ((...args: any[]) => any)) | undefined;
906
- readonly bordered?: boolean | undefined;
907
- readonly max?: ValueType | undefined;
908
- readonly min?: ValueType | undefined;
909
- readonly defaultValue?: ValueType | undefined;
910
- readonly onPressEnter?: KeyboardEventHandler | undefined;
911
- readonly status?: "" | "error" | "warning" | undefined;
912
- readonly readonly?: boolean | undefined;
913
- readonly stringMode?: boolean | undefined;
914
- readonly controls?: boolean | undefined;
915
- readonly parser?: ((displayValue: string) => ValueType) | undefined;
916
- readonly formatter?: ((value: ValueType, info: {
917
- userTyping: boolean;
918
- input: string;
919
- }) => string) | undefined;
920
- readonly onStep?: ((value: ValueType, info: {
921
- offset: ValueType;
922
- type: "up" | "down";
923
- }) => void) | undefined;
924
- readonly type?: string | undefined;
925
- readonly name?: string | undefined;
926
- readonly suffix?: any;
927
- readonly placeholder?: string | undefined;
928
- readonly id?: string | undefined;
929
- readonly valueModifiers?: Record<string, any> | undefined;
930
- readonly addonBefore?: any;
931
- readonly addonAfter?: any;
932
- readonly prefix?: any;
933
- readonly tabindex?: number | undefined;
934
- readonly precision?: number | undefined;
935
- readonly decimalSeparator?: string | undefined;
936
- readonly emptyText?: string | undefined;
937
- readonly thousands?: boolean | undefined;
938
- readonly limitDecimalsRetain?: boolean | undefined;
939
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
940
- $attrs: {
941
- [x: string]: unknown;
942
- };
943
- $refs: {
944
- [x: string]: unknown;
945
- } & {
946
- inputRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
947
- size: {
948
- type: PropType<ButtonSize>;
949
- default: ButtonSize;
950
- };
951
- bordered: {
952
- type: BooleanConstructor;
953
- default: boolean;
954
- };
955
- placeholder: StringConstructor;
956
- name: StringConstructor;
957
- id: StringConstructor;
958
- type: StringConstructor;
959
- addonBefore: VueTypeValidableDef<any>;
960
- addonAfter: VueTypeValidableDef<any>;
961
- prefix: VueTypeValidableDef<any>;
962
- suffix: VueTypeValidableDef<any>;
963
- 'onUpdate:value': {
964
- type: PropType<(value: ValueType) => void>;
965
- default: (value: ValueType) => void;
966
- };
967
- valueModifiers: ObjectConstructor;
968
- status: {
969
- type: PropType<"" | "error" | "warning">;
970
- default: "" | "error" | "warning";
971
- };
972
- stringMode: {
973
- type: BooleanConstructor;
974
- default: boolean;
975
- };
976
- defaultValue: {
977
- type: PropType<ValueType>;
978
- default: ValueType;
979
- };
980
- value: {
981
- type: PropType<ValueType>;
982
- default: ValueType;
983
- };
984
- prefixCls: {
985
- type: PropType<string>;
986
- default: string;
987
- };
988
- min: {
989
- type: PropType<ValueType>;
990
- default: ValueType;
991
- };
992
- max: {
993
- type: PropType<ValueType>;
994
- default: ValueType;
995
- };
996
- step: {
997
- type: PropType<ValueType>;
998
- default: ValueType;
999
- };
1000
- tabindex: NumberConstructor;
1001
- controls: {
1002
- type: BooleanConstructor;
1003
- default: boolean;
1004
- };
1005
- readonly: {
1006
- type: BooleanConstructor;
1007
- default: boolean;
1008
- };
1009
- disabled: {
1010
- type: BooleanConstructor;
1011
- default: boolean;
1012
- };
1013
- autofocus: {
1014
- type: BooleanConstructor;
1015
- default: boolean;
1016
- };
1017
- keyboard: {
1018
- type: BooleanConstructor;
1019
- default: boolean;
1020
- };
1021
- parser: {
1022
- type: PropType<(displayValue: string) => ValueType>;
1023
- default: (displayValue: string) => ValueType;
1024
- };
1025
- formatter: {
1026
- type: PropType<(value: ValueType, info: {
1027
- userTyping: boolean;
1028
- input: string;
1029
- }) => string>;
1030
- default: (value: ValueType, info: {
1031
- userTyping: boolean;
1032
- input: string;
1033
- }) => string;
1034
- };
1035
- precision: NumberConstructor;
1036
- decimalSeparator: StringConstructor;
1037
- onInput: {
1038
- type: PropType<(text: string) => void>;
1039
- default: (text: string) => void;
1040
- };
1041
- onChange: {
1042
- type: PropType<(value: ValueType) => void>;
1043
- default: (value: ValueType) => void;
1044
- };
1045
- onPressEnter: {
1046
- type: PropType<KeyboardEventHandler>;
1047
- default: KeyboardEventHandler;
1048
- };
1049
- onStep: {
1050
- type: PropType<(value: ValueType, info: {
1051
- offset: ValueType;
1052
- type: "up" | "down";
1053
- }) => void>;
1054
- default: (value: ValueType, info: {
1055
- offset: ValueType;
1056
- type: "up" | "down";
1057
- }) => void;
1058
- };
1059
- onBlur: {
1060
- type: PropType<(e: FocusEvent) => void>;
1061
- default: (e: FocusEvent) => void;
1062
- };
1063
- onFocus: {
1064
- type: PropType<(e: FocusEvent) => void>;
1065
- default: (e: FocusEvent) => void;
1066
- };
1067
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1068
- size: ButtonSize;
1069
- value: ValueType;
1070
- onFocus: (e: FocusEvent) => void;
1071
- onBlur: (e: FocusEvent) => void;
1072
- onChange: (value: ValueType) => void;
1073
- onInput: (text: string) => void;
1074
- disabled: boolean;
1075
- max: ValueType;
1076
- min: ValueType;
1077
- prefixCls: string;
1078
- autofocus: boolean;
1079
- readonly: boolean;
1080
- status: "" | "error" | "warning";
1081
- defaultValue: ValueType;
1082
- 'onUpdate:value': (value: ValueType) => void;
1083
- step: ValueType;
1084
- bordered: boolean;
1085
- onPressEnter: KeyboardEventHandler;
1086
- formatter: (value: ValueType, info: {
1087
- userTyping: boolean;
1088
- input: string;
1089
- }) => string;
1090
- keyboard: boolean;
1091
- onStep: (value: ValueType, info: {
1092
- offset: ValueType;
1093
- type: "up" | "down";
1094
- }) => void;
1095
- stringMode: boolean;
1096
- controls: boolean;
1097
- parser: (displayValue: string) => ValueType;
1098
- }, true, {}, CustomSlotsType<{
1099
- addonBefore?: any;
1100
- addonAfter?: any;
1101
- prefix?: any;
1102
- suffix?: any;
1103
- default?: any;
1104
- upIcon?: any;
1105
- downIcon?: any;
1106
- }>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1107
- P: {};
1108
- B: {};
1109
- D: {};
1110
- C: {};
1111
- M: {};
1112
- Defaults: {};
1113
- }, Readonly< ExtractPropTypes<{
1114
- size: {
1115
- type: PropType<ButtonSize>;
1116
- default: ButtonSize;
1117
- };
1118
- bordered: {
1119
- type: BooleanConstructor;
1120
- default: boolean;
1121
- };
1122
- placeholder: StringConstructor;
1123
- name: StringConstructor;
1124
- id: StringConstructor;
1125
- type: StringConstructor;
1126
- addonBefore: VueTypeValidableDef<any>;
1127
- addonAfter: VueTypeValidableDef<any>;
1128
- prefix: VueTypeValidableDef<any>;
1129
- suffix: VueTypeValidableDef<any>;
1130
- 'onUpdate:value': {
1131
- type: PropType<(value: ValueType) => void>;
1132
- default: (value: ValueType) => void;
1133
- };
1134
- valueModifiers: ObjectConstructor;
1135
- status: {
1136
- type: PropType<"" | "error" | "warning">;
1137
- default: "" | "error" | "warning";
1138
- };
1139
- stringMode: {
1140
- type: BooleanConstructor;
1141
- default: boolean;
1142
- };
1143
- defaultValue: {
1144
- type: PropType<ValueType>;
1145
- default: ValueType;
1146
- };
1147
- value: {
1148
- type: PropType<ValueType>;
1149
- default: ValueType;
1150
- };
1151
- prefixCls: {
1152
- type: PropType<string>;
1153
- default: string;
1154
- };
1155
- min: {
1156
- type: PropType<ValueType>;
1157
- default: ValueType;
1158
- };
1159
- max: {
1160
- type: PropType<ValueType>;
1161
- default: ValueType;
1162
- };
1163
- step: {
1164
- type: PropType<ValueType>;
1165
- default: ValueType;
1166
- };
1167
- tabindex: NumberConstructor;
1168
- controls: {
1169
- type: BooleanConstructor;
1170
- default: boolean;
1171
- };
1172
- readonly: {
1173
- type: BooleanConstructor;
1174
- default: boolean;
1175
- };
1176
- disabled: {
1177
- type: BooleanConstructor;
1178
- default: boolean;
1179
- };
1180
- autofocus: {
1181
- type: BooleanConstructor;
1182
- default: boolean;
1183
- };
1184
- keyboard: {
1185
- type: BooleanConstructor;
1186
- default: boolean;
1187
- };
1188
- parser: {
1189
- type: PropType<(displayValue: string) => ValueType>;
1190
- default: (displayValue: string) => ValueType;
1191
- };
1192
- formatter: {
1193
- type: PropType<(value: ValueType, info: {
1194
- userTyping: boolean;
1195
- input: string;
1196
- }) => string>;
1197
- default: (value: ValueType, info: {
1198
- userTyping: boolean;
1199
- input: string;
1200
- }) => string;
1201
- };
1202
- precision: NumberConstructor;
1203
- decimalSeparator: StringConstructor;
1204
- onInput: {
1205
- type: PropType<(text: string) => void>;
1206
- default: (text: string) => void;
1207
- };
1208
- onChange: {
1209
- type: PropType<(value: ValueType) => void>;
1210
- default: (value: ValueType) => void;
1211
- };
1212
- onPressEnter: {
1213
- type: PropType<KeyboardEventHandler>;
1214
- default: KeyboardEventHandler;
1215
- };
1216
- onStep: {
1217
- type: PropType<(value: ValueType, info: {
1218
- offset: ValueType;
1219
- type: "up" | "down";
1220
- }) => void>;
1221
- default: (value: ValueType, info: {
1222
- offset: ValueType;
1223
- type: "up" | "down";
1224
- }) => void;
1225
- };
1226
- onBlur: {
1227
- type: PropType<(e: FocusEvent) => void>;
1228
- default: (e: FocusEvent) => void;
1229
- };
1230
- onFocus: {
1231
- type: PropType<(e: FocusEvent) => void>;
1232
- default: (e: FocusEvent) => void;
1233
- };
1234
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
1235
- size: ButtonSize;
1236
- value: ValueType;
1237
- onFocus: (e: FocusEvent) => void;
1238
- onBlur: (e: FocusEvent) => void;
1239
- onChange: (value: ValueType) => void;
1240
- onInput: (text: string) => void;
1241
- disabled: boolean;
1242
- max: ValueType;
1243
- min: ValueType;
1244
- prefixCls: string;
1245
- autofocus: boolean;
1246
- readonly: boolean;
1247
- status: "" | "error" | "warning";
1248
- defaultValue: ValueType;
1249
- 'onUpdate:value': (value: ValueType) => void;
1250
- step: ValueType;
1251
- bordered: boolean;
1252
- onPressEnter: KeyboardEventHandler;
1253
- formatter: (value: ValueType, info: {
1254
- userTyping: boolean;
1255
- input: string;
1256
- }) => string;
1257
- keyboard: boolean;
1258
- onStep: (value: ValueType, info: {
1259
- offset: ValueType;
1260
- type: "up" | "down";
1261
- }) => void;
1262
- stringMode: boolean;
1263
- controls: boolean;
1264
- parser: (displayValue: string) => ValueType;
1265
- }> | null;
1266
- };
1267
- $slots: Readonly<{
1268
- [name: string]: Slot<any> | undefined;
1269
- }>;
1270
- $root: ComponentPublicInstance | null;
1271
- $parent: ComponentPublicInstance | null;
1272
- $host: Element | null;
1273
- $emit: (event: "update:value", ...args: any[]) => void;
1274
- $el: any;
1275
- $options: ComponentOptionsBase<Readonly< ApFieldNumberProps> & Readonly<{
1276
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
1277
- }>, {
1278
- focus: () => void;
1279
- blur: () => void;
1280
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1281
- "update:value": (...args: any[]) => void;
1282
- }, string, {
1283
- step: ValueType;
1284
- disabled: boolean;
1285
- keyboard: boolean;
1286
- bordered: boolean;
1287
- max: ValueType;
1288
- min: ValueType;
1289
- controls: boolean;
1290
- emptyText: string;
1291
- thousands: boolean;
1292
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
1293
- beforeCreate?: (() => void) | (() => void)[];
1294
- created?: (() => void) | (() => void)[];
1295
- beforeMount?: (() => void) | (() => void)[];
1296
- mounted?: (() => void) | (() => void)[];
1297
- beforeUpdate?: (() => void) | (() => void)[];
1298
- updated?: (() => void) | (() => void)[];
1299
- activated?: (() => void) | (() => void)[];
1300
- deactivated?: (() => void) | (() => void)[];
1301
- beforeDestroy?: (() => void) | (() => void)[];
1302
- beforeUnmount?: (() => void) | (() => void)[];
1303
- destroyed?: (() => void) | (() => void)[];
1304
- unmounted?: (() => void) | (() => void)[];
1305
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1306
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
1307
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
1308
- };
1309
- $forceUpdate: () => void;
1310
- $nextTick: nextTick;
1311
- $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;
1312
- } & Readonly<{
1313
- step: ValueType;
1314
- disabled: boolean;
1315
- keyboard: boolean;
1316
- bordered: boolean;
1317
- max: ValueType;
1318
- min: ValueType;
1319
- controls: boolean;
1320
- emptyText: string;
1321
- thousands: boolean;
1322
- }> & Omit<Readonly< ApFieldNumberProps> & Readonly<{
1323
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
1324
- }>, "blur" | "focus" | ("step" | "disabled" | "keyboard" | "bordered" | "max" | "min" | "controls" | "emptyText" | "thousands")> & ShallowUnwrapRef<{
1325
- focus: () => void;
1326
- blur: () => void;
1327
- }> & {} & ComponentCustomProperties & {} & {
1328
- $slots: Readonly<{
1329
- addonBefore?: any;
1330
- addonAfter?: any;
1331
- prefix?: any;
1332
- default?: any;
1333
- upIcon?: any;
1334
- downIcon?: any;
1335
- }> & {
1336
- addonBefore?: any;
1337
- addonAfter?: any;
1338
- prefix?: any;
1339
- default?: any;
1340
- upIcon?: any;
1341
- downIcon?: any;
1342
- };
1343
- }) | null;
1344
- }, any, ComponentProvideOptions, {
1345
- P: {};
1346
- B: {};
1347
- D: {};
1348
- C: {};
1349
- M: {};
1350
- Defaults: {};
1351
- }, Readonly< ApFormItemNumberProps> & Readonly<{}>, {
1352
- focus: () => void;
1353
- blur: () => void;
1354
- }, {}, {}, {}, {
1355
- disabled: boolean;
1356
- hasFeedback: boolean;
1357
- colon: boolean;
1358
- autoLink: boolean;
1359
- required: boolean;
1360
- validateFirst: boolean;
1361
- field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
1362
- }>;
1363
- __isFragment?: never;
1364
- __isTeleport?: never;
1365
- __isSuspense?: never;
1366
- } & ComponentOptionsBase<Readonly< ApFormItemNumberProps> & Readonly<{}>, {
1367
- focus: () => void;
1368
- blur: () => void;
1369
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1370
- disabled: boolean;
1371
- hasFeedback: boolean;
1372
- colon: boolean;
1373
- autoLink: boolean;
1374
- required: boolean;
1375
- validateFirst: boolean;
1376
- field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
1377
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1378
- $slots: Readonly<{
1379
- addonBefore?: any;
1380
- addonAfter?: any;
1381
- prefix?: any;
1382
- default?: any;
1383
- upIcon?: any;
1384
- downIcon?: any;
1385
- } & Omit< ApFormItemSlots, "default">> & {
1386
- addonBefore?: any;
1387
- addonAfter?: any;
1388
- prefix?: any;
1389
- default?: any;
1390
- upIcon?: any;
1391
- downIcon?: any;
1392
- } & Omit< ApFormItemSlots, "default">;
1393
- })) | ({
1394
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1395
- disabled: boolean;
1396
- hasFeedback: boolean;
1397
- colon: boolean;
1398
- autoLink: boolean;
1399
- required: boolean;
1400
- validateFirst: boolean;
1401
- field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
1402
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1403
- P: {};
1404
- B: {};
1405
- D: {};
1406
- C: {};
1407
- M: {};
1408
- Defaults: {};
1409
- }, Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, {
1410
- disabled: boolean;
1411
- hasFeedback: boolean;
1412
- colon: boolean;
1413
- autoLink: boolean;
1414
- required: boolean;
1415
- validateFirst: boolean;
1416
- field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
1417
- }>;
1418
- __isFragment?: never;
1419
- __isTeleport?: never;
1420
- __isSuspense?: never;
1421
- } & ComponentOptionsBase<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1422
- disabled: boolean;
1423
- hasFeedback: boolean;
1424
- colon: boolean;
1425
- autoLink: boolean;
1426
- required: boolean;
1427
- validateFirst: boolean;
1428
- field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
1429
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1430
- $slots: Readonly<{
1431
- dateRender: any;
1432
- suffixIcon?: any;
1433
- prevIcon?: any;
1434
- nextIcon?: any;
1435
- superPrevIcon?: any;
1436
- superNextIcon?: any;
1437
- renderExtraFooter?: any;
1438
- monthCellRender?: any;
1439
- monthCellContentRender?: any;
1440
- clearIcon?: any;
1441
- default?: any;
1442
- } & Omit< ApFormItemSlots, "default">> & {
1443
- dateRender: any;
1444
- suffixIcon?: any;
1445
- prevIcon?: any;
1446
- nextIcon?: any;
1447
- superPrevIcon?: any;
1448
- superNextIcon?: any;
1449
- renderExtraFooter?: any;
1450
- monthCellRender?: any;
1451
- monthCellContentRender?: any;
1452
- clearIcon?: any;
1453
- default?: any;
1454
- } & Omit< ApFormItemSlots, "default">;
1455
- })) | ({
1456
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1457
- disabled: boolean;
1458
- hasFeedback: boolean;
1459
- colon: boolean;
1460
- autoLink: boolean;
1461
- required: boolean;
1462
- validateFirst: boolean;
1463
- field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
1464
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1465
- P: {};
1466
- B: {};
1467
- D: {};
1468
- C: {};
1469
- M: {};
1470
- Defaults: {};
1471
- }, Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, {
1472
- disabled: boolean;
1473
- hasFeedback: boolean;
1474
- colon: boolean;
1475
- autoLink: boolean;
1476
- required: boolean;
1477
- validateFirst: boolean;
1478
- field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
1479
- }>;
1480
- __isFragment?: never;
1481
- __isTeleport?: never;
1482
- __isSuspense?: never;
1483
- } & ComponentOptionsBase<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1484
- disabled: boolean;
1485
- hasFeedback: boolean;
1486
- colon: boolean;
1487
- autoLink: boolean;
1488
- required: boolean;
1489
- validateFirst: boolean;
1490
- field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
1491
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1492
- $slots: Readonly<{
1493
- suffixIcon?: any;
1494
- prevIcon?: any;
1495
- nextIcon?: any;
1496
- superPrevIcon?: any;
1497
- superNextIcon?: any;
1498
- dateRender?: any;
1499
- renderExtraFooter?: any;
1500
- default?: any;
1501
- separator?: any;
1502
- clearIcon?: any;
1503
- } & Omit< ApFormItemSlots, "default">> & {
1504
- suffixIcon?: any;
1505
- prevIcon?: any;
1506
- nextIcon?: any;
1507
- superPrevIcon?: any;
1508
- superNextIcon?: any;
1509
- dateRender?: any;
1510
- renderExtraFooter?: any;
1511
- default?: any;
1512
- separator?: any;
1513
- clearIcon?: any;
1514
- } & Omit< ApFormItemSlots, "default">;
1515
- })) | ({
1516
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemRadioProps> & Readonly<{}>, {
1517
- focus: () => void;
1518
- blur: () => void;
1519
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1520
- disabled: boolean;
1521
- hasFeedback: boolean;
1522
- colon: boolean;
1523
- autoLink: boolean;
1524
- required: boolean;
1525
- validateFirst: boolean;
1526
- field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
1527
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
1528
- radioRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldRadioProps> & Readonly<{
1529
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
1530
- }>, {
1531
- focus: () => void;
1532
- blur: () => void;
1533
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
1534
- "update:value": (...args: any[]) => void;
1535
- }, PublicProps, {
1536
- mode: FieldMode;
1537
- vertical: boolean;
1538
- disabled: boolean;
1539
- emptyText: string;
1540
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
1541
- radioGroupRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
1542
- prefixCls: StringConstructor;
1543
- value: VueTypeValidableDef<any>;
1544
- size: {
1545
- type: PropType<"default" | "small" | "large">;
1546
- default: "default" | "small" | "large";
1547
- };
1548
- options: {
1549
- type: PropType<(string | number | RadioGroupChildOption)[]>;
1550
- default: (string | number | RadioGroupChildOption)[];
1551
- };
1552
- disabled: {
1553
- type: BooleanConstructor;
1554
- default: boolean;
1555
- };
1556
- name: StringConstructor;
1557
- buttonStyle: {
1558
- type: PropType<RadioGroupButtonStyle>;
1559
- default: RadioGroupButtonStyle;
1560
- };
1561
- id: StringConstructor;
1562
- optionType: {
1563
- type: PropType<RadioGroupOptionType>;
1564
- default: RadioGroupOptionType;
1565
- };
1566
- onChange: {
1567
- type: PropType<(e: RadioChangeEvent) => void>;
1568
- default: (e: RadioChangeEvent) => void;
1569
- };
1570
- 'onUpdate:value': {
1571
- type: PropType<(val: any) => void>;
1572
- default: (val: any) => void;
1573
- };
1574
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1575
- size: "default" | "small" | "large";
1576
- onChange: (e: RadioChangeEvent) => void;
1577
- disabled: boolean;
1578
- 'onUpdate:value': (val: any) => void;
1579
- options: (string | number | RadioGroupChildOption)[];
1580
- buttonStyle: RadioGroupButtonStyle;
1581
- optionType: RadioGroupOptionType;
1582
- }, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
1583
- P: {};
1584
- B: {};
1585
- D: {};
1586
- C: {};
1587
- M: {};
1588
- Defaults: {};
1589
- }, Readonly< ExtractPropTypes<{
1590
- prefixCls: StringConstructor;
1591
- value: VueTypeValidableDef<any>;
1592
- size: {
1593
- type: PropType<"default" | "small" | "large">;
1594
- default: "default" | "small" | "large";
1595
- };
1596
- options: {
1597
- type: PropType<(string | number | RadioGroupChildOption)[]>;
1598
- default: (string | number | RadioGroupChildOption)[];
1599
- };
1600
- disabled: {
1601
- type: BooleanConstructor;
1602
- default: boolean;
1603
- };
1604
- name: StringConstructor;
1605
- buttonStyle: {
1606
- type: PropType<RadioGroupButtonStyle>;
1607
- default: RadioGroupButtonStyle;
1608
- };
1609
- id: StringConstructor;
1610
- optionType: {
1611
- type: PropType<RadioGroupOptionType>;
1612
- default: RadioGroupOptionType;
1613
- };
1614
- onChange: {
1615
- type: PropType<(e: RadioChangeEvent) => void>;
1616
- default: (e: RadioChangeEvent) => void;
1617
- };
1618
- 'onUpdate:value': {
1619
- type: PropType<(val: any) => void>;
1620
- default: (val: any) => void;
1621
- };
1622
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
1623
- size: "default" | "small" | "large";
1624
- onChange: (e: RadioChangeEvent) => void;
1625
- disabled: boolean;
1626
- 'onUpdate:value': (val: any) => void;
1627
- options: (string | number | RadioGroupChildOption)[];
1628
- buttonStyle: RadioGroupButtonStyle;
1629
- optionType: RadioGroupOptionType;
1630
- }> | null;
1631
- }, any, ComponentProvideOptions, {
1632
- P: {};
1633
- B: {};
1634
- D: {};
1635
- C: {};
1636
- M: {};
1637
- Defaults: {};
1638
- }, Readonly< ApFieldRadioProps> & Readonly<{
1639
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
1640
- }>, {
1641
- focus: () => void;
1642
- blur: () => void;
1643
- }, {}, {}, {}, {
1644
- mode: FieldMode;
1645
- vertical: boolean;
1646
- disabled: boolean;
1647
- emptyText: string;
1648
- }> | null;
1649
- }, any, ComponentProvideOptions, {
1650
- P: {};
1651
- B: {};
1652
- D: {};
1653
- C: {};
1654
- M: {};
1655
- Defaults: {};
1656
- }, Readonly< ApFormItemRadioProps> & Readonly<{}>, {
1657
- focus: () => void;
1658
- blur: () => void;
1659
- }, {}, {}, {}, {
1660
- disabled: boolean;
1661
- hasFeedback: boolean;
1662
- colon: boolean;
1663
- autoLink: boolean;
1664
- required: boolean;
1665
- validateFirst: boolean;
1666
- field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
1667
- }>;
1668
- __isFragment?: never;
1669
- __isTeleport?: never;
1670
- __isSuspense?: never;
1671
- } & ComponentOptionsBase<Readonly< ApFormItemRadioProps> & Readonly<{}>, {
1672
- focus: () => void;
1673
- blur: () => void;
1674
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
1675
- disabled: boolean;
1676
- hasFeedback: boolean;
1677
- colon: boolean;
1678
- autoLink: boolean;
1679
- required: boolean;
1680
- validateFirst: boolean;
1681
- field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
1682
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
1683
- $slots: Readonly<{
1684
- label?: any;
1685
- help?: any;
1686
- extra?: any;
1687
- }> & {
1688
- label?: any;
1689
- help?: any;
1690
- extra?: any;
1691
- };
1692
- })) | ({
1693
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemSelectProps> & Readonly<{}>, {
1694
- focus: () => void;
1695
- blur: () => void;
1696
- request: () => void;
1697
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1698
- disabled: boolean;
1699
- hasFeedback: boolean;
1700
- colon: boolean;
1701
- autoLink: boolean;
1702
- required: boolean;
1703
- validateFirst: boolean;
1704
- field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
1705
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
1706
- selectRef: ({
1707
- $: ComponentInternalInstance;
1708
- $data: {};
1709
- $props: {
1710
- readonly mode?: FieldMode | undefined;
1711
- readonly class?: unknown;
1712
- readonly style?: unknown;
1713
- readonly size?: ButtonSize;
1714
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
1715
- readonly onChange?: ((value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void) | undefined;
1716
- readonly onClick?: ((e: MouseEvent) => void) | undefined;
1717
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
1718
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
1719
- readonly onKeyup?: ((e: KeyboardEvent) => void) | undefined;
1720
- readonly onMousedown?: ((e: MouseEvent) => void) | undefined;
1721
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
1722
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
1723
- readonly onSelect?: SelectHandler<(string | number) | LabeledValue, DefaultOptionType> | undefined;
1724
- readonly placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | undefined;
1725
- readonly open?: boolean | undefined;
1726
- readonly disabled?: boolean | undefined;
1727
- readonly direction?: "ltr" | "rtl" | undefined;
1728
- readonly animation?: string | undefined;
1729
- readonly children?: VueNode[] | undefined;
1730
- readonly prefixCls?: string | undefined;
1731
- readonly loading?: boolean | undefined;
1732
- readonly transitionName?: string | undefined;
1733
- readonly autofocus?: boolean | undefined;
1734
- readonly bordered?: boolean | undefined;
1735
- readonly getPopupContainer?: RenderDOMFunc | undefined;
1736
- readonly virtual?: boolean | undefined;
1737
- readonly dropdownMatchSelectWidth?: number | boolean | undefined;
1738
- readonly placeholder?: any;
1739
- readonly defaultValue?: SelectValue;
1740
- readonly id?: string | undefined;
1741
- readonly status?: "" | "error" | "warning" | undefined;
1742
- readonly clearIcon?: any;
1743
- readonly allowClear?: boolean | undefined;
1744
- readonly options?: DefaultOptionType[] | undefined;
1745
- readonly tabindex?: number | undefined;
1746
- readonly dropdownClassName?: string | undefined;
1747
- readonly dropdownAlign?: AlignType | undefined;
1748
- readonly defaultOpen?: boolean | undefined;
1749
- readonly suffixIcon?: any;
1750
- readonly notFoundContent?: any;
1751
- readonly itemIcon?: any;
1752
- readonly choiceTransitionName?: "" | undefined;
1753
- readonly popupClassName?: string | undefined;
1754
- readonly listHeight?: number | undefined;
1755
- readonly showAction?: ("click" | "focus")[] | undefined;
1756
- readonly onDeselect?: SelectHandler<(string | number) | LabeledValue, DefaultOptionType> | undefined;
1757
- readonly fieldNames?: FieldNames | undefined;
1758
- readonly dropdownStyle?: CSSProperties | undefined;
1759
- readonly dropdownRender?: DropdownRender | undefined;
1760
- readonly showSearch?: boolean | undefined;
1761
- readonly searchValue?: string | undefined;
1762
- readonly onInputKeyDown?: ((e: KeyboardEvent) => void) | undefined;
1763
- readonly removeIcon?: any;
1764
- readonly maxTagCount?: number | "responsive" | undefined;
1765
- readonly maxTagTextLength?: number | undefined;
1766
- readonly maxTagPlaceholder?: any;
1767
- readonly tokenSeparators?: string[] | undefined;
1768
- readonly tagRender?: ((props: CustomTagProps) => any) | undefined;
1769
- readonly optionLabelRender?: ((option: Record<string, any>) => any) | undefined;
1770
- readonly onClear?: (() => void) | undefined;
1771
- readonly onDropdownVisibleChange?: ((open: boolean) => void) | undefined;
1772
- readonly showArrow?: boolean | undefined;
1773
- readonly onPopupScroll?: ((e: UIEvent) => void) | undefined;
1774
- readonly menuItemSelectedIcon?: any;
1775
- readonly listItemHeight?: number | undefined;
1776
- readonly inputValue?: string | undefined;
1777
- readonly autoClearSearchValue?: boolean | undefined;
1778
- readonly filterOption?: boolean | FilterFunc<DefaultOptionType> | undefined;
1779
- readonly filterSort?: ((optionA: DefaultOptionType, optionB: DefaultOptionType) => number) | undefined;
1780
- readonly optionFilterProp?: string | undefined;
1781
- readonly optionLabelProp?: string | undefined;
1782
- readonly defaultActiveFirstOption?: boolean | undefined;
1783
- readonly onClickOption?: ((e: MouseEvent, value: SelectValue, selected: boolean) => boolean | Promise<boolean>) | undefined;
1784
- readonly labelInValue?: boolean | undefined;
1785
- readonly emptyText?: string | undefined;
1786
- readonly request?: ((value?: string, extraParams?: Recordable) => Promise< DefaultOptionType[] | undefined>) | undefined;
1787
- readonly multiple?: boolean | undefined;
1788
- readonly value?: SelectValue;
1789
- readonly 'onUpdate:value'?: (((val: SelectValue) => void) & ((...args: any[]) => any)) | undefined;
1790
- readonly searchMode?: "filter" | "request" | undefined;
1791
- readonly refetchOnFocus?: boolean | undefined;
1792
- readonly lazy?: boolean | undefined;
1793
- readonly addAll?: boolean | number | undefined;
1794
- readonly params?: Recordable | undefined;
1795
- readonly searchDelay?: number | undefined;
1796
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
1797
- $attrs: {
1798
- [x: string]: unknown;
1799
- };
1800
- $refs: {
1801
- [x: string]: unknown;
1802
- } & {
1803
- selectRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
1804
- value: {
1805
- type: PropType<SelectValue>;
1806
- default: SelectValue;
1807
- };
1808
- defaultValue: {
1809
- type: PropType<SelectValue>;
1810
- default: SelectValue;
1811
- };
1812
- notFoundContent: VueTypeValidableDef<any>;
1813
- suffixIcon: VueTypeValidableDef<any>;
1814
- itemIcon: VueTypeValidableDef<any>;
1815
- size: {
1816
- type: PropType<ButtonSize>;
1817
- default: ButtonSize;
1818
- };
1819
- mode: {
1820
- type: PropType<"multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE">;
1821
- default: "multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE";
1822
- };
1823
- bordered: {
1824
- type: BooleanConstructor;
1825
- default: boolean;
1826
- };
1827
- transitionName: StringConstructor;
1828
- choiceTransitionName: {
1829
- type: PropType<"">;
1830
- default: "";
1831
- };
1832
- popupClassName: StringConstructor;
1833
- dropdownClassName: StringConstructor;
1834
- placement: {
1835
- type: PropType<"topLeft" | "topRight" | "bottomLeft" | "bottomRight">;
1836
- default: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
1837
- };
1838
- status: {
1839
- type: PropType<"" | "error" | "warning">;
1840
- default: "" | "error" | "warning";
1841
- };
1842
- 'onUpdate:value': {
1843
- type: PropType<(val: SelectValue) => void>;
1844
- default: (val: SelectValue) => void;
1845
- };
1846
- children: PropType< VueNode[]>;
1847
- listHeight: NumberConstructor;
1848
- onMouseenter: PropType<(e: MouseEvent) => void>;
1849
- onMouseleave: PropType<(e: MouseEvent) => void>;
1850
- tabindex: NumberConstructor;
1851
- onClick: PropType<(e: MouseEvent) => void>;
1852
- onFocus: {
1853
- type: PropType<(e: FocusEvent) => void>;
1854
- };
1855
- onBlur: {
1856
- type: PropType<(e: FocusEvent) => void>;
1857
- };
1858
- onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
1859
- onKeydown: PropType<(e: KeyboardEvent) => void>;
1860
- onKeyup: PropType<(e: KeyboardEvent) => void>;
1861
- onMousedown: PropType<(e: MouseEvent) => void>;
1862
- onSelect: PropType<SelectHandler<(string | number) | LabeledValue, DefaultOptionType>>;
1863
- open: {
1864
- type: BooleanConstructor;
1865
- default: any;
1866
- };
1867
- animation: StringConstructor;
1868
- direction: {
1869
- type: PropType<"rtl" | "ltr">;
1870
- };
1871
- disabled: {
1872
- type: BooleanConstructor;
1873
- default: any;
1874
- };
1875
- prefixCls: StringConstructor;
1876
- id: StringConstructor;
1877
- autofocus: BooleanConstructor;
1878
- getPopupContainer: {
1879
- type: PropType<RenderDOMFunc>;
1880
- };
1881
- virtual: {
1882
- type: BooleanConstructor;
1883
- default: any;
1884
- };
1885
- dropdownMatchSelectWidth: {
1886
- type: PropType<number | boolean>;
1887
- default: any;
1888
- };
1889
- options: PropType< DefaultOptionType[]>;
1890
- showAction: {
1891
- type: PropType<("click" | "focus")[]>;
1892
- };
1893
- onDeselect: PropType<SelectHandler<(string | number) | LabeledValue, DefaultOptionType>>;
1894
- loading: {
1895
- type: BooleanConstructor;
1896
- default: any;
1897
- };
1898
- placeholder: VueTypeValidableDef<any>;
1899
- clearIcon: VueTypeValidableDef<any>;
1900
- allowClear: {
1901
- type: BooleanConstructor;
1902
- default: any;
1903
- };
1904
- onSearch: PropType<(value: string) => void>;
1905
- fieldNames: PropType<FieldNames>;
1906
- dropdownStyle: {
1907
- type: PropType<CSSProperties>;
1908
- };
1909
- dropdownRender: {
1910
- type: PropType<DropdownRender>;
1911
- };
1912
- dropdownAlign: PropType<AlignType>;
1913
- showSearch: {
1914
- type: BooleanConstructor;
1915
- default: any;
1916
- };
1917
- searchValue: StringConstructor;
1918
- onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
1919
- removeIcon: VueTypeValidableDef<any>;
1920
- maxTagCount: {
1921
- type: PropType<number | "responsive">;
1922
- };
1923
- maxTagTextLength: NumberConstructor;
1924
- maxTagPlaceholder: VueTypeValidableDef<any>;
1925
- tokenSeparators: {
1926
- type: PropType<string[]>;
1927
- };
1928
- tagRender: {
1929
- type: PropType<(props: CustomTagProps) => any>;
1930
- };
1931
- optionLabelRender: {
1932
- type: PropType<(option: Record<string, any>) => any>;
1933
- };
1934
- onClear: PropType<() => void>;
1935
- defaultOpen: {
1936
- type: BooleanConstructor;
1937
- default: any;
1938
- };
1939
- onDropdownVisibleChange: {
1940
- type: PropType<(open: boolean) => void>;
1941
- };
1942
- showArrow: {
1943
- type: BooleanConstructor;
1944
- default: any;
1945
- };
1946
- onPopupScroll: PropType<(e: UIEvent) => void>;
1947
- menuItemSelectedIcon: VueTypeValidableDef<any>;
1948
- listItemHeight: NumberConstructor;
1949
- inputValue: StringConstructor;
1950
- autoClearSearchValue: {
1951
- type: BooleanConstructor;
1952
- default: any;
1953
- };
1954
- filterOption: {
1955
- type: PropType<boolean | FilterFunc<DefaultOptionType>>;
1956
- default: any;
1957
- };
1958
- filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
1959
- optionFilterProp: StringConstructor;
1960
- optionLabelProp: StringConstructor;
1961
- defaultActiveFirstOption: {
1962
- type: BooleanConstructor;
1963
- default: any;
1964
- };
1965
- onClickOption: PropType<(e: MouseEvent, value: SelectValue, selected: boolean) => boolean | Promise<boolean>>;
1966
- labelInValue: {
1967
- type: BooleanConstructor;
1968
- default: any;
1969
- };
1970
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
1971
- size: ButtonSize;
1972
- value: SelectValue;
1973
- mode: "multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE";
1974
- open: boolean;
1975
- disabled: boolean;
1976
- autofocus: boolean;
1977
- virtual: boolean;
1978
- dropdownMatchSelectWidth: number | boolean;
1979
- status: "" | "error" | "warning";
1980
- defaultValue: SelectValue;
1981
- 'onUpdate:value': (val: SelectValue) => void;
1982
- placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
1983
- loading: boolean;
1984
- bordered: boolean;
1985
- allowClear: boolean;
1986
- showSearch: boolean;
1987
- choiceTransitionName: "";
1988
- defaultOpen: boolean;
1989
- showArrow: boolean;
1990
- autoClearSearchValue: boolean;
1991
- filterOption: boolean | FilterFunc<DefaultOptionType>;
1992
- defaultActiveFirstOption: boolean;
1993
- labelInValue: boolean;
1994
- }, true, {}, CustomSlotsType<{
1995
- notFoundContent: any;
1996
- suffixIcon: any;
1997
- itemIcon: any;
1998
- removeIcon: any;
1999
- clearIcon: any;
2000
- dropdownRender: any;
2001
- option: any;
2002
- placeholder: any;
2003
- tagRender: any;
2004
- maxTagPlaceholder: any;
2005
- optionLabel: any;
2006
- default: any;
2007
- }>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2008
- P: {};
2009
- B: {};
2010
- D: {};
2011
- C: {};
2012
- M: {};
2013
- Defaults: {};
2014
- }, Readonly< ExtractPropTypes<{
2015
- value: {
2016
- type: PropType<SelectValue>;
2017
- default: SelectValue;
2018
- };
2019
- defaultValue: {
2020
- type: PropType<SelectValue>;
2021
- default: SelectValue;
2022
- };
2023
- notFoundContent: VueTypeValidableDef<any>;
2024
- suffixIcon: VueTypeValidableDef<any>;
2025
- itemIcon: VueTypeValidableDef<any>;
2026
- size: {
2027
- type: PropType<ButtonSize>;
2028
- default: ButtonSize;
2029
- };
2030
- mode: {
2031
- type: PropType<"multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE">;
2032
- default: "multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE";
2033
- };
2034
- bordered: {
2035
- type: BooleanConstructor;
2036
- default: boolean;
2037
- };
2038
- transitionName: StringConstructor;
2039
- choiceTransitionName: {
2040
- type: PropType<"">;
2041
- default: "";
2042
- };
2043
- popupClassName: StringConstructor;
2044
- dropdownClassName: StringConstructor;
2045
- placement: {
2046
- type: PropType<"topLeft" | "topRight" | "bottomLeft" | "bottomRight">;
2047
- default: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
2048
- };
2049
- status: {
2050
- type: PropType<"" | "error" | "warning">;
2051
- default: "" | "error" | "warning";
2052
- };
2053
- 'onUpdate:value': {
2054
- type: PropType<(val: SelectValue) => void>;
2055
- default: (val: SelectValue) => void;
2056
- };
2057
- children: PropType< VueNode[]>;
2058
- listHeight: NumberConstructor;
2059
- onMouseenter: PropType<(e: MouseEvent) => void>;
2060
- onMouseleave: PropType<(e: MouseEvent) => void>;
2061
- tabindex: NumberConstructor;
2062
- onClick: PropType<(e: MouseEvent) => void>;
2063
- onFocus: {
2064
- type: PropType<(e: FocusEvent) => void>;
2065
- };
2066
- onBlur: {
2067
- type: PropType<(e: FocusEvent) => void>;
2068
- };
2069
- onChange: PropType<(value: SelectValue, option: DefaultOptionType | DefaultOptionType[]) => void>;
2070
- onKeydown: PropType<(e: KeyboardEvent) => void>;
2071
- onKeyup: PropType<(e: KeyboardEvent) => void>;
2072
- onMousedown: PropType<(e: MouseEvent) => void>;
2073
- onSelect: PropType<SelectHandler<(string | number) | LabeledValue, DefaultOptionType>>;
2074
- open: {
2075
- type: BooleanConstructor;
2076
- default: any;
2077
- };
2078
- animation: StringConstructor;
2079
- direction: {
2080
- type: PropType<"rtl" | "ltr">;
2081
- };
2082
- disabled: {
2083
- type: BooleanConstructor;
2084
- default: any;
2085
- };
2086
- prefixCls: StringConstructor;
2087
- id: StringConstructor;
2088
- autofocus: BooleanConstructor;
2089
- getPopupContainer: {
2090
- type: PropType<RenderDOMFunc>;
2091
- };
2092
- virtual: {
2093
- type: BooleanConstructor;
2094
- default: any;
2095
- };
2096
- dropdownMatchSelectWidth: {
2097
- type: PropType<number | boolean>;
2098
- default: any;
2099
- };
2100
- options: PropType< DefaultOptionType[]>;
2101
- showAction: {
2102
- type: PropType<("click" | "focus")[]>;
2103
- };
2104
- onDeselect: PropType<SelectHandler<(string | number) | LabeledValue, DefaultOptionType>>;
2105
- loading: {
2106
- type: BooleanConstructor;
2107
- default: any;
2108
- };
2109
- placeholder: VueTypeValidableDef<any>;
2110
- clearIcon: VueTypeValidableDef<any>;
2111
- allowClear: {
2112
- type: BooleanConstructor;
2113
- default: any;
2114
- };
2115
- onSearch: PropType<(value: string) => void>;
2116
- fieldNames: PropType<FieldNames>;
2117
- dropdownStyle: {
2118
- type: PropType<CSSProperties>;
2119
- };
2120
- dropdownRender: {
2121
- type: PropType<DropdownRender>;
2122
- };
2123
- dropdownAlign: PropType<AlignType>;
2124
- showSearch: {
2125
- type: BooleanConstructor;
2126
- default: any;
2127
- };
2128
- searchValue: StringConstructor;
2129
- onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
2130
- removeIcon: VueTypeValidableDef<any>;
2131
- maxTagCount: {
2132
- type: PropType<number | "responsive">;
2133
- };
2134
- maxTagTextLength: NumberConstructor;
2135
- maxTagPlaceholder: VueTypeValidableDef<any>;
2136
- tokenSeparators: {
2137
- type: PropType<string[]>;
2138
- };
2139
- tagRender: {
2140
- type: PropType<(props: CustomTagProps) => any>;
2141
- };
2142
- optionLabelRender: {
2143
- type: PropType<(option: Record<string, any>) => any>;
2144
- };
2145
- onClear: PropType<() => void>;
2146
- defaultOpen: {
2147
- type: BooleanConstructor;
2148
- default: any;
2149
- };
2150
- onDropdownVisibleChange: {
2151
- type: PropType<(open: boolean) => void>;
2152
- };
2153
- showArrow: {
2154
- type: BooleanConstructor;
2155
- default: any;
2156
- };
2157
- onPopupScroll: PropType<(e: UIEvent) => void>;
2158
- menuItemSelectedIcon: VueTypeValidableDef<any>;
2159
- listItemHeight: NumberConstructor;
2160
- inputValue: StringConstructor;
2161
- autoClearSearchValue: {
2162
- type: BooleanConstructor;
2163
- default: any;
2164
- };
2165
- filterOption: {
2166
- type: PropType<boolean | FilterFunc<DefaultOptionType>>;
2167
- default: any;
2168
- };
2169
- filterSort: PropType<(optionA: DefaultOptionType, optionB: DefaultOptionType) => number>;
2170
- optionFilterProp: StringConstructor;
2171
- optionLabelProp: StringConstructor;
2172
- defaultActiveFirstOption: {
2173
- type: BooleanConstructor;
2174
- default: any;
2175
- };
2176
- onClickOption: PropType<(e: MouseEvent, value: SelectValue, selected: boolean) => boolean | Promise<boolean>>;
2177
- labelInValue: {
2178
- type: BooleanConstructor;
2179
- default: any;
2180
- };
2181
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
2182
- size: ButtonSize;
2183
- value: SelectValue;
2184
- mode: "multiple" | "tags" | "SECRET_COMBOBOX_MODE_DO_NOT_USE";
2185
- open: boolean;
2186
- disabled: boolean;
2187
- autofocus: boolean;
2188
- virtual: boolean;
2189
- dropdownMatchSelectWidth: number | boolean;
2190
- status: "" | "error" | "warning";
2191
- defaultValue: SelectValue;
2192
- 'onUpdate:value': (val: SelectValue) => void;
2193
- placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
2194
- loading: boolean;
2195
- bordered: boolean;
2196
- allowClear: boolean;
2197
- showSearch: boolean;
2198
- choiceTransitionName: "";
2199
- defaultOpen: boolean;
2200
- showArrow: boolean;
2201
- autoClearSearchValue: boolean;
2202
- filterOption: boolean | FilterFunc<DefaultOptionType>;
2203
- defaultActiveFirstOption: boolean;
2204
- labelInValue: boolean;
2205
- }> | null;
2206
- };
2207
- $slots: Readonly<{
2208
- [name: string]: Slot<any> | undefined;
2209
- }>;
2210
- $root: ComponentPublicInstance | null;
2211
- $parent: ComponentPublicInstance | null;
2212
- $host: Element | null;
2213
- $emit: (event: "update:value", ...args: any[]) => void;
2214
- $el: any;
2215
- $options: ComponentOptionsBase<Readonly< ApFieldSelectProps> & Readonly<{
2216
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
2217
- }>, {
2218
- focus: () => void;
2219
- blur: () => void;
2220
- request: (clear?: boolean) => Promise<void>;
2221
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
2222
- "update:value": (...args: any[]) => void;
2223
- }, string, {
2224
- mode: FieldMode;
2225
- open: boolean;
2226
- multiple: boolean;
2227
- disabled: boolean;
2228
- loading: boolean;
2229
- autofocus: boolean;
2230
- bordered: boolean;
2231
- virtual: boolean;
2232
- lazy: boolean;
2233
- allowClear: boolean;
2234
- defaultOpen: boolean;
2235
- showSearch: boolean;
2236
- showArrow: boolean;
2237
- autoClearSearchValue: boolean;
2238
- defaultActiveFirstOption: boolean;
2239
- labelInValue: boolean;
2240
- emptyText: string;
2241
- searchMode: "filter" | "request";
2242
- refetchOnFocus: boolean;
2243
- searchDelay: number;
2244
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
2245
- beforeCreate?: (() => void) | (() => void)[];
2246
- created?: (() => void) | (() => void)[];
2247
- beforeMount?: (() => void) | (() => void)[];
2248
- mounted?: (() => void) | (() => void)[];
2249
- beforeUpdate?: (() => void) | (() => void)[];
2250
- updated?: (() => void) | (() => void)[];
2251
- activated?: (() => void) | (() => void)[];
2252
- deactivated?: (() => void) | (() => void)[];
2253
- beforeDestroy?: (() => void) | (() => void)[];
2254
- beforeUnmount?: (() => void) | (() => void)[];
2255
- destroyed?: (() => void) | (() => void)[];
2256
- unmounted?: (() => void) | (() => void)[];
2257
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2258
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
2259
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
2260
- };
2261
- $forceUpdate: () => void;
2262
- $nextTick: nextTick;
2263
- $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;
2264
- } & Readonly<{
2265
- mode: FieldMode;
2266
- open: boolean;
2267
- multiple: boolean;
2268
- disabled: boolean;
2269
- loading: boolean;
2270
- autofocus: boolean;
2271
- bordered: boolean;
2272
- virtual: boolean;
2273
- lazy: boolean;
2274
- allowClear: boolean;
2275
- defaultOpen: boolean;
2276
- showSearch: boolean;
2277
- showArrow: boolean;
2278
- autoClearSearchValue: boolean;
2279
- defaultActiveFirstOption: boolean;
2280
- labelInValue: boolean;
2281
- emptyText: string;
2282
- searchMode: "filter" | "request";
2283
- refetchOnFocus: boolean;
2284
- searchDelay: number;
2285
- }> & Omit<Readonly< ApFieldSelectProps> & Readonly<{
2286
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
2287
- }>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "loading" | "autofocus" | "bordered" | "virtual" | "lazy" | "allowClear" | "defaultOpen" | "showSearch" | "showArrow" | "autoClearSearchValue" | "defaultActiveFirstOption" | "labelInValue" | "emptyText" | "searchMode" | "refetchOnFocus" | "searchDelay")> & ShallowUnwrapRef<{
2288
- focus: () => void;
2289
- blur: () => void;
2290
- request: (clear?: boolean) => Promise<void>;
2291
- }> & {} & ComponentCustomProperties & {} & {
2292
- $slots: Readonly<{
2293
- notFoundContent: any;
2294
- suffixIcon: any;
2295
- itemIcon: any;
2296
- removeIcon: any;
2297
- clearIcon: any;
2298
- dropdownRender: any;
2299
- option: any;
2300
- placeholder: any;
2301
- tagRender: any;
2302
- maxTagPlaceholder: any;
2303
- optionLabel: any;
2304
- default: any;
2305
- }> & {
2306
- notFoundContent: any;
2307
- suffixIcon: any;
2308
- itemIcon: any;
2309
- removeIcon: any;
2310
- clearIcon: any;
2311
- dropdownRender: any;
2312
- option: any;
2313
- placeholder: any;
2314
- tagRender: any;
2315
- maxTagPlaceholder: any;
2316
- optionLabel: any;
2317
- default: any;
2318
- };
2319
- }) | null;
2320
- }, any, ComponentProvideOptions, {
2321
- P: {};
2322
- B: {};
2323
- D: {};
2324
- C: {};
2325
- M: {};
2326
- Defaults: {};
2327
- }, Readonly< ApFormItemSelectProps> & Readonly<{}>, {
2328
- focus: () => void;
2329
- blur: () => void;
2330
- request: () => void;
2331
- }, {}, {}, {}, {
2332
- disabled: boolean;
2333
- hasFeedback: boolean;
2334
- colon: boolean;
2335
- autoLink: boolean;
2336
- required: boolean;
2337
- validateFirst: boolean;
2338
- field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
2339
- }>;
2340
- __isFragment?: never;
2341
- __isTeleport?: never;
2342
- __isSuspense?: never;
2343
- } & ComponentOptionsBase<Readonly< ApFormItemSelectProps> & Readonly<{}>, {
2344
- focus: () => void;
2345
- blur: () => void;
2346
- request: () => void;
2347
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2348
- disabled: boolean;
2349
- hasFeedback: boolean;
2350
- colon: boolean;
2351
- autoLink: boolean;
2352
- required: boolean;
2353
- validateFirst: boolean;
2354
- field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
2355
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
2356
- $slots: Readonly<{
2357
- notFoundContent: any;
2358
- suffixIcon: any;
2359
- itemIcon: any;
2360
- removeIcon: any;
2361
- clearIcon: any;
2362
- dropdownRender: any;
2363
- option: any;
2364
- placeholder: any;
2365
- tagRender: any;
2366
- maxTagPlaceholder: any;
2367
- optionLabel: any;
2368
- default: any;
2369
- } & Omit< ApFormItemSlots, "default">> & {
2370
- notFoundContent: any;
2371
- suffixIcon: any;
2372
- itemIcon: any;
2373
- removeIcon: any;
2374
- clearIcon: any;
2375
- dropdownRender: any;
2376
- option: any;
2377
- placeholder: any;
2378
- tagRender: any;
2379
- maxTagPlaceholder: any;
2380
- optionLabel: any;
2381
- default: any;
2382
- } & Omit< ApFormItemSlots, "default">;
2383
- })) | ({
2384
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2385
- disabled: boolean;
2386
- hasFeedback: boolean;
2387
- colon: boolean;
2388
- autoLink: boolean;
2389
- required: boolean;
2390
- validateFirst: boolean;
2391
- valuePropName: string;
2392
- field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
2393
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2394
- P: {};
2395
- B: {};
2396
- D: {};
2397
- C: {};
2398
- M: {};
2399
- Defaults: {};
2400
- }, Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, {
2401
- disabled: boolean;
2402
- hasFeedback: boolean;
2403
- colon: boolean;
2404
- autoLink: boolean;
2405
- required: boolean;
2406
- validateFirst: boolean;
2407
- valuePropName: string;
2408
- field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
2409
- }>;
2410
- __isFragment?: never;
2411
- __isTeleport?: never;
2412
- __isSuspense?: never;
2413
- } & ComponentOptionsBase<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2414
- disabled: boolean;
2415
- hasFeedback: boolean;
2416
- colon: boolean;
2417
- autoLink: boolean;
2418
- required: boolean;
2419
- validateFirst: boolean;
2420
- valuePropName: string;
2421
- field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
2422
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
2423
- $slots: Readonly<{
2424
- checkedChildren: any;
2425
- unCheckedChildren: any;
2426
- default: any;
2427
- } & Omit< ApFormItemSlots, "default">> & {
2428
- checkedChildren: any;
2429
- unCheckedChildren: any;
2430
- default: any;
2431
- } & Omit< ApFormItemSlots, "default">;
2432
- })) | ({
2433
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2434
- disabled: boolean;
2435
- hasFeedback: boolean;
2436
- colon: boolean;
2437
- autoLink: boolean;
2438
- required: boolean;
2439
- validateFirst: boolean;
2440
- field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
2441
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2442
- P: {};
2443
- B: {};
2444
- D: {};
2445
- C: {};
2446
- M: {};
2447
- Defaults: {};
2448
- }, Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, {
2449
- disabled: boolean;
2450
- hasFeedback: boolean;
2451
- colon: boolean;
2452
- autoLink: boolean;
2453
- required: boolean;
2454
- validateFirst: boolean;
2455
- field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
2456
- }>;
2457
- __isFragment?: never;
2458
- __isTeleport?: never;
2459
- __isSuspense?: never;
2460
- } & ComponentOptionsBase<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
2461
- disabled: boolean;
2462
- hasFeedback: boolean;
2463
- colon: boolean;
2464
- autoLink: boolean;
2465
- required: boolean;
2466
- validateFirst: boolean;
2467
- field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
2468
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
2469
- $slots: Readonly<{
2470
- label?: any;
2471
- help?: any;
2472
- extra?: any;
2473
- }> & {
2474
- label?: any;
2475
- help?: any;
2476
- extra?: any;
2477
- };
2478
- })) | ({
2479
- new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTreeSelectProps> & Readonly<{}>, {
2480
- focus: () => void;
2481
- blur: () => void;
2482
- request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
2483
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2484
- disabled: boolean;
2485
- hasFeedback: boolean;
2486
- colon: boolean;
2487
- autoLink: boolean;
2488
- required: boolean;
2489
- validateFirst: boolean;
2490
- field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
2491
- }, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
2492
- treeSelectRef: ({
2493
- $: ComponentInternalInstance;
2494
- $data: {};
2495
- $props: {
2496
- readonly mode?: FieldMode | undefined;
2497
- readonly class?: unknown;
2498
- readonly style?: unknown;
2499
- readonly size?: ButtonSize;
2500
- readonly onBlur?: ((e: FocusEvent) => void) | undefined;
2501
- readonly onChange?: ((value: unknown, labelList: any[], extra: ChangeEventExtra) => void) | undefined;
2502
- readonly onClick?: ((e: MouseEvent) => void) | undefined;
2503
- readonly onFocus?: ((e: FocusEvent) => void) | undefined;
2504
- readonly onKeydown?: ((e: KeyboardEvent) => void) | undefined;
2505
- readonly onKeyup?: ((e: KeyboardEvent) => void) | undefined;
2506
- readonly onMousedown?: ((e: MouseEvent) => void) | undefined;
2507
- readonly onMouseenter?: ((e: MouseEvent) => void) | undefined;
2508
- readonly onMouseleave?: ((e: MouseEvent) => void) | undefined;
2509
- readonly onSelect?: SelectHandler<unknown, BaseOptionType> | undefined;
2510
- readonly placement?: "topLeft" | "topRight" | "bottomLeft" | "bottomRight" | undefined;
2511
- readonly value?: unknown;
2512
- readonly open?: boolean | undefined;
2513
- readonly multiple?: boolean | undefined;
2514
- readonly disabled?: boolean | undefined;
2515
- readonly direction?: "ltr" | "rtl" | undefined;
2516
- readonly animation?: string | undefined;
2517
- readonly children?: VueNode[] | undefined;
2518
- readonly prefixCls?: string | undefined;
2519
- readonly loading?: boolean | undefined;
2520
- readonly transitionName?: string | undefined;
2521
- readonly autofocus?: boolean | undefined;
2522
- readonly 'onUpdate:value'?: (((value: any) => void) & ((...args: any[]) => any)) | undefined;
2523
- readonly bordered?: boolean | undefined;
2524
- readonly getPopupContainer?: RenderDOMFunc | undefined;
2525
- readonly virtual?: boolean | undefined;
2526
- readonly dropdownMatchSelectWidth?: number | boolean | undefined;
2527
- readonly placeholder?: any;
2528
- readonly defaultValue?: unknown;
2529
- readonly id?: string | undefined;
2530
- readonly status?: "" | "error" | "warning" | undefined;
2531
- readonly clearIcon?: any;
2532
- readonly allowClear?: boolean | undefined;
2533
- readonly tabindex?: number | undefined;
2534
- readonly dropdownClassName?: string | undefined;
2535
- readonly dropdownAlign?: AlignType | undefined;
2536
- readonly defaultOpen?: boolean | undefined;
2537
- readonly suffixIcon?: any;
2538
- readonly notFoundContent?: any;
2539
- readonly choiceTransitionName?: string | undefined;
2540
- readonly popupClassName?: string | undefined;
2541
- readonly listHeight?: number | undefined;
2542
- readonly showAction?: ("click" | "focus")[] | undefined;
2543
- readonly onDeselect?: SelectHandler<unknown, BaseOptionType> | undefined;
2544
- readonly onSearch?: ((value: string) => void) | undefined;
2545
- readonly fieldNames?: FieldNames | undefined;
2546
- readonly dropdownStyle?: CSSProperties | undefined;
2547
- readonly dropdownRender?: DropdownRender | undefined;
2548
- readonly showSearch?: boolean | undefined;
2549
- readonly searchValue?: string | undefined;
2550
- readonly onInputKeyDown?: ((e: KeyboardEvent) => void) | undefined;
2551
- readonly removeIcon?: any;
2552
- readonly maxTagCount?: number | "responsive" | undefined;
2553
- readonly maxTagTextLength?: number | undefined;
2554
- readonly maxTagPlaceholder?: ((omittedValues: DisplayValueType[]) => any) | undefined;
2555
- readonly tokenSeparators?: string[] | undefined;
2556
- readonly tagRender?: ((props: CustomTagProps) => any) | undefined;
2557
- readonly optionLabelRender?: ((option: Record<string, any>) => any) | undefined;
2558
- readonly onClear?: (() => void) | undefined;
2559
- readonly onDropdownVisibleChange?: ((open: boolean) => void) | undefined;
2560
- readonly showArrow?: boolean | undefined;
2561
- readonly onPopupScroll?: ((e: UIEvent) => void) | undefined;
2562
- readonly listItemHeight?: number | undefined;
2563
- readonly inputValue?: string | undefined;
2564
- readonly autoClearSearchValue?: boolean | undefined;
2565
- readonly labelInValue?: boolean | undefined;
2566
- readonly treeLine?: boolean | {
2567
- showLeafIcon: boolean;
2568
- } | undefined;
2569
- readonly replaceFields?: FieldNames | undefined;
2570
- readonly 'onUpdate:treeExpandedKeys'?: ((keys: Key[]) => void) | undefined;
2571
- readonly 'onUpdate:searchValue'?: ((value: string) => void) | undefined;
2572
- readonly switcherIcon?: any;
2573
- readonly filterTreeNode?: boolean | ((inputValue: string, treeNode: DefaultOptionType) => boolean) | undefined;
2574
- readonly treeData?: ( BaseOptionType | DefaultOptionType)[] | undefined;
2575
- readonly treeCheckable?: boolean | undefined;
2576
- readonly getRawInputElement?: (() => any) | undefined;
2577
- readonly showCheckedStrategy?: CheckedStrategy | undefined;
2578
- readonly treeExpandAction?: ExpandAction | undefined;
2579
- readonly treeDefaultExpandAll?: boolean | undefined;
2580
- readonly treeIcon?: any;
2581
- readonly treeLoadedKeys?: Key[] | undefined;
2582
- readonly onTreeLoad?: ((loadedKeys: Key[]) => void) | undefined;
2583
- readonly treeNodeFilterProp?: string | undefined;
2584
- readonly treeNodeLabelProp?: string | undefined;
2585
- readonly treeCheckStrictly?: boolean | undefined;
2586
- readonly treeDataSimpleMode?: boolean | SimpleModeConfig | undefined;
2587
- readonly treeExpandedKeys?: Key[] | undefined;
2588
- readonly treeDefaultExpandedKeys?: Key[] | undefined;
2589
- readonly onTreeExpand?: ((expandedKeys: Key[]) => void) | undefined;
2590
- readonly dropdownPopupAlign?: any;
2591
- readonly emptyText?: string | undefined;
2592
- readonly request?: ((currentNode?: LegacyDataNode, extraParams?: Recordable) => Promise< TreeSelectProps["treeData"]>) | undefined;
2593
- readonly lazy?: boolean | undefined;
2594
- readonly params?: Recordable | undefined;
2595
- readonly loadData?: boolean | undefined;
2596
- } & VNodeProps & AllowedComponentProps & ComponentCustomProps;
2597
- $attrs: {
2598
- [x: string]: unknown;
2599
- };
2600
- $refs: {
2601
- [x: string]: unknown;
2602
- } & {
2603
- treeSelectRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
2604
- suffixIcon: VueTypeValidableDef<any>;
2605
- size: {
2606
- type: PropType<ButtonSize>;
2607
- default: ButtonSize;
2608
- };
2609
- bordered: {
2610
- type: BooleanConstructor;
2611
- default: boolean;
2612
- };
2613
- treeLine: {
2614
- type: PropType<boolean | {
2615
- showLeafIcon: boolean;
2616
- }>;
2617
- default: boolean | {
2618
- showLeafIcon: boolean;
2619
- };
2620
- };
2621
- replaceFields: {
2622
- type: PropType<FieldNames>;
2623
- default: FieldNames;
2624
- };
2625
- placement: {
2626
- type: PropType<"topLeft" | "topRight" | "bottomLeft" | "bottomRight">;
2627
- default: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
2628
- };
2629
- status: {
2630
- type: PropType<"" | "error" | "warning">;
2631
- default: "" | "error" | "warning";
2632
- };
2633
- popupClassName: StringConstructor;
2634
- dropdownClassName: StringConstructor;
2635
- 'onUpdate:value': {
2636
- type: PropType<(value: any) => void>;
2637
- default: (value: any) => void;
2638
- };
2639
- 'onUpdate:treeExpandedKeys': {
2640
- type: PropType<(keys: Key[]) => void>;
2641
- default: (keys: Key[]) => void;
2642
- };
2643
- 'onUpdate:searchValue': {
2644
- type: PropType<(value: string) => void>;
2645
- default: (value: string) => void;
2646
- };
2647
- value: {
2648
- type: PropType<any>;
2649
- };
2650
- children: PropType< VueNode[]>;
2651
- listHeight: NumberConstructor;
2652
- onMouseenter: PropType<(e: MouseEvent) => void>;
2653
- onMouseleave: PropType<(e: MouseEvent) => void>;
2654
- tabindex: NumberConstructor;
2655
- onClick: PropType<(e: MouseEvent) => void>;
2656
- onFocus: {
2657
- type: PropType<(e: FocusEvent) => void>;
2658
- };
2659
- onBlur: {
2660
- type: PropType<(e: FocusEvent) => void>;
2661
- };
2662
- onChange: {
2663
- type: PropType<(value: any, labelList: any[], extra: ChangeEventExtra) => void>;
2664
- };
2665
- onKeydown: PropType<(e: KeyboardEvent) => void>;
2666
- onKeyup: PropType<(e: KeyboardEvent) => void>;
2667
- onMousedown: PropType<(e: MouseEvent) => void>;
2668
- onSelect: PropType<SelectHandler<unknown, BaseOptionType>>;
2669
- open: {
2670
- type: BooleanConstructor;
2671
- default: any;
2672
- };
2673
- animation: StringConstructor;
2674
- direction: {
2675
- type: PropType<"rtl" | "ltr">;
2676
- };
2677
- multiple: {
2678
- type: BooleanConstructor;
2679
- default: any;
2680
- };
2681
- disabled: {
2682
- type: BooleanConstructor;
2683
- default: any;
2684
- };
2685
- prefixCls: StringConstructor;
2686
- id: StringConstructor;
2687
- autofocus: BooleanConstructor;
2688
- getPopupContainer: {
2689
- type: PropType<RenderDOMFunc>;
2690
- };
2691
- virtual: {
2692
- type: BooleanConstructor;
2693
- default: any;
2694
- };
2695
- dropdownMatchSelectWidth: {
2696
- type: PropType<number | boolean>;
2697
- default: any;
2698
- };
2699
- defaultValue: {
2700
- type: PropType<any>;
2701
- };
2702
- showAction: {
2703
- type: PropType<("click" | "focus")[]>;
2704
- };
2705
- transitionName: StringConstructor;
2706
- onDeselect: PropType<SelectHandler<unknown, BaseOptionType>>;
2707
- loading: {
2708
- type: BooleanConstructor;
2709
- default: any;
2710
- };
2711
- placeholder: VueTypeValidableDef<any>;
2712
- clearIcon: VueTypeValidableDef<any>;
2713
- allowClear: {
2714
- type: BooleanConstructor;
2715
- default: any;
2716
- };
2717
- onSearch: {
2718
- type: PropType<(value: string) => void>;
2719
- };
2720
- notFoundContent: VueTypeValidableDef<any>;
2721
- fieldNames: {
2722
- type: PropType<FieldNames>;
2723
- };
2724
- dropdownStyle: {
2725
- type: PropType<CSSProperties>;
2726
- };
2727
- dropdownRender: {
2728
- type: PropType<DropdownRender>;
2729
- };
2730
- dropdownAlign: PropType<AlignType>;
2731
- switcherIcon: VueTypeValidableDef<any>;
2732
- loadData: {
2733
- type: PropType<(dataNode: LegacyDataNode) => Promise<unknown>>;
2734
- };
2735
- filterTreeNode: {
2736
- type: PropType<boolean | ((inputValue: string, treeNode: DefaultOptionType) => boolean)>;
2737
- default: any;
2738
- };
2739
- treeData: {
2740
- type: PropType< DefaultOptionType[]>;
2741
- };
2742
- treeCheckable: {
2743
- type: BooleanConstructor;
2744
- default: any;
2745
- };
2746
- showSearch: {
2747
- type: BooleanConstructor;
2748
- default: any;
2749
- };
2750
- searchValue: StringConstructor;
2751
- onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
2752
- removeIcon: VueTypeValidableDef<any>;
2753
- maxTagCount: {
2754
- type: PropType<number | "responsive">;
2755
- };
2756
- maxTagTextLength: NumberConstructor;
2757
- maxTagPlaceholder: {
2758
- type: PropType<(omittedValues: DisplayValueType[]) => any>;
2759
- };
2760
- tokenSeparators: {
2761
- type: PropType<string[]>;
2762
- };
2763
- tagRender: {
2764
- type: PropType<(props: CustomTagProps) => any>;
2765
- };
2766
- choiceTransitionName: StringConstructor;
2767
- optionLabelRender: {
2768
- type: PropType<(option: Record<string, any>) => any>;
2769
- };
2770
- onClear: PropType<() => void>;
2771
- defaultOpen: {
2772
- type: BooleanConstructor;
2773
- default: any;
2774
- };
2775
- onDropdownVisibleChange: {
2776
- type: PropType<(open: boolean) => void>;
2777
- };
2778
- getRawInputElement: {
2779
- type: PropType<() => any>;
2780
- };
2781
- showArrow: {
2782
- type: BooleanConstructor;
2783
- default: any;
2784
- };
2785
- onPopupScroll: PropType<(e: UIEvent) => void>;
2786
- listItemHeight: NumberConstructor;
2787
- inputValue: StringConstructor;
2788
- autoClearSearchValue: {
2789
- type: BooleanConstructor;
2790
- default: any;
2791
- };
2792
- labelInValue: {
2793
- type: BooleanConstructor;
2794
- default: any;
2795
- };
2796
- showCheckedStrategy: {
2797
- type: PropType<CheckedStrategy>;
2798
- };
2799
- treeExpandAction: PropType<ExpandAction>;
2800
- treeDefaultExpandAll: {
2801
- type: BooleanConstructor;
2802
- default: any;
2803
- };
2804
- treeIcon: VueTypeValidableDef<any>;
2805
- treeLoadedKeys: {
2806
- type: PropType< Key[]>;
2807
- };
2808
- onTreeLoad: {
2809
- type: PropType<(loadedKeys: Key[]) => void>;
2810
- };
2811
- treeNodeFilterProp: StringConstructor;
2812
- treeNodeLabelProp: StringConstructor;
2813
- treeCheckStrictly: {
2814
- type: BooleanConstructor;
2815
- default: any;
2816
- };
2817
- treeDataSimpleMode: {
2818
- type: PropType<boolean | SimpleModeConfig>;
2819
- default: any;
2820
- };
2821
- treeExpandedKeys: {
2822
- type: PropType< Key[]>;
2823
- };
2824
- treeDefaultExpandedKeys: {
2825
- type: PropType< Key[]>;
2826
- };
2827
- onTreeExpand: {
2828
- type: PropType<(expandedKeys: Key[]) => void>;
2829
- };
2830
- dropdownPopupAlign: VueTypeValidableDef<any>;
2831
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
2832
- size: ButtonSize;
2833
- open: boolean;
2834
- multiple: boolean;
2835
- disabled: boolean;
2836
- autofocus: boolean;
2837
- virtual: boolean;
2838
- dropdownMatchSelectWidth: number | boolean;
2839
- status: "" | "error" | "warning";
2840
- 'onUpdate:value': (value: any) => void;
2841
- placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
2842
- loading: boolean;
2843
- bordered: boolean;
2844
- allowClear: boolean;
2845
- filterTreeNode: boolean | ((inputValue: string, treeNode: DefaultOptionType) => boolean);
2846
- replaceFields: FieldNames;
2847
- treeCheckable: boolean;
2848
- showSearch: boolean;
2849
- defaultOpen: boolean;
2850
- showArrow: boolean;
2851
- autoClearSearchValue: boolean;
2852
- labelInValue: boolean;
2853
- treeDefaultExpandAll: boolean;
2854
- treeLine: boolean | {
2855
- showLeafIcon: boolean;
2856
- };
2857
- treeCheckStrictly: boolean;
2858
- treeDataSimpleMode: any;
2859
- 'onUpdate:treeExpandedKeys': (keys: Key[]) => void;
2860
- 'onUpdate:searchValue': (value: string) => void;
2861
- }, true, {}, CustomSlotsType<{
2862
- title?: any;
2863
- titleRender?: any;
2864
- placeholder?: any;
2865
- maxTagPlaceholder?: any;
2866
- treeIcon?: any;
2867
- switcherIcon?: any;
2868
- notFoundContent?: any;
2869
- default?: any;
2870
- leafIcon?: any;
2871
- tagRender?: any;
2872
- suffixIcon?: any;
2873
- }>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
2874
- P: {};
2875
- B: {};
2876
- D: {};
2877
- C: {};
2878
- M: {};
2879
- Defaults: {};
2880
- }, Readonly< ExtractPropTypes<{
2881
- suffixIcon: VueTypeValidableDef<any>;
2882
- size: {
2883
- type: PropType<ButtonSize>;
2884
- default: ButtonSize;
2885
- };
2886
- bordered: {
2887
- type: BooleanConstructor;
2888
- default: boolean;
2889
- };
2890
- treeLine: {
2891
- type: PropType<boolean | {
2892
- showLeafIcon: boolean;
2893
- }>;
2894
- default: boolean | {
2895
- showLeafIcon: boolean;
2896
- };
2897
- };
2898
- replaceFields: {
2899
- type: PropType<FieldNames>;
2900
- default: FieldNames;
2901
- };
2902
- placement: {
2903
- type: PropType<"topLeft" | "topRight" | "bottomLeft" | "bottomRight">;
2904
- default: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
2905
- };
2906
- status: {
2907
- type: PropType<"" | "error" | "warning">;
2908
- default: "" | "error" | "warning";
2909
- };
2910
- popupClassName: StringConstructor;
2911
- dropdownClassName: StringConstructor;
2912
- 'onUpdate:value': {
2913
- type: PropType<(value: any) => void>;
2914
- default: (value: any) => void;
2915
- };
2916
- 'onUpdate:treeExpandedKeys': {
2917
- type: PropType<(keys: Key[]) => void>;
2918
- default: (keys: Key[]) => void;
2919
- };
2920
- 'onUpdate:searchValue': {
2921
- type: PropType<(value: string) => void>;
2922
- default: (value: string) => void;
2923
- };
2924
- value: {
2925
- type: PropType<any>;
2926
- };
2927
- children: PropType< VueNode[]>;
2928
- listHeight: NumberConstructor;
2929
- onMouseenter: PropType<(e: MouseEvent) => void>;
2930
- onMouseleave: PropType<(e: MouseEvent) => void>;
2931
- tabindex: NumberConstructor;
2932
- onClick: PropType<(e: MouseEvent) => void>;
2933
- onFocus: {
2934
- type: PropType<(e: FocusEvent) => void>;
2935
- };
2936
- onBlur: {
2937
- type: PropType<(e: FocusEvent) => void>;
2938
- };
2939
- onChange: {
2940
- type: PropType<(value: any, labelList: any[], extra: ChangeEventExtra) => void>;
2941
- };
2942
- onKeydown: PropType<(e: KeyboardEvent) => void>;
2943
- onKeyup: PropType<(e: KeyboardEvent) => void>;
2944
- onMousedown: PropType<(e: MouseEvent) => void>;
2945
- onSelect: PropType<SelectHandler<unknown, BaseOptionType>>;
2946
- open: {
2947
- type: BooleanConstructor;
2948
- default: any;
2949
- };
2950
- animation: StringConstructor;
2951
- direction: {
2952
- type: PropType<"rtl" | "ltr">;
2953
- };
2954
- multiple: {
2955
- type: BooleanConstructor;
2956
- default: any;
2957
- };
2958
- disabled: {
2959
- type: BooleanConstructor;
2960
- default: any;
2961
- };
2962
- prefixCls: StringConstructor;
2963
- id: StringConstructor;
2964
- autofocus: BooleanConstructor;
2965
- getPopupContainer: {
2966
- type: PropType<RenderDOMFunc>;
2967
- };
2968
- virtual: {
2969
- type: BooleanConstructor;
2970
- default: any;
2971
- };
2972
- dropdownMatchSelectWidth: {
2973
- type: PropType<number | boolean>;
2974
- default: any;
2975
- };
2976
- defaultValue: {
2977
- type: PropType<any>;
2978
- };
2979
- showAction: {
2980
- type: PropType<("click" | "focus")[]>;
2981
- };
2982
- transitionName: StringConstructor;
2983
- onDeselect: PropType<SelectHandler<unknown, BaseOptionType>>;
2984
- loading: {
2985
- type: BooleanConstructor;
2986
- default: any;
2987
- };
2988
- placeholder: VueTypeValidableDef<any>;
2989
- clearIcon: VueTypeValidableDef<any>;
2990
- allowClear: {
2991
- type: BooleanConstructor;
2992
- default: any;
2993
- };
2994
- onSearch: {
2995
- type: PropType<(value: string) => void>;
2996
- };
2997
- notFoundContent: VueTypeValidableDef<any>;
2998
- fieldNames: {
2999
- type: PropType<FieldNames>;
3000
- };
3001
- dropdownStyle: {
3002
- type: PropType<CSSProperties>;
3003
- };
3004
- dropdownRender: {
3005
- type: PropType<DropdownRender>;
3006
- };
3007
- dropdownAlign: PropType<AlignType>;
3008
- switcherIcon: VueTypeValidableDef<any>;
3009
- loadData: {
3010
- type: PropType<(dataNode: LegacyDataNode) => Promise<unknown>>;
3011
- };
3012
- filterTreeNode: {
3013
- type: PropType<boolean | ((inputValue: string, treeNode: DefaultOptionType) => boolean)>;
3014
- default: any;
3015
- };
3016
- treeData: {
3017
- type: PropType< DefaultOptionType[]>;
3018
- };
3019
- treeCheckable: {
3020
- type: BooleanConstructor;
3021
- default: any;
3022
- };
3023
- showSearch: {
3024
- type: BooleanConstructor;
3025
- default: any;
3026
- };
3027
- searchValue: StringConstructor;
3028
- onInputKeyDown: PropType<(e: KeyboardEvent) => void>;
3029
- removeIcon: VueTypeValidableDef<any>;
3030
- maxTagCount: {
3031
- type: PropType<number | "responsive">;
3032
- };
3033
- maxTagTextLength: NumberConstructor;
3034
- maxTagPlaceholder: {
3035
- type: PropType<(omittedValues: DisplayValueType[]) => any>;
3036
- };
3037
- tokenSeparators: {
3038
- type: PropType<string[]>;
3039
- };
3040
- tagRender: {
3041
- type: PropType<(props: CustomTagProps) => any>;
3042
- };
3043
- choiceTransitionName: StringConstructor;
3044
- optionLabelRender: {
3045
- type: PropType<(option: Record<string, any>) => any>;
3046
- };
3047
- onClear: PropType<() => void>;
3048
- defaultOpen: {
3049
- type: BooleanConstructor;
3050
- default: any;
3051
- };
3052
- onDropdownVisibleChange: {
3053
- type: PropType<(open: boolean) => void>;
3054
- };
3055
- getRawInputElement: {
3056
- type: PropType<() => any>;
3057
- };
3058
- showArrow: {
3059
- type: BooleanConstructor;
3060
- default: any;
3061
- };
3062
- onPopupScroll: PropType<(e: UIEvent) => void>;
3063
- listItemHeight: NumberConstructor;
3064
- inputValue: StringConstructor;
3065
- autoClearSearchValue: {
3066
- type: BooleanConstructor;
3067
- default: any;
3068
- };
3069
- labelInValue: {
3070
- type: BooleanConstructor;
3071
- default: any;
3072
- };
3073
- showCheckedStrategy: {
3074
- type: PropType<CheckedStrategy>;
3075
- };
3076
- treeExpandAction: PropType<ExpandAction>;
3077
- treeDefaultExpandAll: {
3078
- type: BooleanConstructor;
3079
- default: any;
3080
- };
3081
- treeIcon: VueTypeValidableDef<any>;
3082
- treeLoadedKeys: {
3083
- type: PropType< Key[]>;
3084
- };
3085
- onTreeLoad: {
3086
- type: PropType<(loadedKeys: Key[]) => void>;
3087
- };
3088
- treeNodeFilterProp: StringConstructor;
3089
- treeNodeLabelProp: StringConstructor;
3090
- treeCheckStrictly: {
3091
- type: BooleanConstructor;
3092
- default: any;
3093
- };
3094
- treeDataSimpleMode: {
3095
- type: PropType<boolean | SimpleModeConfig>;
3096
- default: any;
3097
- };
3098
- treeExpandedKeys: {
3099
- type: PropType< Key[]>;
3100
- };
3101
- treeDefaultExpandedKeys: {
3102
- type: PropType< Key[]>;
3103
- };
3104
- onTreeExpand: {
3105
- type: PropType<(expandedKeys: Key[]) => void>;
3106
- };
3107
- dropdownPopupAlign: VueTypeValidableDef<any>;
3108
- }>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
3109
- size: ButtonSize;
3110
- open: boolean;
3111
- multiple: boolean;
3112
- disabled: boolean;
3113
- autofocus: boolean;
3114
- virtual: boolean;
3115
- dropdownMatchSelectWidth: number | boolean;
3116
- status: "" | "error" | "warning";
3117
- 'onUpdate:value': (value: any) => void;
3118
- placement: "topLeft" | "topRight" | "bottomLeft" | "bottomRight";
3119
- loading: boolean;
3120
- bordered: boolean;
3121
- allowClear: boolean;
3122
- filterTreeNode: boolean | ((inputValue: string, treeNode: DefaultOptionType) => boolean);
3123
- replaceFields: FieldNames;
3124
- treeCheckable: boolean;
3125
- showSearch: boolean;
3126
- defaultOpen: boolean;
3127
- showArrow: boolean;
3128
- autoClearSearchValue: boolean;
3129
- labelInValue: boolean;
3130
- treeDefaultExpandAll: boolean;
3131
- treeLine: boolean | {
3132
- showLeafIcon: boolean;
3133
- };
3134
- treeCheckStrictly: boolean;
3135
- treeDataSimpleMode: any;
3136
- 'onUpdate:treeExpandedKeys': (keys: Key[]) => void;
3137
- 'onUpdate:searchValue': (value: string) => void;
3138
- }> | null;
3139
- };
3140
- $slots: Readonly<{
3141
- [name: string]: Slot<any> | undefined;
3142
- }>;
3143
- $root: ComponentPublicInstance | null;
3144
- $parent: ComponentPublicInstance | null;
3145
- $host: Element | null;
3146
- $emit: (event: "update:value", ...args: any[]) => void;
3147
- $el: any;
3148
- $options: ComponentOptionsBase<Readonly< ApFieldTreeSelectProps> & Readonly<{
3149
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
3150
- }>, {
3151
- blur: () => void;
3152
- focus: () => void;
3153
- request: (currentNode?: LegacyDataNode, clear?: boolean) => Promise<void>;
3154
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
3155
- "update:value": (...args: any[]) => void;
3156
- }, string, {
3157
- mode: FieldMode;
3158
- open: boolean;
3159
- multiple: boolean;
3160
- disabled: boolean;
3161
- loading: boolean;
3162
- autofocus: boolean;
3163
- bordered: boolean;
3164
- virtual: boolean;
3165
- dropdownMatchSelectWidth: number | boolean;
3166
- allowClear: boolean;
3167
- defaultOpen: boolean;
3168
- showSearch: boolean;
3169
- showArrow: boolean;
3170
- autoClearSearchValue: boolean;
3171
- labelInValue: boolean;
3172
- treeCheckable: boolean;
3173
- treeDefaultExpandAll: boolean;
3174
- treeCheckStrictly: boolean;
3175
- emptyText: string;
3176
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
3177
- beforeCreate?: (() => void) | (() => void)[];
3178
- created?: (() => void) | (() => void)[];
3179
- beforeMount?: (() => void) | (() => void)[];
3180
- mounted?: (() => void) | (() => void)[];
3181
- beforeUpdate?: (() => void) | (() => void)[];
3182
- updated?: (() => void) | (() => void)[];
3183
- activated?: (() => void) | (() => void)[];
3184
- deactivated?: (() => void) | (() => void)[];
3185
- beforeDestroy?: (() => void) | (() => void)[];
3186
- beforeUnmount?: (() => void) | (() => void)[];
3187
- destroyed?: (() => void) | (() => void)[];
3188
- unmounted?: (() => void) | (() => void)[];
3189
- renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3190
- renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
3191
- errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
3192
- };
3193
- $forceUpdate: () => void;
3194
- $nextTick: nextTick;
3195
- $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;
3196
- } & Readonly<{
3197
- mode: FieldMode;
3198
- open: boolean;
3199
- multiple: boolean;
3200
- disabled: boolean;
3201
- loading: boolean;
3202
- autofocus: boolean;
3203
- bordered: boolean;
3204
- virtual: boolean;
3205
- dropdownMatchSelectWidth: number | boolean;
3206
- allowClear: boolean;
3207
- defaultOpen: boolean;
3208
- showSearch: boolean;
3209
- showArrow: boolean;
3210
- autoClearSearchValue: boolean;
3211
- labelInValue: boolean;
3212
- treeCheckable: boolean;
3213
- treeDefaultExpandAll: boolean;
3214
- treeCheckStrictly: boolean;
3215
- emptyText: string;
3216
- }> & Omit<Readonly< ApFieldTreeSelectProps> & Readonly<{
3217
- "onUpdate:value"?: ((...args: any[]) => any) | undefined;
3218
- }>, "blur" | "focus" | "request" | ("mode" | "open" | "multiple" | "disabled" | "loading" | "autofocus" | "bordered" | "virtual" | "dropdownMatchSelectWidth" | "allowClear" | "defaultOpen" | "showSearch" | "showArrow" | "autoClearSearchValue" | "labelInValue" | "treeCheckable" | "treeDefaultExpandAll" | "treeCheckStrictly" | "emptyText")> & ShallowUnwrapRef<{
3219
- blur: () => void;
3220
- focus: () => void;
3221
- request: (currentNode?: LegacyDataNode, clear?: boolean) => Promise<void>;
3222
- }> & {} & ComponentCustomProperties & {} & {
3223
- $slots: Readonly<{
3224
- title?: any;
3225
- titleRender?: any;
3226
- placeholder?: any;
3227
- maxTagPlaceholder?: any;
3228
- treeIcon?: any;
3229
- switcherIcon?: any;
3230
- notFoundContent?: any;
3231
- default?: any;
3232
- leafIcon?: any;
3233
- tagRender?: any;
3234
- suffixIcon?: any;
3235
- }> & {
3236
- title?: any;
3237
- titleRender?: any;
3238
- placeholder?: any;
3239
- maxTagPlaceholder?: any;
3240
- treeIcon?: any;
3241
- switcherIcon?: any;
3242
- notFoundContent?: any;
3243
- default?: any;
3244
- leafIcon?: any;
3245
- tagRender?: any;
3246
- suffixIcon?: any;
3247
- };
3248
- }) | null;
3249
- }, any, ComponentProvideOptions, {
3250
- P: {};
3251
- B: {};
3252
- D: {};
3253
- C: {};
3254
- M: {};
3255
- Defaults: {};
3256
- }, Readonly< ApFormItemTreeSelectProps> & Readonly<{}>, {
3257
- focus: () => void;
3258
- blur: () => void;
3259
- request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
3260
- }, {}, {}, {}, {
3261
- disabled: boolean;
3262
- hasFeedback: boolean;
3263
- colon: boolean;
3264
- autoLink: boolean;
3265
- required: boolean;
3266
- validateFirst: boolean;
3267
- field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
3268
- }>;
3269
- __isFragment?: never;
3270
- __isTeleport?: never;
3271
- __isSuspense?: never;
3272
- } & ComponentOptionsBase<Readonly< ApFormItemTreeSelectProps> & Readonly<{}>, {
3273
- focus: () => void;
3274
- blur: () => void;
3275
- request: (currentNode?: LegacyDataNode, clear?: boolean) => void;
3276
- }, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
3277
- disabled: boolean;
3278
- hasFeedback: boolean;
3279
- colon: boolean;
3280
- autoLink: boolean;
3281
- required: boolean;
3282
- validateFirst: boolean;
3283
- field: Omit< ApFieldTreeSelectProps, "value" | "onUpdate:value">;
3284
- }, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
3285
- $slots: Readonly<{
3286
- title?: any;
3287
- titleRender?: any;
3288
- placeholder?: any;
3289
- maxTagPlaceholder?: any;
3290
- treeIcon?: any;
3291
- switcherIcon?: any;
3292
- notFoundContent?: any;
3293
- default?: any;
3294
- leafIcon?: any;
3295
- tagRender?: any;
3296
- suffixIcon?: any;
3297
- } & Omit< ApFormItemSlots, "default">> & {
3298
- title?: any;
3299
- titleRender?: any;
3300
- placeholder?: any;
3301
- maxTagPlaceholder?: any;
3302
- treeIcon?: any;
3303
- switcherIcon?: any;
3304
- notFoundContent?: any;
3305
- default?: any;
3306
- leafIcon?: any;
3307
- tagRender?: any;
3308
- suffixIcon?: any;
3309
- } & Omit< ApFormItemSlots, "default">;
3310
- }));
3311
- render?: undefined;
3312
- } | {
3313
- Comp: DefineComponent<ApTableDynamicCompProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ApTableDynamicCompProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
3314
- render: (config: any) => import("vue/jsx-runtime").JSX.Element | null;
3315
- };
71
+ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?: Record<string, ValueTypeRenderConfig>): (() => VNode<unknown, unknown, {
72
+ [key: string]: any;
73
+ }>) | (() => import("vue/jsx-runtime").JSX.Element | null);
3316
74
  /**
3317
75
  * 处理表格render组件的props
3318
76
  * @param item