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