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