@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,2467 @@
1
+ import { getNode } from '@xiaohaih/json-form-core';
2
+ import { CascaderOption, Cascader as VanCascader, Popup as VanPopup } from 'vant';
3
+ import { SlotsType } from 'vue';
4
+ import { CascaderSlots } from './types';
5
+ interface Datum {
6
+ /** 当前选中项 */
7
+ value: string | number;
8
+ /** 选中项的所有值 */
9
+ selectedOptions: CascaderOption[];
10
+ /** 选中项下标 */
11
+ tabIndex: number;
12
+ }
13
+ /**
14
+ * @file 级联框
15
+ */
16
+ declare const _default: typeof __VLS_export;
17
+ export default _default;
18
+ declare const __VLS_export: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
19
+ readonly label: {
20
+ readonly type: StringConstructor;
21
+ };
22
+ readonly placeholder: {
23
+ readonly type: StringConstructor;
24
+ };
25
+ readonly isLink: {
26
+ readonly type: BooleanConstructor;
27
+ readonly default: true;
28
+ };
29
+ readonly checkStrictly: {
30
+ readonly type: BooleanConstructor;
31
+ readonly default: undefined;
32
+ };
33
+ readonly showAllLevels: {
34
+ readonly type: BooleanConstructor;
35
+ readonly default: undefined;
36
+ };
37
+ readonly emitPath: {
38
+ readonly type: BooleanConstructor;
39
+ readonly default: undefined;
40
+ };
41
+ readonly onRowClick: {
42
+ readonly type: import('vue').PropType<(option: {
43
+ open: () => void;
44
+ close: () => void;
45
+ }, ev: MouseEvent) => void>;
46
+ };
47
+ readonly cascaderProps: {
48
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanCascader>>>;
49
+ readonly default: () => {};
50
+ };
51
+ readonly cascaderOn: {
52
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
53
+ readonly default: () => {};
54
+ };
55
+ readonly cascaderSlots: {
56
+ readonly type: import('vue').PropType<{
57
+ title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
58
+ option?: import('..').ComponentType<{
59
+ option: CascaderOption;
60
+ selected: boolean;
61
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
62
+ optionsTop?: import('..').ComponentType<{
63
+ tabIndex: number;
64
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
65
+ optionsBottom?: import('..').ComponentType<{
66
+ tabIndex: number;
67
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
68
+ }>;
69
+ };
70
+ readonly popupProps: {
71
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
72
+ };
73
+ readonly popupOn: {
74
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
75
+ readonly default: () => {};
76
+ };
77
+ readonly field: Omit<{
78
+ readonly type: import('vue').PropType<string>;
79
+ readonly required: true;
80
+ }, "required">;
81
+ readonly fields: {
82
+ readonly type: import('vue').PropType<string[]>;
83
+ };
84
+ readonly query: {
85
+ readonly type: import('vue').PropType<Record<string, any>>;
86
+ readonly required: true;
87
+ };
88
+ readonly parentQuery: {
89
+ readonly type: import('vue').PropType<Record<string, any>>;
90
+ };
91
+ readonly depend: {
92
+ readonly type: import('vue').PropType<boolean>;
93
+ readonly default: undefined;
94
+ };
95
+ readonly resetByDependValueChange: {
96
+ readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
97
+ readonly default: true;
98
+ };
99
+ readonly dependFields: {
100
+ readonly type: import('vue').PropType<string | string[]>;
101
+ };
102
+ readonly dependWatchOption: {
103
+ readonly type: import('vue').PropType<import('vue').WatchOptions>;
104
+ };
105
+ readonly optionsDepend: {
106
+ readonly type: import('vue').PropType<boolean>;
107
+ };
108
+ readonly optionsDependFields: {
109
+ readonly type: import('vue').PropType<string | string[]>;
110
+ };
111
+ readonly validator: {
112
+ readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
113
+ };
114
+ readonly initialValue: {
115
+ readonly type: import('vue').PropType<((option: {
116
+ query: Query;
117
+ }) => any) | any>;
118
+ readonly default: undefined;
119
+ };
120
+ readonly defaultValue: {
121
+ readonly type: import('vue').PropType<((option: {
122
+ query: Query;
123
+ }) => any) | any>;
124
+ readonly default: undefined;
125
+ };
126
+ readonly defaultValueConflictCallback: {
127
+ readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
128
+ readonly default: typeof import('@xiaohaih/json-form-core').noop;
129
+ };
130
+ readonly options: {
131
+ readonly type: import('vue').PropType<any>;
132
+ readonly default: () => never[];
133
+ };
134
+ readonly getOptions: {
135
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
136
+ };
137
+ readonly uniqueValue: {
138
+ readonly type: import('vue').PropType<string | number>;
139
+ };
140
+ readonly hooks: {
141
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
142
+ readonly default: undefined;
143
+ };
144
+ readonly disabled: {
145
+ readonly type: import('vue').PropType<boolean>;
146
+ readonly default: undefined;
147
+ };
148
+ readonly readonly: {
149
+ readonly type: import('vue').PropType<boolean>;
150
+ readonly default: undefined;
151
+ };
152
+ readonly hide: {
153
+ readonly type: import('vue').PropType<boolean>;
154
+ readonly default: undefined;
155
+ };
156
+ readonly slots: {
157
+ readonly type: import('vue').PropType<import('..').CommonSlots>;
158
+ };
159
+ readonly type: {
160
+ type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
161
+ validator: undefined;
162
+ };
163
+ readonly tag: {
164
+ type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
165
+ validator: undefined;
166
+ };
167
+ readonly center: {
168
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
169
+ validator: undefined;
170
+ };
171
+ readonly autofocus: {
172
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
173
+ validator: undefined;
174
+ };
175
+ readonly border: {
176
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
177
+ validator: undefined;
178
+ };
179
+ readonly required: {
180
+ type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
181
+ validator: undefined;
182
+ };
183
+ readonly clickable: {
184
+ type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
185
+ validator: undefined;
186
+ };
187
+ readonly clearable: {
188
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
189
+ validator: undefined;
190
+ };
191
+ readonly clearIcon: {
192
+ type: import('vue').PropType<string>;
193
+ validator: undefined;
194
+ };
195
+ readonly modelValue: {
196
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
197
+ validator: undefined;
198
+ };
199
+ readonly clearTrigger: {
200
+ type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
201
+ validator: undefined;
202
+ };
203
+ readonly formatTrigger: {
204
+ type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
205
+ validator: undefined;
206
+ };
207
+ readonly spellcheck: {
208
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
209
+ validator: undefined;
210
+ };
211
+ readonly error: {
212
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
213
+ validator: undefined;
214
+ };
215
+ readonly showWordLimit: {
216
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
217
+ validator: undefined;
218
+ };
219
+ readonly colon: {
220
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
221
+ validator: undefined;
222
+ };
223
+ readonly size: {
224
+ type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
225
+ validator: undefined;
226
+ };
227
+ readonly value: {
228
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
229
+ validator: undefined;
230
+ };
231
+ readonly name: {
232
+ type: import('vue').PropType<string>;
233
+ validator: undefined;
234
+ };
235
+ readonly class: {
236
+ type: import('vue').PropType<{}>;
237
+ validator: undefined;
238
+ };
239
+ readonly icon: {
240
+ type: import('vue').PropType<string>;
241
+ validator: undefined;
242
+ };
243
+ readonly title: {
244
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
245
+ validator: undefined;
246
+ };
247
+ readonly iconPrefix: {
248
+ type: import('vue').PropType<string>;
249
+ validator: undefined;
250
+ };
251
+ readonly valueClass: {
252
+ type: import('vue').PropType<{}>;
253
+ validator: undefined;
254
+ };
255
+ readonly labelClass: {
256
+ type: import('vue').PropType<{}>;
257
+ validator: undefined;
258
+ };
259
+ readonly titleClass: {
260
+ type: import('vue').PropType<{}>;
261
+ validator: undefined;
262
+ };
263
+ readonly titleStyle: {
264
+ type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
265
+ validator: undefined;
266
+ };
267
+ readonly arrowDirection: {
268
+ type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
269
+ validator: undefined;
270
+ };
271
+ readonly id: {
272
+ type: import('vue').PropType<string>;
273
+ validator: undefined;
274
+ };
275
+ readonly leftIcon: {
276
+ type: import('vue').PropType<string>;
277
+ validator: undefined;
278
+ };
279
+ readonly rightIcon: {
280
+ type: import('vue').PropType<string>;
281
+ validator: undefined;
282
+ };
283
+ readonly maxlength: {
284
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
285
+ validator: undefined;
286
+ };
287
+ readonly max: {
288
+ type: import('vue').PropType<number>;
289
+ validator: undefined;
290
+ };
291
+ readonly min: {
292
+ type: import('vue').PropType<number>;
293
+ validator: undefined;
294
+ };
295
+ readonly formatter: {
296
+ type: import('vue').PropType<(value: string) => string>;
297
+ validator: undefined;
298
+ };
299
+ readonly inputAlign: {
300
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
301
+ validator: undefined;
302
+ };
303
+ readonly autocomplete: {
304
+ type: import('vue').PropType<string>;
305
+ validator: undefined;
306
+ };
307
+ readonly autocapitalize: {
308
+ type: import('vue').PropType<string>;
309
+ validator: undefined;
310
+ };
311
+ readonly autocorrect: {
312
+ type: import('vue').PropType<string>;
313
+ validator: undefined;
314
+ };
315
+ readonly errorMessage: {
316
+ type: import('vue').PropType<string>;
317
+ validator: undefined;
318
+ };
319
+ readonly enterkeyhint: {
320
+ type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
321
+ validator: undefined;
322
+ };
323
+ readonly inputmode: {
324
+ type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
325
+ validator: undefined;
326
+ };
327
+ readonly rows: {
328
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
329
+ validator: undefined;
330
+ };
331
+ readonly rules: {
332
+ type: import('vue').PropType<import('vant').FieldRule[]>;
333
+ validator: undefined;
334
+ };
335
+ readonly autosize: {
336
+ type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
337
+ validator: undefined;
338
+ };
339
+ readonly labelWidth: {
340
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
341
+ validator: undefined;
342
+ };
343
+ readonly labelAlign: {
344
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
345
+ validator: undefined;
346
+ };
347
+ readonly errorMessageAlign: {
348
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
349
+ validator: undefined;
350
+ };
351
+ readonly style: {
352
+ type: import('vue').PropType<{}>;
353
+ validator: undefined;
354
+ };
355
+ readonly onBlur: {
356
+ type: import('vue').PropType<(...args: any[]) => any>;
357
+ validator: undefined;
358
+ };
359
+ readonly onFocus: {
360
+ type: import('vue').PropType<(...args: any[]) => any>;
361
+ validator: undefined;
362
+ };
363
+ readonly onKeypress: {
364
+ type: import('vue').PropType<(...args: any[]) => any>;
365
+ validator: undefined;
366
+ };
367
+ readonly onClear: {
368
+ type: import('vue').PropType<(...args: any[]) => any>;
369
+ validator: undefined;
370
+ };
371
+ readonly onClickInput: {
372
+ type: import('vue').PropType<(...args: any[]) => any>;
373
+ validator: undefined;
374
+ };
375
+ readonly onEndValidate: {
376
+ type: import('vue').PropType<(...args: any[]) => any>;
377
+ validator: undefined;
378
+ };
379
+ readonly onStartValidate: {
380
+ type: import('vue').PropType<(...args: any[]) => any>;
381
+ validator: undefined;
382
+ };
383
+ readonly onClickLeftIcon: {
384
+ type: import('vue').PropType<(...args: any[]) => any>;
385
+ validator: undefined;
386
+ };
387
+ readonly onClickRightIcon: {
388
+ type: import('vue').PropType<(...args: any[]) => any>;
389
+ validator: undefined;
390
+ };
391
+ readonly "onUpdate:modelValue": {
392
+ type: import('vue').PropType<(...args: any[]) => any>;
393
+ validator: undefined;
394
+ };
395
+ readonly key: {
396
+ type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
397
+ validator: undefined;
398
+ };
399
+ readonly ref: {
400
+ type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
401
+ validator: undefined;
402
+ };
403
+ readonly ref_for: {
404
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
405
+ validator: undefined;
406
+ };
407
+ readonly ref_key: {
408
+ type: import('vue').PropType<string>;
409
+ validator: undefined;
410
+ };
411
+ readonly onVnodeBeforeMount: {
412
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
413
+ validator: undefined;
414
+ };
415
+ readonly onVnodeMounted: {
416
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
417
+ validator: undefined;
418
+ };
419
+ readonly onVnodeBeforeUpdate: {
420
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
421
+ validator: undefined;
422
+ };
423
+ readonly onVnodeUpdated: {
424
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
425
+ validator: undefined;
426
+ };
427
+ readonly onVnodeBeforeUnmount: {
428
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
429
+ validator: undefined;
430
+ };
431
+ readonly onVnodeUnmounted: {
432
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
433
+ validator: undefined;
434
+ };
435
+ readonly onClick: {
436
+ type: import('vue').PropType<(...args: any[]) => void>;
437
+ validator: undefined;
438
+ };
439
+ }>, {
440
+ slotProps: import('vue').ComputedRef<{
441
+ props: import('@vue/shared').LooseRequired<Readonly<import('vue').ExtractPropTypes<{
442
+ readonly label: {
443
+ readonly type: StringConstructor;
444
+ };
445
+ readonly placeholder: {
446
+ readonly type: StringConstructor;
447
+ };
448
+ readonly isLink: {
449
+ readonly type: BooleanConstructor;
450
+ readonly default: true;
451
+ };
452
+ readonly checkStrictly: {
453
+ readonly type: BooleanConstructor;
454
+ readonly default: undefined;
455
+ };
456
+ readonly showAllLevels: {
457
+ readonly type: BooleanConstructor;
458
+ readonly default: undefined;
459
+ };
460
+ readonly emitPath: {
461
+ readonly type: BooleanConstructor;
462
+ readonly default: undefined;
463
+ };
464
+ readonly onRowClick: {
465
+ readonly type: import('vue').PropType<(option: {
466
+ open: () => void;
467
+ close: () => void;
468
+ }, ev: MouseEvent) => void>;
469
+ };
470
+ readonly cascaderProps: {
471
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanCascader>>>;
472
+ readonly default: () => {};
473
+ };
474
+ readonly cascaderOn: {
475
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
476
+ readonly default: () => {};
477
+ };
478
+ readonly cascaderSlots: {
479
+ readonly type: import('vue').PropType<{
480
+ title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
481
+ option?: import('..').ComponentType<{
482
+ option: CascaderOption;
483
+ selected: boolean;
484
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
485
+ optionsTop?: import('..').ComponentType<{
486
+ tabIndex: number;
487
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
488
+ optionsBottom?: import('..').ComponentType<{
489
+ tabIndex: number;
490
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
491
+ }>;
492
+ };
493
+ readonly popupProps: {
494
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
495
+ };
496
+ readonly popupOn: {
497
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
498
+ readonly default: () => {};
499
+ };
500
+ readonly field: Omit<{
501
+ readonly type: import('vue').PropType<string>;
502
+ readonly required: true;
503
+ }, "required">;
504
+ readonly fields: {
505
+ readonly type: import('vue').PropType<string[]>;
506
+ };
507
+ readonly query: {
508
+ readonly type: import('vue').PropType<Record<string, any>>;
509
+ readonly required: true;
510
+ };
511
+ readonly parentQuery: {
512
+ readonly type: import('vue').PropType<Record<string, any>>;
513
+ };
514
+ readonly depend: {
515
+ readonly type: import('vue').PropType<boolean>;
516
+ readonly default: undefined;
517
+ };
518
+ readonly resetByDependValueChange: {
519
+ readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
520
+ readonly default: true;
521
+ };
522
+ readonly dependFields: {
523
+ readonly type: import('vue').PropType<string | string[]>;
524
+ };
525
+ readonly dependWatchOption: {
526
+ readonly type: import('vue').PropType<import('vue').WatchOptions>;
527
+ };
528
+ readonly optionsDepend: {
529
+ readonly type: import('vue').PropType<boolean>;
530
+ };
531
+ readonly optionsDependFields: {
532
+ readonly type: import('vue').PropType<string | string[]>;
533
+ };
534
+ readonly validator: {
535
+ readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
536
+ };
537
+ readonly initialValue: {
538
+ readonly type: import('vue').PropType<((option: {
539
+ query: Query;
540
+ }) => any) | any>;
541
+ readonly default: undefined;
542
+ };
543
+ readonly defaultValue: {
544
+ readonly type: import('vue').PropType<((option: {
545
+ query: Query;
546
+ }) => any) | any>;
547
+ readonly default: undefined;
548
+ };
549
+ readonly defaultValueConflictCallback: {
550
+ readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
551
+ readonly default: typeof import('@xiaohaih/json-form-core').noop;
552
+ };
553
+ readonly options: {
554
+ readonly type: import('vue').PropType<any>;
555
+ readonly default: () => never[];
556
+ };
557
+ readonly getOptions: {
558
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
559
+ };
560
+ readonly uniqueValue: {
561
+ readonly type: import('vue').PropType<string | number>;
562
+ };
563
+ readonly hooks: {
564
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
565
+ readonly default: undefined;
566
+ };
567
+ readonly disabled: {
568
+ readonly type: import('vue').PropType<boolean>;
569
+ readonly default: undefined;
570
+ };
571
+ readonly readonly: {
572
+ readonly type: import('vue').PropType<boolean>;
573
+ readonly default: undefined;
574
+ };
575
+ readonly hide: {
576
+ readonly type: import('vue').PropType<boolean>;
577
+ readonly default: undefined;
578
+ };
579
+ readonly slots: {
580
+ readonly type: import('vue').PropType<import('..').CommonSlots>;
581
+ };
582
+ readonly type: {
583
+ type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
584
+ validator: undefined;
585
+ };
586
+ readonly tag: {
587
+ type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
588
+ validator: undefined;
589
+ };
590
+ readonly center: {
591
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
592
+ validator: undefined;
593
+ };
594
+ readonly autofocus: {
595
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
596
+ validator: undefined;
597
+ };
598
+ readonly border: {
599
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
600
+ validator: undefined;
601
+ };
602
+ readonly required: {
603
+ type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
604
+ validator: undefined;
605
+ };
606
+ readonly clickable: {
607
+ type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
608
+ validator: undefined;
609
+ };
610
+ readonly clearable: {
611
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
612
+ validator: undefined;
613
+ };
614
+ readonly clearIcon: {
615
+ type: import('vue').PropType<string>;
616
+ validator: undefined;
617
+ };
618
+ readonly modelValue: {
619
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
620
+ validator: undefined;
621
+ };
622
+ readonly clearTrigger: {
623
+ type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
624
+ validator: undefined;
625
+ };
626
+ readonly formatTrigger: {
627
+ type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
628
+ validator: undefined;
629
+ };
630
+ readonly spellcheck: {
631
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
632
+ validator: undefined;
633
+ };
634
+ readonly error: {
635
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
636
+ validator: undefined;
637
+ };
638
+ readonly showWordLimit: {
639
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
640
+ validator: undefined;
641
+ };
642
+ readonly colon: {
643
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
644
+ validator: undefined;
645
+ };
646
+ readonly size: {
647
+ type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
648
+ validator: undefined;
649
+ };
650
+ readonly value: {
651
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
652
+ validator: undefined;
653
+ };
654
+ readonly name: {
655
+ type: import('vue').PropType<string>;
656
+ validator: undefined;
657
+ };
658
+ readonly class: {
659
+ type: import('vue').PropType<{}>;
660
+ validator: undefined;
661
+ };
662
+ readonly icon: {
663
+ type: import('vue').PropType<string>;
664
+ validator: undefined;
665
+ };
666
+ readonly title: {
667
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
668
+ validator: undefined;
669
+ };
670
+ readonly iconPrefix: {
671
+ type: import('vue').PropType<string>;
672
+ validator: undefined;
673
+ };
674
+ readonly valueClass: {
675
+ type: import('vue').PropType<{}>;
676
+ validator: undefined;
677
+ };
678
+ readonly labelClass: {
679
+ type: import('vue').PropType<{}>;
680
+ validator: undefined;
681
+ };
682
+ readonly titleClass: {
683
+ type: import('vue').PropType<{}>;
684
+ validator: undefined;
685
+ };
686
+ readonly titleStyle: {
687
+ type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
688
+ validator: undefined;
689
+ };
690
+ readonly arrowDirection: {
691
+ type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
692
+ validator: undefined;
693
+ };
694
+ readonly id: {
695
+ type: import('vue').PropType<string>;
696
+ validator: undefined;
697
+ };
698
+ readonly leftIcon: {
699
+ type: import('vue').PropType<string>;
700
+ validator: undefined;
701
+ };
702
+ readonly rightIcon: {
703
+ type: import('vue').PropType<string>;
704
+ validator: undefined;
705
+ };
706
+ readonly maxlength: {
707
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
708
+ validator: undefined;
709
+ };
710
+ readonly max: {
711
+ type: import('vue').PropType<number>;
712
+ validator: undefined;
713
+ };
714
+ readonly min: {
715
+ type: import('vue').PropType<number>;
716
+ validator: undefined;
717
+ };
718
+ readonly formatter: {
719
+ type: import('vue').PropType<(value: string) => string>;
720
+ validator: undefined;
721
+ };
722
+ readonly inputAlign: {
723
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
724
+ validator: undefined;
725
+ };
726
+ readonly autocomplete: {
727
+ type: import('vue').PropType<string>;
728
+ validator: undefined;
729
+ };
730
+ readonly autocapitalize: {
731
+ type: import('vue').PropType<string>;
732
+ validator: undefined;
733
+ };
734
+ readonly autocorrect: {
735
+ type: import('vue').PropType<string>;
736
+ validator: undefined;
737
+ };
738
+ readonly errorMessage: {
739
+ type: import('vue').PropType<string>;
740
+ validator: undefined;
741
+ };
742
+ readonly enterkeyhint: {
743
+ type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
744
+ validator: undefined;
745
+ };
746
+ readonly inputmode: {
747
+ type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
748
+ validator: undefined;
749
+ };
750
+ readonly rows: {
751
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
752
+ validator: undefined;
753
+ };
754
+ readonly rules: {
755
+ type: import('vue').PropType<import('vant').FieldRule[]>;
756
+ validator: undefined;
757
+ };
758
+ readonly autosize: {
759
+ type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
760
+ validator: undefined;
761
+ };
762
+ readonly labelWidth: {
763
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
764
+ validator: undefined;
765
+ };
766
+ readonly labelAlign: {
767
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
768
+ validator: undefined;
769
+ };
770
+ readonly errorMessageAlign: {
771
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
772
+ validator: undefined;
773
+ };
774
+ readonly style: {
775
+ type: import('vue').PropType<{}>;
776
+ validator: undefined;
777
+ };
778
+ readonly onBlur: {
779
+ type: import('vue').PropType<(...args: any[]) => any>;
780
+ validator: undefined;
781
+ };
782
+ readonly onFocus: {
783
+ type: import('vue').PropType<(...args: any[]) => any>;
784
+ validator: undefined;
785
+ };
786
+ readonly onKeypress: {
787
+ type: import('vue').PropType<(...args: any[]) => any>;
788
+ validator: undefined;
789
+ };
790
+ readonly onClear: {
791
+ type: import('vue').PropType<(...args: any[]) => any>;
792
+ validator: undefined;
793
+ };
794
+ readonly onClickInput: {
795
+ type: import('vue').PropType<(...args: any[]) => any>;
796
+ validator: undefined;
797
+ };
798
+ readonly onEndValidate: {
799
+ type: import('vue').PropType<(...args: any[]) => any>;
800
+ validator: undefined;
801
+ };
802
+ readonly onStartValidate: {
803
+ type: import('vue').PropType<(...args: any[]) => any>;
804
+ validator: undefined;
805
+ };
806
+ readonly onClickLeftIcon: {
807
+ type: import('vue').PropType<(...args: any[]) => any>;
808
+ validator: undefined;
809
+ };
810
+ readonly onClickRightIcon: {
811
+ type: import('vue').PropType<(...args: any[]) => any>;
812
+ validator: undefined;
813
+ };
814
+ readonly "onUpdate:modelValue": {
815
+ type: import('vue').PropType<(...args: any[]) => any>;
816
+ validator: undefined;
817
+ };
818
+ readonly key: {
819
+ type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
820
+ validator: undefined;
821
+ };
822
+ readonly ref: {
823
+ type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
824
+ validator: undefined;
825
+ };
826
+ readonly ref_for: {
827
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
828
+ validator: undefined;
829
+ };
830
+ readonly ref_key: {
831
+ type: import('vue').PropType<string>;
832
+ validator: undefined;
833
+ };
834
+ readonly onVnodeBeforeMount: {
835
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
836
+ validator: undefined;
837
+ };
838
+ readonly onVnodeMounted: {
839
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
840
+ validator: undefined;
841
+ };
842
+ readonly onVnodeBeforeUpdate: {
843
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
844
+ validator: undefined;
845
+ };
846
+ readonly onVnodeUpdated: {
847
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
848
+ validator: undefined;
849
+ };
850
+ readonly onVnodeBeforeUnmount: {
851
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
852
+ validator: undefined;
853
+ };
854
+ readonly onVnodeUnmounted: {
855
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
856
+ validator: undefined;
857
+ };
858
+ readonly onClick: {
859
+ type: import('vue').PropType<(...args: any[]) => void>;
860
+ validator: undefined;
861
+ };
862
+ }>> & Readonly<{}> & {}>;
863
+ plain: {
864
+ on: (type: "reset", fn: () => ((() => void) | void)) => () => void;
865
+ off: (type: "reset", fn?: (() => ((() => void) | void)) | undefined) => void;
866
+ clear: () => void;
867
+ coverProps: import('vue').Ref<{
868
+ initialValue: any;
869
+ defaultValue: any;
870
+ }, Record<"initialValue" | "defaultValue", any> | {
871
+ initialValue: any;
872
+ defaultValue: any;
873
+ }>;
874
+ wrapper: import('@xiaohaih/json-form-core').ProvideValue<Record<string, any>, Record<string, any>, any> | undefined;
875
+ option: {
876
+ readonly field: string | undefined;
877
+ reset(this: void, query?: Record<string, any>): void;
878
+ readonly validator: any;
879
+ onBackfillChange: (backfill: Record<string, any>, oldBackfill: Record<string, any>, isChange: boolean) => void;
880
+ onModelChange: (model: Record<string, any>, oldModel: Record<string, any> | undefined) => void;
881
+ trySetDefaultValue(_query: Record<string, any>): boolean;
882
+ };
883
+ loading: import('vue').Ref<boolean, boolean>;
884
+ getOptions: (trigger: "initial" | "depend" | "other", option?: {
885
+ filterValue?: string;
886
+ callback?: ((data: any[]) => void) | undefined;
887
+ } | undefined) => Promise<void>;
888
+ checked: import('vue').WritableComputedRef<any, any>;
889
+ remoteOption: import('vue').Ref<any[], any[]>;
890
+ finalOption: import('vue').ComputedRef<any>;
891
+ change: (value: any) => void;
892
+ search: () => Promise<string | void> | string | void;
893
+ reset: (this: void, query?: Record<string, any>) => void;
894
+ globalReadonly: import('vue').Ref<boolean | undefined, boolean | undefined>;
895
+ globalDisabled: import('vue').Ref<boolean | undefined, boolean | undefined>;
896
+ };
897
+ }>;
898
+ fieldInfo: import('vue').ComputedRef<{
899
+ labelKey: string;
900
+ valueKey: string;
901
+ children: string;
902
+ }>;
903
+ lastCheckedValue: import('vue').ComputedRef<string>;
904
+ showText: import('vue').ComputedRef<string | undefined>;
905
+ clickHandle: (ev: MouseEvent) => void;
906
+ change: (option: Datum) => void;
907
+ finish: (option: Datum) => void;
908
+ setValue: (option: Datum) => void;
909
+ popupInfo: import('vue').Ref<{
910
+ visible: boolean;
911
+ open: () => void;
912
+ close: () => void;
913
+ }, {
914
+ visible: boolean;
915
+ open(): void;
916
+ close(): void;
917
+ } | {
918
+ visible: boolean;
919
+ open: () => void;
920
+ close: () => void;
921
+ }>;
922
+ on: (type: "reset", fn: () => ((() => void) | void)) => () => void;
923
+ off: (type: "reset", fn?: (() => ((() => void) | void)) | undefined) => void;
924
+ clear: () => void;
925
+ coverProps: import('vue').Ref<{
926
+ initialValue: any;
927
+ defaultValue: any;
928
+ }, Record<"initialValue" | "defaultValue", any> | {
929
+ initialValue: any;
930
+ defaultValue: any;
931
+ }>;
932
+ wrapper: import('@xiaohaih/json-form-core').ProvideValue<Record<string, any>, Record<string, any>, any> | undefined;
933
+ option: {
934
+ readonly field: string | undefined;
935
+ reset(this: void, query?: Record<string, any>): void;
936
+ readonly validator: any;
937
+ onBackfillChange: (backfill: Record<string, any>, oldBackfill: Record<string, any>, isChange: boolean) => void;
938
+ onModelChange: (model: Record<string, any>, oldModel: Record<string, any> | undefined) => void;
939
+ trySetDefaultValue(_query: Record<string, any>): boolean;
940
+ };
941
+ loading: import('vue').Ref<boolean, boolean>;
942
+ getOptions: (trigger: "initial" | "depend" | "other", option?: {
943
+ filterValue?: string;
944
+ callback?: ((data: any[]) => void) | undefined;
945
+ } | undefined) => Promise<void>;
946
+ checked: import('vue').WritableComputedRef<any, any>;
947
+ remoteOption: import('vue').Ref<any[], any[]>;
948
+ finalOption: import('vue').ComputedRef<any>;
949
+ search: () => Promise<string | void> | string | void;
950
+ reset: (this: void, query?: Record<string, any>) => void;
951
+ globalReadonly: import('vue').Ref<boolean | undefined, boolean | undefined>;
952
+ globalDisabled: import('vue').Ref<boolean | undefined, boolean | undefined>;
953
+ hyphenate: <T extends string>(str: T) => import('@xiaohaih/json-form-core').Hyphenate<T>;
954
+ getNode: typeof getNode;
955
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
956
+ readonly label: {
957
+ readonly type: StringConstructor;
958
+ };
959
+ readonly placeholder: {
960
+ readonly type: StringConstructor;
961
+ };
962
+ readonly isLink: {
963
+ readonly type: BooleanConstructor;
964
+ readonly default: true;
965
+ };
966
+ readonly checkStrictly: {
967
+ readonly type: BooleanConstructor;
968
+ readonly default: undefined;
969
+ };
970
+ readonly showAllLevels: {
971
+ readonly type: BooleanConstructor;
972
+ readonly default: undefined;
973
+ };
974
+ readonly emitPath: {
975
+ readonly type: BooleanConstructor;
976
+ readonly default: undefined;
977
+ };
978
+ readonly onRowClick: {
979
+ readonly type: import('vue').PropType<(option: {
980
+ open: () => void;
981
+ close: () => void;
982
+ }, ev: MouseEvent) => void>;
983
+ };
984
+ readonly cascaderProps: {
985
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentProps<typeof VanCascader>>>;
986
+ readonly default: () => {};
987
+ };
988
+ readonly cascaderOn: {
989
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
990
+ readonly default: () => {};
991
+ };
992
+ readonly cascaderSlots: {
993
+ readonly type: import('vue').PropType<{
994
+ title?: import('..').ComponentType<import('..').CommonSlotsProps<any, any>>;
995
+ option?: import('..').ComponentType<{
996
+ option: CascaderOption;
997
+ selected: boolean;
998
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
999
+ optionsTop?: import('..').ComponentType<{
1000
+ tabIndex: number;
1001
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
1002
+ optionsBottom?: import('..').ComponentType<{
1003
+ tabIndex: number;
1004
+ } & import('..').CommonSlotsProps<any, any>> | undefined;
1005
+ }>;
1006
+ };
1007
+ readonly popupProps: {
1008
+ readonly type: import('vue').PropType<Partial<import('vue-component-type-helpers').ComponentExposed<typeof VanPopup>>>;
1009
+ };
1010
+ readonly popupOn: {
1011
+ readonly type: import('vue').PropType<Partial<ReturnType<typeof import('@xiaohaih/json-form-core').emits2obj>>>;
1012
+ readonly default: () => {};
1013
+ };
1014
+ readonly field: Omit<{
1015
+ readonly type: import('vue').PropType<string>;
1016
+ readonly required: true;
1017
+ }, "required">;
1018
+ readonly fields: {
1019
+ readonly type: import('vue').PropType<string[]>;
1020
+ };
1021
+ readonly query: {
1022
+ readonly type: import('vue').PropType<Record<string, any>>;
1023
+ readonly required: true;
1024
+ };
1025
+ readonly parentQuery: {
1026
+ readonly type: import('vue').PropType<Record<string, any>>;
1027
+ };
1028
+ readonly depend: {
1029
+ readonly type: import('vue').PropType<boolean>;
1030
+ readonly default: undefined;
1031
+ };
1032
+ readonly resetByDependValueChange: {
1033
+ readonly type: import('vue').PropType<boolean | ((query: Record<string, any>) => boolean)>;
1034
+ readonly default: true;
1035
+ };
1036
+ readonly dependFields: {
1037
+ readonly type: import('vue').PropType<string | string[]>;
1038
+ };
1039
+ readonly dependWatchOption: {
1040
+ readonly type: import('vue').PropType<import('vue').WatchOptions>;
1041
+ };
1042
+ readonly optionsDepend: {
1043
+ readonly type: import('vue').PropType<boolean>;
1044
+ };
1045
+ readonly optionsDependFields: {
1046
+ readonly type: import('vue').PropType<string | string[]>;
1047
+ };
1048
+ readonly validator: {
1049
+ readonly type: import('vue').PropType<(query: Record<string, any>) => any | Promise<any>>;
1050
+ };
1051
+ readonly initialValue: {
1052
+ readonly type: import('vue').PropType<((option: {
1053
+ query: Query;
1054
+ }) => any) | any>;
1055
+ readonly default: undefined;
1056
+ };
1057
+ readonly defaultValue: {
1058
+ readonly type: import('vue').PropType<((option: {
1059
+ query: Query;
1060
+ }) => any) | any>;
1061
+ readonly default: undefined;
1062
+ };
1063
+ readonly defaultValueConflictCallback: {
1064
+ readonly type: import('vue').PropType<(value: any, checked: import('vue').Ref<any>) => void>;
1065
+ readonly default: typeof import('@xiaohaih/json-form-core').noop;
1066
+ };
1067
+ readonly options: {
1068
+ readonly type: import('vue').PropType<any>;
1069
+ readonly default: () => never[];
1070
+ };
1071
+ readonly getOptions: {
1072
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').GetOptions<Record<string, any>, Record<string, any>>>;
1073
+ };
1074
+ readonly uniqueValue: {
1075
+ readonly type: import('vue').PropType<string | number>;
1076
+ };
1077
+ readonly hooks: {
1078
+ readonly type: import('vue').PropType<import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>>;
1079
+ readonly default: undefined;
1080
+ };
1081
+ readonly disabled: {
1082
+ readonly type: import('vue').PropType<boolean>;
1083
+ readonly default: undefined;
1084
+ };
1085
+ readonly readonly: {
1086
+ readonly type: import('vue').PropType<boolean>;
1087
+ readonly default: undefined;
1088
+ };
1089
+ readonly hide: {
1090
+ readonly type: import('vue').PropType<boolean>;
1091
+ readonly default: undefined;
1092
+ };
1093
+ readonly slots: {
1094
+ readonly type: import('vue').PropType<import('..').CommonSlots>;
1095
+ };
1096
+ readonly type: {
1097
+ type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
1098
+ validator: undefined;
1099
+ };
1100
+ readonly tag: {
1101
+ type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
1102
+ validator: undefined;
1103
+ };
1104
+ readonly center: {
1105
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1106
+ validator: undefined;
1107
+ };
1108
+ readonly autofocus: {
1109
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1110
+ validator: undefined;
1111
+ };
1112
+ readonly border: {
1113
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1114
+ validator: undefined;
1115
+ };
1116
+ readonly required: {
1117
+ type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
1118
+ validator: undefined;
1119
+ };
1120
+ readonly clickable: {
1121
+ type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
1122
+ validator: undefined;
1123
+ };
1124
+ readonly clearable: {
1125
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1126
+ validator: undefined;
1127
+ };
1128
+ readonly clearIcon: {
1129
+ type: import('vue').PropType<string>;
1130
+ validator: undefined;
1131
+ };
1132
+ readonly modelValue: {
1133
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1134
+ validator: undefined;
1135
+ };
1136
+ readonly clearTrigger: {
1137
+ type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
1138
+ validator: undefined;
1139
+ };
1140
+ readonly formatTrigger: {
1141
+ type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
1142
+ validator: undefined;
1143
+ };
1144
+ readonly spellcheck: {
1145
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1146
+ validator: undefined;
1147
+ };
1148
+ readonly error: {
1149
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1150
+ validator: undefined;
1151
+ };
1152
+ readonly showWordLimit: {
1153
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1154
+ validator: undefined;
1155
+ };
1156
+ readonly colon: {
1157
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1158
+ validator: undefined;
1159
+ };
1160
+ readonly size: {
1161
+ type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
1162
+ validator: undefined;
1163
+ };
1164
+ readonly value: {
1165
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1166
+ validator: undefined;
1167
+ };
1168
+ readonly name: {
1169
+ type: import('vue').PropType<string>;
1170
+ validator: undefined;
1171
+ };
1172
+ readonly class: {
1173
+ type: import('vue').PropType<{}>;
1174
+ validator: undefined;
1175
+ };
1176
+ readonly icon: {
1177
+ type: import('vue').PropType<string>;
1178
+ validator: undefined;
1179
+ };
1180
+ readonly title: {
1181
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1182
+ validator: undefined;
1183
+ };
1184
+ readonly iconPrefix: {
1185
+ type: import('vue').PropType<string>;
1186
+ validator: undefined;
1187
+ };
1188
+ readonly valueClass: {
1189
+ type: import('vue').PropType<{}>;
1190
+ validator: undefined;
1191
+ };
1192
+ readonly labelClass: {
1193
+ type: import('vue').PropType<{}>;
1194
+ validator: undefined;
1195
+ };
1196
+ readonly titleClass: {
1197
+ type: import('vue').PropType<{}>;
1198
+ validator: undefined;
1199
+ };
1200
+ readonly titleStyle: {
1201
+ type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
1202
+ validator: undefined;
1203
+ };
1204
+ readonly arrowDirection: {
1205
+ type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
1206
+ validator: undefined;
1207
+ };
1208
+ readonly id: {
1209
+ type: import('vue').PropType<string>;
1210
+ validator: undefined;
1211
+ };
1212
+ readonly leftIcon: {
1213
+ type: import('vue').PropType<string>;
1214
+ validator: undefined;
1215
+ };
1216
+ readonly rightIcon: {
1217
+ type: import('vue').PropType<string>;
1218
+ validator: undefined;
1219
+ };
1220
+ readonly maxlength: {
1221
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1222
+ validator: undefined;
1223
+ };
1224
+ readonly max: {
1225
+ type: import('vue').PropType<number>;
1226
+ validator: undefined;
1227
+ };
1228
+ readonly min: {
1229
+ type: import('vue').PropType<number>;
1230
+ validator: undefined;
1231
+ };
1232
+ readonly formatter: {
1233
+ type: import('vue').PropType<(value: string) => string>;
1234
+ validator: undefined;
1235
+ };
1236
+ readonly inputAlign: {
1237
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
1238
+ validator: undefined;
1239
+ };
1240
+ readonly autocomplete: {
1241
+ type: import('vue').PropType<string>;
1242
+ validator: undefined;
1243
+ };
1244
+ readonly autocapitalize: {
1245
+ type: import('vue').PropType<string>;
1246
+ validator: undefined;
1247
+ };
1248
+ readonly autocorrect: {
1249
+ type: import('vue').PropType<string>;
1250
+ validator: undefined;
1251
+ };
1252
+ readonly errorMessage: {
1253
+ type: import('vue').PropType<string>;
1254
+ validator: undefined;
1255
+ };
1256
+ readonly enterkeyhint: {
1257
+ type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
1258
+ validator: undefined;
1259
+ };
1260
+ readonly inputmode: {
1261
+ type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
1262
+ validator: undefined;
1263
+ };
1264
+ readonly rows: {
1265
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1266
+ validator: undefined;
1267
+ };
1268
+ readonly rules: {
1269
+ type: import('vue').PropType<import('vant').FieldRule[]>;
1270
+ validator: undefined;
1271
+ };
1272
+ readonly autosize: {
1273
+ type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
1274
+ validator: undefined;
1275
+ };
1276
+ readonly labelWidth: {
1277
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1278
+ validator: undefined;
1279
+ };
1280
+ readonly labelAlign: {
1281
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
1282
+ validator: undefined;
1283
+ };
1284
+ readonly errorMessageAlign: {
1285
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
1286
+ validator: undefined;
1287
+ };
1288
+ readonly style: {
1289
+ type: import('vue').PropType<{}>;
1290
+ validator: undefined;
1291
+ };
1292
+ readonly onBlur: {
1293
+ type: import('vue').PropType<(...args: any[]) => any>;
1294
+ validator: undefined;
1295
+ };
1296
+ readonly onFocus: {
1297
+ type: import('vue').PropType<(...args: any[]) => any>;
1298
+ validator: undefined;
1299
+ };
1300
+ readonly onKeypress: {
1301
+ type: import('vue').PropType<(...args: any[]) => any>;
1302
+ validator: undefined;
1303
+ };
1304
+ readonly onClear: {
1305
+ type: import('vue').PropType<(...args: any[]) => any>;
1306
+ validator: undefined;
1307
+ };
1308
+ readonly onClickInput: {
1309
+ type: import('vue').PropType<(...args: any[]) => any>;
1310
+ validator: undefined;
1311
+ };
1312
+ readonly onEndValidate: {
1313
+ type: import('vue').PropType<(...args: any[]) => any>;
1314
+ validator: undefined;
1315
+ };
1316
+ readonly onStartValidate: {
1317
+ type: import('vue').PropType<(...args: any[]) => any>;
1318
+ validator: undefined;
1319
+ };
1320
+ readonly onClickLeftIcon: {
1321
+ type: import('vue').PropType<(...args: any[]) => any>;
1322
+ validator: undefined;
1323
+ };
1324
+ readonly onClickRightIcon: {
1325
+ type: import('vue').PropType<(...args: any[]) => any>;
1326
+ validator: undefined;
1327
+ };
1328
+ readonly "onUpdate:modelValue": {
1329
+ type: import('vue').PropType<(...args: any[]) => any>;
1330
+ validator: undefined;
1331
+ };
1332
+ readonly key: {
1333
+ type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
1334
+ validator: undefined;
1335
+ };
1336
+ readonly ref: {
1337
+ type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
1338
+ validator: undefined;
1339
+ };
1340
+ readonly ref_for: {
1341
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1342
+ validator: undefined;
1343
+ };
1344
+ readonly ref_key: {
1345
+ type: import('vue').PropType<string>;
1346
+ validator: undefined;
1347
+ };
1348
+ readonly onVnodeBeforeMount: {
1349
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
1350
+ validator: undefined;
1351
+ };
1352
+ readonly onVnodeMounted: {
1353
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
1354
+ validator: undefined;
1355
+ };
1356
+ readonly onVnodeBeforeUpdate: {
1357
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
1358
+ validator: undefined;
1359
+ };
1360
+ readonly onVnodeUpdated: {
1361
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
1362
+ validator: undefined;
1363
+ };
1364
+ readonly onVnodeBeforeUnmount: {
1365
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
1366
+ validator: undefined;
1367
+ };
1368
+ readonly onVnodeUnmounted: {
1369
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
1370
+ validator: undefined;
1371
+ };
1372
+ readonly onClick: {
1373
+ type: import('vue').PropType<(...args: any[]) => void>;
1374
+ validator: undefined;
1375
+ };
1376
+ }>> & Readonly<{}>, {
1377
+ readonly depend: boolean;
1378
+ readonly resetByDependValueChange: boolean | ((query: Record<string, any>) => boolean);
1379
+ readonly initialValue: any;
1380
+ readonly defaultValue: any;
1381
+ readonly defaultValueConflictCallback: (value: any, checked: import('vue').Ref<any>) => void;
1382
+ readonly options: any;
1383
+ readonly hooks: import('@xiaohaih/json-form-core').HookOption<Record<string, any>, Record<string, any>>;
1384
+ readonly readonly: boolean;
1385
+ readonly disabled: boolean;
1386
+ readonly isLink: boolean;
1387
+ readonly showAllLevels: boolean;
1388
+ readonly popupOn: Partial<{
1389
+ open: () => true;
1390
+ close: () => true;
1391
+ keydown: () => true;
1392
+ opened: () => true;
1393
+ closed: () => true;
1394
+ "update:show": () => true;
1395
+ clickOverlay: () => true;
1396
+ clickCloseIcon: () => true;
1397
+ }>;
1398
+ readonly hide: boolean;
1399
+ readonly checkStrictly: boolean;
1400
+ readonly emitPath: boolean;
1401
+ readonly cascaderProps: Partial<NonNullable<Partial<{
1402
+ closeIcon: string;
1403
+ closeable: boolean;
1404
+ options: import('vant/lib/cascader/types').CascaderOption[];
1405
+ swipeable: boolean;
1406
+ showHeader: boolean;
1407
+ }> & Omit<{
1408
+ readonly options: CascaderOption[];
1409
+ readonly closeIcon: string;
1410
+ readonly closeable: boolean;
1411
+ readonly swipeable: boolean;
1412
+ readonly showHeader: boolean;
1413
+ readonly modelValue?: string | number | undefined;
1414
+ readonly title?: string | undefined;
1415
+ readonly placeholder?: string | undefined;
1416
+ readonly fieldNames?: import('vant').CascaderFieldNames | undefined;
1417
+ readonly activeColor?: string | undefined;
1418
+ readonly onChange?: ((...args: any[]) => any) | undefined | undefined;
1419
+ readonly onClose?: ((...args: any[]) => any) | undefined | undefined;
1420
+ readonly "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined | undefined;
1421
+ readonly onClickTab?: ((...args: any[]) => any) | undefined | undefined;
1422
+ readonly onFinish?: ((...args: any[]) => any) | undefined | undefined;
1423
+ } & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, "options" | "closeIcon" | "closeable" | "swipeable" | "showHeader"> & {
1424
+ onClick?: (...args: any[]) => void;
1425
+ }>>;
1426
+ readonly cascaderOn: Partial<{
1427
+ change: () => true;
1428
+ "update:modelValue": () => true;
1429
+ close: () => true;
1430
+ clickTab: () => true;
1431
+ finish: () => true;
1432
+ }>;
1433
+ }, SlotsType<CascaderSlots>, {
1434
+ VanCascader: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1435
+ title: StringConstructor;
1436
+ options: {
1437
+ type: import('vue').PropType<import('vant/lib/cascader/types').CascaderOption[]>;
1438
+ default: () => never[];
1439
+ };
1440
+ closeable: {
1441
+ type: BooleanConstructor;
1442
+ default: true;
1443
+ };
1444
+ swipeable: {
1445
+ type: BooleanConstructor;
1446
+ default: true;
1447
+ };
1448
+ closeIcon: {
1449
+ type: import('vue').PropType<string>;
1450
+ default: string;
1451
+ };
1452
+ showHeader: {
1453
+ type: BooleanConstructor;
1454
+ default: true;
1455
+ };
1456
+ modelValue: (NumberConstructor | StringConstructor)[];
1457
+ fieldNames: import('vue').PropType<import('vant').CascaderFieldNames>;
1458
+ placeholder: StringConstructor;
1459
+ activeColor: StringConstructor;
1460
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("change" | "update:modelValue" | "close" | "clickTab" | "finish")[], "change" | "update:modelValue" | "close" | "clickTab" | "finish", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1461
+ title: StringConstructor;
1462
+ options: {
1463
+ type: import('vue').PropType<import('vant/lib/cascader/types').CascaderOption[]>;
1464
+ default: () => never[];
1465
+ };
1466
+ closeable: {
1467
+ type: BooleanConstructor;
1468
+ default: true;
1469
+ };
1470
+ swipeable: {
1471
+ type: BooleanConstructor;
1472
+ default: true;
1473
+ };
1474
+ closeIcon: {
1475
+ type: import('vue').PropType<string>;
1476
+ default: string;
1477
+ };
1478
+ showHeader: {
1479
+ type: BooleanConstructor;
1480
+ default: true;
1481
+ };
1482
+ modelValue: (NumberConstructor | StringConstructor)[];
1483
+ fieldNames: import('vue').PropType<import('vant').CascaderFieldNames>;
1484
+ placeholder: StringConstructor;
1485
+ activeColor: StringConstructor;
1486
+ }>> & Readonly<{
1487
+ onChange?: ((...args: any[]) => any) | undefined;
1488
+ onClose?: ((...args: any[]) => any) | undefined;
1489
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1490
+ onClickTab?: ((...args: any[]) => any) | undefined;
1491
+ onFinish?: ((...args: any[]) => any) | undefined;
1492
+ }>, {
1493
+ closeIcon: string;
1494
+ closeable: boolean;
1495
+ options: import('vant/lib/cascader/types').CascaderOption[];
1496
+ swipeable: boolean;
1497
+ showHeader: boolean;
1498
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
1499
+ VanField: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1500
+ tag: {
1501
+ type: import('vue').PropType<keyof HTMLElementTagNameMap>;
1502
+ default: keyof HTMLElementTagNameMap;
1503
+ };
1504
+ icon: StringConstructor;
1505
+ size: import('vue').PropType<import('vant').CellSize>;
1506
+ title: (NumberConstructor | StringConstructor)[];
1507
+ value: (NumberConstructor | StringConstructor)[];
1508
+ label: (NumberConstructor | StringConstructor)[];
1509
+ center: BooleanConstructor;
1510
+ isLink: BooleanConstructor;
1511
+ border: {
1512
+ type: BooleanConstructor;
1513
+ default: true;
1514
+ };
1515
+ iconPrefix: StringConstructor;
1516
+ valueClass: import('vue').PropType<unknown>;
1517
+ labelClass: import('vue').PropType<unknown>;
1518
+ titleClass: import('vue').PropType<unknown>;
1519
+ titleStyle: import('vue').PropType<string | import('vue').CSSProperties>;
1520
+ arrowDirection: import('vue').PropType<import('vant').CellArrowDirection>;
1521
+ required: {
1522
+ type: import('vue').PropType<boolean | "auto">;
1523
+ default: null;
1524
+ };
1525
+ clickable: {
1526
+ type: import('vue').PropType<boolean | null>;
1527
+ default: null;
1528
+ };
1529
+ } & {
1530
+ id: StringConstructor;
1531
+ name: StringConstructor;
1532
+ leftIcon: StringConstructor;
1533
+ rightIcon: StringConstructor;
1534
+ autofocus: BooleanConstructor;
1535
+ clearable: BooleanConstructor;
1536
+ maxlength: (NumberConstructor | StringConstructor)[];
1537
+ max: NumberConstructor;
1538
+ min: NumberConstructor;
1539
+ formatter: import('vue').PropType<(value: string) => string>;
1540
+ clearIcon: {
1541
+ type: import('vue').PropType<string>;
1542
+ default: string;
1543
+ };
1544
+ modelValue: {
1545
+ type: (NumberConstructor | StringConstructor)[];
1546
+ default: string;
1547
+ };
1548
+ inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1549
+ placeholder: StringConstructor;
1550
+ autocomplete: StringConstructor;
1551
+ autocapitalize: StringConstructor;
1552
+ autocorrect: StringConstructor;
1553
+ errorMessage: StringConstructor;
1554
+ enterkeyhint: import('vue').PropType<import('vant').FieldEnterKeyHint>;
1555
+ clearTrigger: {
1556
+ type: import('vue').PropType<import('vant').FieldClearTrigger>;
1557
+ default: import('vant').FieldClearTrigger;
1558
+ };
1559
+ formatTrigger: {
1560
+ type: import('vue').PropType<import('vant').FieldFormatTrigger>;
1561
+ default: import('vant').FieldFormatTrigger;
1562
+ };
1563
+ spellcheck: {
1564
+ type: BooleanConstructor;
1565
+ default: null;
1566
+ };
1567
+ error: {
1568
+ type: BooleanConstructor;
1569
+ default: null;
1570
+ };
1571
+ disabled: {
1572
+ type: BooleanConstructor;
1573
+ default: null;
1574
+ };
1575
+ readonly: {
1576
+ type: BooleanConstructor;
1577
+ default: null;
1578
+ };
1579
+ inputmode: import('vue').PropType<import('vue').HTMLAttributes["inputmode"]>;
1580
+ } & {
1581
+ rows: (NumberConstructor | StringConstructor)[];
1582
+ type: {
1583
+ type: import('vue').PropType<import('vant').FieldType>;
1584
+ default: import('vant').FieldType;
1585
+ };
1586
+ rules: import('vue').PropType<import('vant').FieldRule[]>;
1587
+ autosize: import('vue').PropType<boolean | import('vant').FieldAutosizeConfig>;
1588
+ labelWidth: (NumberConstructor | StringConstructor)[];
1589
+ labelClass: import('vue').PropType<unknown>;
1590
+ labelAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1591
+ showWordLimit: BooleanConstructor;
1592
+ errorMessageAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1593
+ colon: {
1594
+ type: BooleanConstructor;
1595
+ default: null;
1596
+ };
1597
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue")[], "clear" | "focus" | "blur" | "keypress" | "clickInput" | "endValidate" | "startValidate" | "clickLeftIcon" | "clickRightIcon" | "update:modelValue", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1598
+ tag: {
1599
+ type: import('vue').PropType<keyof HTMLElementTagNameMap>;
1600
+ default: keyof HTMLElementTagNameMap;
1601
+ };
1602
+ icon: StringConstructor;
1603
+ size: import('vue').PropType<import('vant').CellSize>;
1604
+ title: (NumberConstructor | StringConstructor)[];
1605
+ value: (NumberConstructor | StringConstructor)[];
1606
+ label: (NumberConstructor | StringConstructor)[];
1607
+ center: BooleanConstructor;
1608
+ isLink: BooleanConstructor;
1609
+ border: {
1610
+ type: BooleanConstructor;
1611
+ default: true;
1612
+ };
1613
+ iconPrefix: StringConstructor;
1614
+ valueClass: import('vue').PropType<unknown>;
1615
+ labelClass: import('vue').PropType<unknown>;
1616
+ titleClass: import('vue').PropType<unknown>;
1617
+ titleStyle: import('vue').PropType<string | import('vue').CSSProperties>;
1618
+ arrowDirection: import('vue').PropType<import('vant').CellArrowDirection>;
1619
+ required: {
1620
+ type: import('vue').PropType<boolean | "auto">;
1621
+ default: null;
1622
+ };
1623
+ clickable: {
1624
+ type: import('vue').PropType<boolean | null>;
1625
+ default: null;
1626
+ };
1627
+ } & {
1628
+ id: StringConstructor;
1629
+ name: StringConstructor;
1630
+ leftIcon: StringConstructor;
1631
+ rightIcon: StringConstructor;
1632
+ autofocus: BooleanConstructor;
1633
+ clearable: BooleanConstructor;
1634
+ maxlength: (NumberConstructor | StringConstructor)[];
1635
+ max: NumberConstructor;
1636
+ min: NumberConstructor;
1637
+ formatter: import('vue').PropType<(value: string) => string>;
1638
+ clearIcon: {
1639
+ type: import('vue').PropType<string>;
1640
+ default: string;
1641
+ };
1642
+ modelValue: {
1643
+ type: (NumberConstructor | StringConstructor)[];
1644
+ default: string;
1645
+ };
1646
+ inputAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1647
+ placeholder: StringConstructor;
1648
+ autocomplete: StringConstructor;
1649
+ autocapitalize: StringConstructor;
1650
+ autocorrect: StringConstructor;
1651
+ errorMessage: StringConstructor;
1652
+ enterkeyhint: import('vue').PropType<import('vant').FieldEnterKeyHint>;
1653
+ clearTrigger: {
1654
+ type: import('vue').PropType<import('vant').FieldClearTrigger>;
1655
+ default: import('vant').FieldClearTrigger;
1656
+ };
1657
+ formatTrigger: {
1658
+ type: import('vue').PropType<import('vant').FieldFormatTrigger>;
1659
+ default: import('vant').FieldFormatTrigger;
1660
+ };
1661
+ spellcheck: {
1662
+ type: BooleanConstructor;
1663
+ default: null;
1664
+ };
1665
+ error: {
1666
+ type: BooleanConstructor;
1667
+ default: null;
1668
+ };
1669
+ disabled: {
1670
+ type: BooleanConstructor;
1671
+ default: null;
1672
+ };
1673
+ readonly: {
1674
+ type: BooleanConstructor;
1675
+ default: null;
1676
+ };
1677
+ inputmode: import('vue').PropType<import('vue').HTMLAttributes["inputmode"]>;
1678
+ } & {
1679
+ rows: (NumberConstructor | StringConstructor)[];
1680
+ type: {
1681
+ type: import('vue').PropType<import('vant').FieldType>;
1682
+ default: import('vant').FieldType;
1683
+ };
1684
+ rules: import('vue').PropType<import('vant').FieldRule[]>;
1685
+ autosize: import('vue').PropType<boolean | import('vant').FieldAutosizeConfig>;
1686
+ labelWidth: (NumberConstructor | StringConstructor)[];
1687
+ labelClass: import('vue').PropType<unknown>;
1688
+ labelAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1689
+ showWordLimit: BooleanConstructor;
1690
+ errorMessageAlign: import('vue').PropType<import('vant').FieldTextAlign>;
1691
+ colon: {
1692
+ type: BooleanConstructor;
1693
+ default: null;
1694
+ };
1695
+ }>> & Readonly<{
1696
+ onFocus?: ((...args: any[]) => any) | undefined;
1697
+ onBlur?: ((...args: any[]) => any) | undefined;
1698
+ onKeypress?: ((...args: any[]) => any) | undefined;
1699
+ onClear?: ((...args: any[]) => any) | undefined;
1700
+ onClickInput?: ((...args: any[]) => any) | undefined;
1701
+ onEndValidate?: ((...args: any[]) => any) | undefined;
1702
+ onStartValidate?: ((...args: any[]) => any) | undefined;
1703
+ onClickLeftIcon?: ((...args: any[]) => any) | undefined;
1704
+ onClickRightIcon?: ((...args: any[]) => any) | undefined;
1705
+ "onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
1706
+ }>, {
1707
+ type: import('vant').FieldType;
1708
+ tag: keyof HTMLElementTagNameMap;
1709
+ center: boolean;
1710
+ autofocus: boolean;
1711
+ disabled: boolean;
1712
+ border: boolean;
1713
+ isLink: boolean;
1714
+ required: boolean | "auto";
1715
+ clickable: boolean | null;
1716
+ clearable: boolean;
1717
+ clearIcon: string;
1718
+ modelValue: string | number;
1719
+ clearTrigger: import('vant').FieldClearTrigger;
1720
+ formatTrigger: import('vant').FieldFormatTrigger;
1721
+ spellcheck: boolean;
1722
+ error: boolean;
1723
+ readonly: boolean;
1724
+ showWordLimit: boolean;
1725
+ colon: boolean;
1726
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
1727
+ VanPopup: import('vant/lib/utils').WithInstall<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1728
+ show: BooleanConstructor;
1729
+ zIndex: (NumberConstructor | StringConstructor)[];
1730
+ overlay: {
1731
+ type: BooleanConstructor;
1732
+ default: true;
1733
+ };
1734
+ duration: (NumberConstructor | StringConstructor)[];
1735
+ teleport: import('vue').PropType<import('vue').TeleportProps["to"]>;
1736
+ lockScroll: {
1737
+ type: BooleanConstructor;
1738
+ default: true;
1739
+ };
1740
+ lazyRender: {
1741
+ type: BooleanConstructor;
1742
+ default: true;
1743
+ };
1744
+ beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
1745
+ overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
1746
+ overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
1747
+ overlayClass: import('vue').PropType<unknown>;
1748
+ transitionAppear: BooleanConstructor;
1749
+ closeOnClickOverlay: {
1750
+ type: BooleanConstructor;
1751
+ default: true;
1752
+ };
1753
+ } & {
1754
+ round: BooleanConstructor;
1755
+ position: {
1756
+ type: import('vue').PropType<import('vant').PopupPosition>;
1757
+ default: import('vant').PopupPosition;
1758
+ };
1759
+ closeIcon: {
1760
+ type: import('vue').PropType<string>;
1761
+ default: string;
1762
+ };
1763
+ closeable: BooleanConstructor;
1764
+ transition: StringConstructor;
1765
+ iconPrefix: StringConstructor;
1766
+ closeOnPopstate: BooleanConstructor;
1767
+ closeIconPosition: {
1768
+ type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
1769
+ default: import('vant').PopupCloseIconPosition;
1770
+ };
1771
+ destroyOnClose: BooleanConstructor;
1772
+ safeAreaInsetTop: BooleanConstructor;
1773
+ safeAreaInsetBottom: BooleanConstructor;
1774
+ }>, () => import("vue/jsx-runtime").JSX.Element, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, ("open" | "close" | "keydown" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon")[], "open" | "close" | "keydown" | "opened" | "closed" | "update:show" | "clickOverlay" | "clickCloseIcon", import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
1775
+ show: BooleanConstructor;
1776
+ zIndex: (NumberConstructor | StringConstructor)[];
1777
+ overlay: {
1778
+ type: BooleanConstructor;
1779
+ default: true;
1780
+ };
1781
+ duration: (NumberConstructor | StringConstructor)[];
1782
+ teleport: import('vue').PropType<import('vue').TeleportProps["to"]>;
1783
+ lockScroll: {
1784
+ type: BooleanConstructor;
1785
+ default: true;
1786
+ };
1787
+ lazyRender: {
1788
+ type: BooleanConstructor;
1789
+ default: true;
1790
+ };
1791
+ beforeClose: import('vue').PropType<import('vant/lib/utils').Interceptor>;
1792
+ overlayProps: import('vue').PropType<Partial<import('vant').OverlayProps>>;
1793
+ overlayStyle: import('vue').PropType<import('vue').CSSProperties>;
1794
+ overlayClass: import('vue').PropType<unknown>;
1795
+ transitionAppear: BooleanConstructor;
1796
+ closeOnClickOverlay: {
1797
+ type: BooleanConstructor;
1798
+ default: true;
1799
+ };
1800
+ } & {
1801
+ round: BooleanConstructor;
1802
+ position: {
1803
+ type: import('vue').PropType<import('vant').PopupPosition>;
1804
+ default: import('vant').PopupPosition;
1805
+ };
1806
+ closeIcon: {
1807
+ type: import('vue').PropType<string>;
1808
+ default: string;
1809
+ };
1810
+ closeable: BooleanConstructor;
1811
+ transition: StringConstructor;
1812
+ iconPrefix: StringConstructor;
1813
+ closeOnPopstate: BooleanConstructor;
1814
+ closeIconPosition: {
1815
+ type: import('vue').PropType<import('vant').PopupCloseIconPosition>;
1816
+ default: import('vant').PopupCloseIconPosition;
1817
+ };
1818
+ destroyOnClose: BooleanConstructor;
1819
+ safeAreaInsetTop: BooleanConstructor;
1820
+ safeAreaInsetBottom: BooleanConstructor;
1821
+ }>> & Readonly<{
1822
+ onKeydown?: ((...args: any[]) => any) | undefined;
1823
+ onClose?: ((...args: any[]) => any) | undefined;
1824
+ onOpen?: ((...args: any[]) => any) | undefined;
1825
+ onOpened?: ((...args: any[]) => any) | undefined;
1826
+ onClosed?: ((...args: any[]) => any) | undefined;
1827
+ "onUpdate:show"?: ((...args: any[]) => any) | undefined;
1828
+ onClickOverlay?: ((...args: any[]) => any) | undefined;
1829
+ onClickCloseIcon?: ((...args: any[]) => any) | undefined;
1830
+ }>, {
1831
+ position: import('vant').PopupPosition;
1832
+ round: boolean;
1833
+ overlay: boolean;
1834
+ show: boolean;
1835
+ safeAreaInsetBottom: boolean;
1836
+ lockScroll: boolean;
1837
+ lazyRender: boolean;
1838
+ transitionAppear: boolean;
1839
+ closeOnClickOverlay: boolean;
1840
+ closeIcon: string;
1841
+ closeable: boolean;
1842
+ closeOnPopstate: boolean;
1843
+ closeIconPosition: import('vant').PopupCloseIconPosition;
1844
+ destroyOnClose: boolean;
1845
+ safeAreaInsetTop: boolean;
1846
+ }, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>>;
1847
+ HInputSlot: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
1848
+ type: {
1849
+ type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
1850
+ validator: undefined;
1851
+ };
1852
+ rows: {
1853
+ type: import('vue').PropType<number | string>;
1854
+ };
1855
+ disabled: {
1856
+ type: import('vue').PropType<boolean>;
1857
+ };
1858
+ readonly: {
1859
+ type: import('vue').PropType<boolean>;
1860
+ };
1861
+ label: {
1862
+ type: import('vue').PropType<string>;
1863
+ };
1864
+ tag: {
1865
+ type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
1866
+ validator: undefined;
1867
+ };
1868
+ center: {
1869
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1870
+ validator: undefined;
1871
+ };
1872
+ autofocus: {
1873
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1874
+ validator: undefined;
1875
+ };
1876
+ border: {
1877
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1878
+ validator: undefined;
1879
+ };
1880
+ isLink: {
1881
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1882
+ validator: undefined;
1883
+ };
1884
+ required: {
1885
+ type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
1886
+ validator: undefined;
1887
+ };
1888
+ clickable: {
1889
+ type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
1890
+ validator: undefined;
1891
+ };
1892
+ clearable: {
1893
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1894
+ validator: undefined;
1895
+ };
1896
+ clearIcon: {
1897
+ type: import('vue').PropType<string>;
1898
+ validator: undefined;
1899
+ };
1900
+ modelValue: {
1901
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1902
+ validator: undefined;
1903
+ };
1904
+ clearTrigger: {
1905
+ type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
1906
+ validator: undefined;
1907
+ };
1908
+ formatTrigger: {
1909
+ type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
1910
+ validator: undefined;
1911
+ };
1912
+ spellcheck: {
1913
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1914
+ validator: undefined;
1915
+ };
1916
+ error: {
1917
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1918
+ validator: undefined;
1919
+ };
1920
+ showWordLimit: {
1921
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1922
+ validator: undefined;
1923
+ };
1924
+ colon: {
1925
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
1926
+ validator: undefined;
1927
+ };
1928
+ size: {
1929
+ type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
1930
+ validator: undefined;
1931
+ };
1932
+ value: {
1933
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1934
+ validator: undefined;
1935
+ };
1936
+ name: {
1937
+ type: import('vue').PropType<string>;
1938
+ validator: undefined;
1939
+ };
1940
+ class: {
1941
+ type: import('vue').PropType<{}>;
1942
+ validator: undefined;
1943
+ };
1944
+ icon: {
1945
+ type: import('vue').PropType<string>;
1946
+ validator: undefined;
1947
+ };
1948
+ title: {
1949
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1950
+ validator: undefined;
1951
+ };
1952
+ iconPrefix: {
1953
+ type: import('vue').PropType<string>;
1954
+ validator: undefined;
1955
+ };
1956
+ valueClass: {
1957
+ type: import('vue').PropType<{}>;
1958
+ validator: undefined;
1959
+ };
1960
+ labelClass: {
1961
+ type: import('vue').PropType<{}>;
1962
+ validator: undefined;
1963
+ };
1964
+ titleClass: {
1965
+ type: import('vue').PropType<{}>;
1966
+ validator: undefined;
1967
+ };
1968
+ titleStyle: {
1969
+ type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
1970
+ validator: undefined;
1971
+ };
1972
+ arrowDirection: {
1973
+ type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
1974
+ validator: undefined;
1975
+ };
1976
+ id: {
1977
+ type: import('vue').PropType<string>;
1978
+ validator: undefined;
1979
+ };
1980
+ leftIcon: {
1981
+ type: import('vue').PropType<string>;
1982
+ validator: undefined;
1983
+ };
1984
+ rightIcon: {
1985
+ type: import('vue').PropType<string>;
1986
+ validator: undefined;
1987
+ };
1988
+ maxlength: {
1989
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
1990
+ validator: undefined;
1991
+ };
1992
+ max: {
1993
+ type: import('vue').PropType<number>;
1994
+ validator: undefined;
1995
+ };
1996
+ min: {
1997
+ type: import('vue').PropType<number>;
1998
+ validator: undefined;
1999
+ };
2000
+ formatter: {
2001
+ type: import('vue').PropType<(value: string) => string>;
2002
+ validator: undefined;
2003
+ };
2004
+ inputAlign: {
2005
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2006
+ validator: undefined;
2007
+ };
2008
+ placeholder: {
2009
+ type: import('vue').PropType<string>;
2010
+ validator: undefined;
2011
+ };
2012
+ autocomplete: {
2013
+ type: import('vue').PropType<string>;
2014
+ validator: undefined;
2015
+ };
2016
+ autocapitalize: {
2017
+ type: import('vue').PropType<string>;
2018
+ validator: undefined;
2019
+ };
2020
+ autocorrect: {
2021
+ type: import('vue').PropType<string>;
2022
+ validator: undefined;
2023
+ };
2024
+ errorMessage: {
2025
+ type: import('vue').PropType<string>;
2026
+ validator: undefined;
2027
+ };
2028
+ enterkeyhint: {
2029
+ type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
2030
+ validator: undefined;
2031
+ };
2032
+ inputmode: {
2033
+ type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
2034
+ validator: undefined;
2035
+ };
2036
+ rules: {
2037
+ type: import('vue').PropType<import('vant').FieldRule[]>;
2038
+ validator: undefined;
2039
+ };
2040
+ autosize: {
2041
+ type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
2042
+ validator: undefined;
2043
+ };
2044
+ labelWidth: {
2045
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2046
+ validator: undefined;
2047
+ };
2048
+ labelAlign: {
2049
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2050
+ validator: undefined;
2051
+ };
2052
+ errorMessageAlign: {
2053
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2054
+ validator: undefined;
2055
+ };
2056
+ style: {
2057
+ type: import('vue').PropType<{}>;
2058
+ validator: undefined;
2059
+ };
2060
+ onBlur: {
2061
+ type: import('vue').PropType<(...args: any[]) => any>;
2062
+ validator: undefined;
2063
+ };
2064
+ onFocus: {
2065
+ type: import('vue').PropType<(...args: any[]) => any>;
2066
+ validator: undefined;
2067
+ };
2068
+ onKeypress: {
2069
+ type: import('vue').PropType<(...args: any[]) => any>;
2070
+ validator: undefined;
2071
+ };
2072
+ onClear: {
2073
+ type: import('vue').PropType<(...args: any[]) => any>;
2074
+ validator: undefined;
2075
+ };
2076
+ onClickInput: {
2077
+ type: import('vue').PropType<(...args: any[]) => any>;
2078
+ validator: undefined;
2079
+ };
2080
+ onEndValidate: {
2081
+ type: import('vue').PropType<(...args: any[]) => any>;
2082
+ validator: undefined;
2083
+ };
2084
+ onStartValidate: {
2085
+ type: import('vue').PropType<(...args: any[]) => any>;
2086
+ validator: undefined;
2087
+ };
2088
+ onClickLeftIcon: {
2089
+ type: import('vue').PropType<(...args: any[]) => any>;
2090
+ validator: undefined;
2091
+ };
2092
+ onClickRightIcon: {
2093
+ type: import('vue').PropType<(...args: any[]) => any>;
2094
+ validator: undefined;
2095
+ };
2096
+ "onUpdate:modelValue": {
2097
+ type: import('vue').PropType<(...args: any[]) => any>;
2098
+ validator: undefined;
2099
+ };
2100
+ key: {
2101
+ type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
2102
+ validator: undefined;
2103
+ };
2104
+ ref: {
2105
+ type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
2106
+ validator: undefined;
2107
+ };
2108
+ ref_for: {
2109
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2110
+ validator: undefined;
2111
+ };
2112
+ ref_key: {
2113
+ type: import('vue').PropType<string>;
2114
+ validator: undefined;
2115
+ };
2116
+ onVnodeBeforeMount: {
2117
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2118
+ validator: undefined;
2119
+ };
2120
+ onVnodeMounted: {
2121
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2122
+ validator: undefined;
2123
+ };
2124
+ onVnodeBeforeUpdate: {
2125
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
2126
+ validator: undefined;
2127
+ };
2128
+ onVnodeUpdated: {
2129
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
2130
+ validator: undefined;
2131
+ };
2132
+ onVnodeBeforeUnmount: {
2133
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2134
+ validator: undefined;
2135
+ };
2136
+ onVnodeUnmounted: {
2137
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2138
+ validator: undefined;
2139
+ };
2140
+ onClick: {
2141
+ type: import('vue').PropType<(...args: any[]) => void>;
2142
+ validator: undefined;
2143
+ };
2144
+ }>, {
2145
+ inputRef: import('vue').Ref<import('vue-component-type-helpers').ComponentExposed<{
2146
+ new (): HTMLInputElement;
2147
+ prototype: HTMLInputElement;
2148
+ } | {
2149
+ new (): HTMLTextAreaElement;
2150
+ prototype: HTMLTextAreaElement;
2151
+ }> | undefined, import('vue-component-type-helpers').ComponentExposed<{
2152
+ new (): HTMLInputElement;
2153
+ prototype: HTMLInputElement;
2154
+ } | {
2155
+ new (): HTMLTextAreaElement;
2156
+ prototype: HTMLTextAreaElement;
2157
+ }> | undefined>;
2158
+ inputAttrs: import('vue').ComputedRef<{
2159
+ rows: number | undefined;
2160
+ 'aria-labelledby': string | undefined;
2161
+ 'data-allow-mismatch': string;
2162
+ class: string;
2163
+ disabled: boolean | undefined;
2164
+ readonly: boolean | undefined;
2165
+ }>;
2166
+ focusHandle: (event: Event) => void;
2167
+ blurHandle: () => void;
2168
+ keypressHandle: (event: KeyboardEvent) => void;
2169
+ }, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
2170
+ type: {
2171
+ type: import('vue').PropType<NonNullable<import('vant').FieldType | undefined>>;
2172
+ validator: undefined;
2173
+ };
2174
+ rows: {
2175
+ type: import('vue').PropType<number | string>;
2176
+ };
2177
+ disabled: {
2178
+ type: import('vue').PropType<boolean>;
2179
+ };
2180
+ readonly: {
2181
+ type: import('vue').PropType<boolean>;
2182
+ };
2183
+ label: {
2184
+ type: import('vue').PropType<string>;
2185
+ };
2186
+ tag: {
2187
+ type: import('vue').PropType<NonNullable<keyof HTMLElementTagNameMap | undefined>>;
2188
+ validator: undefined;
2189
+ };
2190
+ center: {
2191
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2192
+ validator: undefined;
2193
+ };
2194
+ autofocus: {
2195
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2196
+ validator: undefined;
2197
+ };
2198
+ border: {
2199
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2200
+ validator: undefined;
2201
+ };
2202
+ isLink: {
2203
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2204
+ validator: undefined;
2205
+ };
2206
+ required: {
2207
+ type: import('vue').PropType<NonNullable<boolean | "auto" | undefined>>;
2208
+ validator: undefined;
2209
+ };
2210
+ clickable: {
2211
+ type: import('vue').PropType<NonNullable<boolean | null | undefined>>;
2212
+ validator: undefined;
2213
+ };
2214
+ clearable: {
2215
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2216
+ validator: undefined;
2217
+ };
2218
+ clearIcon: {
2219
+ type: import('vue').PropType<string>;
2220
+ validator: undefined;
2221
+ };
2222
+ modelValue: {
2223
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2224
+ validator: undefined;
2225
+ };
2226
+ clearTrigger: {
2227
+ type: import('vue').PropType<NonNullable<import('vant').FieldClearTrigger | undefined>>;
2228
+ validator: undefined;
2229
+ };
2230
+ formatTrigger: {
2231
+ type: import('vue').PropType<NonNullable<import('vant').FieldFormatTrigger | undefined>>;
2232
+ validator: undefined;
2233
+ };
2234
+ spellcheck: {
2235
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2236
+ validator: undefined;
2237
+ };
2238
+ error: {
2239
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2240
+ validator: undefined;
2241
+ };
2242
+ showWordLimit: {
2243
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2244
+ validator: undefined;
2245
+ };
2246
+ colon: {
2247
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2248
+ validator: undefined;
2249
+ };
2250
+ size: {
2251
+ type: import('vue').PropType<NonNullable<import('vant').CellSize | undefined>>;
2252
+ validator: undefined;
2253
+ };
2254
+ value: {
2255
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2256
+ validator: undefined;
2257
+ };
2258
+ name: {
2259
+ type: import('vue').PropType<string>;
2260
+ validator: undefined;
2261
+ };
2262
+ class: {
2263
+ type: import('vue').PropType<{}>;
2264
+ validator: undefined;
2265
+ };
2266
+ icon: {
2267
+ type: import('vue').PropType<string>;
2268
+ validator: undefined;
2269
+ };
2270
+ title: {
2271
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2272
+ validator: undefined;
2273
+ };
2274
+ iconPrefix: {
2275
+ type: import('vue').PropType<string>;
2276
+ validator: undefined;
2277
+ };
2278
+ valueClass: {
2279
+ type: import('vue').PropType<{}>;
2280
+ validator: undefined;
2281
+ };
2282
+ labelClass: {
2283
+ type: import('vue').PropType<{}>;
2284
+ validator: undefined;
2285
+ };
2286
+ titleClass: {
2287
+ type: import('vue').PropType<{}>;
2288
+ validator: undefined;
2289
+ };
2290
+ titleStyle: {
2291
+ type: import('vue').PropType<NonNullable<string | import('vue').CSSProperties | undefined>>;
2292
+ validator: undefined;
2293
+ };
2294
+ arrowDirection: {
2295
+ type: import('vue').PropType<NonNullable<import('vant').CellArrowDirection | undefined>>;
2296
+ validator: undefined;
2297
+ };
2298
+ id: {
2299
+ type: import('vue').PropType<string>;
2300
+ validator: undefined;
2301
+ };
2302
+ leftIcon: {
2303
+ type: import('vue').PropType<string>;
2304
+ validator: undefined;
2305
+ };
2306
+ rightIcon: {
2307
+ type: import('vue').PropType<string>;
2308
+ validator: undefined;
2309
+ };
2310
+ maxlength: {
2311
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2312
+ validator: undefined;
2313
+ };
2314
+ max: {
2315
+ type: import('vue').PropType<number>;
2316
+ validator: undefined;
2317
+ };
2318
+ min: {
2319
+ type: import('vue').PropType<number>;
2320
+ validator: undefined;
2321
+ };
2322
+ formatter: {
2323
+ type: import('vue').PropType<(value: string) => string>;
2324
+ validator: undefined;
2325
+ };
2326
+ inputAlign: {
2327
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2328
+ validator: undefined;
2329
+ };
2330
+ placeholder: {
2331
+ type: import('vue').PropType<string>;
2332
+ validator: undefined;
2333
+ };
2334
+ autocomplete: {
2335
+ type: import('vue').PropType<string>;
2336
+ validator: undefined;
2337
+ };
2338
+ autocapitalize: {
2339
+ type: import('vue').PropType<string>;
2340
+ validator: undefined;
2341
+ };
2342
+ autocorrect: {
2343
+ type: import('vue').PropType<string>;
2344
+ validator: undefined;
2345
+ };
2346
+ errorMessage: {
2347
+ type: import('vue').PropType<string>;
2348
+ validator: undefined;
2349
+ };
2350
+ enterkeyhint: {
2351
+ type: import('vue').PropType<NonNullable<import('vant').FieldEnterKeyHint | undefined>>;
2352
+ validator: undefined;
2353
+ };
2354
+ inputmode: {
2355
+ type: import('vue').PropType<NonNullable<"search" | "tel" | "url" | "text" | "email" | "none" | "numeric" | "decimal" | undefined>>;
2356
+ validator: undefined;
2357
+ };
2358
+ rules: {
2359
+ type: import('vue').PropType<import('vant').FieldRule[]>;
2360
+ validator: undefined;
2361
+ };
2362
+ autosize: {
2363
+ type: import('vue').PropType<NonNullable<boolean | import('vant').FieldAutosizeConfig | undefined>>;
2364
+ validator: undefined;
2365
+ };
2366
+ labelWidth: {
2367
+ type: import('vue').PropType<NonNullable<string | number | undefined>>;
2368
+ validator: undefined;
2369
+ };
2370
+ labelAlign: {
2371
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2372
+ validator: undefined;
2373
+ };
2374
+ errorMessageAlign: {
2375
+ type: import('vue').PropType<NonNullable<import('vant').FieldTextAlign | undefined>>;
2376
+ validator: undefined;
2377
+ };
2378
+ style: {
2379
+ type: import('vue').PropType<{}>;
2380
+ validator: undefined;
2381
+ };
2382
+ onBlur: {
2383
+ type: import('vue').PropType<(...args: any[]) => any>;
2384
+ validator: undefined;
2385
+ };
2386
+ onFocus: {
2387
+ type: import('vue').PropType<(...args: any[]) => any>;
2388
+ validator: undefined;
2389
+ };
2390
+ onKeypress: {
2391
+ type: import('vue').PropType<(...args: any[]) => any>;
2392
+ validator: undefined;
2393
+ };
2394
+ onClear: {
2395
+ type: import('vue').PropType<(...args: any[]) => any>;
2396
+ validator: undefined;
2397
+ };
2398
+ onClickInput: {
2399
+ type: import('vue').PropType<(...args: any[]) => any>;
2400
+ validator: undefined;
2401
+ };
2402
+ onEndValidate: {
2403
+ type: import('vue').PropType<(...args: any[]) => any>;
2404
+ validator: undefined;
2405
+ };
2406
+ onStartValidate: {
2407
+ type: import('vue').PropType<(...args: any[]) => any>;
2408
+ validator: undefined;
2409
+ };
2410
+ onClickLeftIcon: {
2411
+ type: import('vue').PropType<(...args: any[]) => any>;
2412
+ validator: undefined;
2413
+ };
2414
+ onClickRightIcon: {
2415
+ type: import('vue').PropType<(...args: any[]) => any>;
2416
+ validator: undefined;
2417
+ };
2418
+ "onUpdate:modelValue": {
2419
+ type: import('vue').PropType<(...args: any[]) => any>;
2420
+ validator: undefined;
2421
+ };
2422
+ key: {
2423
+ type: import('vue').PropType<NonNullable<PropertyKey | undefined>>;
2424
+ validator: undefined;
2425
+ };
2426
+ ref: {
2427
+ type: import('vue').PropType<NonNullable<import('vue').VNodeRef | undefined>>;
2428
+ validator: undefined;
2429
+ };
2430
+ ref_for: {
2431
+ type: import('vue').PropType<NonNullable<boolean | undefined>>;
2432
+ validator: undefined;
2433
+ };
2434
+ ref_key: {
2435
+ type: import('vue').PropType<string>;
2436
+ validator: undefined;
2437
+ };
2438
+ onVnodeBeforeMount: {
2439
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2440
+ validator: undefined;
2441
+ };
2442
+ onVnodeMounted: {
2443
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2444
+ validator: undefined;
2445
+ };
2446
+ onVnodeBeforeUpdate: {
2447
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
2448
+ validator: undefined;
2449
+ };
2450
+ onVnodeUpdated: {
2451
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void) | ((vnode: import('vue').VNode, oldVNode: import('vue').VNode) => void)[] | undefined>>;
2452
+ validator: undefined;
2453
+ };
2454
+ onVnodeBeforeUnmount: {
2455
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2456
+ validator: undefined;
2457
+ };
2458
+ onVnodeUnmounted: {
2459
+ type: import('vue').PropType<NonNullable<((vnode: import('vue').VNode) => void) | ((vnode: import('vue').VNode) => void)[] | undefined>>;
2460
+ validator: undefined;
2461
+ };
2462
+ onClick: {
2463
+ type: import('vue').PropType<(...args: any[]) => void>;
2464
+ validator: undefined;
2465
+ };
2466
+ }>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
2467
+ }, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;