@aplus-frontend/ui 0.4.6 → 0.4.8
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.
- package/es/src/ap-field/date-range/index.vue.mjs +46 -42
- package/es/src/ap-field/hooks/use-default-presets.d.ts +11 -0
- package/es/src/ap-field/hooks/use-default-presets.mjs +15 -0
- package/es/src/ap-field/interface.d.ts +2 -1
- package/es/src/ap-field/number/index.vue.d.ts +1 -1
- package/es/src/ap-field/slider/index.vue.d.ts +1 -1
- package/es/src/ap-form/items/number/index.vue.d.ts +8 -8
- package/es/src/ap-table/ap-table.vue2.mjs +87 -85
- package/es/src/ap-table/components/dynamic-component/diff.d.ts +2 -0
- package/es/src/ap-table/components/dynamic-component/index.vue.d.ts +4 -0
- package/es/src/ap-table/components/dynamic-component/index.vue.mjs +4 -0
- package/es/src/ap-table/components/dynamic-component/index.vue2.mjs +14 -0
- package/es/src/ap-table/components/interface.d.ts +3 -0
- package/es/src/ap-table/constants.d.ts +7 -7
- package/es/src/ap-table/utils.d.ts +1551 -1541
- package/es/src/ap-table/utils.mjs +115 -104
- package/es/src/ap-upload/components/Picture.vue2.mjs +59 -55
- package/es/src/business/ap-ladder/ApLadder.vue.d.ts +13 -4
- package/es/src/business/ap-ladder/ApLadder.vue2.mjs +220 -108
- package/es/src/business/ap-ladder/HelpMessageIcon.vue.d.ts +14 -0
- package/es/src/business/ap-ladder/HelpMessageIcon.vue.mjs +4 -0
- package/es/src/business/ap-ladder/HelpMessageIcon.vue2.mjs +35 -0
- package/es/src/business/ap-ladder/index.d.ts +31 -4
- package/es/src/business/ap-ladder/interface.d.ts +124 -4
- package/es/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/es/src/business/ap-size-input/index.d.ts +3 -3
- package/es/src/business/ap-table-modal/table-layout/index.vue2.mjs +33 -25
- package/es/src/business/batch-input-group/form-item.vue.d.ts +0 -1
- package/es/src/business/batch-input-group/form-item.vue.mjs +43 -39
- package/es/src/business/hooks/usePageListApTable.d.ts +2 -2
- package/es/src/locale/lang/en.mjs +10 -1
- package/es/src/locale/lang/zh-cn.mjs +10 -1
- package/es/src/utils/data-range-persets.d.ts +87 -0
- package/es/src/utils/data-range-persets.mjs +107 -0
- package/lib/src/ap-field/date-range/index.vue.js +1 -1
- package/lib/src/ap-field/hooks/use-default-presets.d.ts +11 -0
- package/lib/src/ap-field/hooks/use-default-presets.js +1 -0
- package/lib/src/ap-field/interface.d.ts +2 -1
- package/lib/src/ap-field/number/index.vue.d.ts +1 -1
- package/lib/src/ap-field/slider/index.vue.d.ts +1 -1
- package/lib/src/ap-form/items/number/index.vue.d.ts +8 -8
- package/lib/src/ap-table/ap-table.vue2.js +1 -1
- package/lib/src/ap-table/components/dynamic-component/diff.d.ts +2 -0
- package/lib/src/ap-table/components/dynamic-component/index.vue.d.ts +4 -0
- package/lib/src/ap-table/components/dynamic-component/index.vue.js +1 -0
- package/lib/src/ap-table/components/dynamic-component/index.vue2.js +1 -0
- package/lib/src/ap-table/components/interface.d.ts +3 -0
- package/lib/src/ap-table/constants.d.ts +7 -7
- package/lib/src/ap-table/utils.d.ts +1551 -1541
- package/lib/src/ap-table/utils.js +1 -1
- package/lib/src/ap-upload/components/Picture.vue2.js +1 -1
- package/lib/src/business/ap-ladder/ApLadder.vue.d.ts +13 -4
- package/lib/src/business/ap-ladder/ApLadder.vue2.js +1 -1
- package/lib/src/business/ap-ladder/HelpMessageIcon.vue.d.ts +14 -0
- package/lib/src/business/ap-ladder/HelpMessageIcon.vue.js +1 -0
- package/lib/src/business/ap-ladder/HelpMessageIcon.vue2.js +1 -0
- package/lib/src/business/ap-ladder/index.d.ts +31 -4
- package/lib/src/business/ap-ladder/interface.d.ts +124 -4
- package/lib/src/business/ap-size-input/ApSizeInput.d.ts +1 -1
- package/lib/src/business/ap-size-input/index.d.ts +3 -3
- package/lib/src/business/ap-table-modal/table-layout/index.vue2.js +1 -1
- package/lib/src/business/batch-input-group/form-item.vue.d.ts +0 -1
- package/lib/src/business/batch-input-group/form-item.vue.js +1 -1
- package/lib/src/business/hooks/usePageListApTable.d.ts +2 -2
- package/lib/src/locale/lang/en.js +1 -1
- package/lib/src/locale/lang/zh-cn.js +1 -1
- package/lib/src/utils/data-range-persets.d.ts +87 -0
- package/lib/src/utils/data-range-persets.js +1 -0
- package/package.json +2 -2
- package/theme/ap-ladder/ap-ladder.css +10 -1
- package/theme/ap-ladder/ap-ladder.less +10 -1
- package/theme/index.css +10 -1
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { ApColumnType, ValueEnum, ValueEnumType } from './interface';
|
|
2
2
|
import { ValueTypeRenderConfig } from '../config-provider';
|
|
3
3
|
import { apTableRenderItemMap } from './constants';
|
|
4
|
-
import { VNode,
|
|
4
|
+
import { VNode, DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions, CreateComponentPublicInstanceWithMixins, GlobalComponents, GlobalDirectives, ComponentInternalInstance, VNodeProps, AllowedComponentProps, ComponentCustomProps, Slot, ComponentPublicInstance, ComponentOptionsBase, DebuggerEvent, nextTick, WatchOptions, WatchStopHandle, ShallowUnwrapRef, ComponentCustomProperties, ComputedRef, ExtractPropTypes, PropType, 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';
|
|
7
8
|
import { ApFormItemTextPasswordProps, ApFormItemTextProps, ApFormItemTextAreaProps, ApFormItemNumberProps, ApFormItemDateProps, ApFormItemDateRangeProps, ApFormItemRadioProps, ApFormItemSelectProps, ApFormItemSwitchProps, ApFormItemCheckboxProps } from '../ap-form/items/interface';
|
|
8
9
|
import { ApFieldTextPasswordProps, FieldMode, ApFormItemSlots, ApFieldTextProps, ApFormItemTextPassword, ApFieldTextAreaProps, ApFieldNumberProps, ApFieldDateProps, ApFieldDateRangeProps, ApFieldRadioProps, ApFieldSelectProps, ApFieldSwitchProps, ApFieldCheckboxProps } from '..';
|
|
9
10
|
import { ButtonSize, SizeType } from '@aplus-frontend/antdv/es/button';
|
|
@@ -82,101 +83,138 @@ export declare function getTableCellRenderNode(renderType: keyof typeof apTableR
|
|
|
82
83
|
* @param extraRenderMap
|
|
83
84
|
* @returns
|
|
84
85
|
*/
|
|
85
|
-
export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?: Record<string, ValueTypeRenderConfig>):
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
86
|
+
export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?: Record<string, ValueTypeRenderConfig>): {
|
|
87
|
+
Comp: DefineComponent<ApTableDynamicCompProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ApTableDynamicCompProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
88
|
+
render: (config: any) => VNode<unknown, unknown, {
|
|
89
|
+
[key: string]: any;
|
|
90
|
+
}>;
|
|
91
|
+
} | {
|
|
92
|
+
Comp: ({
|
|
93
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
|
|
94
|
+
focus: () => void;
|
|
95
|
+
blur: () => void;
|
|
96
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
97
|
+
disabled: boolean;
|
|
98
|
+
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
99
|
+
colon: boolean;
|
|
100
|
+
required: boolean;
|
|
101
|
+
hasFeedback: boolean;
|
|
102
|
+
autoLink: boolean;
|
|
103
|
+
validateFirst: boolean;
|
|
104
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
105
|
+
inputRef: ({
|
|
106
|
+
$: ComponentInternalInstance;
|
|
107
|
+
$data: {};
|
|
108
|
+
$props: {
|
|
109
|
+
readonly mode?: FieldMode | undefined;
|
|
110
|
+
readonly class?: unknown;
|
|
111
|
+
readonly style?: unknown;
|
|
112
|
+
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;
|
|
113
|
+
readonly lazy?: boolean | undefined;
|
|
114
|
+
readonly size?: ButtonSize;
|
|
115
|
+
readonly hidden?: boolean | undefined;
|
|
116
|
+
readonly onBlur?: FocusEventHandler | undefined;
|
|
117
|
+
readonly onChange?: ChangeEventHandler | undefined;
|
|
118
|
+
readonly onCompositionend?: CompositionEventHandler | undefined;
|
|
119
|
+
readonly onCompositionstart?: CompositionEventHandler | undefined;
|
|
120
|
+
readonly onFocus?: FocusEventHandler | undefined;
|
|
121
|
+
readonly onInput?: ChangeEventHandler | undefined;
|
|
122
|
+
readonly onKeydown?: KeyboardEventHandler | undefined;
|
|
123
|
+
readonly onKeyup?: KeyboardEventHandler | undefined;
|
|
124
|
+
readonly onMousedown?: MouseEventHandler | undefined;
|
|
125
|
+
readonly value?: string | number | undefined;
|
|
126
|
+
readonly disabled?: boolean | undefined;
|
|
127
|
+
readonly bordered?: boolean | undefined;
|
|
128
|
+
readonly prefixCls?: string | undefined;
|
|
129
|
+
readonly name?: string | undefined;
|
|
130
|
+
readonly autocomplete?: string | undefined;
|
|
131
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
132
|
+
readonly id?: string | undefined;
|
|
133
|
+
readonly placeholder?: string | number | undefined;
|
|
134
|
+
readonly prefix?: any;
|
|
135
|
+
readonly loading?: boolean | undefined;
|
|
136
|
+
readonly autofocus?: boolean | undefined;
|
|
137
|
+
readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
138
|
+
readonly suffix?: any;
|
|
139
|
+
readonly focused?: boolean | undefined;
|
|
140
|
+
readonly defaultValue?: string | number | undefined;
|
|
141
|
+
readonly maxlength?: number | undefined;
|
|
142
|
+
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
143
|
+
readonly htmlSize?: number | undefined;
|
|
144
|
+
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
145
|
+
readonly onMouseUp?: MouseEventHandler | undefined;
|
|
146
|
+
readonly onRawInput?: ChangeEventHandler | undefined;
|
|
147
|
+
readonly valueModifiers?: Record<string, any> | undefined;
|
|
148
|
+
readonly inputElement?: any;
|
|
149
|
+
readonly triggerFocus?: (() => void) | undefined;
|
|
150
|
+
readonly readonly?: boolean | undefined;
|
|
151
|
+
readonly handleReset?: MouseEventHandler | undefined;
|
|
152
|
+
readonly addonBefore?: any;
|
|
153
|
+
readonly addonAfter?: any;
|
|
154
|
+
readonly clearIcon?: any;
|
|
155
|
+
readonly allowClear?: boolean | undefined;
|
|
156
|
+
readonly inputPrefixCls?: string | undefined;
|
|
157
|
+
readonly action?: string | undefined;
|
|
158
|
+
readonly visibilityToggle?: boolean | undefined;
|
|
159
|
+
readonly visible?: boolean | undefined;
|
|
160
|
+
readonly 'onUpdate:visible'?: (((visible: boolean) => void) & ((...args: any[]) => any)) | undefined;
|
|
161
|
+
readonly emptyText?: string | undefined;
|
|
162
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
163
|
+
$attrs: {
|
|
164
|
+
[x: string]: unknown;
|
|
165
|
+
};
|
|
166
|
+
$refs: {
|
|
167
|
+
[x: string]: unknown;
|
|
168
|
+
};
|
|
169
|
+
$slots: Readonly<{
|
|
170
|
+
[name: string]: Slot<any> | undefined;
|
|
171
|
+
}>;
|
|
172
|
+
$root: ComponentPublicInstance | null;
|
|
173
|
+
$parent: ComponentPublicInstance | null;
|
|
174
|
+
$host: Element | null;
|
|
175
|
+
$emit: ((event: "update:value", ...args: any[]) => void) & ((event: "update:visible", ...args: any[]) => void);
|
|
176
|
+
$el: any;
|
|
177
|
+
$options: ComponentOptionsBase<Readonly< ApFieldTextPasswordProps> & Readonly<{
|
|
178
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
179
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
180
|
+
}>, {
|
|
181
|
+
focus: () => void;
|
|
182
|
+
blur: () => void;
|
|
183
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
184
|
+
"update:value": (...args: any[]) => void;
|
|
185
|
+
"update:visible": (...args: any[]) => void;
|
|
186
|
+
}, string, {
|
|
187
|
+
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
188
|
+
mode: FieldMode;
|
|
189
|
+
visible: boolean;
|
|
190
|
+
disabled: boolean;
|
|
191
|
+
bordered: boolean;
|
|
192
|
+
lazy: boolean;
|
|
193
|
+
allowClear: boolean;
|
|
194
|
+
emptyText: string;
|
|
195
|
+
action: string;
|
|
196
|
+
visibilityToggle: boolean;
|
|
197
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
198
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
199
|
+
created?: (() => void) | (() => void)[];
|
|
200
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
201
|
+
mounted?: (() => void) | (() => void)[];
|
|
202
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
203
|
+
updated?: (() => void) | (() => void)[];
|
|
204
|
+
activated?: (() => void) | (() => void)[];
|
|
205
|
+
deactivated?: (() => void) | (() => void)[];
|
|
206
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
207
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
208
|
+
destroyed?: (() => void) | (() => void)[];
|
|
209
|
+
unmounted?: (() => void) | (() => void)[];
|
|
210
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
211
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
212
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
213
|
+
};
|
|
214
|
+
$forceUpdate: () => void;
|
|
215
|
+
$nextTick: nextTick;
|
|
216
|
+
$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;
|
|
217
|
+
} & Readonly<{
|
|
180
218
|
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
181
219
|
mode: FieldMode;
|
|
182
220
|
visible: boolean;
|
|
@@ -187,71 +225,55 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
187
225
|
emptyText: string;
|
|
188
226
|
action: string;
|
|
189
227
|
visibilityToggle: boolean;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
}> & Omit<Readonly< ApFieldTextPasswordProps> & Readonly<{
|
|
222
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
223
|
-
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
224
|
-
}>, "blur" | "focus" | ("type" | "mode" | "visible" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText" | "action" | "visibilityToggle")> & ShallowUnwrapRef<{
|
|
228
|
+
}> & Omit<Readonly< ApFieldTextPasswordProps> & Readonly<{
|
|
229
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
230
|
+
"onUpdate:visible"?: ((...args: any[]) => any) | undefined;
|
|
231
|
+
}>, "blur" | "focus" | ("type" | "mode" | "visible" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText" | "action" | "visibilityToggle")> & ShallowUnwrapRef<{
|
|
232
|
+
focus: () => void;
|
|
233
|
+
blur: () => void;
|
|
234
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
235
|
+
$slots: Readonly<{
|
|
236
|
+
addonAfter: any;
|
|
237
|
+
addonBefore: any;
|
|
238
|
+
prefix: any;
|
|
239
|
+
suffix: any;
|
|
240
|
+
clearIcon: any;
|
|
241
|
+
iconRender: any;
|
|
242
|
+
}> & {
|
|
243
|
+
addonAfter: any;
|
|
244
|
+
addonBefore: any;
|
|
245
|
+
prefix: any;
|
|
246
|
+
suffix: any;
|
|
247
|
+
clearIcon: any;
|
|
248
|
+
iconRender: any;
|
|
249
|
+
};
|
|
250
|
+
}) | null;
|
|
251
|
+
}, any, ComponentProvideOptions, {
|
|
252
|
+
P: {};
|
|
253
|
+
B: {};
|
|
254
|
+
D: {};
|
|
255
|
+
C: {};
|
|
256
|
+
M: {};
|
|
257
|
+
Defaults: {};
|
|
258
|
+
}, Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
|
|
225
259
|
focus: () => void;
|
|
226
260
|
blur: () => void;
|
|
227
|
-
}
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
clearIcon: any;
|
|
241
|
-
iconRender: any;
|
|
242
|
-
};
|
|
243
|
-
}) | null;
|
|
244
|
-
}, any, ComponentProvideOptions, {
|
|
245
|
-
P: {};
|
|
246
|
-
B: {};
|
|
247
|
-
D: {};
|
|
248
|
-
C: {};
|
|
249
|
-
M: {};
|
|
250
|
-
Defaults: {};
|
|
251
|
-
}, Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
|
|
261
|
+
}, {}, {}, {}, {
|
|
262
|
+
disabled: boolean;
|
|
263
|
+
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
264
|
+
colon: boolean;
|
|
265
|
+
required: boolean;
|
|
266
|
+
hasFeedback: boolean;
|
|
267
|
+
autoLink: boolean;
|
|
268
|
+
validateFirst: boolean;
|
|
269
|
+
}>;
|
|
270
|
+
__isFragment?: never;
|
|
271
|
+
__isTeleport?: never;
|
|
272
|
+
__isSuspense?: never;
|
|
273
|
+
} & ComponentOptionsBase<Readonly< ApFormItemTextPasswordProps> & Readonly<{}>, {
|
|
252
274
|
focus: () => void;
|
|
253
275
|
blur: () => void;
|
|
254
|
-
}, {}, {}, {}, {
|
|
276
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
255
277
|
disabled: boolean;
|
|
256
278
|
field: Omit< ApFieldTextPasswordProps, "value" | "onUpdate:value">;
|
|
257
279
|
colon: boolean;
|
|
@@ -259,534 +281,174 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
259
281
|
hasFeedback: boolean;
|
|
260
282
|
autoLink: boolean;
|
|
261
283
|
validateFirst: boolean;
|
|
262
|
-
}
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
}
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
addonBefore: any;
|
|
281
|
-
prefix: any;
|
|
282
|
-
suffix: any;
|
|
283
|
-
clearIcon: any;
|
|
284
|
-
iconRender: any;
|
|
285
|
-
} & Omit< ApFormItemSlots, "default">> & {
|
|
286
|
-
addonAfter: any;
|
|
287
|
-
addonBefore: any;
|
|
288
|
-
prefix: any;
|
|
289
|
-
suffix: any;
|
|
290
|
-
clearIcon: any;
|
|
291
|
-
iconRender: any;
|
|
292
|
-
} & Omit< ApFormItemSlots, "default">;
|
|
293
|
-
})) | ({
|
|
294
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
295
|
-
focus: (options?: InputFocusOptions) => void;
|
|
296
|
-
blur: () => void;
|
|
297
|
-
input: any;
|
|
298
|
-
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
299
|
-
select: () => void;
|
|
300
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
301
|
-
disabled: boolean;
|
|
302
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
303
|
-
colon: boolean;
|
|
304
|
-
required: boolean;
|
|
305
|
-
hasFeedback: boolean;
|
|
306
|
-
autoLink: boolean;
|
|
307
|
-
validateFirst: boolean;
|
|
308
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
309
|
-
inputRef: ({
|
|
310
|
-
$: ComponentInternalInstance;
|
|
311
|
-
$data: {};
|
|
312
|
-
$props: {
|
|
313
|
-
readonly mode?: FieldMode | undefined;
|
|
314
|
-
readonly class?: unknown;
|
|
315
|
-
readonly style?: unknown;
|
|
316
|
-
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;
|
|
317
|
-
readonly lazy?: boolean | undefined;
|
|
318
|
-
readonly size?: ButtonSize;
|
|
319
|
-
readonly hidden?: boolean | undefined;
|
|
320
|
-
readonly onBlur?: FocusEventHandler | undefined;
|
|
321
|
-
readonly onChange?: ChangeEventHandler | undefined;
|
|
322
|
-
readonly onCompositionend?: CompositionEventHandler | undefined;
|
|
323
|
-
readonly onCompositionstart?: CompositionEventHandler | undefined;
|
|
324
|
-
readonly onFocus?: FocusEventHandler | undefined;
|
|
325
|
-
readonly onInput?: ChangeEventHandler | undefined;
|
|
326
|
-
readonly onKeydown?: KeyboardEventHandler | undefined;
|
|
327
|
-
readonly onKeyup?: KeyboardEventHandler | undefined;
|
|
328
|
-
readonly onMousedown?: MouseEventHandler | undefined;
|
|
329
|
-
readonly value?: string | number | undefined;
|
|
330
|
-
readonly disabled?: boolean | undefined;
|
|
331
|
-
readonly bordered?: boolean | undefined;
|
|
332
|
-
readonly prefixCls?: string | undefined;
|
|
333
|
-
readonly name?: string | undefined;
|
|
334
|
-
readonly autocomplete?: string | undefined;
|
|
335
|
-
readonly status?: "" | "error" | "warning" | undefined;
|
|
336
|
-
readonly id?: string | undefined;
|
|
337
|
-
readonly placeholder?: string | number | undefined;
|
|
338
|
-
readonly prefix?: any;
|
|
339
|
-
readonly loading?: boolean | undefined;
|
|
340
|
-
readonly autofocus?: boolean | undefined;
|
|
341
|
-
readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
342
|
-
readonly suffix?: any;
|
|
343
|
-
readonly focused?: boolean | undefined;
|
|
344
|
-
readonly defaultValue?: string | number | undefined;
|
|
345
|
-
readonly maxlength?: number | undefined;
|
|
346
|
-
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
347
|
-
readonly htmlSize?: number | undefined;
|
|
348
|
-
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
349
|
-
readonly onMouseUp?: MouseEventHandler | undefined;
|
|
350
|
-
readonly onRawInput?: ChangeEventHandler | undefined;
|
|
351
|
-
readonly valueModifiers?: Record<string, any> | undefined;
|
|
352
|
-
readonly inputElement?: any;
|
|
353
|
-
readonly triggerFocus?: (() => void) | undefined;
|
|
354
|
-
readonly readonly?: boolean | undefined;
|
|
355
|
-
readonly handleReset?: MouseEventHandler | undefined;
|
|
356
|
-
readonly addonBefore?: any;
|
|
357
|
-
readonly addonAfter?: any;
|
|
358
|
-
readonly clearIcon?: any;
|
|
359
|
-
readonly allowClear?: boolean | undefined;
|
|
360
|
-
readonly emptyText?: string | undefined;
|
|
361
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
362
|
-
$attrs: {
|
|
363
|
-
[x: string]: unknown;
|
|
364
|
-
};
|
|
365
|
-
$refs: {
|
|
366
|
-
[x: string]: unknown;
|
|
367
|
-
};
|
|
368
|
-
$slots: Readonly<{
|
|
369
|
-
[name: string]: Slot<any> | undefined;
|
|
370
|
-
}>;
|
|
371
|
-
$root: ComponentPublicInstance | null;
|
|
372
|
-
$parent: ComponentPublicInstance | null;
|
|
373
|
-
$host: Element | null;
|
|
374
|
-
$emit: (event: "update:value", ...args: any[]) => void;
|
|
375
|
-
$el: any;
|
|
376
|
-
$options: ComponentOptionsBase<Readonly< ApFieldTextProps> & Readonly<{
|
|
377
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
378
|
-
}>, {
|
|
379
|
-
focus: (options?: InputFocusOptions) => void;
|
|
380
|
-
blur: () => void;
|
|
381
|
-
input: any;
|
|
382
|
-
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
383
|
-
select: () => void;
|
|
384
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
385
|
-
"update:value": (...args: any[]) => void;
|
|
386
|
-
}, string, {
|
|
387
|
-
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
388
|
-
mode: FieldMode;
|
|
389
|
-
disabled: boolean;
|
|
390
|
-
bordered: boolean;
|
|
391
|
-
lazy: boolean;
|
|
392
|
-
allowClear: boolean;
|
|
393
|
-
emptyText: string;
|
|
394
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
395
|
-
beforeCreate?: (() => void) | (() => void)[];
|
|
396
|
-
created?: (() => void) | (() => void)[];
|
|
397
|
-
beforeMount?: (() => void) | (() => void)[];
|
|
398
|
-
mounted?: (() => void) | (() => void)[];
|
|
399
|
-
beforeUpdate?: (() => void) | (() => void)[];
|
|
400
|
-
updated?: (() => void) | (() => void)[];
|
|
401
|
-
activated?: (() => void) | (() => void)[];
|
|
402
|
-
deactivated?: (() => void) | (() => void)[];
|
|
403
|
-
beforeDestroy?: (() => void) | (() => void)[];
|
|
404
|
-
beforeUnmount?: (() => void) | (() => void)[];
|
|
405
|
-
destroyed?: (() => void) | (() => void)[];
|
|
406
|
-
unmounted?: (() => void) | (() => void)[];
|
|
407
|
-
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
408
|
-
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
409
|
-
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
410
|
-
};
|
|
411
|
-
$forceUpdate: () => void;
|
|
412
|
-
$nextTick: nextTick;
|
|
413
|
-
$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;
|
|
414
|
-
} & Readonly<{
|
|
415
|
-
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
416
|
-
mode: FieldMode;
|
|
417
|
-
disabled: boolean;
|
|
418
|
-
bordered: boolean;
|
|
419
|
-
lazy: boolean;
|
|
420
|
-
allowClear: boolean;
|
|
421
|
-
emptyText: string;
|
|
422
|
-
}> & Omit<Readonly< ApFieldTextProps> & Readonly<{
|
|
423
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
424
|
-
}>, "blur" | "focus" | "input" | "select" | ("type" | "mode" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText") | "setSelectionRange"> & ShallowUnwrapRef<{
|
|
284
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
285
|
+
$slots: Readonly<{
|
|
286
|
+
addonAfter: any;
|
|
287
|
+
addonBefore: any;
|
|
288
|
+
prefix: any;
|
|
289
|
+
suffix: any;
|
|
290
|
+
clearIcon: any;
|
|
291
|
+
iconRender: any;
|
|
292
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
293
|
+
addonAfter: any;
|
|
294
|
+
addonBefore: any;
|
|
295
|
+
prefix: any;
|
|
296
|
+
suffix: any;
|
|
297
|
+
clearIcon: any;
|
|
298
|
+
iconRender: any;
|
|
299
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
300
|
+
})) | ({
|
|
301
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
425
302
|
focus: (options?: InputFocusOptions) => void;
|
|
426
303
|
blur: () => void;
|
|
427
304
|
input: any;
|
|
428
305
|
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
429
306
|
select: () => void;
|
|
430
|
-
}
|
|
431
|
-
$slots: Readonly<{
|
|
432
|
-
addonAfter?: any;
|
|
433
|
-
addonBefore?: any;
|
|
434
|
-
prefix?: any;
|
|
435
|
-
suffix?: any;
|
|
436
|
-
clearIcon?: any;
|
|
437
|
-
}> & {
|
|
438
|
-
addonAfter?: any;
|
|
439
|
-
addonBefore?: any;
|
|
440
|
-
prefix?: any;
|
|
441
|
-
suffix?: any;
|
|
442
|
-
clearIcon?: any;
|
|
443
|
-
};
|
|
444
|
-
}) | null;
|
|
445
|
-
}, any, ComponentProvideOptions, {
|
|
446
|
-
P: {};
|
|
447
|
-
B: {};
|
|
448
|
-
D: {};
|
|
449
|
-
C: {};
|
|
450
|
-
M: {};
|
|
451
|
-
Defaults: {};
|
|
452
|
-
}, Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
453
|
-
focus: (options?: InputFocusOptions) => void;
|
|
454
|
-
blur: () => void;
|
|
455
|
-
input: any;
|
|
456
|
-
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
457
|
-
select: () => void;
|
|
458
|
-
}, {}, {}, {}, {
|
|
459
|
-
disabled: boolean;
|
|
460
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
461
|
-
colon: boolean;
|
|
462
|
-
required: boolean;
|
|
463
|
-
hasFeedback: boolean;
|
|
464
|
-
autoLink: boolean;
|
|
465
|
-
validateFirst: boolean;
|
|
466
|
-
}>;
|
|
467
|
-
__isFragment?: never;
|
|
468
|
-
__isTeleport?: never;
|
|
469
|
-
__isSuspense?: never;
|
|
470
|
-
} & ComponentOptionsBase<Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
471
|
-
focus: (options?: InputFocusOptions) => void;
|
|
472
|
-
blur: () => void;
|
|
473
|
-
input: any;
|
|
474
|
-
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
475
|
-
select: () => void;
|
|
476
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
477
|
-
disabled: boolean;
|
|
478
|
-
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
479
|
-
colon: boolean;
|
|
480
|
-
required: boolean;
|
|
481
|
-
hasFeedback: boolean;
|
|
482
|
-
autoLink: boolean;
|
|
483
|
-
validateFirst: boolean;
|
|
484
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
485
|
-
$slots: Readonly<{
|
|
486
|
-
addonAfter: any;
|
|
487
|
-
addonBefore: any;
|
|
488
|
-
prefix: any;
|
|
489
|
-
suffix: any;
|
|
490
|
-
clearIcon: any;
|
|
491
|
-
} & Omit< ApFormItemSlots, "default">> & {
|
|
492
|
-
addonAfter: any;
|
|
493
|
-
addonBefore: any;
|
|
494
|
-
prefix: any;
|
|
495
|
-
suffix: any;
|
|
496
|
-
clearIcon: any;
|
|
497
|
-
} & Omit< ApFormItemSlots, "default">;
|
|
498
|
-
}) & {
|
|
499
|
-
Password: ApFormItemTextPassword;
|
|
500
|
-
Group: ApFormItemTextGroup;
|
|
501
|
-
}) | ({
|
|
502
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
503
|
-
focus: (options?: InputFocusOptions) => void;
|
|
504
|
-
blur: () => void;
|
|
505
|
-
resizableTextArea: any;
|
|
506
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
507
|
-
disabled: boolean;
|
|
508
|
-
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
509
|
-
colon: boolean;
|
|
510
|
-
required: boolean;
|
|
511
|
-
hasFeedback: boolean;
|
|
512
|
-
autoLink: boolean;
|
|
513
|
-
validateFirst: boolean;
|
|
514
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
515
|
-
textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldTextAreaProps> & Readonly<{
|
|
516
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
517
|
-
}>, {
|
|
518
|
-
focus: (options?: InputFocusOptions) => void;
|
|
519
|
-
blur: () => void;
|
|
520
|
-
resizableTextArea: ComputedRef<any>;
|
|
521
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
522
|
-
"update:value": (...args: any[]) => void;
|
|
523
|
-
}, PublicProps, {
|
|
524
|
-
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
525
|
-
mode: FieldMode;
|
|
307
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
526
308
|
disabled: boolean;
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
309
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
310
|
+
colon: boolean;
|
|
311
|
+
required: boolean;
|
|
312
|
+
hasFeedback: boolean;
|
|
313
|
+
autoLink: boolean;
|
|
314
|
+
validateFirst: boolean;
|
|
531
315
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
type
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
316
|
+
inputRef: ({
|
|
317
|
+
$: ComponentInternalInstance;
|
|
318
|
+
$data: {};
|
|
319
|
+
$props: {
|
|
320
|
+
readonly mode?: FieldMode | undefined;
|
|
321
|
+
readonly class?: unknown;
|
|
322
|
+
readonly style?: unknown;
|
|
323
|
+
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;
|
|
324
|
+
readonly lazy?: boolean | undefined;
|
|
325
|
+
readonly size?: ButtonSize;
|
|
326
|
+
readonly hidden?: boolean | undefined;
|
|
327
|
+
readonly onBlur?: FocusEventHandler | undefined;
|
|
328
|
+
readonly onChange?: ChangeEventHandler | undefined;
|
|
329
|
+
readonly onCompositionend?: CompositionEventHandler | undefined;
|
|
330
|
+
readonly onCompositionstart?: CompositionEventHandler | undefined;
|
|
331
|
+
readonly onFocus?: FocusEventHandler | undefined;
|
|
332
|
+
readonly onInput?: ChangeEventHandler | undefined;
|
|
333
|
+
readonly onKeydown?: KeyboardEventHandler | undefined;
|
|
334
|
+
readonly onKeyup?: KeyboardEventHandler | undefined;
|
|
335
|
+
readonly onMousedown?: MouseEventHandler | undefined;
|
|
336
|
+
readonly value?: string | number | undefined;
|
|
337
|
+
readonly disabled?: boolean | undefined;
|
|
338
|
+
readonly bordered?: boolean | undefined;
|
|
339
|
+
readonly prefixCls?: string | undefined;
|
|
340
|
+
readonly name?: string | undefined;
|
|
341
|
+
readonly autocomplete?: string | undefined;
|
|
342
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
343
|
+
readonly id?: string | undefined;
|
|
344
|
+
readonly placeholder?: string | number | undefined;
|
|
345
|
+
readonly prefix?: any;
|
|
346
|
+
readonly loading?: boolean | undefined;
|
|
347
|
+
readonly autofocus?: boolean | undefined;
|
|
348
|
+
readonly 'onUpdate:value'?: (((val: string) => void) & ((...args: any[]) => any)) | undefined;
|
|
349
|
+
readonly suffix?: any;
|
|
350
|
+
readonly focused?: boolean | undefined;
|
|
351
|
+
readonly defaultValue?: string | number | undefined;
|
|
352
|
+
readonly maxlength?: number | undefined;
|
|
353
|
+
readonly showCount?: boolean | ShowCountProps | undefined;
|
|
354
|
+
readonly htmlSize?: number | undefined;
|
|
355
|
+
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
356
|
+
readonly onMouseUp?: MouseEventHandler | undefined;
|
|
357
|
+
readonly onRawInput?: ChangeEventHandler | undefined;
|
|
358
|
+
readonly valueModifiers?: Record<string, any> | undefined;
|
|
359
|
+
readonly inputElement?: any;
|
|
360
|
+
readonly triggerFocus?: (() => void) | undefined;
|
|
361
|
+
readonly readonly?: boolean | undefined;
|
|
362
|
+
readonly handleReset?: MouseEventHandler | undefined;
|
|
363
|
+
readonly addonBefore?: any;
|
|
364
|
+
readonly addonAfter?: any;
|
|
365
|
+
readonly clearIcon?: any;
|
|
366
|
+
readonly allowClear?: boolean | undefined;
|
|
367
|
+
readonly emptyText?: string | undefined;
|
|
368
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
369
|
+
$attrs: {
|
|
370
|
+
[x: string]: unknown;
|
|
580
371
|
};
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
default: any;
|
|
372
|
+
$refs: {
|
|
373
|
+
[x: string]: unknown;
|
|
584
374
|
};
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
onMouseUp: {
|
|
628
|
-
type: PropType<MouseEventHandler>;
|
|
629
|
-
default: any;
|
|
630
|
-
};
|
|
631
|
-
onRawInput: PropType<ChangeEventHandler>;
|
|
632
|
-
inputElement: VueTypeValidableDef<any>;
|
|
633
|
-
triggerFocus: PropType<() => void>;
|
|
634
|
-
handleReset: PropType<MouseEventHandler>;
|
|
635
|
-
clearIcon: VueTypeValidableDef<any>;
|
|
636
|
-
allowClear: {
|
|
637
|
-
type: BooleanConstructor;
|
|
638
|
-
default: any;
|
|
375
|
+
$slots: Readonly<{
|
|
376
|
+
[name: string]: Slot<any> | undefined;
|
|
377
|
+
}>;
|
|
378
|
+
$root: ComponentPublicInstance | null;
|
|
379
|
+
$parent: ComponentPublicInstance | null;
|
|
380
|
+
$host: Element | null;
|
|
381
|
+
$emit: (event: "update:value", ...args: any[]) => void;
|
|
382
|
+
$el: any;
|
|
383
|
+
$options: ComponentOptionsBase<Readonly< ApFieldTextProps> & Readonly<{
|
|
384
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
385
|
+
}>, {
|
|
386
|
+
focus: (options?: InputFocusOptions) => void;
|
|
387
|
+
blur: () => void;
|
|
388
|
+
input: any;
|
|
389
|
+
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
390
|
+
select: () => void;
|
|
391
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
392
|
+
"update:value": (...args: any[]) => void;
|
|
393
|
+
}, string, {
|
|
394
|
+
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
395
|
+
mode: FieldMode;
|
|
396
|
+
disabled: boolean;
|
|
397
|
+
bordered: boolean;
|
|
398
|
+
lazy: boolean;
|
|
399
|
+
allowClear: boolean;
|
|
400
|
+
emptyText: string;
|
|
401
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
402
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
403
|
+
created?: (() => void) | (() => void)[];
|
|
404
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
405
|
+
mounted?: (() => void) | (() => void)[];
|
|
406
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
407
|
+
updated?: (() => void) | (() => void)[];
|
|
408
|
+
activated?: (() => void) | (() => void)[];
|
|
409
|
+
deactivated?: (() => void) | (() => void)[];
|
|
410
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
411
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
412
|
+
destroyed?: (() => void) | (() => void)[];
|
|
413
|
+
unmounted?: (() => void) | (() => void)[];
|
|
414
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
415
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
416
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
639
417
|
};
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
418
|
+
$forceUpdate: () => void;
|
|
419
|
+
$nextTick: nextTick;
|
|
420
|
+
$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;
|
|
421
|
+
} & Readonly<{
|
|
422
|
+
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
423
|
+
mode: FieldMode;
|
|
646
424
|
disabled: boolean;
|
|
647
|
-
autofocus: boolean;
|
|
648
|
-
readonly: boolean;
|
|
649
|
-
defaultValue: string | number;
|
|
650
|
-
loading: boolean;
|
|
651
|
-
lazy: boolean;
|
|
652
425
|
bordered: boolean;
|
|
653
|
-
onMouseUp: MouseEventHandler;
|
|
654
|
-
allowClear: boolean;
|
|
655
|
-
autosize: any;
|
|
656
|
-
autoSize: any;
|
|
657
|
-
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
658
|
-
P: {};
|
|
659
|
-
B: {};
|
|
660
|
-
D: {};
|
|
661
|
-
C: {};
|
|
662
|
-
M: {};
|
|
663
|
-
Defaults: {};
|
|
664
|
-
}, Readonly< ExtractPropTypes<{
|
|
665
|
-
rows: NumberConstructor;
|
|
666
|
-
autosize: {
|
|
667
|
-
type: PropType<boolean | AutoSizeType>;
|
|
668
|
-
default: any;
|
|
669
|
-
};
|
|
670
|
-
autoSize: {
|
|
671
|
-
type: PropType<boolean | AutoSizeType>;
|
|
672
|
-
default: any;
|
|
673
|
-
};
|
|
674
|
-
onResize: {
|
|
675
|
-
type: PropType<(size: {
|
|
676
|
-
width: number;
|
|
677
|
-
height: number;
|
|
678
|
-
}) => void>;
|
|
679
|
-
};
|
|
680
|
-
onCompositionstart: {
|
|
681
|
-
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
682
|
-
};
|
|
683
|
-
onCompositionend: {
|
|
684
|
-
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
685
|
-
};
|
|
686
|
-
valueModifiers: ObjectConstructor;
|
|
687
|
-
size: {
|
|
688
|
-
type: PropType<SizeType>;
|
|
689
|
-
};
|
|
690
|
-
value: {
|
|
691
|
-
type: PropType<string | number>;
|
|
692
|
-
default: any;
|
|
693
|
-
};
|
|
694
|
-
name: StringConstructor;
|
|
695
|
-
type: {
|
|
696
|
-
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">;
|
|
697
|
-
default: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
698
|
-
};
|
|
699
|
-
onFocus: PropType<FocusEventHandler>;
|
|
700
|
-
onBlur: PropType<FocusEventHandler>;
|
|
701
|
-
onChange: PropType<ChangeEventHandler>;
|
|
702
|
-
onInput: PropType<ChangeEventHandler>;
|
|
703
|
-
onKeydown: PropType<KeyboardEventHandler>;
|
|
704
|
-
onKeyup: PropType<KeyboardEventHandler>;
|
|
705
|
-
onMousedown: {
|
|
706
|
-
type: PropType<MouseEventHandler>;
|
|
707
|
-
default: any;
|
|
708
|
-
};
|
|
709
|
-
focused: {
|
|
710
|
-
type: BooleanConstructor;
|
|
711
|
-
default: any;
|
|
712
|
-
};
|
|
713
|
-
hidden: {
|
|
714
|
-
type: BooleanConstructor;
|
|
715
|
-
default: any;
|
|
716
|
-
};
|
|
717
|
-
disabled: {
|
|
718
|
-
type: BooleanConstructor;
|
|
719
|
-
default: any;
|
|
720
|
-
};
|
|
721
|
-
prefixCls: StringConstructor;
|
|
722
|
-
id: StringConstructor;
|
|
723
|
-
autofocus: {
|
|
724
|
-
type: BooleanConstructor;
|
|
725
|
-
default: any;
|
|
726
|
-
};
|
|
727
|
-
autocomplete: StringConstructor;
|
|
728
|
-
readonly: {
|
|
729
|
-
type: BooleanConstructor;
|
|
730
|
-
default: any;
|
|
731
|
-
};
|
|
732
|
-
status: PropType<"" | "error" | "warning">;
|
|
733
|
-
defaultValue: {
|
|
734
|
-
type: PropType<string | number>;
|
|
735
|
-
default: any;
|
|
736
|
-
};
|
|
737
|
-
'onUpdate:value': PropType<(val: string) => void>;
|
|
738
|
-
loading: {
|
|
739
|
-
type: BooleanConstructor;
|
|
740
|
-
default: any;
|
|
741
|
-
};
|
|
742
|
-
placeholder: {
|
|
743
|
-
type: PropType<string | number>;
|
|
744
|
-
};
|
|
745
|
-
lazy: {
|
|
746
|
-
type: BooleanConstructor;
|
|
747
|
-
default: boolean;
|
|
748
|
-
};
|
|
749
|
-
maxlength: NumberConstructor;
|
|
750
|
-
bordered: {
|
|
751
|
-
type: BooleanConstructor;
|
|
752
|
-
default: any;
|
|
753
|
-
};
|
|
754
|
-
showCount: {
|
|
755
|
-
type: PropType<boolean | ShowCountProps>;
|
|
756
|
-
};
|
|
757
|
-
htmlSize: NumberConstructor;
|
|
758
|
-
onPressEnter: PropType<KeyboardEventHandler>;
|
|
759
|
-
onMouseUp: {
|
|
760
|
-
type: PropType<MouseEventHandler>;
|
|
761
|
-
default: any;
|
|
762
|
-
};
|
|
763
|
-
onRawInput: PropType<ChangeEventHandler>;
|
|
764
|
-
inputElement: VueTypeValidableDef<any>;
|
|
765
|
-
triggerFocus: PropType<() => void>;
|
|
766
|
-
handleReset: PropType<MouseEventHandler>;
|
|
767
|
-
clearIcon: VueTypeValidableDef<any>;
|
|
768
|
-
allowClear: {
|
|
769
|
-
type: BooleanConstructor;
|
|
770
|
-
default: any;
|
|
771
|
-
};
|
|
772
|
-
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
773
|
-
value: string | number;
|
|
774
|
-
type: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
775
|
-
onMousedown: MouseEventHandler;
|
|
776
|
-
focused: boolean;
|
|
777
|
-
hidden: boolean;
|
|
778
|
-
disabled: boolean;
|
|
779
|
-
autofocus: boolean;
|
|
780
|
-
readonly: boolean;
|
|
781
|
-
defaultValue: string | number;
|
|
782
|
-
loading: boolean;
|
|
783
426
|
lazy: boolean;
|
|
784
|
-
bordered: boolean;
|
|
785
|
-
onMouseUp: MouseEventHandler;
|
|
786
427
|
allowClear: boolean;
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
428
|
+
emptyText: string;
|
|
429
|
+
}> & Omit<Readonly< ApFieldTextProps> & Readonly<{
|
|
430
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
431
|
+
}>, "blur" | "focus" | "input" | "select" | ("type" | "mode" | "disabled" | "bordered" | "lazy" | "allowClear" | "emptyText") | "setSelectionRange"> & ShallowUnwrapRef<{
|
|
432
|
+
focus: (options?: InputFocusOptions) => void;
|
|
433
|
+
blur: () => void;
|
|
434
|
+
input: any;
|
|
435
|
+
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
436
|
+
select: () => void;
|
|
437
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
438
|
+
$slots: Readonly<{
|
|
439
|
+
addonAfter?: any;
|
|
440
|
+
addonBefore?: any;
|
|
441
|
+
prefix?: any;
|
|
442
|
+
suffix?: any;
|
|
443
|
+
clearIcon?: any;
|
|
444
|
+
}> & {
|
|
445
|
+
addonAfter?: any;
|
|
446
|
+
addonBefore?: any;
|
|
447
|
+
prefix?: any;
|
|
448
|
+
suffix?: any;
|
|
449
|
+
clearIcon?: any;
|
|
450
|
+
};
|
|
451
|
+
}) | null;
|
|
790
452
|
}, any, ComponentProvideOptions, {
|
|
791
453
|
P: {};
|
|
792
454
|
B: {};
|
|
@@ -794,299 +456,212 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
794
456
|
C: {};
|
|
795
457
|
M: {};
|
|
796
458
|
Defaults: {};
|
|
797
|
-
}, Readonly<
|
|
798
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
799
|
-
}>, {
|
|
459
|
+
}, Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
800
460
|
focus: (options?: InputFocusOptions) => void;
|
|
801
461
|
blur: () => void;
|
|
802
|
-
|
|
462
|
+
input: any;
|
|
463
|
+
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
464
|
+
select: () => void;
|
|
803
465
|
}, {}, {}, {}, {
|
|
804
|
-
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
805
|
-
mode: FieldMode;
|
|
806
466
|
disabled: boolean;
|
|
807
|
-
|
|
808
|
-
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
Defaults: {};
|
|
819
|
-
}, Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
467
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
468
|
+
colon: boolean;
|
|
469
|
+
required: boolean;
|
|
470
|
+
hasFeedback: boolean;
|
|
471
|
+
autoLink: boolean;
|
|
472
|
+
validateFirst: boolean;
|
|
473
|
+
}>;
|
|
474
|
+
__isFragment?: never;
|
|
475
|
+
__isTeleport?: never;
|
|
476
|
+
__isSuspense?: never;
|
|
477
|
+
} & ComponentOptionsBase<Readonly< ApFormItemTextProps> & Readonly<{}>, {
|
|
820
478
|
focus: (options?: InputFocusOptions) => void;
|
|
821
479
|
blur: () => void;
|
|
822
|
-
|
|
823
|
-
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
colon: boolean;
|
|
827
|
-
required: boolean;
|
|
828
|
-
hasFeedback: boolean;
|
|
829
|
-
autoLink: boolean;
|
|
830
|
-
validateFirst: boolean;
|
|
831
|
-
}>;
|
|
832
|
-
__isFragment?: never;
|
|
833
|
-
__isTeleport?: never;
|
|
834
|
-
__isSuspense?: never;
|
|
835
|
-
} & ComponentOptionsBase<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
836
|
-
focus: (options?: InputFocusOptions) => void;
|
|
837
|
-
blur: () => void;
|
|
838
|
-
resizableTextArea: any;
|
|
839
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
840
|
-
disabled: boolean;
|
|
841
|
-
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
842
|
-
colon: boolean;
|
|
843
|
-
required: boolean;
|
|
844
|
-
hasFeedback: boolean;
|
|
845
|
-
autoLink: boolean;
|
|
846
|
-
validateFirst: boolean;
|
|
847
|
-
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
848
|
-
$slots: Readonly<{
|
|
849
|
-
label: any;
|
|
850
|
-
help: any;
|
|
851
|
-
extra: any;
|
|
852
|
-
}> & {
|
|
853
|
-
label: any;
|
|
854
|
-
help: any;
|
|
855
|
-
extra: any;
|
|
856
|
-
};
|
|
857
|
-
})) | ({
|
|
858
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemNumberProps> & Readonly<{}>, {
|
|
859
|
-
focus: () => void;
|
|
860
|
-
blur: () => void;
|
|
861
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
480
|
+
input: any;
|
|
481
|
+
setSelectionRange: (start: number, end: number, direction?: "forward" | "backward" | "none") => void;
|
|
482
|
+
select: () => void;
|
|
483
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
862
484
|
disabled: boolean;
|
|
863
|
-
field: Omit<
|
|
485
|
+
field: Omit< ApFieldTextProps, "value" | "onUpdate:value">;
|
|
864
486
|
colon: boolean;
|
|
865
487
|
required: boolean;
|
|
866
488
|
hasFeedback: boolean;
|
|
867
489
|
autoLink: boolean;
|
|
868
490
|
validateFirst: boolean;
|
|
869
|
-
},
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
|
|
874
|
-
|
|
875
|
-
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
|
|
882
|
-
|
|
883
|
-
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
923
|
-
$attrs: {
|
|
924
|
-
[x: string]: unknown;
|
|
925
|
-
};
|
|
926
|
-
$refs: {
|
|
927
|
-
[x: string]: unknown;
|
|
928
|
-
} & {
|
|
929
|
-
inputRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
930
|
-
size: {
|
|
931
|
-
type: PropType<ButtonSize>;
|
|
932
|
-
default: ButtonSize;
|
|
491
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
492
|
+
$slots: Readonly<{
|
|
493
|
+
addonAfter: any;
|
|
494
|
+
addonBefore: any;
|
|
495
|
+
prefix: any;
|
|
496
|
+
suffix: any;
|
|
497
|
+
clearIcon: any;
|
|
498
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
499
|
+
addonAfter: any;
|
|
500
|
+
addonBefore: any;
|
|
501
|
+
prefix: any;
|
|
502
|
+
suffix: any;
|
|
503
|
+
clearIcon: any;
|
|
504
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
505
|
+
}) & {
|
|
506
|
+
Password: ApFormItemTextPassword;
|
|
507
|
+
Group: ApFormItemTextGroup;
|
|
508
|
+
}) | ({
|
|
509
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
510
|
+
focus: (options?: InputFocusOptions) => void;
|
|
511
|
+
blur: () => void;
|
|
512
|
+
resizableTextArea: any;
|
|
513
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
514
|
+
disabled: boolean;
|
|
515
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
516
|
+
colon: boolean;
|
|
517
|
+
required: boolean;
|
|
518
|
+
hasFeedback: boolean;
|
|
519
|
+
autoLink: boolean;
|
|
520
|
+
validateFirst: boolean;
|
|
521
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
522
|
+
textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldTextAreaProps> & Readonly<{
|
|
523
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
524
|
+
}>, {
|
|
525
|
+
focus: (options?: InputFocusOptions) => void;
|
|
526
|
+
blur: () => void;
|
|
527
|
+
resizableTextArea: ComputedRef<any>;
|
|
528
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
529
|
+
"update:value": (...args: any[]) => void;
|
|
530
|
+
}, PublicProps, {
|
|
531
|
+
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
532
|
+
mode: FieldMode;
|
|
533
|
+
disabled: boolean;
|
|
534
|
+
bordered: boolean;
|
|
535
|
+
lazy: boolean;
|
|
536
|
+
allowClear: boolean;
|
|
537
|
+
emptyText: string;
|
|
538
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
539
|
+
textAreaRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
540
|
+
rows: NumberConstructor;
|
|
541
|
+
autosize: {
|
|
542
|
+
type: PropType<boolean | AutoSizeType>;
|
|
543
|
+
default: any;
|
|
933
544
|
};
|
|
934
|
-
|
|
935
|
-
type:
|
|
936
|
-
default:
|
|
545
|
+
autoSize: {
|
|
546
|
+
type: PropType<boolean | AutoSizeType>;
|
|
547
|
+
default: any;
|
|
937
548
|
};
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
addonAfter: VueTypeValidableDef<any>;
|
|
944
|
-
prefix: VueTypeValidableDef<any>;
|
|
945
|
-
suffix: VueTypeValidableDef<any>;
|
|
946
|
-
'onUpdate:value': {
|
|
947
|
-
type: PropType<(value: ValueType) => void>;
|
|
948
|
-
default: (value: ValueType) => void;
|
|
549
|
+
onResize: {
|
|
550
|
+
type: PropType<(size: {
|
|
551
|
+
width: number;
|
|
552
|
+
height: number;
|
|
553
|
+
}) => void>;
|
|
949
554
|
};
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
type: PropType<"" | "error" | "warning">;
|
|
953
|
-
default: "" | "error" | "warning";
|
|
555
|
+
onCompositionstart: {
|
|
556
|
+
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
954
557
|
};
|
|
955
|
-
|
|
956
|
-
type:
|
|
957
|
-
default: boolean;
|
|
558
|
+
onCompositionend: {
|
|
559
|
+
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
958
560
|
};
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
561
|
+
valueModifiers: ObjectConstructor;
|
|
562
|
+
size: {
|
|
563
|
+
type: PropType<SizeType>;
|
|
962
564
|
};
|
|
963
565
|
value: {
|
|
964
|
-
type: PropType<
|
|
965
|
-
default:
|
|
966
|
-
};
|
|
967
|
-
prefixCls: {
|
|
968
|
-
type: PropType<string>;
|
|
969
|
-
default: string;
|
|
970
|
-
};
|
|
971
|
-
min: {
|
|
972
|
-
type: PropType<ValueType>;
|
|
973
|
-
default: ValueType;
|
|
566
|
+
type: PropType<string | number>;
|
|
567
|
+
default: any;
|
|
974
568
|
};
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
569
|
+
name: StringConstructor;
|
|
570
|
+
type: {
|
|
571
|
+
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">;
|
|
572
|
+
default: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
978
573
|
};
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
574
|
+
onFocus: PropType<FocusEventHandler>;
|
|
575
|
+
onBlur: PropType<FocusEventHandler>;
|
|
576
|
+
onChange: PropType<ChangeEventHandler>;
|
|
577
|
+
onInput: PropType<ChangeEventHandler>;
|
|
578
|
+
onKeydown: PropType<KeyboardEventHandler>;
|
|
579
|
+
onKeyup: PropType<KeyboardEventHandler>;
|
|
580
|
+
onMousedown: {
|
|
581
|
+
type: PropType<MouseEventHandler>;
|
|
582
|
+
default: any;
|
|
982
583
|
};
|
|
983
|
-
|
|
984
|
-
controls: {
|
|
584
|
+
focused: {
|
|
985
585
|
type: BooleanConstructor;
|
|
986
|
-
default:
|
|
586
|
+
default: any;
|
|
987
587
|
};
|
|
988
|
-
|
|
588
|
+
hidden: {
|
|
989
589
|
type: BooleanConstructor;
|
|
990
|
-
default:
|
|
590
|
+
default: any;
|
|
991
591
|
};
|
|
992
592
|
disabled: {
|
|
993
593
|
type: BooleanConstructor;
|
|
994
|
-
default:
|
|
594
|
+
default: any;
|
|
995
595
|
};
|
|
596
|
+
prefixCls: StringConstructor;
|
|
597
|
+
id: StringConstructor;
|
|
996
598
|
autofocus: {
|
|
997
599
|
type: BooleanConstructor;
|
|
998
|
-
default:
|
|
600
|
+
default: any;
|
|
999
601
|
};
|
|
1000
|
-
|
|
602
|
+
autocomplete: StringConstructor;
|
|
603
|
+
readonly: {
|
|
1001
604
|
type: BooleanConstructor;
|
|
1002
|
-
default:
|
|
605
|
+
default: any;
|
|
1003
606
|
};
|
|
1004
|
-
|
|
1005
|
-
|
|
1006
|
-
|
|
607
|
+
status: PropType<"" | "error" | "warning">;
|
|
608
|
+
defaultValue: {
|
|
609
|
+
type: PropType<string | number>;
|
|
610
|
+
default: any;
|
|
1007
611
|
};
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
}) => string>;
|
|
1013
|
-
default: (value: ValueType, info: {
|
|
1014
|
-
userTyping: boolean;
|
|
1015
|
-
input: string;
|
|
1016
|
-
}) => string;
|
|
612
|
+
'onUpdate:value': PropType<(val: string) => void>;
|
|
613
|
+
loading: {
|
|
614
|
+
type: BooleanConstructor;
|
|
615
|
+
default: any;
|
|
1017
616
|
};
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
onInput: {
|
|
1021
|
-
type: PropType<(text: string) => void>;
|
|
1022
|
-
default: (text: string) => void;
|
|
617
|
+
placeholder: {
|
|
618
|
+
type: PropType<string | number>;
|
|
1023
619
|
};
|
|
1024
|
-
|
|
1025
|
-
type:
|
|
1026
|
-
default:
|
|
620
|
+
lazy: {
|
|
621
|
+
type: BooleanConstructor;
|
|
622
|
+
default: boolean;
|
|
1027
623
|
};
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
624
|
+
maxlength: NumberConstructor;
|
|
625
|
+
bordered: {
|
|
626
|
+
type: BooleanConstructor;
|
|
627
|
+
default: any;
|
|
1031
628
|
};
|
|
1032
|
-
|
|
1033
|
-
type: PropType<
|
|
1034
|
-
offset: ValueType;
|
|
1035
|
-
type: "up" | "down";
|
|
1036
|
-
}) => void>;
|
|
1037
|
-
default: (value: ValueType, info: {
|
|
1038
|
-
offset: ValueType;
|
|
1039
|
-
type: "up" | "down";
|
|
1040
|
-
}) => void;
|
|
629
|
+
showCount: {
|
|
630
|
+
type: PropType<boolean | ShowCountProps>;
|
|
1041
631
|
};
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
632
|
+
htmlSize: NumberConstructor;
|
|
633
|
+
onPressEnter: PropType<KeyboardEventHandler>;
|
|
634
|
+
onMouseUp: {
|
|
635
|
+
type: PropType<MouseEventHandler>;
|
|
636
|
+
default: any;
|
|
1045
637
|
};
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
638
|
+
onRawInput: PropType<ChangeEventHandler>;
|
|
639
|
+
inputElement: VueTypeValidableDef<any>;
|
|
640
|
+
triggerFocus: PropType<() => void>;
|
|
641
|
+
handleReset: PropType<MouseEventHandler>;
|
|
642
|
+
clearIcon: VueTypeValidableDef<any>;
|
|
643
|
+
allowClear: {
|
|
644
|
+
type: BooleanConstructor;
|
|
645
|
+
default: any;
|
|
1049
646
|
};
|
|
1050
647
|
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
onInput: (text: string) => void;
|
|
648
|
+
value: string | number;
|
|
649
|
+
type: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
650
|
+
onMousedown: MouseEventHandler;
|
|
651
|
+
focused: boolean;
|
|
652
|
+
hidden: boolean;
|
|
1057
653
|
disabled: boolean;
|
|
1058
|
-
max: ValueType;
|
|
1059
|
-
min: ValueType;
|
|
1060
|
-
prefixCls: string;
|
|
1061
654
|
autofocus: boolean;
|
|
1062
655
|
readonly: boolean;
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
step: ValueType;
|
|
656
|
+
defaultValue: string | number;
|
|
657
|
+
loading: boolean;
|
|
658
|
+
lazy: boolean;
|
|
1067
659
|
bordered: boolean;
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1072
|
-
|
|
1073
|
-
keyboard: boolean;
|
|
1074
|
-
onStep: (value: ValueType, info: {
|
|
1075
|
-
offset: ValueType;
|
|
1076
|
-
type: "up" | "down";
|
|
1077
|
-
}) => void;
|
|
1078
|
-
stringMode: boolean;
|
|
1079
|
-
controls: boolean;
|
|
1080
|
-
parser: (displayValue: string) => ValueType;
|
|
1081
|
-
}, true, {}, CustomSlotsType<{
|
|
1082
|
-
addonBefore?: any;
|
|
1083
|
-
addonAfter?: any;
|
|
1084
|
-
prefix?: any;
|
|
1085
|
-
suffix?: any;
|
|
1086
|
-
default?: any;
|
|
1087
|
-
upIcon?: any;
|
|
1088
|
-
downIcon?: any;
|
|
1089
|
-
}>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
660
|
+
onMouseUp: MouseEventHandler;
|
|
661
|
+
allowClear: boolean;
|
|
662
|
+
autosize: any;
|
|
663
|
+
autoSize: any;
|
|
664
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1090
665
|
P: {};
|
|
1091
666
|
B: {};
|
|
1092
667
|
D: {};
|
|
@@ -1094,247 +669,694 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1094
669
|
M: {};
|
|
1095
670
|
Defaults: {};
|
|
1096
671
|
}, Readonly< ExtractPropTypes<{
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
672
|
+
rows: NumberConstructor;
|
|
673
|
+
autosize: {
|
|
674
|
+
type: PropType<boolean | AutoSizeType>;
|
|
675
|
+
default: any;
|
|
1100
676
|
};
|
|
1101
|
-
|
|
1102
|
-
type:
|
|
1103
|
-
default:
|
|
677
|
+
autoSize: {
|
|
678
|
+
type: PropType<boolean | AutoSizeType>;
|
|
679
|
+
default: any;
|
|
1104
680
|
};
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
|
|
1110
|
-
addonAfter: VueTypeValidableDef<any>;
|
|
1111
|
-
prefix: VueTypeValidableDef<any>;
|
|
1112
|
-
suffix: VueTypeValidableDef<any>;
|
|
1113
|
-
'onUpdate:value': {
|
|
1114
|
-
type: PropType<(value: ValueType) => void>;
|
|
1115
|
-
default: (value: ValueType) => void;
|
|
681
|
+
onResize: {
|
|
682
|
+
type: PropType<(size: {
|
|
683
|
+
width: number;
|
|
684
|
+
height: number;
|
|
685
|
+
}) => void>;
|
|
1116
686
|
};
|
|
1117
|
-
|
|
1118
|
-
|
|
1119
|
-
type: PropType<"" | "error" | "warning">;
|
|
1120
|
-
default: "" | "error" | "warning";
|
|
687
|
+
onCompositionstart: {
|
|
688
|
+
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
1121
689
|
};
|
|
1122
|
-
|
|
1123
|
-
type:
|
|
1124
|
-
default: boolean;
|
|
690
|
+
onCompositionend: {
|
|
691
|
+
type: PropType< CompositionEventHandler | CompositionEventHandler[]>;
|
|
1125
692
|
};
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
|
|
693
|
+
valueModifiers: ObjectConstructor;
|
|
694
|
+
size: {
|
|
695
|
+
type: PropType<SizeType>;
|
|
1129
696
|
};
|
|
1130
697
|
value: {
|
|
1131
|
-
type: PropType<
|
|
1132
|
-
default:
|
|
698
|
+
type: PropType<string | number>;
|
|
699
|
+
default: any;
|
|
1133
700
|
};
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
|
|
701
|
+
name: StringConstructor;
|
|
702
|
+
type: {
|
|
703
|
+
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">;
|
|
704
|
+
default: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
1137
705
|
};
|
|
1138
|
-
|
|
1139
|
-
|
|
1140
|
-
|
|
706
|
+
onFocus: PropType<FocusEventHandler>;
|
|
707
|
+
onBlur: PropType<FocusEventHandler>;
|
|
708
|
+
onChange: PropType<ChangeEventHandler>;
|
|
709
|
+
onInput: PropType<ChangeEventHandler>;
|
|
710
|
+
onKeydown: PropType<KeyboardEventHandler>;
|
|
711
|
+
onKeyup: PropType<KeyboardEventHandler>;
|
|
712
|
+
onMousedown: {
|
|
713
|
+
type: PropType<MouseEventHandler>;
|
|
714
|
+
default: any;
|
|
1141
715
|
};
|
|
1142
|
-
|
|
1143
|
-
type:
|
|
1144
|
-
default:
|
|
716
|
+
focused: {
|
|
717
|
+
type: BooleanConstructor;
|
|
718
|
+
default: any;
|
|
1145
719
|
};
|
|
1146
|
-
|
|
1147
|
-
type:
|
|
1148
|
-
default:
|
|
720
|
+
hidden: {
|
|
721
|
+
type: BooleanConstructor;
|
|
722
|
+
default: any;
|
|
1149
723
|
};
|
|
1150
|
-
|
|
1151
|
-
controls: {
|
|
724
|
+
disabled: {
|
|
1152
725
|
type: BooleanConstructor;
|
|
1153
|
-
default:
|
|
726
|
+
default: any;
|
|
1154
727
|
};
|
|
728
|
+
prefixCls: StringConstructor;
|
|
729
|
+
id: StringConstructor;
|
|
730
|
+
autofocus: {
|
|
731
|
+
type: BooleanConstructor;
|
|
732
|
+
default: any;
|
|
733
|
+
};
|
|
734
|
+
autocomplete: StringConstructor;
|
|
1155
735
|
readonly: {
|
|
1156
736
|
type: BooleanConstructor;
|
|
1157
|
-
default:
|
|
737
|
+
default: any;
|
|
1158
738
|
};
|
|
1159
|
-
|
|
739
|
+
status: PropType<"" | "error" | "warning">;
|
|
740
|
+
defaultValue: {
|
|
741
|
+
type: PropType<string | number>;
|
|
742
|
+
default: any;
|
|
743
|
+
};
|
|
744
|
+
'onUpdate:value': PropType<(val: string) => void>;
|
|
745
|
+
loading: {
|
|
1160
746
|
type: BooleanConstructor;
|
|
1161
|
-
default:
|
|
747
|
+
default: any;
|
|
1162
748
|
};
|
|
1163
|
-
|
|
749
|
+
placeholder: {
|
|
750
|
+
type: PropType<string | number>;
|
|
751
|
+
};
|
|
752
|
+
lazy: {
|
|
1164
753
|
type: BooleanConstructor;
|
|
1165
754
|
default: boolean;
|
|
1166
755
|
};
|
|
1167
|
-
|
|
756
|
+
maxlength: NumberConstructor;
|
|
757
|
+
bordered: {
|
|
1168
758
|
type: BooleanConstructor;
|
|
1169
|
-
default:
|
|
759
|
+
default: any;
|
|
1170
760
|
};
|
|
1171
|
-
|
|
1172
|
-
type: PropType<
|
|
1173
|
-
default: (displayValue: string) => ValueType;
|
|
761
|
+
showCount: {
|
|
762
|
+
type: PropType<boolean | ShowCountProps>;
|
|
1174
763
|
};
|
|
1175
|
-
|
|
1176
|
-
|
|
1177
|
-
|
|
1178
|
-
|
|
1179
|
-
|
|
1180
|
-
|
|
764
|
+
htmlSize: NumberConstructor;
|
|
765
|
+
onPressEnter: PropType<KeyboardEventHandler>;
|
|
766
|
+
onMouseUp: {
|
|
767
|
+
type: PropType<MouseEventHandler>;
|
|
768
|
+
default: any;
|
|
769
|
+
};
|
|
770
|
+
onRawInput: PropType<ChangeEventHandler>;
|
|
771
|
+
inputElement: VueTypeValidableDef<any>;
|
|
772
|
+
triggerFocus: PropType<() => void>;
|
|
773
|
+
handleReset: PropType<MouseEventHandler>;
|
|
774
|
+
clearIcon: VueTypeValidableDef<any>;
|
|
775
|
+
allowClear: {
|
|
776
|
+
type: BooleanConstructor;
|
|
777
|
+
default: any;
|
|
778
|
+
};
|
|
779
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
780
|
+
value: string | number;
|
|
781
|
+
type: "number" | "reset" | "submit" | "button" | "time" | "image" | "text" | "search" | "hidden" | "color" | "checkbox" | "radio" | "range" | "date" | "url" | "email" | "week" | "month" | "datetime-local" | "file" | "password" | "tel";
|
|
782
|
+
onMousedown: MouseEventHandler;
|
|
783
|
+
focused: boolean;
|
|
784
|
+
hidden: boolean;
|
|
785
|
+
disabled: boolean;
|
|
786
|
+
autofocus: boolean;
|
|
787
|
+
readonly: boolean;
|
|
788
|
+
defaultValue: string | number;
|
|
789
|
+
loading: boolean;
|
|
790
|
+
lazy: boolean;
|
|
791
|
+
bordered: boolean;
|
|
792
|
+
onMouseUp: MouseEventHandler;
|
|
793
|
+
allowClear: boolean;
|
|
794
|
+
autosize: any;
|
|
795
|
+
autoSize: any;
|
|
796
|
+
}> | null;
|
|
797
|
+
}, any, ComponentProvideOptions, {
|
|
798
|
+
P: {};
|
|
799
|
+
B: {};
|
|
800
|
+
D: {};
|
|
801
|
+
C: {};
|
|
802
|
+
M: {};
|
|
803
|
+
Defaults: {};
|
|
804
|
+
}, Readonly< ApFieldTextAreaProps> & Readonly<{
|
|
805
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
806
|
+
}>, {
|
|
807
|
+
focus: (options?: InputFocusOptions) => void;
|
|
808
|
+
blur: () => void;
|
|
809
|
+
resizableTextArea: ComputedRef<any>;
|
|
810
|
+
}, {}, {}, {}, {
|
|
811
|
+
type: "number" | "reset" | "submit" | "button" | "search" | "time" | "month" | "date" | "week" | "hidden" | "checkbox" | "radio" | "color" | "text" | "range" | "tel" | "url" | "email" | "image" | "datetime-local" | "file" | "password";
|
|
812
|
+
mode: FieldMode;
|
|
813
|
+
disabled: boolean;
|
|
814
|
+
bordered: boolean;
|
|
815
|
+
lazy: boolean;
|
|
816
|
+
allowClear: boolean;
|
|
817
|
+
emptyText: string;
|
|
818
|
+
}> | null;
|
|
819
|
+
}, any, ComponentProvideOptions, {
|
|
820
|
+
P: {};
|
|
821
|
+
B: {};
|
|
822
|
+
D: {};
|
|
823
|
+
C: {};
|
|
824
|
+
M: {};
|
|
825
|
+
Defaults: {};
|
|
826
|
+
}, Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
827
|
+
focus: (options?: InputFocusOptions) => void;
|
|
828
|
+
blur: () => void;
|
|
829
|
+
resizableTextArea: any;
|
|
830
|
+
}, {}, {}, {}, {
|
|
831
|
+
disabled: boolean;
|
|
832
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
833
|
+
colon: boolean;
|
|
834
|
+
required: boolean;
|
|
835
|
+
hasFeedback: boolean;
|
|
836
|
+
autoLink: boolean;
|
|
837
|
+
validateFirst: boolean;
|
|
838
|
+
}>;
|
|
839
|
+
__isFragment?: never;
|
|
840
|
+
__isTeleport?: never;
|
|
841
|
+
__isSuspense?: never;
|
|
842
|
+
} & ComponentOptionsBase<Readonly< ApFormItemTextAreaProps> & Readonly<{}>, {
|
|
843
|
+
focus: (options?: InputFocusOptions) => void;
|
|
844
|
+
blur: () => void;
|
|
845
|
+
resizableTextArea: any;
|
|
846
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
847
|
+
disabled: boolean;
|
|
848
|
+
field: Omit< ApFieldTextAreaProps, "value" | "onUpdate:value">;
|
|
849
|
+
colon: boolean;
|
|
850
|
+
required: boolean;
|
|
851
|
+
hasFeedback: boolean;
|
|
852
|
+
autoLink: boolean;
|
|
853
|
+
validateFirst: boolean;
|
|
854
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
855
|
+
$slots: Readonly<{
|
|
856
|
+
label: any;
|
|
857
|
+
help: any;
|
|
858
|
+
extra: any;
|
|
859
|
+
}> & {
|
|
860
|
+
label: any;
|
|
861
|
+
help: any;
|
|
862
|
+
extra: any;
|
|
863
|
+
};
|
|
864
|
+
})) | ({
|
|
865
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemNumberProps> & Readonly<{}>, {
|
|
866
|
+
focus: () => void;
|
|
867
|
+
blur: () => void;
|
|
868
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
869
|
+
disabled: boolean;
|
|
870
|
+
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
871
|
+
colon: boolean;
|
|
872
|
+
required: boolean;
|
|
873
|
+
hasFeedback: boolean;
|
|
874
|
+
autoLink: boolean;
|
|
875
|
+
validateFirst: boolean;
|
|
876
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
877
|
+
inputNumberRef: ({
|
|
878
|
+
$: ComponentInternalInstance;
|
|
879
|
+
$data: {};
|
|
880
|
+
$props: {
|
|
881
|
+
readonly mode?: FieldMode | undefined;
|
|
882
|
+
readonly class?: unknown;
|
|
883
|
+
readonly style?: unknown;
|
|
884
|
+
readonly size?: ButtonSize;
|
|
885
|
+
readonly step?: ValueType | undefined;
|
|
886
|
+
readonly onBlur?: ((e: FocusEvent) => void) | undefined;
|
|
887
|
+
readonly onChange?: ((value: ValueType) => void) | undefined;
|
|
888
|
+
readonly onFocus?: ((e: FocusEvent) => void) | undefined;
|
|
889
|
+
readonly onInput?: ((text: string) => void) | undefined;
|
|
890
|
+
readonly value?: ValueType | undefined;
|
|
891
|
+
readonly disabled?: boolean | undefined;
|
|
892
|
+
readonly bordered?: boolean | undefined;
|
|
893
|
+
readonly prefixCls?: string | undefined;
|
|
894
|
+
readonly status?: "" | "error" | "warning" | undefined;
|
|
895
|
+
readonly keyboard?: boolean | undefined;
|
|
896
|
+
readonly autofocus?: boolean | undefined;
|
|
897
|
+
readonly 'onUpdate:value'?: (((value: ValueType) => void) & ((...args: any[]) => any)) | undefined;
|
|
898
|
+
readonly max?: ValueType | undefined;
|
|
899
|
+
readonly min?: ValueType | undefined;
|
|
900
|
+
readonly defaultValue?: ValueType | undefined;
|
|
901
|
+
readonly onPressEnter?: KeyboardEventHandler | undefined;
|
|
902
|
+
readonly readonly?: boolean | undefined;
|
|
903
|
+
readonly stringMode?: boolean | undefined;
|
|
904
|
+
readonly controls?: boolean | undefined;
|
|
905
|
+
readonly parser?: ((displayValue: string) => ValueType) | undefined;
|
|
906
|
+
readonly formatter?: ((value: ValueType, info: {
|
|
907
|
+
userTyping: boolean;
|
|
908
|
+
input: string;
|
|
909
|
+
}) => string) | undefined;
|
|
910
|
+
readonly onStep?: ((value: ValueType, info: {
|
|
911
|
+
offset: ValueType;
|
|
912
|
+
type: "up" | "down";
|
|
913
|
+
}) => void) | undefined;
|
|
914
|
+
readonly type?: string | undefined;
|
|
915
|
+
readonly name?: string | undefined;
|
|
916
|
+
readonly id?: string | undefined;
|
|
917
|
+
readonly placeholder?: string | undefined;
|
|
918
|
+
readonly tabindex?: number | undefined;
|
|
919
|
+
readonly prefix?: any;
|
|
920
|
+
readonly suffix?: any;
|
|
921
|
+
readonly valueModifiers?: Record<string, any> | undefined;
|
|
922
|
+
readonly addonBefore?: any;
|
|
923
|
+
readonly addonAfter?: any;
|
|
924
|
+
readonly precision?: number | undefined;
|
|
925
|
+
readonly decimalSeparator?: string | undefined;
|
|
926
|
+
readonly emptyText?: string | undefined;
|
|
927
|
+
readonly thousands?: boolean | undefined;
|
|
928
|
+
readonly limitDecimalsRetain?: boolean | undefined;
|
|
929
|
+
} & VNodeProps & AllowedComponentProps & ComponentCustomProps;
|
|
930
|
+
$attrs: {
|
|
931
|
+
[x: string]: unknown;
|
|
932
|
+
};
|
|
933
|
+
$refs: {
|
|
934
|
+
[x: string]: unknown;
|
|
935
|
+
} & {
|
|
936
|
+
inputRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
937
|
+
size: {
|
|
938
|
+
type: PropType<ButtonSize>;
|
|
939
|
+
default: ButtonSize;
|
|
940
|
+
};
|
|
941
|
+
bordered: {
|
|
942
|
+
type: BooleanConstructor;
|
|
943
|
+
default: boolean;
|
|
944
|
+
};
|
|
945
|
+
placeholder: StringConstructor;
|
|
946
|
+
name: StringConstructor;
|
|
947
|
+
id: StringConstructor;
|
|
948
|
+
type: StringConstructor;
|
|
949
|
+
addonBefore: VueTypeValidableDef<any>;
|
|
950
|
+
addonAfter: VueTypeValidableDef<any>;
|
|
951
|
+
prefix: VueTypeValidableDef<any>;
|
|
952
|
+
suffix: VueTypeValidableDef<any>;
|
|
953
|
+
'onUpdate:value': {
|
|
954
|
+
type: PropType<(value: ValueType) => void>;
|
|
955
|
+
default: (value: ValueType) => void;
|
|
956
|
+
};
|
|
957
|
+
valueModifiers: ObjectConstructor;
|
|
958
|
+
status: {
|
|
959
|
+
type: PropType<"" | "error" | "warning">;
|
|
960
|
+
default: "" | "error" | "warning";
|
|
961
|
+
};
|
|
962
|
+
stringMode: {
|
|
963
|
+
type: BooleanConstructor;
|
|
964
|
+
default: boolean;
|
|
965
|
+
};
|
|
966
|
+
defaultValue: {
|
|
967
|
+
type: PropType<ValueType>;
|
|
968
|
+
default: ValueType;
|
|
969
|
+
};
|
|
970
|
+
value: {
|
|
971
|
+
type: PropType<ValueType>;
|
|
972
|
+
default: ValueType;
|
|
973
|
+
};
|
|
974
|
+
prefixCls: {
|
|
975
|
+
type: PropType<string>;
|
|
976
|
+
default: string;
|
|
977
|
+
};
|
|
978
|
+
min: {
|
|
979
|
+
type: PropType<ValueType>;
|
|
980
|
+
default: ValueType;
|
|
981
|
+
};
|
|
982
|
+
max: {
|
|
983
|
+
type: PropType<ValueType>;
|
|
984
|
+
default: ValueType;
|
|
985
|
+
};
|
|
986
|
+
step: {
|
|
987
|
+
type: PropType<ValueType>;
|
|
988
|
+
default: ValueType;
|
|
989
|
+
};
|
|
990
|
+
tabindex: NumberConstructor;
|
|
991
|
+
controls: {
|
|
992
|
+
type: BooleanConstructor;
|
|
993
|
+
default: boolean;
|
|
994
|
+
};
|
|
995
|
+
readonly: {
|
|
996
|
+
type: BooleanConstructor;
|
|
997
|
+
default: boolean;
|
|
998
|
+
};
|
|
999
|
+
disabled: {
|
|
1000
|
+
type: BooleanConstructor;
|
|
1001
|
+
default: boolean;
|
|
1002
|
+
};
|
|
1003
|
+
autofocus: {
|
|
1004
|
+
type: BooleanConstructor;
|
|
1005
|
+
default: boolean;
|
|
1006
|
+
};
|
|
1007
|
+
keyboard: {
|
|
1008
|
+
type: BooleanConstructor;
|
|
1009
|
+
default: boolean;
|
|
1010
|
+
};
|
|
1011
|
+
parser: {
|
|
1012
|
+
type: PropType<(displayValue: string) => ValueType>;
|
|
1013
|
+
default: (displayValue: string) => ValueType;
|
|
1014
|
+
};
|
|
1015
|
+
formatter: {
|
|
1016
|
+
type: PropType<(value: ValueType, info: {
|
|
1017
|
+
userTyping: boolean;
|
|
1018
|
+
input: string;
|
|
1019
|
+
}) => string>;
|
|
1020
|
+
default: (value: ValueType, info: {
|
|
1021
|
+
userTyping: boolean;
|
|
1022
|
+
input: string;
|
|
1023
|
+
}) => string;
|
|
1024
|
+
};
|
|
1025
|
+
precision: NumberConstructor;
|
|
1026
|
+
decimalSeparator: StringConstructor;
|
|
1027
|
+
onInput: {
|
|
1028
|
+
type: PropType<(text: string) => void>;
|
|
1029
|
+
default: (text: string) => void;
|
|
1030
|
+
};
|
|
1031
|
+
onChange: {
|
|
1032
|
+
type: PropType<(value: ValueType) => void>;
|
|
1033
|
+
default: (value: ValueType) => void;
|
|
1034
|
+
};
|
|
1035
|
+
onPressEnter: {
|
|
1036
|
+
type: PropType<KeyboardEventHandler>;
|
|
1037
|
+
default: KeyboardEventHandler;
|
|
1038
|
+
};
|
|
1039
|
+
onStep: {
|
|
1040
|
+
type: PropType<(value: ValueType, info: {
|
|
1041
|
+
offset: ValueType;
|
|
1042
|
+
type: "up" | "down";
|
|
1043
|
+
}) => void>;
|
|
1044
|
+
default: (value: ValueType, info: {
|
|
1045
|
+
offset: ValueType;
|
|
1046
|
+
type: "up" | "down";
|
|
1047
|
+
}) => void;
|
|
1048
|
+
};
|
|
1049
|
+
onBlur: {
|
|
1050
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
1051
|
+
default: (e: FocusEvent) => void;
|
|
1052
|
+
};
|
|
1053
|
+
onFocus: {
|
|
1054
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
1055
|
+
default: (e: FocusEvent) => void;
|
|
1056
|
+
};
|
|
1057
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1058
|
+
size: ButtonSize;
|
|
1059
|
+
value: ValueType;
|
|
1060
|
+
onFocus: (e: FocusEvent) => void;
|
|
1061
|
+
onBlur: (e: FocusEvent) => void;
|
|
1062
|
+
onChange: (value: ValueType) => void;
|
|
1063
|
+
onInput: (text: string) => void;
|
|
1064
|
+
disabled: boolean;
|
|
1065
|
+
max: ValueType;
|
|
1066
|
+
min: ValueType;
|
|
1067
|
+
prefixCls: string;
|
|
1068
|
+
autofocus: boolean;
|
|
1069
|
+
readonly: boolean;
|
|
1070
|
+
status: "" | "error" | "warning";
|
|
1071
|
+
defaultValue: ValueType;
|
|
1072
|
+
'onUpdate:value': (value: ValueType) => void;
|
|
1073
|
+
step: ValueType;
|
|
1074
|
+
bordered: boolean;
|
|
1075
|
+
onPressEnter: KeyboardEventHandler;
|
|
1076
|
+
formatter: (value: ValueType, info: {
|
|
1181
1077
|
userTyping: boolean;
|
|
1182
1078
|
input: string;
|
|
1183
1079
|
}) => string;
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
decimalSeparator: StringConstructor;
|
|
1187
|
-
onInput: {
|
|
1188
|
-
type: PropType<(text: string) => void>;
|
|
1189
|
-
default: (text: string) => void;
|
|
1190
|
-
};
|
|
1191
|
-
onChange: {
|
|
1192
|
-
type: PropType<(value: ValueType) => void>;
|
|
1193
|
-
default: (value: ValueType) => void;
|
|
1194
|
-
};
|
|
1195
|
-
onPressEnter: {
|
|
1196
|
-
type: PropType<KeyboardEventHandler>;
|
|
1197
|
-
default: KeyboardEventHandler;
|
|
1198
|
-
};
|
|
1199
|
-
onStep: {
|
|
1200
|
-
type: PropType<(value: ValueType, info: {
|
|
1080
|
+
keyboard: boolean;
|
|
1081
|
+
onStep: (value: ValueType, info: {
|
|
1201
1082
|
offset: ValueType;
|
|
1202
1083
|
type: "up" | "down";
|
|
1203
|
-
}) => void
|
|
1204
|
-
|
|
1084
|
+
}) => void;
|
|
1085
|
+
stringMode: boolean;
|
|
1086
|
+
controls: boolean;
|
|
1087
|
+
parser: (displayValue: string) => ValueType;
|
|
1088
|
+
}, true, {}, CustomSlotsType<{
|
|
1089
|
+
addonBefore?: any;
|
|
1090
|
+
addonAfter?: any;
|
|
1091
|
+
prefix?: any;
|
|
1092
|
+
suffix?: any;
|
|
1093
|
+
default?: any;
|
|
1094
|
+
upIcon?: any;
|
|
1095
|
+
downIcon?: any;
|
|
1096
|
+
}>, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1097
|
+
P: {};
|
|
1098
|
+
B: {};
|
|
1099
|
+
D: {};
|
|
1100
|
+
C: {};
|
|
1101
|
+
M: {};
|
|
1102
|
+
Defaults: {};
|
|
1103
|
+
}, Readonly< ExtractPropTypes<{
|
|
1104
|
+
size: {
|
|
1105
|
+
type: PropType<ButtonSize>;
|
|
1106
|
+
default: ButtonSize;
|
|
1107
|
+
};
|
|
1108
|
+
bordered: {
|
|
1109
|
+
type: BooleanConstructor;
|
|
1110
|
+
default: boolean;
|
|
1111
|
+
};
|
|
1112
|
+
placeholder: StringConstructor;
|
|
1113
|
+
name: StringConstructor;
|
|
1114
|
+
id: StringConstructor;
|
|
1115
|
+
type: StringConstructor;
|
|
1116
|
+
addonBefore: VueTypeValidableDef<any>;
|
|
1117
|
+
addonAfter: VueTypeValidableDef<any>;
|
|
1118
|
+
prefix: VueTypeValidableDef<any>;
|
|
1119
|
+
suffix: VueTypeValidableDef<any>;
|
|
1120
|
+
'onUpdate:value': {
|
|
1121
|
+
type: PropType<(value: ValueType) => void>;
|
|
1122
|
+
default: (value: ValueType) => void;
|
|
1123
|
+
};
|
|
1124
|
+
valueModifiers: ObjectConstructor;
|
|
1125
|
+
status: {
|
|
1126
|
+
type: PropType<"" | "error" | "warning">;
|
|
1127
|
+
default: "" | "error" | "warning";
|
|
1128
|
+
};
|
|
1129
|
+
stringMode: {
|
|
1130
|
+
type: BooleanConstructor;
|
|
1131
|
+
default: boolean;
|
|
1132
|
+
};
|
|
1133
|
+
defaultValue: {
|
|
1134
|
+
type: PropType<ValueType>;
|
|
1135
|
+
default: ValueType;
|
|
1136
|
+
};
|
|
1137
|
+
value: {
|
|
1138
|
+
type: PropType<ValueType>;
|
|
1139
|
+
default: ValueType;
|
|
1140
|
+
};
|
|
1141
|
+
prefixCls: {
|
|
1142
|
+
type: PropType<string>;
|
|
1143
|
+
default: string;
|
|
1144
|
+
};
|
|
1145
|
+
min: {
|
|
1146
|
+
type: PropType<ValueType>;
|
|
1147
|
+
default: ValueType;
|
|
1148
|
+
};
|
|
1149
|
+
max: {
|
|
1150
|
+
type: PropType<ValueType>;
|
|
1151
|
+
default: ValueType;
|
|
1152
|
+
};
|
|
1153
|
+
step: {
|
|
1154
|
+
type: PropType<ValueType>;
|
|
1155
|
+
default: ValueType;
|
|
1156
|
+
};
|
|
1157
|
+
tabindex: NumberConstructor;
|
|
1158
|
+
controls: {
|
|
1159
|
+
type: BooleanConstructor;
|
|
1160
|
+
default: boolean;
|
|
1161
|
+
};
|
|
1162
|
+
readonly: {
|
|
1163
|
+
type: BooleanConstructor;
|
|
1164
|
+
default: boolean;
|
|
1165
|
+
};
|
|
1166
|
+
disabled: {
|
|
1167
|
+
type: BooleanConstructor;
|
|
1168
|
+
default: boolean;
|
|
1169
|
+
};
|
|
1170
|
+
autofocus: {
|
|
1171
|
+
type: BooleanConstructor;
|
|
1172
|
+
default: boolean;
|
|
1173
|
+
};
|
|
1174
|
+
keyboard: {
|
|
1175
|
+
type: BooleanConstructor;
|
|
1176
|
+
default: boolean;
|
|
1177
|
+
};
|
|
1178
|
+
parser: {
|
|
1179
|
+
type: PropType<(displayValue: string) => ValueType>;
|
|
1180
|
+
default: (displayValue: string) => ValueType;
|
|
1181
|
+
};
|
|
1182
|
+
formatter: {
|
|
1183
|
+
type: PropType<(value: ValueType, info: {
|
|
1184
|
+
userTyping: boolean;
|
|
1185
|
+
input: string;
|
|
1186
|
+
}) => string>;
|
|
1187
|
+
default: (value: ValueType, info: {
|
|
1188
|
+
userTyping: boolean;
|
|
1189
|
+
input: string;
|
|
1190
|
+
}) => string;
|
|
1191
|
+
};
|
|
1192
|
+
precision: NumberConstructor;
|
|
1193
|
+
decimalSeparator: StringConstructor;
|
|
1194
|
+
onInput: {
|
|
1195
|
+
type: PropType<(text: string) => void>;
|
|
1196
|
+
default: (text: string) => void;
|
|
1197
|
+
};
|
|
1198
|
+
onChange: {
|
|
1199
|
+
type: PropType<(value: ValueType) => void>;
|
|
1200
|
+
default: (value: ValueType) => void;
|
|
1201
|
+
};
|
|
1202
|
+
onPressEnter: {
|
|
1203
|
+
type: PropType<KeyboardEventHandler>;
|
|
1204
|
+
default: KeyboardEventHandler;
|
|
1205
|
+
};
|
|
1206
|
+
onStep: {
|
|
1207
|
+
type: PropType<(value: ValueType, info: {
|
|
1208
|
+
offset: ValueType;
|
|
1209
|
+
type: "up" | "down";
|
|
1210
|
+
}) => void>;
|
|
1211
|
+
default: (value: ValueType, info: {
|
|
1212
|
+
offset: ValueType;
|
|
1213
|
+
type: "up" | "down";
|
|
1214
|
+
}) => void;
|
|
1215
|
+
};
|
|
1216
|
+
onBlur: {
|
|
1217
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
1218
|
+
default: (e: FocusEvent) => void;
|
|
1219
|
+
};
|
|
1220
|
+
onFocus: {
|
|
1221
|
+
type: PropType<(e: FocusEvent) => void>;
|
|
1222
|
+
default: (e: FocusEvent) => void;
|
|
1223
|
+
};
|
|
1224
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
1225
|
+
size: ButtonSize;
|
|
1226
|
+
value: ValueType;
|
|
1227
|
+
onFocus: (e: FocusEvent) => void;
|
|
1228
|
+
onBlur: (e: FocusEvent) => void;
|
|
1229
|
+
onChange: (value: ValueType) => void;
|
|
1230
|
+
onInput: (text: string) => void;
|
|
1231
|
+
disabled: boolean;
|
|
1232
|
+
max: ValueType;
|
|
1233
|
+
min: ValueType;
|
|
1234
|
+
prefixCls: string;
|
|
1235
|
+
autofocus: boolean;
|
|
1236
|
+
readonly: boolean;
|
|
1237
|
+
status: "" | "error" | "warning";
|
|
1238
|
+
defaultValue: ValueType;
|
|
1239
|
+
'onUpdate:value': (value: ValueType) => void;
|
|
1240
|
+
step: ValueType;
|
|
1241
|
+
bordered: boolean;
|
|
1242
|
+
onPressEnter: KeyboardEventHandler;
|
|
1243
|
+
formatter: (value: ValueType, info: {
|
|
1244
|
+
userTyping: boolean;
|
|
1245
|
+
input: string;
|
|
1246
|
+
}) => string;
|
|
1247
|
+
keyboard: boolean;
|
|
1248
|
+
onStep: (value: ValueType, info: {
|
|
1205
1249
|
offset: ValueType;
|
|
1206
1250
|
type: "up" | "down";
|
|
1207
1251
|
}) => void;
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
|
|
1212
|
-
|
|
1213
|
-
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
|
|
1220
|
-
|
|
1221
|
-
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
|
|
1228
|
-
|
|
1229
|
-
readonly: boolean;
|
|
1230
|
-
status: "" | "error" | "warning";
|
|
1231
|
-
defaultValue: ValueType;
|
|
1232
|
-
'onUpdate:value': (value: ValueType) => void;
|
|
1252
|
+
stringMode: boolean;
|
|
1253
|
+
controls: boolean;
|
|
1254
|
+
parser: (displayValue: string) => ValueType;
|
|
1255
|
+
}> | null;
|
|
1256
|
+
};
|
|
1257
|
+
$slots: Readonly<{
|
|
1258
|
+
[name: string]: Slot<any> | undefined;
|
|
1259
|
+
}>;
|
|
1260
|
+
$root: ComponentPublicInstance | null;
|
|
1261
|
+
$parent: ComponentPublicInstance | null;
|
|
1262
|
+
$host: Element | null;
|
|
1263
|
+
$emit: (event: "update:value", ...args: any[]) => void;
|
|
1264
|
+
$el: any;
|
|
1265
|
+
$options: ComponentOptionsBase<Readonly< ApFieldNumberProps> & Readonly<{
|
|
1266
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1267
|
+
}>, {
|
|
1268
|
+
focus: () => void;
|
|
1269
|
+
blur: () => void;
|
|
1270
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1271
|
+
"update:value": (...args: any[]) => void;
|
|
1272
|
+
}, string, {
|
|
1233
1273
|
step: ValueType;
|
|
1274
|
+
disabled: boolean;
|
|
1234
1275
|
bordered: boolean;
|
|
1235
|
-
onPressEnter: KeyboardEventHandler;
|
|
1236
|
-
formatter: (value: ValueType, info: {
|
|
1237
|
-
userTyping: boolean;
|
|
1238
|
-
input: string;
|
|
1239
|
-
}) => string;
|
|
1240
1276
|
keyboard: boolean;
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
type: "up" | "down";
|
|
1244
|
-
}) => void;
|
|
1245
|
-
stringMode: boolean;
|
|
1277
|
+
max: ValueType;
|
|
1278
|
+
min: ValueType;
|
|
1246
1279
|
controls: boolean;
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1280
|
+
emptyText: string;
|
|
1281
|
+
thousands: boolean;
|
|
1282
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & {
|
|
1283
|
+
beforeCreate?: (() => void) | (() => void)[];
|
|
1284
|
+
created?: (() => void) | (() => void)[];
|
|
1285
|
+
beforeMount?: (() => void) | (() => void)[];
|
|
1286
|
+
mounted?: (() => void) | (() => void)[];
|
|
1287
|
+
beforeUpdate?: (() => void) | (() => void)[];
|
|
1288
|
+
updated?: (() => void) | (() => void)[];
|
|
1289
|
+
activated?: (() => void) | (() => void)[];
|
|
1290
|
+
deactivated?: (() => void) | (() => void)[];
|
|
1291
|
+
beforeDestroy?: (() => void) | (() => void)[];
|
|
1292
|
+
beforeUnmount?: (() => void) | (() => void)[];
|
|
1293
|
+
destroyed?: (() => void) | (() => void)[];
|
|
1294
|
+
unmounted?: (() => void) | (() => void)[];
|
|
1295
|
+
renderTracked?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1296
|
+
renderTriggered?: ((e: DebuggerEvent) => void) | ((e: DebuggerEvent) => void)[];
|
|
1297
|
+
errorCaptured?: ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void) | ((err: unknown, instance: ComponentPublicInstance | null, info: string) => boolean | void)[];
|
|
1298
|
+
};
|
|
1299
|
+
$forceUpdate: () => void;
|
|
1300
|
+
$nextTick: nextTick;
|
|
1301
|
+
$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;
|
|
1302
|
+
} & Readonly<{
|
|
1303
|
+
step: ValueType;
|
|
1266
1304
|
disabled: boolean;
|
|
1267
1305
|
bordered: boolean;
|
|
1268
1306
|
keyboard: boolean;
|
|
1269
1307
|
max: ValueType;
|
|
1270
1308
|
min: ValueType;
|
|
1271
|
-
step: ValueType;
|
|
1272
1309
|
controls: boolean;
|
|
1273
1310
|
emptyText: string;
|
|
1274
1311
|
thousands: boolean;
|
|
1275
|
-
}
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
|
|
1280
|
-
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
|
|
1287
|
-
|
|
1288
|
-
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
}> & Omit<Readonly< ApFieldNumberProps> & Readonly<{
|
|
1306
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1307
|
-
}>, "blur" | "focus" | ("disabled" | "bordered" | "keyboard" | "max" | "min" | "step" | "controls" | "emptyText" | "thousands")> & ShallowUnwrapRef<{
|
|
1312
|
+
}> & Omit<Readonly< ApFieldNumberProps> & Readonly<{
|
|
1313
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1314
|
+
}>, "blur" | "focus" | ("step" | "disabled" | "bordered" | "keyboard" | "max" | "min" | "controls" | "emptyText" | "thousands")> & ShallowUnwrapRef<{
|
|
1315
|
+
focus: () => void;
|
|
1316
|
+
blur: () => void;
|
|
1317
|
+
}> & {} & ComponentCustomProperties & {} & {
|
|
1318
|
+
$slots: Readonly<{
|
|
1319
|
+
addonBefore?: any;
|
|
1320
|
+
addonAfter?: any;
|
|
1321
|
+
prefix?: any;
|
|
1322
|
+
default?: any;
|
|
1323
|
+
upIcon?: any;
|
|
1324
|
+
downIcon?: any;
|
|
1325
|
+
}> & {
|
|
1326
|
+
addonBefore?: any;
|
|
1327
|
+
addonAfter?: any;
|
|
1328
|
+
prefix?: any;
|
|
1329
|
+
default?: any;
|
|
1330
|
+
upIcon?: any;
|
|
1331
|
+
downIcon?: any;
|
|
1332
|
+
};
|
|
1333
|
+
}) | null;
|
|
1334
|
+
}, any, ComponentProvideOptions, {
|
|
1335
|
+
P: {};
|
|
1336
|
+
B: {};
|
|
1337
|
+
D: {};
|
|
1338
|
+
C: {};
|
|
1339
|
+
M: {};
|
|
1340
|
+
Defaults: {};
|
|
1341
|
+
}, Readonly< ApFormItemNumberProps> & Readonly<{}>, {
|
|
1308
1342
|
focus: () => void;
|
|
1309
1343
|
blur: () => void;
|
|
1310
|
-
}
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
|
|
1314
|
-
|
|
1315
|
-
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
|
|
1322
|
-
|
|
1323
|
-
upIcon?: any;
|
|
1324
|
-
downIcon?: any;
|
|
1325
|
-
};
|
|
1326
|
-
}) | null;
|
|
1327
|
-
}, any, ComponentProvideOptions, {
|
|
1328
|
-
P: {};
|
|
1329
|
-
B: {};
|
|
1330
|
-
D: {};
|
|
1331
|
-
C: {};
|
|
1332
|
-
M: {};
|
|
1333
|
-
Defaults: {};
|
|
1334
|
-
}, Readonly< ApFormItemNumberProps> & Readonly<{}>, {
|
|
1344
|
+
}, {}, {}, {}, {
|
|
1345
|
+
disabled: boolean;
|
|
1346
|
+
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
1347
|
+
colon: boolean;
|
|
1348
|
+
required: boolean;
|
|
1349
|
+
hasFeedback: boolean;
|
|
1350
|
+
autoLink: boolean;
|
|
1351
|
+
validateFirst: boolean;
|
|
1352
|
+
}>;
|
|
1353
|
+
__isFragment?: never;
|
|
1354
|
+
__isTeleport?: never;
|
|
1355
|
+
__isSuspense?: never;
|
|
1356
|
+
} & ComponentOptionsBase<Readonly< ApFormItemNumberProps> & Readonly<{}>, {
|
|
1335
1357
|
focus: () => void;
|
|
1336
1358
|
blur: () => void;
|
|
1337
|
-
}, {}, {}, {}, {
|
|
1359
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1338
1360
|
disabled: boolean;
|
|
1339
1361
|
field: Omit< ApFieldNumberProps, "value" | "onUpdate:value">;
|
|
1340
1362
|
colon: boolean;
|
|
@@ -1342,54 +1364,51 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1342
1364
|
hasFeedback: boolean;
|
|
1343
1365
|
autoLink: boolean;
|
|
1344
1366
|
validateFirst: boolean;
|
|
1345
|
-
}
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
|
|
1349
|
-
|
|
1350
|
-
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
|
|
1360
|
-
}
|
|
1361
|
-
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
|
|
1368
|
-
|
|
1369
|
-
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
|
|
1384
|
-
|
|
1385
|
-
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
M: {};
|
|
1391
|
-
Defaults: {};
|
|
1392
|
-
}, Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1367
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1368
|
+
$slots: Readonly<{
|
|
1369
|
+
addonBefore?: any;
|
|
1370
|
+
addonAfter?: any;
|
|
1371
|
+
prefix?: any;
|
|
1372
|
+
default?: any;
|
|
1373
|
+
upIcon?: any;
|
|
1374
|
+
downIcon?: any;
|
|
1375
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
1376
|
+
addonBefore?: any;
|
|
1377
|
+
addonAfter?: any;
|
|
1378
|
+
prefix?: any;
|
|
1379
|
+
default?: any;
|
|
1380
|
+
upIcon?: any;
|
|
1381
|
+
downIcon?: any;
|
|
1382
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
1383
|
+
})) | ({
|
|
1384
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1385
|
+
disabled: boolean;
|
|
1386
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
1387
|
+
colon: boolean;
|
|
1388
|
+
required: boolean;
|
|
1389
|
+
hasFeedback: boolean;
|
|
1390
|
+
autoLink: boolean;
|
|
1391
|
+
validateFirst: boolean;
|
|
1392
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1393
|
+
P: {};
|
|
1394
|
+
B: {};
|
|
1395
|
+
D: {};
|
|
1396
|
+
C: {};
|
|
1397
|
+
M: {};
|
|
1398
|
+
Defaults: {};
|
|
1399
|
+
}, Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1400
|
+
disabled: boolean;
|
|
1401
|
+
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
1402
|
+
colon: boolean;
|
|
1403
|
+
required: boolean;
|
|
1404
|
+
hasFeedback: boolean;
|
|
1405
|
+
autoLink: boolean;
|
|
1406
|
+
validateFirst: boolean;
|
|
1407
|
+
}>;
|
|
1408
|
+
__isFragment?: never;
|
|
1409
|
+
__isTeleport?: never;
|
|
1410
|
+
__isSuspense?: never;
|
|
1411
|
+
} & ComponentOptionsBase<Readonly< ApFormItemDateProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1393
1412
|
disabled: boolean;
|
|
1394
1413
|
field: Omit< ApFieldDateProps, "value" | "onUpdate:value">;
|
|
1395
1414
|
colon: boolean;
|
|
@@ -1397,61 +1416,61 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1397
1416
|
hasFeedback: boolean;
|
|
1398
1417
|
autoLink: boolean;
|
|
1399
1418
|
validateFirst: boolean;
|
|
1400
|
-
}
|
|
1401
|
-
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
|
|
1416
|
-
|
|
1417
|
-
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
|
|
1432
|
-
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
|
|
1440
|
-
|
|
1441
|
-
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
}
|
|
1419
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1420
|
+
$slots: Readonly<{
|
|
1421
|
+
dateRender: any;
|
|
1422
|
+
suffixIcon?: any;
|
|
1423
|
+
prevIcon?: any;
|
|
1424
|
+
nextIcon?: any;
|
|
1425
|
+
superPrevIcon?: any;
|
|
1426
|
+
superNextIcon?: any;
|
|
1427
|
+
renderExtraFooter?: any;
|
|
1428
|
+
monthCellRender?: any;
|
|
1429
|
+
monthCellContentRender?: any;
|
|
1430
|
+
clearIcon?: any;
|
|
1431
|
+
default?: any;
|
|
1432
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
1433
|
+
dateRender: any;
|
|
1434
|
+
suffixIcon?: any;
|
|
1435
|
+
prevIcon?: any;
|
|
1436
|
+
nextIcon?: any;
|
|
1437
|
+
superPrevIcon?: any;
|
|
1438
|
+
superNextIcon?: any;
|
|
1439
|
+
renderExtraFooter?: any;
|
|
1440
|
+
monthCellRender?: any;
|
|
1441
|
+
monthCellContentRender?: any;
|
|
1442
|
+
clearIcon?: any;
|
|
1443
|
+
default?: any;
|
|
1444
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
1445
|
+
})) | ({
|
|
1446
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1447
|
+
disabled: boolean;
|
|
1448
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
1449
|
+
colon: boolean;
|
|
1450
|
+
required: boolean;
|
|
1451
|
+
hasFeedback: boolean;
|
|
1452
|
+
autoLink: boolean;
|
|
1453
|
+
validateFirst: boolean;
|
|
1454
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1455
|
+
P: {};
|
|
1456
|
+
B: {};
|
|
1457
|
+
D: {};
|
|
1458
|
+
C: {};
|
|
1459
|
+
M: {};
|
|
1460
|
+
Defaults: {};
|
|
1461
|
+
}, Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1462
|
+
disabled: boolean;
|
|
1463
|
+
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
1464
|
+
colon: boolean;
|
|
1465
|
+
required: boolean;
|
|
1466
|
+
hasFeedback: boolean;
|
|
1467
|
+
autoLink: boolean;
|
|
1468
|
+
validateFirst: boolean;
|
|
1469
|
+
}>;
|
|
1470
|
+
__isFragment?: never;
|
|
1471
|
+
__isTeleport?: never;
|
|
1472
|
+
__isSuspense?: never;
|
|
1473
|
+
} & ComponentOptionsBase<Readonly< ApFormItemDateRangeProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1455
1474
|
disabled: boolean;
|
|
1456
1475
|
field: Omit< ApFieldDateRangeProps, "value" | "onUpdate:value">;
|
|
1457
1476
|
colon: boolean;
|
|
@@ -1459,157 +1478,163 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1459
1478
|
hasFeedback: boolean;
|
|
1460
1479
|
autoLink: boolean;
|
|
1461
1480
|
validateFirst: boolean;
|
|
1462
|
-
}
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
}
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
}
|
|
1487
|
-
|
|
1488
|
-
prevIcon?: any;
|
|
1489
|
-
nextIcon?: any;
|
|
1490
|
-
superPrevIcon?: any;
|
|
1491
|
-
superNextIcon?: any;
|
|
1492
|
-
dateRender?: any;
|
|
1493
|
-
renderExtraFooter?: any;
|
|
1494
|
-
default?: any;
|
|
1495
|
-
separator?: any;
|
|
1496
|
-
clearIcon?: any;
|
|
1497
|
-
} & Omit< ApFormItemSlots, "default">;
|
|
1498
|
-
})) | ({
|
|
1499
|
-
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemRadioProps> & Readonly<{}>, {
|
|
1500
|
-
focus: () => void;
|
|
1501
|
-
blur: () => void;
|
|
1502
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1503
|
-
disabled: boolean;
|
|
1504
|
-
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
1505
|
-
colon: boolean;
|
|
1506
|
-
required: boolean;
|
|
1507
|
-
hasFeedback: boolean;
|
|
1508
|
-
autoLink: boolean;
|
|
1509
|
-
validateFirst: boolean;
|
|
1510
|
-
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1511
|
-
radioRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldRadioProps> & Readonly<{
|
|
1512
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1513
|
-
}>, {
|
|
1481
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1482
|
+
$slots: Readonly<{
|
|
1483
|
+
suffixIcon?: any;
|
|
1484
|
+
prevIcon?: any;
|
|
1485
|
+
nextIcon?: any;
|
|
1486
|
+
superPrevIcon?: any;
|
|
1487
|
+
superNextIcon?: any;
|
|
1488
|
+
dateRender?: any;
|
|
1489
|
+
renderExtraFooter?: any;
|
|
1490
|
+
default?: any;
|
|
1491
|
+
separator?: any;
|
|
1492
|
+
clearIcon?: any;
|
|
1493
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
1494
|
+
suffixIcon?: any;
|
|
1495
|
+
prevIcon?: any;
|
|
1496
|
+
nextIcon?: any;
|
|
1497
|
+
superPrevIcon?: any;
|
|
1498
|
+
superNextIcon?: any;
|
|
1499
|
+
dateRender?: any;
|
|
1500
|
+
renderExtraFooter?: any;
|
|
1501
|
+
default?: any;
|
|
1502
|
+
separator?: any;
|
|
1503
|
+
clearIcon?: any;
|
|
1504
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
1505
|
+
})) | ({
|
|
1506
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemRadioProps> & Readonly<{}>, {
|
|
1514
1507
|
focus: () => void;
|
|
1515
1508
|
blur: () => void;
|
|
1516
|
-
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1517
|
-
"update:value": (...args: any[]) => void;
|
|
1518
|
-
}, PublicProps, {
|
|
1519
|
-
mode: FieldMode;
|
|
1520
|
-
vertical: boolean;
|
|
1509
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1521
1510
|
disabled: boolean;
|
|
1522
|
-
|
|
1511
|
+
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
1512
|
+
colon: boolean;
|
|
1513
|
+
required: boolean;
|
|
1514
|
+
hasFeedback: boolean;
|
|
1515
|
+
autoLink: boolean;
|
|
1516
|
+
validateFirst: boolean;
|
|
1523
1517
|
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
};
|
|
1535
|
-
disabled: {
|
|
1536
|
-
type: BooleanConstructor;
|
|
1537
|
-
default: boolean;
|
|
1538
|
-
};
|
|
1539
|
-
name: StringConstructor;
|
|
1540
|
-
buttonStyle: {
|
|
1541
|
-
type: PropType<RadioGroupButtonStyle>;
|
|
1542
|
-
default: RadioGroupButtonStyle;
|
|
1543
|
-
};
|
|
1544
|
-
id: StringConstructor;
|
|
1545
|
-
optionType: {
|
|
1546
|
-
type: PropType<RadioGroupOptionType>;
|
|
1547
|
-
default: RadioGroupOptionType;
|
|
1548
|
-
};
|
|
1549
|
-
onChange: {
|
|
1550
|
-
type: PropType<(e: RadioChangeEvent) => void>;
|
|
1551
|
-
default: (e: RadioChangeEvent) => void;
|
|
1552
|
-
};
|
|
1553
|
-
'onUpdate:value': {
|
|
1554
|
-
type: PropType<(val: any) => void>;
|
|
1555
|
-
default: (val: any) => void;
|
|
1556
|
-
};
|
|
1557
|
-
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1558
|
-
size: "default" | "small" | "large";
|
|
1559
|
-
onChange: (e: RadioChangeEvent) => void;
|
|
1518
|
+
radioRef: CreateComponentPublicInstanceWithMixins<Readonly< ApFieldRadioProps> & Readonly<{
|
|
1519
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1520
|
+
}>, {
|
|
1521
|
+
focus: () => void;
|
|
1522
|
+
blur: () => void;
|
|
1523
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {
|
|
1524
|
+
"update:value": (...args: any[]) => void;
|
|
1525
|
+
}, PublicProps, {
|
|
1526
|
+
mode: FieldMode;
|
|
1527
|
+
vertical: boolean;
|
|
1560
1528
|
disabled: boolean;
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1529
|
+
emptyText: string;
|
|
1530
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {
|
|
1531
|
+
radioGroupRef: CreateComponentPublicInstanceWithMixins<Readonly< ExtractPropTypes<{
|
|
1532
|
+
prefixCls: StringConstructor;
|
|
1533
|
+
value: VueTypeValidableDef<any>;
|
|
1534
|
+
size: {
|
|
1535
|
+
type: PropType<"default" | "small" | "large">;
|
|
1536
|
+
default: "default" | "small" | "large";
|
|
1537
|
+
};
|
|
1538
|
+
options: {
|
|
1539
|
+
type: PropType<(string | number | RadioGroupChildOption)[]>;
|
|
1540
|
+
default: (string | number | RadioGroupChildOption)[];
|
|
1541
|
+
};
|
|
1542
|
+
disabled: {
|
|
1543
|
+
type: BooleanConstructor;
|
|
1544
|
+
default: boolean;
|
|
1545
|
+
};
|
|
1546
|
+
name: StringConstructor;
|
|
1547
|
+
buttonStyle: {
|
|
1548
|
+
type: PropType<RadioGroupButtonStyle>;
|
|
1549
|
+
default: RadioGroupButtonStyle;
|
|
1550
|
+
};
|
|
1551
|
+
id: StringConstructor;
|
|
1552
|
+
optionType: {
|
|
1553
|
+
type: PropType<RadioGroupOptionType>;
|
|
1554
|
+
default: RadioGroupOptionType;
|
|
1555
|
+
};
|
|
1556
|
+
onChange: {
|
|
1557
|
+
type: PropType<(e: RadioChangeEvent) => void>;
|
|
1558
|
+
default: (e: RadioChangeEvent) => void;
|
|
1559
|
+
};
|
|
1560
|
+
'onUpdate:value': {
|
|
1561
|
+
type: PropType<(val: any) => void>;
|
|
1562
|
+
default: (val: any) => void;
|
|
1563
|
+
};
|
|
1564
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1565
|
+
size: "default" | "small" | "large";
|
|
1566
|
+
onChange: (e: RadioChangeEvent) => void;
|
|
1567
|
+
disabled: boolean;
|
|
1568
|
+
'onUpdate:value': (val: any) => void;
|
|
1569
|
+
options: (string | number | RadioGroupChildOption)[];
|
|
1570
|
+
buttonStyle: RadioGroupButtonStyle;
|
|
1571
|
+
optionType: RadioGroupOptionType;
|
|
1572
|
+
}, true, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1573
|
+
P: {};
|
|
1574
|
+
B: {};
|
|
1575
|
+
D: {};
|
|
1576
|
+
C: {};
|
|
1577
|
+
M: {};
|
|
1578
|
+
Defaults: {};
|
|
1579
|
+
}, Readonly< ExtractPropTypes<{
|
|
1580
|
+
prefixCls: StringConstructor;
|
|
1581
|
+
value: VueTypeValidableDef<any>;
|
|
1582
|
+
size: {
|
|
1583
|
+
type: PropType<"default" | "small" | "large">;
|
|
1584
|
+
default: "default" | "small" | "large";
|
|
1585
|
+
};
|
|
1586
|
+
options: {
|
|
1587
|
+
type: PropType<(string | number | RadioGroupChildOption)[]>;
|
|
1588
|
+
default: (string | number | RadioGroupChildOption)[];
|
|
1589
|
+
};
|
|
1590
|
+
disabled: {
|
|
1591
|
+
type: BooleanConstructor;
|
|
1592
|
+
default: boolean;
|
|
1593
|
+
};
|
|
1594
|
+
name: StringConstructor;
|
|
1595
|
+
buttonStyle: {
|
|
1596
|
+
type: PropType<RadioGroupButtonStyle>;
|
|
1597
|
+
default: RadioGroupButtonStyle;
|
|
1598
|
+
};
|
|
1599
|
+
id: StringConstructor;
|
|
1600
|
+
optionType: {
|
|
1601
|
+
type: PropType<RadioGroupOptionType>;
|
|
1602
|
+
default: RadioGroupOptionType;
|
|
1603
|
+
};
|
|
1604
|
+
onChange: {
|
|
1605
|
+
type: PropType<(e: RadioChangeEvent) => void>;
|
|
1606
|
+
default: (e: RadioChangeEvent) => void;
|
|
1607
|
+
};
|
|
1608
|
+
'onUpdate:value': {
|
|
1609
|
+
type: PropType<(val: any) => void>;
|
|
1610
|
+
default: (val: any) => void;
|
|
1611
|
+
};
|
|
1612
|
+
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
1613
|
+
size: "default" | "small" | "large";
|
|
1614
|
+
onChange: (e: RadioChangeEvent) => void;
|
|
1615
|
+
disabled: boolean;
|
|
1616
|
+
'onUpdate:value': (val: any) => void;
|
|
1617
|
+
options: (string | number | RadioGroupChildOption)[];
|
|
1618
|
+
buttonStyle: RadioGroupButtonStyle;
|
|
1619
|
+
optionType: RadioGroupOptionType;
|
|
1620
|
+
}> | null;
|
|
1621
|
+
}, any, ComponentProvideOptions, {
|
|
1566
1622
|
P: {};
|
|
1567
1623
|
B: {};
|
|
1568
1624
|
D: {};
|
|
1569
1625
|
C: {};
|
|
1570
1626
|
M: {};
|
|
1571
1627
|
Defaults: {};
|
|
1572
|
-
}, Readonly<
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
type: PropType<(string | number | RadioGroupChildOption)[]>;
|
|
1581
|
-
default: (string | number | RadioGroupChildOption)[];
|
|
1582
|
-
};
|
|
1583
|
-
disabled: {
|
|
1584
|
-
type: BooleanConstructor;
|
|
1585
|
-
default: boolean;
|
|
1586
|
-
};
|
|
1587
|
-
name: StringConstructor;
|
|
1588
|
-
buttonStyle: {
|
|
1589
|
-
type: PropType<RadioGroupButtonStyle>;
|
|
1590
|
-
default: RadioGroupButtonStyle;
|
|
1591
|
-
};
|
|
1592
|
-
id: StringConstructor;
|
|
1593
|
-
optionType: {
|
|
1594
|
-
type: PropType<RadioGroupOptionType>;
|
|
1595
|
-
default: RadioGroupOptionType;
|
|
1596
|
-
};
|
|
1597
|
-
onChange: {
|
|
1598
|
-
type: PropType<(e: RadioChangeEvent) => void>;
|
|
1599
|
-
default: (e: RadioChangeEvent) => void;
|
|
1600
|
-
};
|
|
1601
|
-
'onUpdate:value': {
|
|
1602
|
-
type: PropType<(val: any) => void>;
|
|
1603
|
-
default: (val: any) => void;
|
|
1604
|
-
};
|
|
1605
|
-
}>> & Readonly<{}>, () => VueNode, {}, {}, {}, {
|
|
1606
|
-
size: "default" | "small" | "large";
|
|
1607
|
-
onChange: (e: RadioChangeEvent) => void;
|
|
1628
|
+
}, Readonly< ApFieldRadioProps> & Readonly<{
|
|
1629
|
+
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1630
|
+
}>, {
|
|
1631
|
+
focus: () => void;
|
|
1632
|
+
blur: () => void;
|
|
1633
|
+
}, {}, {}, {}, {
|
|
1634
|
+
mode: FieldMode;
|
|
1635
|
+
vertical: boolean;
|
|
1608
1636
|
disabled: boolean;
|
|
1609
|
-
|
|
1610
|
-
options: (string | number | RadioGroupChildOption)[];
|
|
1611
|
-
buttonStyle: RadioGroupButtonStyle;
|
|
1612
|
-
optionType: RadioGroupOptionType;
|
|
1637
|
+
emptyText: string;
|
|
1613
1638
|
}> | null;
|
|
1614
1639
|
}, any, ComponentProvideOptions, {
|
|
1615
1640
|
P: {};
|
|
@@ -1618,28 +1643,25 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1618
1643
|
C: {};
|
|
1619
1644
|
M: {};
|
|
1620
1645
|
Defaults: {};
|
|
1621
|
-
}, Readonly<
|
|
1622
|
-
"onUpdate:value"?: ((...args: any[]) => any) | undefined;
|
|
1623
|
-
}>, {
|
|
1646
|
+
}, Readonly< ApFormItemRadioProps> & Readonly<{}>, {
|
|
1624
1647
|
focus: () => void;
|
|
1625
1648
|
blur: () => void;
|
|
1626
1649
|
}, {}, {}, {}, {
|
|
1627
|
-
mode: FieldMode;
|
|
1628
|
-
vertical: boolean;
|
|
1629
1650
|
disabled: boolean;
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1651
|
+
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
1652
|
+
colon: boolean;
|
|
1653
|
+
required: boolean;
|
|
1654
|
+
hasFeedback: boolean;
|
|
1655
|
+
autoLink: boolean;
|
|
1656
|
+
validateFirst: boolean;
|
|
1657
|
+
}>;
|
|
1658
|
+
__isFragment?: never;
|
|
1659
|
+
__isTeleport?: never;
|
|
1660
|
+
__isSuspense?: never;
|
|
1661
|
+
} & ComponentOptionsBase<Readonly< ApFormItemRadioProps> & Readonly<{}>, {
|
|
1640
1662
|
focus: () => void;
|
|
1641
1663
|
blur: () => void;
|
|
1642
|
-
}, {}, {}, {}, {
|
|
1664
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1643
1665
|
disabled: boolean;
|
|
1644
1666
|
field: Omit< ApFieldRadioProps, "value" | "onUpdate:value">;
|
|
1645
1667
|
colon: boolean;
|
|
@@ -1647,56 +1669,57 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1647
1669
|
hasFeedback: boolean;
|
|
1648
1670
|
autoLink: boolean;
|
|
1649
1671
|
validateFirst: boolean;
|
|
1650
|
-
}
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
}, {},
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1672
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1673
|
+
$slots: Readonly<{
|
|
1674
|
+
label: any;
|
|
1675
|
+
help: any;
|
|
1676
|
+
extra: any;
|
|
1677
|
+
}> & {
|
|
1678
|
+
label: any;
|
|
1679
|
+
help: any;
|
|
1680
|
+
extra: any;
|
|
1681
|
+
};
|
|
1682
|
+
})) | ({
|
|
1683
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemSelectProps> & Readonly<{}>, {
|
|
1684
|
+
focus: () => void;
|
|
1685
|
+
blur: () => void;
|
|
1686
|
+
request: () => void;
|
|
1687
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1688
|
+
disabled: boolean;
|
|
1689
|
+
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1690
|
+
colon: boolean;
|
|
1691
|
+
required: boolean;
|
|
1692
|
+
hasFeedback: boolean;
|
|
1693
|
+
autoLink: boolean;
|
|
1694
|
+
validateFirst: boolean;
|
|
1695
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1696
|
+
P: {};
|
|
1697
|
+
B: {};
|
|
1698
|
+
D: {};
|
|
1699
|
+
C: {};
|
|
1700
|
+
M: {};
|
|
1701
|
+
Defaults: {};
|
|
1702
|
+
}, Readonly< ApFormItemSelectProps> & Readonly<{}>, {
|
|
1703
|
+
focus: () => void;
|
|
1704
|
+
blur: () => void;
|
|
1705
|
+
request: () => void;
|
|
1706
|
+
}, {}, {}, {}, {
|
|
1707
|
+
disabled: boolean;
|
|
1708
|
+
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1709
|
+
colon: boolean;
|
|
1710
|
+
required: boolean;
|
|
1711
|
+
hasFeedback: boolean;
|
|
1712
|
+
autoLink: boolean;
|
|
1713
|
+
validateFirst: boolean;
|
|
1714
|
+
}>;
|
|
1715
|
+
__isFragment?: never;
|
|
1716
|
+
__isTeleport?: never;
|
|
1717
|
+
__isSuspense?: never;
|
|
1718
|
+
} & ComponentOptionsBase<Readonly< ApFormItemSelectProps> & Readonly<{}>, {
|
|
1696
1719
|
focus: () => void;
|
|
1697
1720
|
blur: () => void;
|
|
1698
1721
|
request: () => void;
|
|
1699
|
-
}, {}, {}, {}, {
|
|
1722
|
+
}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1700
1723
|
disabled: boolean;
|
|
1701
1724
|
field: Omit< ApFieldSelectProps, "value" | "onUpdate:value">;
|
|
1702
1725
|
colon: boolean;
|
|
@@ -1704,68 +1727,65 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1704
1727
|
hasFeedback: boolean;
|
|
1705
1728
|
autoLink: boolean;
|
|
1706
1729
|
validateFirst: boolean;
|
|
1707
|
-
}
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
M: {};
|
|
1767
|
-
Defaults: {};
|
|
1768
|
-
}, Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1730
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1731
|
+
$slots: Readonly<{
|
|
1732
|
+
notFoundContent: any;
|
|
1733
|
+
suffixIcon: any;
|
|
1734
|
+
itemIcon: any;
|
|
1735
|
+
removeIcon: any;
|
|
1736
|
+
clearIcon: any;
|
|
1737
|
+
dropdownRender: any;
|
|
1738
|
+
option: any;
|
|
1739
|
+
placeholder: any;
|
|
1740
|
+
tagRender: any;
|
|
1741
|
+
maxTagPlaceholder: any;
|
|
1742
|
+
optionLabel: any;
|
|
1743
|
+
default: any;
|
|
1744
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
1745
|
+
notFoundContent: any;
|
|
1746
|
+
suffixIcon: any;
|
|
1747
|
+
itemIcon: any;
|
|
1748
|
+
removeIcon: any;
|
|
1749
|
+
clearIcon: any;
|
|
1750
|
+
dropdownRender: any;
|
|
1751
|
+
option: any;
|
|
1752
|
+
placeholder: any;
|
|
1753
|
+
tagRender: any;
|
|
1754
|
+
maxTagPlaceholder: any;
|
|
1755
|
+
optionLabel: any;
|
|
1756
|
+
default: any;
|
|
1757
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
1758
|
+
})) | ({
|
|
1759
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1760
|
+
disabled: boolean;
|
|
1761
|
+
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1762
|
+
colon: boolean;
|
|
1763
|
+
required: boolean;
|
|
1764
|
+
hasFeedback: boolean;
|
|
1765
|
+
autoLink: boolean;
|
|
1766
|
+
validateFirst: boolean;
|
|
1767
|
+
valuePropName: string;
|
|
1768
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1769
|
+
P: {};
|
|
1770
|
+
B: {};
|
|
1771
|
+
D: {};
|
|
1772
|
+
C: {};
|
|
1773
|
+
M: {};
|
|
1774
|
+
Defaults: {};
|
|
1775
|
+
}, Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1776
|
+
disabled: boolean;
|
|
1777
|
+
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1778
|
+
colon: boolean;
|
|
1779
|
+
required: boolean;
|
|
1780
|
+
hasFeedback: boolean;
|
|
1781
|
+
autoLink: boolean;
|
|
1782
|
+
validateFirst: boolean;
|
|
1783
|
+
valuePropName: string;
|
|
1784
|
+
}>;
|
|
1785
|
+
__isFragment?: never;
|
|
1786
|
+
__isTeleport?: never;
|
|
1787
|
+
__isSuspense?: never;
|
|
1788
|
+
} & ComponentOptionsBase<Readonly< ApFormItemSwitchProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1769
1789
|
disabled: boolean;
|
|
1770
1790
|
field: Omit< ApFieldSwitchProps, "checked" | "onUpdate:checked">;
|
|
1771
1791
|
colon: boolean;
|
|
@@ -1774,46 +1794,45 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1774
1794
|
autoLink: boolean;
|
|
1775
1795
|
validateFirst: boolean;
|
|
1776
1796
|
valuePropName: string;
|
|
1777
|
-
}
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
|
|
1795
|
-
|
|
1796
|
-
|
|
1797
|
-
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
|
|
1808
|
-
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
}, Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1797
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1798
|
+
$slots: Readonly<{
|
|
1799
|
+
checkedChildren: any;
|
|
1800
|
+
unCheckedChildren: any;
|
|
1801
|
+
default: any;
|
|
1802
|
+
} & Omit< ApFormItemSlots, "default">> & {
|
|
1803
|
+
checkedChildren: any;
|
|
1804
|
+
unCheckedChildren: any;
|
|
1805
|
+
default: any;
|
|
1806
|
+
} & Omit< ApFormItemSlots, "default">;
|
|
1807
|
+
})) | ({
|
|
1808
|
+
new (...args: any[]): CreateComponentPublicInstanceWithMixins<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, PublicProps, {
|
|
1809
|
+
disabled: boolean;
|
|
1810
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
1811
|
+
colon: boolean;
|
|
1812
|
+
required: boolean;
|
|
1813
|
+
hasFeedback: boolean;
|
|
1814
|
+
autoLink: boolean;
|
|
1815
|
+
validateFirst: boolean;
|
|
1816
|
+
}, false, {}, {}, GlobalComponents, GlobalDirectives, string, {}, any, ComponentProvideOptions, {
|
|
1817
|
+
P: {};
|
|
1818
|
+
B: {};
|
|
1819
|
+
D: {};
|
|
1820
|
+
C: {};
|
|
1821
|
+
M: {};
|
|
1822
|
+
Defaults: {};
|
|
1823
|
+
}, Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, {
|
|
1824
|
+
disabled: boolean;
|
|
1825
|
+
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
1826
|
+
colon: boolean;
|
|
1827
|
+
required: boolean;
|
|
1828
|
+
hasFeedback: boolean;
|
|
1829
|
+
autoLink: boolean;
|
|
1830
|
+
validateFirst: boolean;
|
|
1831
|
+
}>;
|
|
1832
|
+
__isFragment?: never;
|
|
1833
|
+
__isTeleport?: never;
|
|
1834
|
+
__isSuspense?: never;
|
|
1835
|
+
} & ComponentOptionsBase<Readonly< ApFormItemCheckboxProps> & Readonly<{}>, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, {
|
|
1817
1836
|
disabled: boolean;
|
|
1818
1837
|
field: Omit< ApFieldCheckboxProps, "value" | "onUpdate:value">;
|
|
1819
1838
|
colon: boolean;
|
|
@@ -1821,31 +1840,22 @@ export declare function getSearchFormItemRenderNode(item: any, extraRenderMap?:
|
|
|
1821
1840
|
hasFeedback: boolean;
|
|
1822
1841
|
autoLink: boolean;
|
|
1823
1842
|
validateFirst: boolean;
|
|
1824
|
-
}
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
}
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
extra: any;
|
|
1841
|
-
}> & {
|
|
1842
|
-
label: any;
|
|
1843
|
-
help: any;
|
|
1844
|
-
extra: any;
|
|
1845
|
-
};
|
|
1846
|
-
})) | (() => VNode<unknown, unknown, {
|
|
1847
|
-
[key: string]: any;
|
|
1848
|
-
}>) | (() => import("vue/jsx-runtime").JSX.Element | null);
|
|
1843
|
+
}, {}, string, {}, GlobalComponents, GlobalDirectives, string, ComponentProvideOptions> & VNodeProps & AllowedComponentProps & ComponentCustomProps & (new () => {
|
|
1844
|
+
$slots: Readonly<{
|
|
1845
|
+
label: any;
|
|
1846
|
+
help: any;
|
|
1847
|
+
extra: any;
|
|
1848
|
+
}> & {
|
|
1849
|
+
label: any;
|
|
1850
|
+
help: any;
|
|
1851
|
+
extra: any;
|
|
1852
|
+
};
|
|
1853
|
+
}));
|
|
1854
|
+
render?: undefined;
|
|
1855
|
+
} | {
|
|
1856
|
+
Comp: DefineComponent<ApTableDynamicCompProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly< ApTableDynamicCompProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
|
|
1857
|
+
render: (config: any) => import("vue/jsx-runtime").JSX.Element | null;
|
|
1858
|
+
};
|
|
1849
1859
|
/**
|
|
1850
1860
|
* 处理表格render组件的props
|
|
1851
1861
|
* @param item
|