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