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