@xiaohaih/json-form-vant 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/README.md +807 -0
- package/TODO.md +36 -0
- package/components/area/index.ts +6 -0
- package/components/area/index.vue +120 -0
- package/components/area/types.ts +84 -0
- package/components/cascader/index.ts +6 -0
- package/components/cascader/index.vue +146 -0
- package/components/cascader/types.ts +75 -0
- package/components/checkbox/index.ts +6 -0
- package/components/checkbox/index.vue +59 -0
- package/components/checkbox/types.ts +54 -0
- package/components/checkbox-group/index.ts +6 -0
- package/components/checkbox-group/index.vue +67 -0
- package/components/checkbox-group/types.ts +63 -0
- package/components/component-definition/components.ts +29 -0
- package/components/component-definition/definition.ts +25 -0
- package/components/component-definition/index.ts +4 -0
- package/components/custom-render/index.ts +6 -0
- package/components/custom-render/index.vue +66 -0
- package/components/custom-render/types.ts +43 -0
- package/components/date-picker/index.ts +6 -0
- package/components/date-picker/index.vue +130 -0
- package/components/date-picker/types.ts +91 -0
- package/components/date-time-picker-group/index.ts +6 -0
- package/components/date-time-picker-group/index.vue +158 -0
- package/components/date-time-picker-group/types.ts +115 -0
- package/components/datetime-picker/index.ts +6 -0
- package/components/datetime-picker/index.vue +128 -0
- package/components/datetime-picker/types.ts +78 -0
- package/components/dynamic-group/index.ts +10 -0
- package/components/dynamic-group/index.vue +140 -0
- package/components/dynamic-group/types.ts +68 -0
- package/components/group/assist.ts +99 -0
- package/components/group/index.ts +7 -0
- package/components/group/index.vue +117 -0
- package/components/group/types.ts +57 -0
- package/components/group/virtual-group.vue +38 -0
- package/components/index.ts +10 -0
- package/components/input/index.ts +6 -0
- package/components/input/index.vue +83 -0
- package/components/input/types.ts +43 -0
- package/components/input-slot/index.ts +6 -0
- package/components/input-slot/index.vue +148 -0
- package/components/input-slot/types.ts +34 -0
- package/components/number-keyboard/index.ts +6 -0
- package/components/number-keyboard/index.vue +81 -0
- package/components/number-keyboard/types.ts +57 -0
- package/components/password-input/index.ts +6 -0
- package/components/password-input/index.vue +103 -0
- package/components/password-input/types.ts +64 -0
- package/components/picker/index.ts +6 -0
- package/components/picker/index.vue +136 -0
- package/components/picker/types.ts +94 -0
- package/components/radio/index.ts +6 -0
- package/components/radio/index.vue +68 -0
- package/components/radio/types.ts +58 -0
- package/components/radio-group/index.ts +6 -0
- package/components/radio-group/index.vue +74 -0
- package/components/radio-group/types.ts +65 -0
- package/components/rate/index.ts +6 -0
- package/components/rate/index.vue +63 -0
- package/components/rate/types.ts +47 -0
- package/components/share.ts +78 -0
- package/components/signature/index.ts +6 -0
- package/components/signature/index.vue +65 -0
- package/components/signature/instance.vue +161 -0
- package/components/signature/types.ts +79 -0
- package/components/slider/index.ts +6 -0
- package/components/slider/index.vue +63 -0
- package/components/slider/types.ts +53 -0
- package/components/stepper/index.ts +6 -0
- package/components/stepper/index.vue +62 -0
- package/components/stepper/types.ts +47 -0
- package/components/switch/index.ts +6 -0
- package/components/switch/index.vue +61 -0
- package/components/switch/types.ts +51 -0
- package/components/time-picker/index.ts +6 -0
- package/components/time-picker/index.vue +130 -0
- package/components/time-picker/types.ts +91 -0
- package/components/tree-select/index.ts +6 -0
- package/components/tree-select/index.vue +160 -0
- package/components/tree-select/types.ts +77 -0
- package/components/upload/index.ts +6 -0
- package/components/upload/index.vue +109 -0
- package/components/upload/types.ts +85 -0
- package/components/use.ts +45 -0
- package/components/utils.ts +52 -0
- package/components/wrapper/index.ts +6 -0
- package/components/wrapper/index.vue +117 -0
- package/components/wrapper/types.ts +94 -0
- package/dist/components/area/index.d.ts +5 -0
- package/dist/components/area/index.vue.d.ts +1843 -0
- package/dist/components/area/types.d.ts +1434 -0
- package/dist/components/cascader/index.d.ts +5 -0
- package/dist/components/cascader/index.vue.d.ts +2467 -0
- package/dist/components/cascader/types.d.ts +1419 -0
- package/dist/components/checkbox/index.d.ts +5 -0
- package/dist/components/checkbox/index.vue.d.ts +1550 -0
- package/dist/components/checkbox/types.d.ts +1313 -0
- package/dist/components/checkbox-group/index.d.ts +5 -0
- package/dist/components/checkbox-group/index.vue.d.ts +1643 -0
- package/dist/components/checkbox-group/types.d.ts +1372 -0
- package/dist/components/component-definition/components.d.ts +30 -0
- package/dist/components/component-definition/index.d.ts +4 -0
- package/dist/components/custom-render/index.d.ts +5 -0
- package/dist/components/custom-render/index.vue.d.ts +1473 -0
- package/dist/components/custom-render/types.d.ts +1175 -0
- package/dist/components/date-picker/index.d.ts +5 -0
- package/dist/components/date-picker/index.vue.d.ts +1888 -0
- package/dist/components/date-picker/types.d.ts +1458 -0
- package/dist/components/date-time-picker-group/index.d.ts +5 -0
- package/dist/components/date-time-picker-group/index.vue.d.ts +2181 -0
- package/dist/components/date-time-picker-group/types.d.ts +1549 -0
- package/dist/components/dynamic-group/index.d.ts +5 -0
- package/dist/components/dynamic-group/index.vue.d.ts +457 -0
- package/dist/components/dynamic-group/types.d.ts +403 -0
- package/dist/components/group/assist.d.ts +58 -0
- package/dist/components/group/index.d.ts +6 -0
- package/dist/components/group/index.vue.d.ts +139 -0
- package/dist/components/group/types.d.ts +189 -0
- package/dist/components/group/virtual-group.vue.d.ts +42 -0
- package/dist/components/index.d.ts +3 -0
- package/dist/components/input/index.d.ts +5 -0
- package/dist/components/input/index.vue.d.ts +2229 -0
- package/dist/components/input/types.d.ts +1258 -0
- package/dist/components/input-slot/index.d.ts +5 -0
- package/dist/components/input-slot/index.vue.d.ts +626 -0
- package/dist/components/input-slot/types.d.ts +311 -0
- package/dist/components/number-keyboard/index.d.ts +5 -0
- package/dist/components/number-keyboard/index.vue.d.ts +1643 -0
- package/dist/components/number-keyboard/types.d.ts +1324 -0
- package/dist/components/password-input/index.d.ts +5 -0
- package/dist/components/password-input/index.vue.d.ts +1715 -0
- package/dist/components/password-input/types.d.ts +1357 -0
- package/dist/components/picker/index.d.ts +5 -0
- package/dist/components/picker/index.vue.d.ts +1868 -0
- package/dist/components/picker/types.d.ts +1466 -0
- package/dist/components/radio/index.d.ts +5 -0
- package/dist/components/radio/index.vue.d.ts +1563 -0
- package/dist/components/radio/types.d.ts +1327 -0
- package/dist/components/radio-group/index.d.ts +5 -0
- package/dist/components/radio-group/index.vue.d.ts +1617 -0
- package/dist/components/radio-group/types.d.ts +1383 -0
- package/dist/components/rate/index.d.ts +5 -0
- package/dist/components/rate/index.vue.d.ts +1557 -0
- package/dist/components/rate/types.d.ts +1281 -0
- package/dist/components/share.d.ts +679 -0
- package/dist/components/signature/index.d.ts +5 -0
- package/dist/components/signature/index.vue.d.ts +3017 -0
- package/dist/components/signature/instance.vue.d.ts +1614 -0
- package/dist/components/signature/types.d.ts +1369 -0
- package/dist/components/slider/index.d.ts +5 -0
- package/dist/components/slider/index.vue.d.ts +1563 -0
- package/dist/components/slider/types.d.ts +1302 -0
- package/dist/components/stepper/index.d.ts +5 -0
- package/dist/components/stepper/index.vue.d.ts +1620 -0
- package/dist/components/stepper/types.d.ts +1281 -0
- package/dist/components/switch/index.d.ts +5 -0
- package/dist/components/switch/index.vue.d.ts +1529 -0
- package/dist/components/switch/types.d.ts +1296 -0
- package/dist/components/time-picker/index.d.ts +5 -0
- package/dist/components/time-picker/index.vue.d.ts +1936 -0
- package/dist/components/time-picker/types.d.ts +1458 -0
- package/dist/components/tree-select/index.d.ts +5 -0
- package/dist/components/tree-select/index.vue.d.ts +1802 -0
- package/dist/components/tree-select/types.d.ts +1411 -0
- package/dist/components/upload/index.d.ts +5 -0
- package/dist/components/upload/index.vue.d.ts +1697 -0
- package/dist/components/upload/types.d.ts +1376 -0
- package/dist/components/use.d.ts +53 -0
- package/dist/components/utils.d.ts +15 -0
- package/dist/components/wrapper/index.d.ts +5 -0
- package/dist/components/wrapper/index.vue.d.ts +1085 -0
- package/dist/components/wrapper/types.d.ts +541 -0
- package/dist/docs/.vitepress/config.d.ts +3 -0
- package/dist/docs/.vitepress/theme/index.d.ts +2 -0
- package/dist/index.cjs.js +5459 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.cjs.min.js +3568 -0
- package/dist/index.cjs.min.js.map +1 -0
- package/dist/index.esm.js +5264 -0
- package/dist/index.esm.js.map +1 -0
- package/dist/index.esm.min.js +3559 -0
- package/dist/index.esm.min.js.map +1 -0
- package/dist/index.umd.js +5465 -0
- package/dist/index.umd.js.map +1 -0
- package/dist/index.umd.min.js +3573 -0
- package/dist/index.umd.min.js.map +1 -0
- package/dist/src/assist.d.ts +32 -0
- package/dist/src/index.d.ts +5 -0
- package/dist/src/interface.d.ts +129 -0
- package/dist/src/utils.d.ts +9 -0
- package/dist/src/version.d.ts +2 -0
- package/docs/.vitepress/config.ts +99 -0
- package/docs/.vitepress/theme/index.ts +5 -0
- package/docs/README.md +20 -0
- package/docs/index.md +25 -0
- package/env.d.ts +8 -0
- package/package.json +71 -0
- package/scripts/generate-version.mjs +26 -0
- package/scripts/postinstall.cjs +13 -0
- package/scripts/utils.cjs +67 -0
- package/src/assist.ts +40 -0
- package/src/index.ts +5 -0
- package/src/interface.ts +293 -0
- package/src/utils.ts +22 -0
- package/src/version.ts +2 -0
- package/tsconfig.app.json +41 -0
- package/tsconfig.json +7 -0
- package/tsconfig.node.json +24 -0
- package/tsdown.config.ts +12 -0
- package/vite.config.ts +93 -0
|
@@ -0,0 +1,1383 @@
|
|
|
1
|
+
import { emits2obj } from '@xiaohaih/json-form-core';
|
|
2
|
+
import { Radio as VanRadio, RadioGroup as VanRadioGroup } from 'vant';
|
|
3
|
+
import { ExtractPublicPropTypes, PropType } from 'vue';
|
|
4
|
+
import { ComponentProps } from 'vue-component-type-helpers';
|
|
5
|
+
import { CommonSlots, CommonSlotsProps, ComponentType } from '../share';
|
|
6
|
+
/** 组件传参 - 私有 */
|
|
7
|
+
export declare function radioGroupPropsGeneric<Query extends Record<string, any>, OptionQuery extends Record<string, any>>(): {
|
|
8
|
+
/** 输入框左侧文本 */
|
|
9
|
+
readonly label: {
|
|
10
|
+
readonly type: StringConstructor;
|
|
11
|
+
};
|
|
12
|
+
/** VanRadioGroup 组件的属性 */
|
|
13
|
+
readonly radioGroupProps: {
|
|
14
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadioGroup>>>;
|
|
15
|
+
};
|
|
16
|
+
/** VanRadioGroup 组件的事件 - 兼容 vue2 版本 */
|
|
17
|
+
readonly radioGroupOn: {
|
|
18
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadioGroup.emits>>>>>;
|
|
19
|
+
readonly default: () => {};
|
|
20
|
+
};
|
|
21
|
+
/** 显示的标签 */
|
|
22
|
+
readonly labelKey: {
|
|
23
|
+
readonly type: StringConstructor;
|
|
24
|
+
readonly default: "label";
|
|
25
|
+
};
|
|
26
|
+
/** 提交的值 */
|
|
27
|
+
readonly valueKey: {
|
|
28
|
+
readonly type: StringConstructor;
|
|
29
|
+
readonly default: "value";
|
|
30
|
+
};
|
|
31
|
+
/** 是否可取消选中 */
|
|
32
|
+
readonly cancelable: {
|
|
33
|
+
readonly type: BooleanConstructor;
|
|
34
|
+
};
|
|
35
|
+
/** VanRadio 组件的属性 */
|
|
36
|
+
readonly radioProps: {
|
|
37
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadio>>>;
|
|
38
|
+
};
|
|
39
|
+
/** VanRadio 组件的事件 - 兼容 vue2 版本 */
|
|
40
|
+
readonly radioOn: {
|
|
41
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadio.emits>>>>>;
|
|
42
|
+
readonly default: () => {};
|
|
43
|
+
};
|
|
44
|
+
/** VanRadio 组件的插槽 */
|
|
45
|
+
readonly radioSlots: {
|
|
46
|
+
readonly type: PropType<{
|
|
47
|
+
/** 自定义文本 */
|
|
48
|
+
default?: ComponentType<{
|
|
49
|
+
checked: boolean;
|
|
50
|
+
disabled: boolean;
|
|
51
|
+
item: any;
|
|
52
|
+
} & CommonSlotsProps<any, any>>;
|
|
53
|
+
/** 自定义图标 */
|
|
54
|
+
icon?: ComponentType<{
|
|
55
|
+
checked: boolean;
|
|
56
|
+
disabled: boolean;
|
|
57
|
+
item: any;
|
|
58
|
+
} & CommonSlotsProps<any, any>>;
|
|
59
|
+
}>;
|
|
60
|
+
};
|
|
61
|
+
readonly field: Omit<{
|
|
62
|
+
readonly type: PropType<string>;
|
|
63
|
+
readonly required: true;
|
|
64
|
+
}, "required">;
|
|
65
|
+
readonly fields: {
|
|
66
|
+
readonly type: PropType<string[]>;
|
|
67
|
+
};
|
|
68
|
+
readonly query: {
|
|
69
|
+
readonly type: PropType<Query>;
|
|
70
|
+
readonly required: true;
|
|
71
|
+
};
|
|
72
|
+
readonly parentQuery: {
|
|
73
|
+
readonly type: PropType<Record<string, any>>;
|
|
74
|
+
};
|
|
75
|
+
readonly depend: {
|
|
76
|
+
readonly type: PropType<boolean>;
|
|
77
|
+
readonly default: undefined;
|
|
78
|
+
};
|
|
79
|
+
readonly resetByDependValueChange: {
|
|
80
|
+
readonly type: PropType<boolean | ((query: Query) => boolean)>;
|
|
81
|
+
readonly default: true;
|
|
82
|
+
};
|
|
83
|
+
readonly dependFields: {
|
|
84
|
+
readonly type: PropType<string | string[]>;
|
|
85
|
+
};
|
|
86
|
+
readonly dependWatchOption: {
|
|
87
|
+
readonly type: PropType<import('vue').WatchOptions>;
|
|
88
|
+
};
|
|
89
|
+
readonly optionsDepend: {
|
|
90
|
+
readonly type: PropType<boolean>;
|
|
91
|
+
};
|
|
92
|
+
readonly optionsDependFields: {
|
|
93
|
+
readonly type: PropType<string | string[]>;
|
|
94
|
+
};
|
|
95
|
+
readonly validator: {
|
|
96
|
+
readonly type: PropType<(query: Query) => any | Promise<any>>;
|
|
97
|
+
};
|
|
98
|
+
readonly initialValue: {
|
|
99
|
+
readonly type: PropType<((option: {
|
|
100
|
+
query: Query_1;
|
|
101
|
+
}) => any) | any>;
|
|
102
|
+
readonly default: undefined;
|
|
103
|
+
};
|
|
104
|
+
readonly defaultValue: {
|
|
105
|
+
readonly type: PropType<((option: {
|
|
106
|
+
query: Query_1;
|
|
107
|
+
}) => any) | any>;
|
|
108
|
+
readonly default: undefined;
|
|
109
|
+
};
|
|
110
|
+
readonly defaultValueConflictCallback: {
|
|
111
|
+
readonly type: PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
112
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
113
|
+
};
|
|
114
|
+
readonly options: {
|
|
115
|
+
readonly type: PropType<any>;
|
|
116
|
+
readonly default: () => never[];
|
|
117
|
+
};
|
|
118
|
+
readonly getOptions: {
|
|
119
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').GetOptions<Query, OptionQuery>>;
|
|
120
|
+
};
|
|
121
|
+
readonly uniqueValue: {
|
|
122
|
+
readonly type: PropType<string | number>;
|
|
123
|
+
};
|
|
124
|
+
readonly hooks: {
|
|
125
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').HookOption<Query, OptionQuery>>;
|
|
126
|
+
readonly default: undefined;
|
|
127
|
+
};
|
|
128
|
+
readonly disabled: {
|
|
129
|
+
readonly type: PropType<boolean>;
|
|
130
|
+
readonly default: undefined;
|
|
131
|
+
};
|
|
132
|
+
readonly readonly: {
|
|
133
|
+
readonly type: PropType<boolean>;
|
|
134
|
+
readonly default: undefined;
|
|
135
|
+
};
|
|
136
|
+
readonly hide: {
|
|
137
|
+
readonly type: PropType<boolean>;
|
|
138
|
+
readonly default: undefined;
|
|
139
|
+
};
|
|
140
|
+
readonly slots: {
|
|
141
|
+
readonly type: PropType<CommonSlots>;
|
|
142
|
+
};
|
|
143
|
+
readonly type: {
|
|
144
|
+
type: PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
145
|
+
validator: undefined;
|
|
146
|
+
};
|
|
147
|
+
readonly tag: {
|
|
148
|
+
type: PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
149
|
+
validator: undefined;
|
|
150
|
+
};
|
|
151
|
+
readonly center: {
|
|
152
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
153
|
+
validator: undefined;
|
|
154
|
+
};
|
|
155
|
+
readonly autofocus: {
|
|
156
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
157
|
+
validator: undefined;
|
|
158
|
+
};
|
|
159
|
+
readonly border: {
|
|
160
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
161
|
+
validator: undefined;
|
|
162
|
+
};
|
|
163
|
+
readonly isLink: {
|
|
164
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
165
|
+
validator: undefined;
|
|
166
|
+
};
|
|
167
|
+
readonly required: {
|
|
168
|
+
type: PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
169
|
+
validator: undefined;
|
|
170
|
+
};
|
|
171
|
+
readonly clickable: {
|
|
172
|
+
type: PropType<NonNullable<boolean | null | undefined>>;
|
|
173
|
+
validator: undefined;
|
|
174
|
+
};
|
|
175
|
+
readonly clearable: {
|
|
176
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
177
|
+
validator: undefined;
|
|
178
|
+
};
|
|
179
|
+
readonly clearIcon: {
|
|
180
|
+
type: PropType<string>;
|
|
181
|
+
validator: undefined;
|
|
182
|
+
};
|
|
183
|
+
readonly modelValue: {
|
|
184
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
185
|
+
validator: undefined;
|
|
186
|
+
};
|
|
187
|
+
readonly clearTrigger: {
|
|
188
|
+
type: PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
189
|
+
validator: undefined;
|
|
190
|
+
};
|
|
191
|
+
readonly formatTrigger: {
|
|
192
|
+
type: PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
193
|
+
validator: undefined;
|
|
194
|
+
};
|
|
195
|
+
readonly spellcheck: {
|
|
196
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
197
|
+
validator: undefined;
|
|
198
|
+
};
|
|
199
|
+
readonly error: {
|
|
200
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
201
|
+
validator: undefined;
|
|
202
|
+
};
|
|
203
|
+
readonly showWordLimit: {
|
|
204
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
205
|
+
validator: undefined;
|
|
206
|
+
};
|
|
207
|
+
readonly colon: {
|
|
208
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
209
|
+
validator: undefined;
|
|
210
|
+
};
|
|
211
|
+
readonly size: {
|
|
212
|
+
type: PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
213
|
+
validator: undefined;
|
|
214
|
+
};
|
|
215
|
+
readonly value: {
|
|
216
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
217
|
+
validator: undefined;
|
|
218
|
+
};
|
|
219
|
+
readonly name: {
|
|
220
|
+
type: PropType<string>;
|
|
221
|
+
validator: undefined;
|
|
222
|
+
};
|
|
223
|
+
readonly class: {
|
|
224
|
+
type: PropType<{}>;
|
|
225
|
+
validator: undefined;
|
|
226
|
+
};
|
|
227
|
+
readonly icon: {
|
|
228
|
+
type: PropType<string>;
|
|
229
|
+
validator: undefined;
|
|
230
|
+
};
|
|
231
|
+
readonly title: {
|
|
232
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
233
|
+
validator: undefined;
|
|
234
|
+
};
|
|
235
|
+
readonly iconPrefix: {
|
|
236
|
+
type: PropType<string>;
|
|
237
|
+
validator: undefined;
|
|
238
|
+
};
|
|
239
|
+
readonly valueClass: {
|
|
240
|
+
type: PropType<{}>;
|
|
241
|
+
validator: undefined;
|
|
242
|
+
};
|
|
243
|
+
readonly labelClass: {
|
|
244
|
+
type: PropType<{}>;
|
|
245
|
+
validator: undefined;
|
|
246
|
+
};
|
|
247
|
+
readonly titleClass: {
|
|
248
|
+
type: PropType<{}>;
|
|
249
|
+
validator: undefined;
|
|
250
|
+
};
|
|
251
|
+
readonly titleStyle: {
|
|
252
|
+
type: PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
253
|
+
validator: undefined;
|
|
254
|
+
};
|
|
255
|
+
readonly arrowDirection: {
|
|
256
|
+
type: PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
257
|
+
validator: undefined;
|
|
258
|
+
};
|
|
259
|
+
readonly id: {
|
|
260
|
+
type: PropType<string>;
|
|
261
|
+
validator: undefined;
|
|
262
|
+
};
|
|
263
|
+
readonly leftIcon: {
|
|
264
|
+
type: PropType<string>;
|
|
265
|
+
validator: undefined;
|
|
266
|
+
};
|
|
267
|
+
readonly rightIcon: {
|
|
268
|
+
type: PropType<string>;
|
|
269
|
+
validator: undefined;
|
|
270
|
+
};
|
|
271
|
+
readonly maxlength: {
|
|
272
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
273
|
+
validator: undefined;
|
|
274
|
+
};
|
|
275
|
+
readonly max: {
|
|
276
|
+
type: PropType<number>;
|
|
277
|
+
validator: undefined;
|
|
278
|
+
};
|
|
279
|
+
readonly min: {
|
|
280
|
+
type: PropType<number>;
|
|
281
|
+
validator: undefined;
|
|
282
|
+
};
|
|
283
|
+
readonly formatter: {
|
|
284
|
+
type: PropType<(value: string) => string>;
|
|
285
|
+
validator: undefined;
|
|
286
|
+
};
|
|
287
|
+
readonly inputAlign: {
|
|
288
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
289
|
+
validator: undefined;
|
|
290
|
+
};
|
|
291
|
+
readonly placeholder: {
|
|
292
|
+
type: PropType<string>;
|
|
293
|
+
validator: undefined;
|
|
294
|
+
};
|
|
295
|
+
readonly autocomplete: {
|
|
296
|
+
type: PropType<string>;
|
|
297
|
+
validator: undefined;
|
|
298
|
+
};
|
|
299
|
+
readonly autocapitalize: {
|
|
300
|
+
type: PropType<string>;
|
|
301
|
+
validator: undefined;
|
|
302
|
+
};
|
|
303
|
+
readonly autocorrect: {
|
|
304
|
+
type: PropType<string>;
|
|
305
|
+
validator: undefined;
|
|
306
|
+
};
|
|
307
|
+
readonly errorMessage: {
|
|
308
|
+
type: PropType<string>;
|
|
309
|
+
validator: undefined;
|
|
310
|
+
};
|
|
311
|
+
readonly enterkeyhint: {
|
|
312
|
+
type: PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
313
|
+
validator: undefined;
|
|
314
|
+
};
|
|
315
|
+
readonly inputmode: {
|
|
316
|
+
type: PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
317
|
+
validator: undefined;
|
|
318
|
+
};
|
|
319
|
+
readonly rows: {
|
|
320
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
321
|
+
validator: undefined;
|
|
322
|
+
};
|
|
323
|
+
readonly rules: {
|
|
324
|
+
type: PropType<import('vant').FieldRule[]>;
|
|
325
|
+
validator: undefined;
|
|
326
|
+
};
|
|
327
|
+
readonly autosize: {
|
|
328
|
+
type: PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
329
|
+
validator: undefined;
|
|
330
|
+
};
|
|
331
|
+
readonly labelWidth: {
|
|
332
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
333
|
+
validator: undefined;
|
|
334
|
+
};
|
|
335
|
+
readonly labelAlign: {
|
|
336
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
337
|
+
validator: undefined;
|
|
338
|
+
};
|
|
339
|
+
readonly errorMessageAlign: {
|
|
340
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
341
|
+
validator: undefined;
|
|
342
|
+
};
|
|
343
|
+
readonly style: {
|
|
344
|
+
type: PropType<{}>;
|
|
345
|
+
validator: undefined;
|
|
346
|
+
};
|
|
347
|
+
readonly onBlur: {
|
|
348
|
+
type: PropType<(...args: any[]) => any>;
|
|
349
|
+
validator: undefined;
|
|
350
|
+
};
|
|
351
|
+
readonly onFocus: {
|
|
352
|
+
type: PropType<(...args: any[]) => any>;
|
|
353
|
+
validator: undefined;
|
|
354
|
+
};
|
|
355
|
+
readonly onKeypress: {
|
|
356
|
+
type: PropType<(...args: any[]) => any>;
|
|
357
|
+
validator: undefined;
|
|
358
|
+
};
|
|
359
|
+
readonly onClear: {
|
|
360
|
+
type: PropType<(...args: any[]) => any>;
|
|
361
|
+
validator: undefined;
|
|
362
|
+
};
|
|
363
|
+
readonly onClickInput: {
|
|
364
|
+
type: PropType<(...args: any[]) => any>;
|
|
365
|
+
validator: undefined;
|
|
366
|
+
};
|
|
367
|
+
readonly onEndValidate: {
|
|
368
|
+
type: PropType<(...args: any[]) => any>;
|
|
369
|
+
validator: undefined;
|
|
370
|
+
};
|
|
371
|
+
readonly onStartValidate: {
|
|
372
|
+
type: PropType<(...args: any[]) => any>;
|
|
373
|
+
validator: undefined;
|
|
374
|
+
};
|
|
375
|
+
readonly onClickLeftIcon: {
|
|
376
|
+
type: PropType<(...args: any[]) => any>;
|
|
377
|
+
validator: undefined;
|
|
378
|
+
};
|
|
379
|
+
readonly onClickRightIcon: {
|
|
380
|
+
type: PropType<(...args: any[]) => any>;
|
|
381
|
+
validator: undefined;
|
|
382
|
+
};
|
|
383
|
+
readonly "onUpdate:modelValue": {
|
|
384
|
+
type: PropType<(...args: any[]) => any>;
|
|
385
|
+
validator: undefined;
|
|
386
|
+
};
|
|
387
|
+
readonly key: {
|
|
388
|
+
type: PropType<NonNullable<PropertyKey | undefined>>;
|
|
389
|
+
validator: undefined;
|
|
390
|
+
};
|
|
391
|
+
readonly ref: {
|
|
392
|
+
type: PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
393
|
+
validator: undefined;
|
|
394
|
+
};
|
|
395
|
+
readonly ref_for: {
|
|
396
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
397
|
+
validator: undefined;
|
|
398
|
+
};
|
|
399
|
+
readonly ref_key: {
|
|
400
|
+
type: PropType<string>;
|
|
401
|
+
validator: undefined;
|
|
402
|
+
};
|
|
403
|
+
readonly onVnodeBeforeMount: {
|
|
404
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
405
|
+
validator: undefined;
|
|
406
|
+
};
|
|
407
|
+
readonly onVnodeMounted: {
|
|
408
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
409
|
+
validator: undefined;
|
|
410
|
+
};
|
|
411
|
+
readonly onVnodeBeforeUpdate: {
|
|
412
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
413
|
+
validator: undefined;
|
|
414
|
+
};
|
|
415
|
+
readonly onVnodeUpdated: {
|
|
416
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
417
|
+
validator: undefined;
|
|
418
|
+
};
|
|
419
|
+
readonly onVnodeBeforeUnmount: {
|
|
420
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
421
|
+
validator: undefined;
|
|
422
|
+
};
|
|
423
|
+
readonly onVnodeUnmounted: {
|
|
424
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
425
|
+
validator: undefined;
|
|
426
|
+
};
|
|
427
|
+
readonly onClick: {
|
|
428
|
+
type: PropType<(...args: any[]) => void>;
|
|
429
|
+
validator: undefined;
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
/** 组件传参 - 私有 */
|
|
433
|
+
export declare const radioGroupPropsPrivate: {
|
|
434
|
+
/** 输入框左侧文本 */
|
|
435
|
+
readonly label: {
|
|
436
|
+
readonly type: StringConstructor;
|
|
437
|
+
};
|
|
438
|
+
/** VanRadioGroup 组件的属性 */
|
|
439
|
+
readonly radioGroupProps: {
|
|
440
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadioGroup>>>;
|
|
441
|
+
};
|
|
442
|
+
/** VanRadioGroup 组件的事件 - 兼容 vue2 版本 */
|
|
443
|
+
readonly radioGroupOn: {
|
|
444
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadioGroup.emits>>>>>;
|
|
445
|
+
readonly default: () => {};
|
|
446
|
+
};
|
|
447
|
+
/** 显示的标签 */
|
|
448
|
+
readonly labelKey: {
|
|
449
|
+
readonly type: StringConstructor;
|
|
450
|
+
readonly default: "label";
|
|
451
|
+
};
|
|
452
|
+
/** 提交的值 */
|
|
453
|
+
readonly valueKey: {
|
|
454
|
+
readonly type: StringConstructor;
|
|
455
|
+
readonly default: "value";
|
|
456
|
+
};
|
|
457
|
+
/** 是否可取消选中 */
|
|
458
|
+
readonly cancelable: {
|
|
459
|
+
readonly type: BooleanConstructor;
|
|
460
|
+
};
|
|
461
|
+
/** VanRadio 组件的属性 */
|
|
462
|
+
readonly radioProps: {
|
|
463
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadio>>>;
|
|
464
|
+
};
|
|
465
|
+
/** VanRadio 组件的事件 - 兼容 vue2 版本 */
|
|
466
|
+
readonly radioOn: {
|
|
467
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadio.emits>>>>>;
|
|
468
|
+
readonly default: () => {};
|
|
469
|
+
};
|
|
470
|
+
/** VanRadio 组件的插槽 */
|
|
471
|
+
readonly radioSlots: {
|
|
472
|
+
readonly type: PropType<{
|
|
473
|
+
/** 自定义文本 */
|
|
474
|
+
default?: ComponentType<{
|
|
475
|
+
checked: boolean;
|
|
476
|
+
disabled: boolean;
|
|
477
|
+
item: any;
|
|
478
|
+
} & CommonSlotsProps<any, any>> | undefined;
|
|
479
|
+
/** 自定义图标 */
|
|
480
|
+
icon?: ComponentType<{
|
|
481
|
+
checked: boolean;
|
|
482
|
+
disabled: boolean;
|
|
483
|
+
item: any;
|
|
484
|
+
} & CommonSlotsProps<any, any>> | undefined;
|
|
485
|
+
}>;
|
|
486
|
+
};
|
|
487
|
+
readonly field: Omit<{
|
|
488
|
+
readonly type: PropType<string>;
|
|
489
|
+
readonly required: true;
|
|
490
|
+
}, "required">;
|
|
491
|
+
readonly fields: {
|
|
492
|
+
readonly type: PropType<string[]>;
|
|
493
|
+
};
|
|
494
|
+
readonly query: {
|
|
495
|
+
readonly type: PropType<Record<string, any>>;
|
|
496
|
+
readonly required: true;
|
|
497
|
+
};
|
|
498
|
+
readonly parentQuery: {
|
|
499
|
+
readonly type: PropType<Record<string, any>>;
|
|
500
|
+
};
|
|
501
|
+
readonly depend: {
|
|
502
|
+
readonly type: PropType<boolean>;
|
|
503
|
+
readonly default: undefined;
|
|
504
|
+
};
|
|
505
|
+
readonly resetByDependValueChange: {
|
|
506
|
+
readonly type: PropType<boolean | ((query: Record<string, any>) => boolean)>;
|
|
507
|
+
readonly default: true;
|
|
508
|
+
};
|
|
509
|
+
readonly dependFields: {
|
|
510
|
+
readonly type: PropType<string | string[]>;
|
|
511
|
+
};
|
|
512
|
+
readonly dependWatchOption: {
|
|
513
|
+
readonly type: PropType<import('vue').WatchOptions>;
|
|
514
|
+
};
|
|
515
|
+
readonly optionsDepend: {
|
|
516
|
+
readonly type: PropType<boolean>;
|
|
517
|
+
};
|
|
518
|
+
readonly optionsDependFields: {
|
|
519
|
+
readonly type: PropType<string | string[]>;
|
|
520
|
+
};
|
|
521
|
+
readonly validator: {
|
|
522
|
+
readonly type: PropType<(query: Record<string, any>) => any | Promise<any>>;
|
|
523
|
+
};
|
|
524
|
+
readonly initialValue: {
|
|
525
|
+
readonly type: PropType<((option: {
|
|
526
|
+
query: Query;
|
|
527
|
+
}) => any) | any>;
|
|
528
|
+
readonly default: undefined;
|
|
529
|
+
};
|
|
530
|
+
readonly defaultValue: {
|
|
531
|
+
readonly type: PropType<((option: {
|
|
532
|
+
query: Query;
|
|
533
|
+
}) => any) | any>;
|
|
534
|
+
readonly default: undefined;
|
|
535
|
+
};
|
|
536
|
+
readonly defaultValueConflictCallback: {
|
|
537
|
+
readonly type: PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
538
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
539
|
+
};
|
|
540
|
+
readonly options: {
|
|
541
|
+
readonly type: PropType<any>;
|
|
542
|
+
readonly default: () => never[];
|
|
543
|
+
};
|
|
544
|
+
readonly getOptions: {
|
|
545
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
|
|
546
|
+
};
|
|
547
|
+
readonly uniqueValue: {
|
|
548
|
+
readonly type: PropType<string | number>;
|
|
549
|
+
};
|
|
550
|
+
readonly hooks: {
|
|
551
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
|
|
552
|
+
readonly default: undefined;
|
|
553
|
+
};
|
|
554
|
+
readonly disabled: {
|
|
555
|
+
readonly type: PropType<boolean>;
|
|
556
|
+
readonly default: undefined;
|
|
557
|
+
};
|
|
558
|
+
readonly readonly: {
|
|
559
|
+
readonly type: PropType<boolean>;
|
|
560
|
+
readonly default: undefined;
|
|
561
|
+
};
|
|
562
|
+
readonly hide: {
|
|
563
|
+
readonly type: PropType<boolean>;
|
|
564
|
+
readonly default: undefined;
|
|
565
|
+
};
|
|
566
|
+
readonly slots: {
|
|
567
|
+
readonly type: PropType<CommonSlots>;
|
|
568
|
+
};
|
|
569
|
+
readonly type: {
|
|
570
|
+
type: PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
571
|
+
validator: undefined;
|
|
572
|
+
};
|
|
573
|
+
readonly tag: {
|
|
574
|
+
type: PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
575
|
+
validator: undefined;
|
|
576
|
+
};
|
|
577
|
+
readonly center: {
|
|
578
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
579
|
+
validator: undefined;
|
|
580
|
+
};
|
|
581
|
+
readonly autofocus: {
|
|
582
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
583
|
+
validator: undefined;
|
|
584
|
+
};
|
|
585
|
+
readonly border: {
|
|
586
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
587
|
+
validator: undefined;
|
|
588
|
+
};
|
|
589
|
+
readonly isLink: {
|
|
590
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
591
|
+
validator: undefined;
|
|
592
|
+
};
|
|
593
|
+
readonly required: {
|
|
594
|
+
type: PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
595
|
+
validator: undefined;
|
|
596
|
+
};
|
|
597
|
+
readonly clickable: {
|
|
598
|
+
type: PropType<NonNullable<boolean | null | undefined>>;
|
|
599
|
+
validator: undefined;
|
|
600
|
+
};
|
|
601
|
+
readonly clearable: {
|
|
602
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
603
|
+
validator: undefined;
|
|
604
|
+
};
|
|
605
|
+
readonly clearIcon: {
|
|
606
|
+
type: PropType<string>;
|
|
607
|
+
validator: undefined;
|
|
608
|
+
};
|
|
609
|
+
readonly modelValue: {
|
|
610
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
611
|
+
validator: undefined;
|
|
612
|
+
};
|
|
613
|
+
readonly clearTrigger: {
|
|
614
|
+
type: PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
615
|
+
validator: undefined;
|
|
616
|
+
};
|
|
617
|
+
readonly formatTrigger: {
|
|
618
|
+
type: PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
619
|
+
validator: undefined;
|
|
620
|
+
};
|
|
621
|
+
readonly spellcheck: {
|
|
622
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
623
|
+
validator: undefined;
|
|
624
|
+
};
|
|
625
|
+
readonly error: {
|
|
626
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
627
|
+
validator: undefined;
|
|
628
|
+
};
|
|
629
|
+
readonly showWordLimit: {
|
|
630
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
631
|
+
validator: undefined;
|
|
632
|
+
};
|
|
633
|
+
readonly colon: {
|
|
634
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
635
|
+
validator: undefined;
|
|
636
|
+
};
|
|
637
|
+
readonly size: {
|
|
638
|
+
type: PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
639
|
+
validator: undefined;
|
|
640
|
+
};
|
|
641
|
+
readonly value: {
|
|
642
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
643
|
+
validator: undefined;
|
|
644
|
+
};
|
|
645
|
+
readonly name: {
|
|
646
|
+
type: PropType<string>;
|
|
647
|
+
validator: undefined;
|
|
648
|
+
};
|
|
649
|
+
readonly class: {
|
|
650
|
+
type: PropType<{}>;
|
|
651
|
+
validator: undefined;
|
|
652
|
+
};
|
|
653
|
+
readonly icon: {
|
|
654
|
+
type: PropType<string>;
|
|
655
|
+
validator: undefined;
|
|
656
|
+
};
|
|
657
|
+
readonly title: {
|
|
658
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
659
|
+
validator: undefined;
|
|
660
|
+
};
|
|
661
|
+
readonly iconPrefix: {
|
|
662
|
+
type: PropType<string>;
|
|
663
|
+
validator: undefined;
|
|
664
|
+
};
|
|
665
|
+
readonly valueClass: {
|
|
666
|
+
type: PropType<{}>;
|
|
667
|
+
validator: undefined;
|
|
668
|
+
};
|
|
669
|
+
readonly labelClass: {
|
|
670
|
+
type: PropType<{}>;
|
|
671
|
+
validator: undefined;
|
|
672
|
+
};
|
|
673
|
+
readonly titleClass: {
|
|
674
|
+
type: PropType<{}>;
|
|
675
|
+
validator: undefined;
|
|
676
|
+
};
|
|
677
|
+
readonly titleStyle: {
|
|
678
|
+
type: PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
679
|
+
validator: undefined;
|
|
680
|
+
};
|
|
681
|
+
readonly arrowDirection: {
|
|
682
|
+
type: PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
683
|
+
validator: undefined;
|
|
684
|
+
};
|
|
685
|
+
readonly id: {
|
|
686
|
+
type: PropType<string>;
|
|
687
|
+
validator: undefined;
|
|
688
|
+
};
|
|
689
|
+
readonly leftIcon: {
|
|
690
|
+
type: PropType<string>;
|
|
691
|
+
validator: undefined;
|
|
692
|
+
};
|
|
693
|
+
readonly rightIcon: {
|
|
694
|
+
type: PropType<string>;
|
|
695
|
+
validator: undefined;
|
|
696
|
+
};
|
|
697
|
+
readonly maxlength: {
|
|
698
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
699
|
+
validator: undefined;
|
|
700
|
+
};
|
|
701
|
+
readonly max: {
|
|
702
|
+
type: PropType<number>;
|
|
703
|
+
validator: undefined;
|
|
704
|
+
};
|
|
705
|
+
readonly min: {
|
|
706
|
+
type: PropType<number>;
|
|
707
|
+
validator: undefined;
|
|
708
|
+
};
|
|
709
|
+
readonly formatter: {
|
|
710
|
+
type: PropType<(value: string) => string>;
|
|
711
|
+
validator: undefined;
|
|
712
|
+
};
|
|
713
|
+
readonly inputAlign: {
|
|
714
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
715
|
+
validator: undefined;
|
|
716
|
+
};
|
|
717
|
+
readonly placeholder: {
|
|
718
|
+
type: PropType<string>;
|
|
719
|
+
validator: undefined;
|
|
720
|
+
};
|
|
721
|
+
readonly autocomplete: {
|
|
722
|
+
type: PropType<string>;
|
|
723
|
+
validator: undefined;
|
|
724
|
+
};
|
|
725
|
+
readonly autocapitalize: {
|
|
726
|
+
type: PropType<string>;
|
|
727
|
+
validator: undefined;
|
|
728
|
+
};
|
|
729
|
+
readonly autocorrect: {
|
|
730
|
+
type: PropType<string>;
|
|
731
|
+
validator: undefined;
|
|
732
|
+
};
|
|
733
|
+
readonly errorMessage: {
|
|
734
|
+
type: PropType<string>;
|
|
735
|
+
validator: undefined;
|
|
736
|
+
};
|
|
737
|
+
readonly enterkeyhint: {
|
|
738
|
+
type: PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
739
|
+
validator: undefined;
|
|
740
|
+
};
|
|
741
|
+
readonly inputmode: {
|
|
742
|
+
type: PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
743
|
+
validator: undefined;
|
|
744
|
+
};
|
|
745
|
+
readonly rows: {
|
|
746
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
747
|
+
validator: undefined;
|
|
748
|
+
};
|
|
749
|
+
readonly rules: {
|
|
750
|
+
type: PropType<import('vant').FieldRule[]>;
|
|
751
|
+
validator: undefined;
|
|
752
|
+
};
|
|
753
|
+
readonly autosize: {
|
|
754
|
+
type: PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
755
|
+
validator: undefined;
|
|
756
|
+
};
|
|
757
|
+
readonly labelWidth: {
|
|
758
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
759
|
+
validator: undefined;
|
|
760
|
+
};
|
|
761
|
+
readonly labelAlign: {
|
|
762
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
763
|
+
validator: undefined;
|
|
764
|
+
};
|
|
765
|
+
readonly errorMessageAlign: {
|
|
766
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
767
|
+
validator: undefined;
|
|
768
|
+
};
|
|
769
|
+
readonly style: {
|
|
770
|
+
type: PropType<{}>;
|
|
771
|
+
validator: undefined;
|
|
772
|
+
};
|
|
773
|
+
readonly onBlur: {
|
|
774
|
+
type: PropType<(...args: any[]) => any>;
|
|
775
|
+
validator: undefined;
|
|
776
|
+
};
|
|
777
|
+
readonly onFocus: {
|
|
778
|
+
type: PropType<(...args: any[]) => any>;
|
|
779
|
+
validator: undefined;
|
|
780
|
+
};
|
|
781
|
+
readonly onKeypress: {
|
|
782
|
+
type: PropType<(...args: any[]) => any>;
|
|
783
|
+
validator: undefined;
|
|
784
|
+
};
|
|
785
|
+
readonly onClear: {
|
|
786
|
+
type: PropType<(...args: any[]) => any>;
|
|
787
|
+
validator: undefined;
|
|
788
|
+
};
|
|
789
|
+
readonly onClickInput: {
|
|
790
|
+
type: PropType<(...args: any[]) => any>;
|
|
791
|
+
validator: undefined;
|
|
792
|
+
};
|
|
793
|
+
readonly onEndValidate: {
|
|
794
|
+
type: PropType<(...args: any[]) => any>;
|
|
795
|
+
validator: undefined;
|
|
796
|
+
};
|
|
797
|
+
readonly onStartValidate: {
|
|
798
|
+
type: PropType<(...args: any[]) => any>;
|
|
799
|
+
validator: undefined;
|
|
800
|
+
};
|
|
801
|
+
readonly onClickLeftIcon: {
|
|
802
|
+
type: PropType<(...args: any[]) => any>;
|
|
803
|
+
validator: undefined;
|
|
804
|
+
};
|
|
805
|
+
readonly onClickRightIcon: {
|
|
806
|
+
type: PropType<(...args: any[]) => any>;
|
|
807
|
+
validator: undefined;
|
|
808
|
+
};
|
|
809
|
+
readonly "onUpdate:modelValue": {
|
|
810
|
+
type: PropType<(...args: any[]) => any>;
|
|
811
|
+
validator: undefined;
|
|
812
|
+
};
|
|
813
|
+
readonly key: {
|
|
814
|
+
type: PropType<NonNullable<PropertyKey | undefined>>;
|
|
815
|
+
validator: undefined;
|
|
816
|
+
};
|
|
817
|
+
readonly ref: {
|
|
818
|
+
type: PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
819
|
+
validator: undefined;
|
|
820
|
+
};
|
|
821
|
+
readonly ref_for: {
|
|
822
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
823
|
+
validator: undefined;
|
|
824
|
+
};
|
|
825
|
+
readonly ref_key: {
|
|
826
|
+
type: PropType<string>;
|
|
827
|
+
validator: undefined;
|
|
828
|
+
};
|
|
829
|
+
readonly onVnodeBeforeMount: {
|
|
830
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
831
|
+
validator: undefined;
|
|
832
|
+
};
|
|
833
|
+
readonly onVnodeMounted: {
|
|
834
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
835
|
+
validator: undefined;
|
|
836
|
+
};
|
|
837
|
+
readonly onVnodeBeforeUpdate: {
|
|
838
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
839
|
+
validator: undefined;
|
|
840
|
+
};
|
|
841
|
+
readonly onVnodeUpdated: {
|
|
842
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
843
|
+
validator: undefined;
|
|
844
|
+
};
|
|
845
|
+
readonly onVnodeBeforeUnmount: {
|
|
846
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
847
|
+
validator: undefined;
|
|
848
|
+
};
|
|
849
|
+
readonly onVnodeUnmounted: {
|
|
850
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
851
|
+
validator: undefined;
|
|
852
|
+
};
|
|
853
|
+
readonly onClick: {
|
|
854
|
+
type: PropType<(...args: any[]) => void>;
|
|
855
|
+
validator: undefined;
|
|
856
|
+
};
|
|
857
|
+
};
|
|
858
|
+
/** 组件传参 - 外部调用 */
|
|
859
|
+
export declare const radioGroupProps: {
|
|
860
|
+
label: {
|
|
861
|
+
readonly type: StringConstructor;
|
|
862
|
+
};
|
|
863
|
+
radioGroupProps: {
|
|
864
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadioGroup>>>;
|
|
865
|
+
};
|
|
866
|
+
radioGroupOn: {
|
|
867
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadioGroup.emits>>>>>;
|
|
868
|
+
readonly default: () => {};
|
|
869
|
+
};
|
|
870
|
+
labelKey: {
|
|
871
|
+
readonly type: StringConstructor;
|
|
872
|
+
readonly default: "label";
|
|
873
|
+
};
|
|
874
|
+
valueKey: {
|
|
875
|
+
readonly type: StringConstructor;
|
|
876
|
+
readonly default: "value";
|
|
877
|
+
};
|
|
878
|
+
cancelable: {
|
|
879
|
+
readonly type: BooleanConstructor;
|
|
880
|
+
};
|
|
881
|
+
radioProps: {
|
|
882
|
+
readonly type: PropType<Partial<ComponentProps<typeof VanRadio>>>;
|
|
883
|
+
};
|
|
884
|
+
radioOn: {
|
|
885
|
+
readonly type: PropType<Partial<ReturnType<typeof emits2obj<NonNullable<typeof VanRadio.emits>>>>>;
|
|
886
|
+
readonly default: () => {};
|
|
887
|
+
};
|
|
888
|
+
radioSlots: {
|
|
889
|
+
readonly type: PropType<{
|
|
890
|
+
/** 自定义文本 */
|
|
891
|
+
default?: ComponentType<{
|
|
892
|
+
checked: boolean;
|
|
893
|
+
disabled: boolean;
|
|
894
|
+
item: any;
|
|
895
|
+
} & CommonSlotsProps<any, any>> | undefined;
|
|
896
|
+
/** 自定义图标 */
|
|
897
|
+
icon?: ComponentType<{
|
|
898
|
+
checked: boolean;
|
|
899
|
+
disabled: boolean;
|
|
900
|
+
item: any;
|
|
901
|
+
} & CommonSlotsProps<any, any>> | undefined;
|
|
902
|
+
}>;
|
|
903
|
+
};
|
|
904
|
+
field: Omit<{
|
|
905
|
+
readonly type: PropType<string>;
|
|
906
|
+
readonly required: true;
|
|
907
|
+
}, "required">;
|
|
908
|
+
fields: {
|
|
909
|
+
readonly type: PropType<string[]>;
|
|
910
|
+
};
|
|
911
|
+
query: {
|
|
912
|
+
readonly type: PropType<Record<string, any>>;
|
|
913
|
+
readonly required: true;
|
|
914
|
+
};
|
|
915
|
+
parentQuery: {
|
|
916
|
+
readonly type: PropType<Record<string, any>>;
|
|
917
|
+
};
|
|
918
|
+
depend: {
|
|
919
|
+
readonly type: PropType<boolean>;
|
|
920
|
+
readonly default: undefined;
|
|
921
|
+
};
|
|
922
|
+
resetByDependValueChange: {
|
|
923
|
+
readonly type: PropType<boolean | ((query: Record<string, any>) => boolean)>;
|
|
924
|
+
readonly default: true;
|
|
925
|
+
};
|
|
926
|
+
dependFields: {
|
|
927
|
+
readonly type: PropType<string | string[]>;
|
|
928
|
+
};
|
|
929
|
+
dependWatchOption: {
|
|
930
|
+
readonly type: PropType<import('vue').WatchOptions>;
|
|
931
|
+
};
|
|
932
|
+
optionsDepend: {
|
|
933
|
+
readonly type: PropType<boolean>;
|
|
934
|
+
};
|
|
935
|
+
optionsDependFields: {
|
|
936
|
+
readonly type: PropType<string | string[]>;
|
|
937
|
+
};
|
|
938
|
+
validator: {
|
|
939
|
+
readonly type: PropType<(query: Record<string, any>) => any | Promise<any>>;
|
|
940
|
+
};
|
|
941
|
+
initialValue: {
|
|
942
|
+
readonly type: PropType<((option: {
|
|
943
|
+
query: Query;
|
|
944
|
+
}) => any) | any>;
|
|
945
|
+
readonly default: undefined;
|
|
946
|
+
};
|
|
947
|
+
defaultValue: {
|
|
948
|
+
readonly type: PropType<((option: {
|
|
949
|
+
query: Query;
|
|
950
|
+
}) => any) | any>;
|
|
951
|
+
readonly default: undefined;
|
|
952
|
+
};
|
|
953
|
+
defaultValueConflictCallback: {
|
|
954
|
+
readonly type: PropType<(value: any, checked: import('vue').Ref<any>) => void>;
|
|
955
|
+
readonly default: typeof import('@xiaohaih/json-form-core').noop;
|
|
956
|
+
};
|
|
957
|
+
options: {
|
|
958
|
+
readonly type: PropType<any>;
|
|
959
|
+
readonly default: () => never[];
|
|
960
|
+
};
|
|
961
|
+
getOptions: {
|
|
962
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
|
|
963
|
+
};
|
|
964
|
+
uniqueValue: {
|
|
965
|
+
readonly type: PropType<string | number>;
|
|
966
|
+
};
|
|
967
|
+
hooks: {
|
|
968
|
+
readonly type: PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
|
|
969
|
+
readonly default: undefined;
|
|
970
|
+
};
|
|
971
|
+
disabled: {
|
|
972
|
+
readonly type: PropType<boolean>;
|
|
973
|
+
readonly default: undefined;
|
|
974
|
+
};
|
|
975
|
+
readonly: {
|
|
976
|
+
readonly type: PropType<boolean>;
|
|
977
|
+
readonly default: undefined;
|
|
978
|
+
};
|
|
979
|
+
hide: {
|
|
980
|
+
readonly type: PropType<boolean>;
|
|
981
|
+
readonly default: undefined;
|
|
982
|
+
};
|
|
983
|
+
slots: {
|
|
984
|
+
readonly type: PropType<CommonSlots>;
|
|
985
|
+
};
|
|
986
|
+
type: {
|
|
987
|
+
type: PropType<NonNullable<import('vant').FieldType | undefined>>;
|
|
988
|
+
validator: undefined;
|
|
989
|
+
};
|
|
990
|
+
tag: {
|
|
991
|
+
type: PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
|
|
992
|
+
validator: undefined;
|
|
993
|
+
};
|
|
994
|
+
center: {
|
|
995
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
996
|
+
validator: undefined;
|
|
997
|
+
};
|
|
998
|
+
autofocus: {
|
|
999
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1000
|
+
validator: undefined;
|
|
1001
|
+
};
|
|
1002
|
+
border: {
|
|
1003
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1004
|
+
validator: undefined;
|
|
1005
|
+
};
|
|
1006
|
+
isLink: {
|
|
1007
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1008
|
+
validator: undefined;
|
|
1009
|
+
};
|
|
1010
|
+
required: {
|
|
1011
|
+
type: PropType<NonNullable<boolean | "auto" | undefined>>;
|
|
1012
|
+
validator: undefined;
|
|
1013
|
+
};
|
|
1014
|
+
clickable: {
|
|
1015
|
+
type: PropType<NonNullable<boolean | null | undefined>>;
|
|
1016
|
+
validator: undefined;
|
|
1017
|
+
};
|
|
1018
|
+
clearable: {
|
|
1019
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1020
|
+
validator: undefined;
|
|
1021
|
+
};
|
|
1022
|
+
clearIcon: {
|
|
1023
|
+
type: PropType<string>;
|
|
1024
|
+
validator: undefined;
|
|
1025
|
+
};
|
|
1026
|
+
modelValue: {
|
|
1027
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1028
|
+
validator: undefined;
|
|
1029
|
+
};
|
|
1030
|
+
clearTrigger: {
|
|
1031
|
+
type: PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
|
|
1032
|
+
validator: undefined;
|
|
1033
|
+
};
|
|
1034
|
+
formatTrigger: {
|
|
1035
|
+
type: PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
|
|
1036
|
+
validator: undefined;
|
|
1037
|
+
};
|
|
1038
|
+
spellcheck: {
|
|
1039
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1040
|
+
validator: undefined;
|
|
1041
|
+
};
|
|
1042
|
+
error: {
|
|
1043
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1044
|
+
validator: undefined;
|
|
1045
|
+
};
|
|
1046
|
+
showWordLimit: {
|
|
1047
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1048
|
+
validator: undefined;
|
|
1049
|
+
};
|
|
1050
|
+
colon: {
|
|
1051
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1052
|
+
validator: undefined;
|
|
1053
|
+
};
|
|
1054
|
+
size: {
|
|
1055
|
+
type: PropType<NonNullable<import('vant').CellSize | undefined>>;
|
|
1056
|
+
validator: undefined;
|
|
1057
|
+
};
|
|
1058
|
+
value: {
|
|
1059
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1060
|
+
validator: undefined;
|
|
1061
|
+
};
|
|
1062
|
+
name: {
|
|
1063
|
+
type: PropType<string>;
|
|
1064
|
+
validator: undefined;
|
|
1065
|
+
};
|
|
1066
|
+
class: {
|
|
1067
|
+
type: PropType<{}>;
|
|
1068
|
+
validator: undefined;
|
|
1069
|
+
};
|
|
1070
|
+
icon: {
|
|
1071
|
+
type: PropType<string>;
|
|
1072
|
+
validator: undefined;
|
|
1073
|
+
};
|
|
1074
|
+
title: {
|
|
1075
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1076
|
+
validator: undefined;
|
|
1077
|
+
};
|
|
1078
|
+
iconPrefix: {
|
|
1079
|
+
type: PropType<string>;
|
|
1080
|
+
validator: undefined;
|
|
1081
|
+
};
|
|
1082
|
+
valueClass: {
|
|
1083
|
+
type: PropType<{}>;
|
|
1084
|
+
validator: undefined;
|
|
1085
|
+
};
|
|
1086
|
+
labelClass: {
|
|
1087
|
+
type: PropType<{}>;
|
|
1088
|
+
validator: undefined;
|
|
1089
|
+
};
|
|
1090
|
+
titleClass: {
|
|
1091
|
+
type: PropType<{}>;
|
|
1092
|
+
validator: undefined;
|
|
1093
|
+
};
|
|
1094
|
+
titleStyle: {
|
|
1095
|
+
type: PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
|
|
1096
|
+
validator: undefined;
|
|
1097
|
+
};
|
|
1098
|
+
arrowDirection: {
|
|
1099
|
+
type: PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
|
|
1100
|
+
validator: undefined;
|
|
1101
|
+
};
|
|
1102
|
+
id: {
|
|
1103
|
+
type: PropType<string>;
|
|
1104
|
+
validator: undefined;
|
|
1105
|
+
};
|
|
1106
|
+
leftIcon: {
|
|
1107
|
+
type: PropType<string>;
|
|
1108
|
+
validator: undefined;
|
|
1109
|
+
};
|
|
1110
|
+
rightIcon: {
|
|
1111
|
+
type: PropType<string>;
|
|
1112
|
+
validator: undefined;
|
|
1113
|
+
};
|
|
1114
|
+
maxlength: {
|
|
1115
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1116
|
+
validator: undefined;
|
|
1117
|
+
};
|
|
1118
|
+
max: {
|
|
1119
|
+
type: PropType<number>;
|
|
1120
|
+
validator: undefined;
|
|
1121
|
+
};
|
|
1122
|
+
min: {
|
|
1123
|
+
type: PropType<number>;
|
|
1124
|
+
validator: undefined;
|
|
1125
|
+
};
|
|
1126
|
+
formatter: {
|
|
1127
|
+
type: PropType<(value: string) => string>;
|
|
1128
|
+
validator: undefined;
|
|
1129
|
+
};
|
|
1130
|
+
inputAlign: {
|
|
1131
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1132
|
+
validator: undefined;
|
|
1133
|
+
};
|
|
1134
|
+
placeholder: {
|
|
1135
|
+
type: PropType<string>;
|
|
1136
|
+
validator: undefined;
|
|
1137
|
+
};
|
|
1138
|
+
autocomplete: {
|
|
1139
|
+
type: PropType<string>;
|
|
1140
|
+
validator: undefined;
|
|
1141
|
+
};
|
|
1142
|
+
autocapitalize: {
|
|
1143
|
+
type: PropType<string>;
|
|
1144
|
+
validator: undefined;
|
|
1145
|
+
};
|
|
1146
|
+
autocorrect: {
|
|
1147
|
+
type: PropType<string>;
|
|
1148
|
+
validator: undefined;
|
|
1149
|
+
};
|
|
1150
|
+
errorMessage: {
|
|
1151
|
+
type: PropType<string>;
|
|
1152
|
+
validator: undefined;
|
|
1153
|
+
};
|
|
1154
|
+
enterkeyhint: {
|
|
1155
|
+
type: PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
|
|
1156
|
+
validator: undefined;
|
|
1157
|
+
};
|
|
1158
|
+
inputmode: {
|
|
1159
|
+
type: PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
|
|
1160
|
+
validator: undefined;
|
|
1161
|
+
};
|
|
1162
|
+
rows: {
|
|
1163
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1164
|
+
validator: undefined;
|
|
1165
|
+
};
|
|
1166
|
+
rules: {
|
|
1167
|
+
type: PropType<import('vant').FieldRule[]>;
|
|
1168
|
+
validator: undefined;
|
|
1169
|
+
};
|
|
1170
|
+
autosize: {
|
|
1171
|
+
type: PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
|
|
1172
|
+
validator: undefined;
|
|
1173
|
+
};
|
|
1174
|
+
labelWidth: {
|
|
1175
|
+
type: PropType<NonNullable<string | number | undefined>>;
|
|
1176
|
+
validator: undefined;
|
|
1177
|
+
};
|
|
1178
|
+
labelAlign: {
|
|
1179
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1180
|
+
validator: undefined;
|
|
1181
|
+
};
|
|
1182
|
+
errorMessageAlign: {
|
|
1183
|
+
type: PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
|
|
1184
|
+
validator: undefined;
|
|
1185
|
+
};
|
|
1186
|
+
style: {
|
|
1187
|
+
type: PropType<{}>;
|
|
1188
|
+
validator: undefined;
|
|
1189
|
+
};
|
|
1190
|
+
onBlur: {
|
|
1191
|
+
type: PropType<(...args: any[]) => any>;
|
|
1192
|
+
validator: undefined;
|
|
1193
|
+
};
|
|
1194
|
+
onFocus: {
|
|
1195
|
+
type: PropType<(...args: any[]) => any>;
|
|
1196
|
+
validator: undefined;
|
|
1197
|
+
};
|
|
1198
|
+
onKeypress: {
|
|
1199
|
+
type: PropType<(...args: any[]) => any>;
|
|
1200
|
+
validator: undefined;
|
|
1201
|
+
};
|
|
1202
|
+
onClear: {
|
|
1203
|
+
type: PropType<(...args: any[]) => any>;
|
|
1204
|
+
validator: undefined;
|
|
1205
|
+
};
|
|
1206
|
+
onClickInput: {
|
|
1207
|
+
type: PropType<(...args: any[]) => any>;
|
|
1208
|
+
validator: undefined;
|
|
1209
|
+
};
|
|
1210
|
+
onEndValidate: {
|
|
1211
|
+
type: PropType<(...args: any[]) => any>;
|
|
1212
|
+
validator: undefined;
|
|
1213
|
+
};
|
|
1214
|
+
onStartValidate: {
|
|
1215
|
+
type: PropType<(...args: any[]) => any>;
|
|
1216
|
+
validator: undefined;
|
|
1217
|
+
};
|
|
1218
|
+
onClickLeftIcon: {
|
|
1219
|
+
type: PropType<(...args: any[]) => any>;
|
|
1220
|
+
validator: undefined;
|
|
1221
|
+
};
|
|
1222
|
+
onClickRightIcon: {
|
|
1223
|
+
type: PropType<(...args: any[]) => any>;
|
|
1224
|
+
validator: undefined;
|
|
1225
|
+
};
|
|
1226
|
+
"onUpdate:modelValue": {
|
|
1227
|
+
type: PropType<(...args: any[]) => any>;
|
|
1228
|
+
validator: undefined;
|
|
1229
|
+
};
|
|
1230
|
+
key: {
|
|
1231
|
+
type: PropType<NonNullable<PropertyKey | undefined>>;
|
|
1232
|
+
validator: undefined;
|
|
1233
|
+
};
|
|
1234
|
+
ref: {
|
|
1235
|
+
type: PropType<NonNullable<import('vue').VNodeRef | undefined>>;
|
|
1236
|
+
validator: undefined;
|
|
1237
|
+
};
|
|
1238
|
+
ref_for: {
|
|
1239
|
+
type: PropType<NonNullable<boolean | undefined>>;
|
|
1240
|
+
validator: undefined;
|
|
1241
|
+
};
|
|
1242
|
+
ref_key: {
|
|
1243
|
+
type: PropType<string>;
|
|
1244
|
+
validator: undefined;
|
|
1245
|
+
};
|
|
1246
|
+
onVnodeBeforeMount: {
|
|
1247
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1248
|
+
validator: undefined;
|
|
1249
|
+
};
|
|
1250
|
+
onVnodeMounted: {
|
|
1251
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1252
|
+
validator: undefined;
|
|
1253
|
+
};
|
|
1254
|
+
onVnodeBeforeUpdate: {
|
|
1255
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
1256
|
+
validator: undefined;
|
|
1257
|
+
};
|
|
1258
|
+
onVnodeUpdated: {
|
|
1259
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
|
|
1260
|
+
validator: undefined;
|
|
1261
|
+
};
|
|
1262
|
+
onVnodeBeforeUnmount: {
|
|
1263
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1264
|
+
validator: undefined;
|
|
1265
|
+
};
|
|
1266
|
+
onVnodeUnmounted: {
|
|
1267
|
+
type: PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
|
|
1268
|
+
validator: undefined;
|
|
1269
|
+
};
|
|
1270
|
+
onClick: {
|
|
1271
|
+
type: PropType<(...args: any[]) => void>;
|
|
1272
|
+
validator: undefined;
|
|
1273
|
+
};
|
|
1274
|
+
};
|
|
1275
|
+
export type RadioGroupProps<Query extends Record<string, any>, OptionQuery extends Record<string, any>> = ExtractPublicPropTypes<ReturnType<typeof radioGroupPropsGeneric<Query, OptionQuery>>>;
|
|
1276
|
+
/** 组件事件 - 私有 */
|
|
1277
|
+
export declare function radioGroupEmitsGeneric<T>(): {};
|
|
1278
|
+
/** 组件事件 - 私有 */
|
|
1279
|
+
export declare const radioGroupEmitsPrivate: {};
|
|
1280
|
+
/** 组件事件 - 外部调用 */
|
|
1281
|
+
export declare const radioGroupEmits: {
|
|
1282
|
+
length?: number | undefined;
|
|
1283
|
+
toString?: (() => string) | undefined;
|
|
1284
|
+
toLocaleString?: {
|
|
1285
|
+
(): string;
|
|
1286
|
+
(locales: string | string[], options?: Intl.NumberFormatOptions & Intl.DateTimeFormatOptions): string;
|
|
1287
|
+
} | undefined;
|
|
1288
|
+
pop?: (() => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue" | undefined) | undefined;
|
|
1289
|
+
push?: ((...items: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => number) | undefined;
|
|
1290
|
+
concat?: {
|
|
1291
|
+
(...items: ConcatArray<"clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">[]): ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[];
|
|
1292
|
+
(...items: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue" | ConcatArray<"clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">)[]): ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[];
|
|
1293
|
+
} | undefined;
|
|
1294
|
+
join?: ((separator?: string) => string) | undefined;
|
|
1295
|
+
reverse?: (() => ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) | undefined;
|
|
1296
|
+
shift?: (() => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue" | undefined) | undefined;
|
|
1297
|
+
slice?: ((start?: number, end?: number) => ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) | undefined;
|
|
1298
|
+
sort?: ((compareFn?: ((a: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", b: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue") => number) | undefined) => ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[] & ThisType<void>) | undefined;
|
|
1299
|
+
splice?: {
|
|
1300
|
+
(start: number, deleteCount?: number): ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[];
|
|
1301
|
+
(start: number, deleteCount: number, ...items: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]): ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[];
|
|
1302
|
+
} | undefined;
|
|
1303
|
+
unshift?: ((...items: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => number) | undefined;
|
|
1304
|
+
indexOf?: ((searchElement: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", fromIndex?: number) => number) | undefined;
|
|
1305
|
+
lastIndexOf?: ((searchElement: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", fromIndex?: number) => number) | undefined;
|
|
1306
|
+
every?: {
|
|
1307
|
+
<S extends "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => value is S, thisArg?: any): this is S[];
|
|
1308
|
+
(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => unknown, thisArg?: any): boolean;
|
|
1309
|
+
} | undefined;
|
|
1310
|
+
some?: ((predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => unknown, thisArg?: any) => boolean) | undefined;
|
|
1311
|
+
forEach?: ((callbackfn: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => void, thisArg?: any) => void) | undefined;
|
|
1312
|
+
map?: (<U>(callbackfn: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => U, thisArg?: any) => U[]) | undefined;
|
|
1313
|
+
filter?: {
|
|
1314
|
+
<S extends "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => value is S, thisArg?: any): S[];
|
|
1315
|
+
(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => unknown, thisArg?: any): ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[];
|
|
1316
|
+
} | undefined;
|
|
1317
|
+
reduce?: {
|
|
1318
|
+
(callbackfn: (previousValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue"): "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue";
|
|
1319
|
+
(callbackfn: (previousValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", initialValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue"): "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue";
|
|
1320
|
+
<U>(callbackfn: (previousValue: U, currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => U, initialValue: U): U;
|
|
1321
|
+
} | undefined;
|
|
1322
|
+
reduceRight?: {
|
|
1323
|
+
(callbackfn: (previousValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue"): "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue";
|
|
1324
|
+
(callbackfn: (previousValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", initialValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue"): "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue";
|
|
1325
|
+
<U>(callbackfn: (previousValue: U, currentValue: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", currentIndex: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => U, initialValue: U): U;
|
|
1326
|
+
} | undefined;
|
|
1327
|
+
find?: {
|
|
1328
|
+
<S extends "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, obj: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => value is S, thisArg?: any): S | undefined;
|
|
1329
|
+
(predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, obj: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => unknown, thisArg?: any): "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue" | undefined;
|
|
1330
|
+
} | undefined;
|
|
1331
|
+
findIndex?: ((predicate: (value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, obj: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => unknown, thisArg?: any) => number) | undefined;
|
|
1332
|
+
fill?: ((value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", start?: number, end?: number) => ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[] & ThisType<void>) | undefined;
|
|
1333
|
+
copyWithin?: ((target: number, start: number, end?: number) => ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[] & ThisType<void>) | undefined;
|
|
1334
|
+
entries?: (() => ArrayIterator<[number, "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue"]>) | undefined;
|
|
1335
|
+
keys?: (() => ArrayIterator<number>) | undefined;
|
|
1336
|
+
values?: (() => ArrayIterator<"clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">) | undefined;
|
|
1337
|
+
includes?: ((searchElement: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", fromIndex?: number) => boolean) | undefined;
|
|
1338
|
+
flatMap?: (<U, This = undefined>(callback: (this: This, value: "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", index: number, array: ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | undefined;
|
|
1339
|
+
flat?: (<A, D extends number = 1>(this: A, depth?: D | undefined) => FlatArray<A, D>[]) | undefined;
|
|
1340
|
+
at?: ((index: number) => "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue" | undefined) | undefined;
|
|
1341
|
+
[Symbol.iterator]?: (() => ArrayIterator<"clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue">) | undefined;
|
|
1342
|
+
[Symbol.unscopables]?: {
|
|
1343
|
+
[x: number]: boolean | undefined;
|
|
1344
|
+
length?: boolean | undefined;
|
|
1345
|
+
toString?: boolean | undefined;
|
|
1346
|
+
toLocaleString?: boolean | undefined;
|
|
1347
|
+
pop?: boolean | undefined;
|
|
1348
|
+
push?: boolean | undefined;
|
|
1349
|
+
concat?: boolean | undefined;
|
|
1350
|
+
join?: boolean | undefined;
|
|
1351
|
+
reverse?: boolean | undefined;
|
|
1352
|
+
shift?: boolean | undefined;
|
|
1353
|
+
slice?: boolean | undefined;
|
|
1354
|
+
sort?: boolean | undefined;
|
|
1355
|
+
splice?: boolean | undefined;
|
|
1356
|
+
unshift?: boolean | undefined;
|
|
1357
|
+
indexOf?: boolean | undefined;
|
|
1358
|
+
lastIndexOf?: boolean | undefined;
|
|
1359
|
+
every?: boolean | undefined;
|
|
1360
|
+
some?: boolean | undefined;
|
|
1361
|
+
forEach?: boolean | undefined;
|
|
1362
|
+
map?: boolean | undefined;
|
|
1363
|
+
filter?: boolean | undefined;
|
|
1364
|
+
reduce?: boolean | undefined;
|
|
1365
|
+
reduceRight?: boolean | undefined;
|
|
1366
|
+
find?: boolean | undefined;
|
|
1367
|
+
findIndex?: boolean | undefined;
|
|
1368
|
+
fill?: boolean | undefined;
|
|
1369
|
+
copyWithin?: boolean | undefined;
|
|
1370
|
+
entries?: boolean | undefined;
|
|
1371
|
+
keys?: boolean | undefined;
|
|
1372
|
+
values?: boolean | undefined;
|
|
1373
|
+
includes?: boolean | undefined;
|
|
1374
|
+
flatMap?: boolean | undefined;
|
|
1375
|
+
flat?: boolean | undefined;
|
|
1376
|
+
at?: boolean | undefined;
|
|
1377
|
+
[Symbol.iterator]?: boolean | undefined;
|
|
1378
|
+
readonly [Symbol.unscopables]?: boolean | undefined;
|
|
1379
|
+
} | undefined;
|
|
1380
|
+
};
|
|
1381
|
+
export type RadioGroupEmits<T> = ReturnType<typeof radioGroupEmitsGeneric<T>>;
|
|
1382
|
+
export interface RadioGroupSlots extends CommonSlots<any> {
|
|
1383
|
+
}
|