vant 2.12.35 → 2.12.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vant",
3
- "version": "2.12.35",
3
+ "version": "2.12.39",
4
4
  "description": "Mobile UI Components built on Vue",
5
5
  "main": "lib/index.js",
6
6
  "module": "es/index.js",
@@ -15,6 +15,7 @@ export type ImagePreviewOptions =
15
15
  closeIcon?: string;
16
16
  asyncClose?: boolean;
17
17
  transition?: string;
18
+ overlayStyle?: object;
18
19
  swipeDuration?: number;
19
20
  startPosition?: number;
20
21
  showIndicators?: boolean;
@@ -1,72 +1,4 @@
1
1
  {
2
- "van-action-sheet/v-model (value)": {
3
- "type": "boolean",
4
- "description": "是否显示动作面板, 默认值: `false`"
5
- },
6
- "van-action-sheet/actions": {
7
- "type": "Action[]",
8
- "description": "面板选项列表, 默认值: `[]`"
9
- },
10
- "van-action-sheet/title": {
11
- "type": "string",
12
- "description": "顶部标题, 默认值: -"
13
- },
14
- "van-action-sheet/cancel-text": {
15
- "type": "string",
16
- "description": "取消按钮文字, 默认值: -"
17
- },
18
- "van-action-sheet/description": {
19
- "type": "string",
20
- "description": "选项上方的描述信息, 默认值: -"
21
- },
22
- "van-action-sheet/closeable": {
23
- "type": "boolean",
24
- "description": "是否显示关闭图标, 默认值: `true`"
25
- },
26
- "van-action-sheet/close-icon": {
27
- "type": "string",
28
- "description": "关闭[图标名称](#/zh-CN/icon)或图片链接, 默认值: `cross`"
29
- },
30
- "van-action-sheet/duration": {
31
- "type": "number | string",
32
- "description": "动画时长,单位秒, 默认值: `0.3`"
33
- },
34
- "van-action-sheet/round": {
35
- "type": "boolean",
36
- "description": "是否显示圆角, 默认值: `true`"
37
- },
38
- "van-action-sheet/overlay": {
39
- "type": "boolean",
40
- "description": "是否显示遮罩层, 默认值: `true`"
41
- },
42
- "van-action-sheet/lock-scroll": {
43
- "type": "boolean",
44
- "description": "是否锁定背景滚动, 默认值: `true`"
45
- },
46
- "van-action-sheet/lazy-render": {
47
- "type": "boolean",
48
- "description": "是否在显示弹层时才渲染节点, 默认值: `true`"
49
- },
50
- "van-action-sheet/close-on-popstate": {
51
- "type": "boolean",
52
- "description": "是否在页面回退时自动关闭, 默认值: `false`"
53
- },
54
- "van-action-sheet/close-on-click-action": {
55
- "type": "boolean",
56
- "description": "是否在点击选项后关闭, 默认值: `false`"
57
- },
58
- "van-action-sheet/close-on-click-overlay": {
59
- "type": "boolean",
60
- "description": "是否在点击遮罩层后关闭, 默认值: `true`"
61
- },
62
- "van-action-sheet/safe-area-inset-bottom": {
63
- "type": "boolean",
64
- "description": "是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei), 默认值: `true`"
65
- },
66
- "van-action-sheet/get-container": {
67
- "type": "string | () => Element",
68
- "description": "指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi), 默认值: -"
69
- },
70
2
  "van-address-edit/area-list": {
71
3
  "type": "object",
72
4
  "description": "地区列表, 默认值: -"
@@ -199,125 +131,57 @@
199
131
  "type": "number | string",
200
132
  "description": "最大值,超过最大值会显示 `{max}+`,仅当 content 为数字时有效, 默认值: -"
201
133
  },
202
- "van-calendar/type": {
203
- "type": "string",
204
- "description": "选择类型:<br>`single`表示选择单个日期,<br>`multiple`表示选择多个日期,<br>`range`表示选择日期区间, 默认值: `single`"
205
- },
206
- "van-calendar/title": {
207
- "type": "string",
208
- "description": "日历标题, 默认值: `日期选择`"
209
- },
210
- "van-calendar/color": {
134
+ "van-area/value": {
211
135
  "type": "string",
212
- "description": "主题色,对底部按钮和选中日期生效, 默认值: `#ee0a24`"
213
- },
214
- "van-calendar/min-date": {
215
- "type": "Date",
216
- "description": "可选择的最小日期, 默认值: 当前日期"
217
- },
218
- "van-calendar/max-date": {
219
- "type": "Date",
220
- "description": "可选择的最大日期, 默认值: 当前日期的六个月后"
221
- },
222
- "van-calendar/default-date": {
223
- "type": "Date | Date[] \\",
224
- "description": "默认选中的日期,`type` 为 `multiple` 或 `range` 时为数组,传入 `null` 表示默认不选择, 默认值: null_"
225
- },
226
- "van-calendar/row-height": {
227
- "type": "number | string",
228
- "description": "日期行高, 默认值: `64`"
229
- },
230
- "van-calendar/formatter": {
231
- "type": "(day: Day) => Day",
232
- "description": "日期格式化函数, 默认值: -"
233
- },
234
- "van-calendar/poppable": {
235
- "type": "boolean",
236
- "description": "是否以弹层的形式展示日历, 默认值: `true`"
237
- },
238
- "van-calendar/lazy-render": {
239
- "type": "boolean",
240
- "description": "是否只渲染可视区域的内容, 默认值: `true`"
241
- },
242
- "van-calendar/show-mark": {
243
- "type": "boolean",
244
- "description": "是否显示月份背景水印, 默认值: `true`"
245
- },
246
- "van-calendar/show-title": {
247
- "type": "boolean",
248
- "description": "是否展示日历标题, 默认值: `true`"
249
- },
250
- "van-calendar/show-subtitle": {
251
- "type": "boolean",
252
- "description": "是否展示日历副标题(年月), 默认值: `true`"
253
- },
254
- "van-calendar/show-confirm": {
255
- "type": "boolean",
256
- "description": "是否展示确认按钮, 默认值: `true`"
257
- },
258
- "van-calendar/readonly": {
259
- "type": "boolean",
260
- "description": "是否为只读状态,只读状态下不能选择日期, 默认值: `false`"
136
+ "description": "当前选中的省市区`code`, 默认值: -"
261
137
  },
262
- "van-calendar/confirm-text": {
138
+ "van-area/title": {
263
139
  "type": "string",
264
- "description": "确认按钮的文字, 默认值: `确定`"
140
+ "description": "顶部栏标题, 默认值: -"
265
141
  },
266
- "van-calendar/confirm-disabled-text": {
142
+ "van-area/confirm-button-text": {
267
143
  "type": "string",
268
- "description": "确认按钮处于禁用状态时的文字, 默认值: `确定`"
269
- },
270
- "van-calendar/first-day-of-week": {
271
- "type": "0-6",
272
- "description": "设置周起始日, 默认值: `0`"
273
- },
274
- "van-poppable/v-model": {
275
- "type": "boolean",
276
- "description": "是否显示日历弹窗, 默认值: `false`"
144
+ "description": "确认按钮文字, 默认值: `确认`"
277
145
  },
278
- "van-poppable/position": {
146
+ "van-area/cancel-button-text": {
279
147
  "type": "string",
280
- "description": "弹出位置,可选值为 `top` `right` `left`, 默认值: `bottom`"
148
+ "description": "取消按钮文字, 默认值: `取消`"
281
149
  },
282
- "van-poppable/round": {
283
- "type": "boolean",
284
- "description": "是否显示圆角弹窗, 默认值: `true`"
150
+ "van-area/area-list": {
151
+ "type": "object",
152
+ "description": "省市区数据,格式见下方, 默认值: -"
285
153
  },
286
- "van-poppable/close-on-popstate": {
287
- "type": "boolean",
288
- "description": "是否在页面回退时自动关闭, 默认值: `true`"
154
+ "van-area/columns-placeholder": {
155
+ "type": "string[]",
156
+ "description": "列占位提示文字, 默认值: `[]`"
289
157
  },
290
- "van-poppable/close-on-click-overlay": {
158
+ "van-area/loading": {
291
159
  "type": "boolean",
292
- "description": "是否在点击遮罩层后关闭, 默认值: `true`"
160
+ "description": "是否显示加载状态, 默认值: `false`"
293
161
  },
294
- "van-poppable/safe-area-inset-bottom": {
162
+ "van-area/readonly": {
295
163
  "type": "boolean",
296
- "description": "是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei), 默认值: `true`"
297
- },
298
- "van-poppable/get-container": {
299
- "type": "string | () => Element",
300
- "description": "指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi), 默认值: -"
164
+ "description": "是否为只读状态,只读状态下无法切换选项, 默认值: `false`"
301
165
  },
302
- "van-range/max-range": {
166
+ "van-area/item-height": {
303
167
  "type": "number | string",
304
- "description": "日期区间最多可选天数, 默认值: 无限制"
168
+ "description": "选项高度,支持 `px` `vw` `vh` `rem` 单位,默认 `px`, 默认值: `44`"
305
169
  },
306
- "van-range/range-prompt": {
307
- "type": "string",
308
- "description": "范围选择超过最多可选天数时的提示文案, 默认值: `选择天数不能超过 xx 天`"
170
+ "van-area/columns-num": {
171
+ "type": "number | string",
172
+ "description": "显示列数,3-省市区,2-省市,1-省, 默认值: `3`"
309
173
  },
310
- "van-range/allow-same-day": {
311
- "type": "boolean",
312
- "description": "是否允许日期范围的起止时间为同一天, 默认值: `false`"
174
+ "van-area/visible-item-count": {
175
+ "type": "number | string",
176
+ "description": "可见的选项个数, 默认值: `6`"
313
177
  },
314
- "van-multiple/max-range": {
178
+ "van-area/swipe-duration": {
315
179
  "type": "number | string",
316
- "description": "日期最多可选天数, 默认值: 无限制"
180
+ "description": "快速滑动时惯性滚动的时长,单位`ms`, 默认值: `1000`"
317
181
  },
318
- "van-multiple/range-prompt": {
319
- "type": "string",
320
- "description": "选择超过最多可选天数时的提示文案, 默认值: `选择天数不能超过 xx 天`"
182
+ "van-area/is-oversea-code": {
183
+ "type": "() => boolean",
184
+ "description": "根据`code`校验海外地址,海外地址会划分至单独的分类, 默认值: -"
321
185
  },
322
186
  "van-button/type": {
323
187
  "type": "string",
@@ -407,57 +271,125 @@
407
271
  "type": "boolean",
408
272
  "description": "是否在跳转时替换当前页面历史, 默认值: `false`"
409
273
  },
410
- "van-area/value": {
274
+ "van-calendar/type": {
411
275
  "type": "string",
412
- "description": "当前选中的省市区`code`, 默认值: -"
276
+ "description": "选择类型:<br>`single`表示选择单个日期,<br>`multiple`表示选择多个日期,<br>`range`表示选择日期区间, 默认值: `single`"
413
277
  },
414
- "van-area/title": {
278
+ "van-calendar/title": {
415
279
  "type": "string",
416
- "description": "顶部栏标题, 默认值: -"
280
+ "description": "日历标题, 默认值: `日期选择`"
417
281
  },
418
- "van-area/confirm-button-text": {
282
+ "van-calendar/color": {
419
283
  "type": "string",
420
- "description": "确认按钮文字, 默认值: `确认`"
284
+ "description": "主题色,对底部按钮和选中日期生效, 默认值: `#ee0a24`"
421
285
  },
422
- "van-area/cancel-button-text": {
286
+ "van-calendar/min-date": {
287
+ "type": "Date",
288
+ "description": "可选择的最小日期, 默认值: 当前日期"
289
+ },
290
+ "van-calendar/max-date": {
291
+ "type": "Date",
292
+ "description": "可选择的最大日期, 默认值: 当前日期的六个月后"
293
+ },
294
+ "van-calendar/default-date": {
295
+ "type": "Date | Date[] \\",
296
+ "description": "默认选中的日期,`type` 为 `multiple` 或 `range` 时为数组,传入 `null` 表示默认不选择, 默认值: null_"
297
+ },
298
+ "van-calendar/row-height": {
299
+ "type": "number | string",
300
+ "description": "日期行高, 默认值: `64`"
301
+ },
302
+ "van-calendar/formatter": {
303
+ "type": "(day: Day) => Day",
304
+ "description": "日期格式化函数, 默认值: -"
305
+ },
306
+ "van-calendar/poppable": {
307
+ "type": "boolean",
308
+ "description": "是否以弹层的形式展示日历, 默认值: `true`"
309
+ },
310
+ "van-calendar/lazy-render": {
311
+ "type": "boolean",
312
+ "description": "是否只渲染可视区域的内容, 默认值: `true`"
313
+ },
314
+ "van-calendar/show-mark": {
315
+ "type": "boolean",
316
+ "description": "是否显示月份背景水印, 默认值: `true`"
317
+ },
318
+ "van-calendar/show-title": {
319
+ "type": "boolean",
320
+ "description": "是否展示日历标题, 默认值: `true`"
321
+ },
322
+ "van-calendar/show-subtitle": {
323
+ "type": "boolean",
324
+ "description": "是否展示日历副标题(年月), 默认值: `true`"
325
+ },
326
+ "van-calendar/show-confirm": {
327
+ "type": "boolean",
328
+ "description": "是否展示确认按钮, 默认值: `true`"
329
+ },
330
+ "van-calendar/readonly": {
331
+ "type": "boolean",
332
+ "description": "是否为只读状态,只读状态下不能选择日期, 默认值: `false`"
333
+ },
334
+ "van-calendar/confirm-text": {
423
335
  "type": "string",
424
- "description": "取消按钮文字, 默认值: `取消`"
336
+ "description": "确认按钮的文字, 默认值: `确定`"
425
337
  },
426
- "van-area/area-list": {
427
- "type": "object",
428
- "description": "省市区数据,格式见下方, 默认值: -"
338
+ "van-calendar/confirm-disabled-text": {
339
+ "type": "string",
340
+ "description": "确认按钮处于禁用状态时的文字, 默认值: `确定`"
429
341
  },
430
- "van-area/columns-placeholder": {
431
- "type": "string[]",
432
- "description": "列占位提示文字, 默认值: `[]`"
342
+ "van-calendar/first-day-of-week": {
343
+ "type": "0-6",
344
+ "description": "设置周起始日, 默认值: `0`"
433
345
  },
434
- "van-area/loading": {
346
+ "van-poppable/v-model": {
435
347
  "type": "boolean",
436
- "description": "是否显示加载状态, 默认值: `false`"
348
+ "description": "是否显示日历弹窗, 默认值: `false`"
437
349
  },
438
- "van-area/readonly": {
350
+ "van-poppable/position": {
351
+ "type": "string",
352
+ "description": "弹出位置,可选值为 `top` `right` `left`, 默认值: `bottom`"
353
+ },
354
+ "van-poppable/round": {
439
355
  "type": "boolean",
440
- "description": "是否为只读状态,只读状态下无法切换选项, 默认值: `false`"
356
+ "description": "是否显示圆角弹窗, 默认值: `true`"
441
357
  },
442
- "van-area/item-height": {
443
- "type": "number | string",
444
- "description": "选项高度,支持 `px` `vw` `vh` `rem` 单位,默认 `px`, 默认值: `44`"
358
+ "van-poppable/close-on-popstate": {
359
+ "type": "boolean",
360
+ "description": "是否在页面回退时自动关闭, 默认值: `true`"
445
361
  },
446
- "van-area/columns-num": {
447
- "type": "number | string",
448
- "description": "显示列数,3-省市区,2-省市,1-省, 默认值: `3`"
362
+ "van-poppable/close-on-click-overlay": {
363
+ "type": "boolean",
364
+ "description": "是否在点击遮罩层后关闭, 默认值: `true`"
449
365
  },
450
- "van-area/visible-item-count": {
366
+ "van-poppable/safe-area-inset-bottom": {
367
+ "type": "boolean",
368
+ "description": "是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei), 默认值: `true`"
369
+ },
370
+ "van-poppable/get-container": {
371
+ "type": "string | () => Element",
372
+ "description": "指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi), 默认值: -"
373
+ },
374
+ "van-range/max-range": {
451
375
  "type": "number | string",
452
- "description": "可见的选项个数, 默认值: `6`"
376
+ "description": "日期区间最多可选天数, 默认值: 无限制"
453
377
  },
454
- "van-area/swipe-duration": {
378
+ "van-range/range-prompt": {
379
+ "type": "string",
380
+ "description": "范围选择超过最多可选天数时的提示文案, 默认值: `选择天数不能超过 xx 天`"
381
+ },
382
+ "van-range/allow-same-day": {
383
+ "type": "boolean",
384
+ "description": "是否允许日期范围的起止时间为同一天, 默认值: `false`"
385
+ },
386
+ "van-multiple/max-range": {
455
387
  "type": "number | string",
456
- "description": "快速滑动时惯性滚动的时长,单位`ms`, 默认值: `1000`"
388
+ "description": "日期最多可选天数, 默认值: 无限制"
457
389
  },
458
- "van-area/is-oversea-code": {
459
- "type": "() => boolean",
460
- "description": "根据`code`校验海外地址,海外地址会划分至单独的分类, 默认值: -"
390
+ "van-multiple/range-prompt": {
391
+ "type": "string",
392
+ "description": "选择超过最多可选天数时的提示文案, 默认值: `选择天数不能超过 xx 天`"
461
393
  },
462
394
  "van-cascader/title": {
463
395
  "type": "string",
@@ -615,6 +547,74 @@
615
547
  "type": "any",
616
548
  "description": "描述信息额外类名, 默认值: -"
617
549
  },
550
+ "van-action-sheet/v-model (value)": {
551
+ "type": "boolean",
552
+ "description": "是否显示动作面板, 默认值: `false`"
553
+ },
554
+ "van-action-sheet/actions": {
555
+ "type": "Action[]",
556
+ "description": "面板选项列表, 默认值: `[]`"
557
+ },
558
+ "van-action-sheet/title": {
559
+ "type": "string",
560
+ "description": "顶部标题, 默认值: -"
561
+ },
562
+ "van-action-sheet/cancel-text": {
563
+ "type": "string",
564
+ "description": "取消按钮文字, 默认值: -"
565
+ },
566
+ "van-action-sheet/description": {
567
+ "type": "string",
568
+ "description": "选项上方的描述信息, 默认值: -"
569
+ },
570
+ "van-action-sheet/closeable": {
571
+ "type": "boolean",
572
+ "description": "是否显示关闭图标, 默认值: `true`"
573
+ },
574
+ "van-action-sheet/close-icon": {
575
+ "type": "string",
576
+ "description": "关闭[图标名称](#/zh-CN/icon)或图片链接, 默认值: `cross`"
577
+ },
578
+ "van-action-sheet/duration": {
579
+ "type": "number | string",
580
+ "description": "动画时长,单位秒, 默认值: `0.3`"
581
+ },
582
+ "van-action-sheet/round": {
583
+ "type": "boolean",
584
+ "description": "是否显示圆角, 默认值: `true`"
585
+ },
586
+ "van-action-sheet/overlay": {
587
+ "type": "boolean",
588
+ "description": "是否显示遮罩层, 默认值: `true`"
589
+ },
590
+ "van-action-sheet/lock-scroll": {
591
+ "type": "boolean",
592
+ "description": "是否锁定背景滚动, 默认值: `true`"
593
+ },
594
+ "van-action-sheet/lazy-render": {
595
+ "type": "boolean",
596
+ "description": "是否在显示弹层时才渲染节点, 默认值: `true`"
597
+ },
598
+ "van-action-sheet/close-on-popstate": {
599
+ "type": "boolean",
600
+ "description": "是否在页面回退时自动关闭, 默认值: `false`"
601
+ },
602
+ "van-action-sheet/close-on-click-action": {
603
+ "type": "boolean",
604
+ "description": "是否在点击选项后关闭, 默认值: `false`"
605
+ },
606
+ "van-action-sheet/close-on-click-overlay": {
607
+ "type": "boolean",
608
+ "description": "是否在点击遮罩层后关闭, 默认值: `true`"
609
+ },
610
+ "van-action-sheet/safe-area-inset-bottom": {
611
+ "type": "boolean",
612
+ "description": "是否开启[底部安全区适配](#/zh-CN/advanced-usage#di-bu-an-quan-qu-gua-pei), 默认值: `true`"
613
+ },
614
+ "van-action-sheet/get-container": {
615
+ "type": "string | () => Element",
616
+ "description": "指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi), 默认值: -"
617
+ },
618
618
  "van-checkbox/v-model (value)": {
619
619
  "type": "boolean",
620
620
  "description": "是否为选中状态, 默认值: `false`"
@@ -1715,6 +1715,10 @@
1715
1715
  "type": "string",
1716
1716
  "description": "动画类名,等价于 [transition](https://cn.vuejs.org/v2/api/index.html#transition) 的 `name` 属性, 默认值: `van-fade`"
1717
1717
  },
1718
+ "van-image-preview/overlay-style": {
1719
+ "type": "object",
1720
+ "description": "自定义遮罩层样式, 默认值: -"
1721
+ },
1718
1722
  "van-image-preview/get-container": {
1719
1723
  "type": "string | () => Element",
1720
1724
  "description": "指定挂载的节点,[用法示例](#/zh-CN/popup#zhi-ding-gua-zai-wei-zhi), 默认值: -"
package/vetur/tags.json CHANGED
@@ -1,25 +1,4 @@
1
1
  {
2
- "van-action-sheet": {
3
- "attributes": [
4
- "v-model (value)",
5
- "actions",
6
- "title",
7
- "cancel-text",
8
- "description",
9
- "closeable",
10
- "close-icon",
11
- "duration",
12
- "round",
13
- "overlay",
14
- "lock-scroll",
15
- "lazy-render",
16
- "close-on-popstate",
17
- "close-on-click-action",
18
- "close-on-click-overlay",
19
- "safe-area-inset-bottom",
20
- "get-container"
21
- ]
22
- },
23
2
  "van-address-edit": {
24
3
  "attributes": [
25
4
  "area-list",
@@ -65,6 +44,49 @@
65
44
  "max"
66
45
  ]
67
46
  },
47
+ "van-area": {
48
+ "attributes": [
49
+ "value",
50
+ "title",
51
+ "confirm-button-text",
52
+ "cancel-button-text",
53
+ "area-list",
54
+ "columns-placeholder",
55
+ "loading",
56
+ "readonly",
57
+ "item-height",
58
+ "columns-num",
59
+ "visible-item-count",
60
+ "swipe-duration",
61
+ "is-oversea-code"
62
+ ]
63
+ },
64
+ "van-button": {
65
+ "attributes": [
66
+ "type",
67
+ "size",
68
+ "text",
69
+ "color",
70
+ "icon",
71
+ "icon-prefix",
72
+ "icon-position",
73
+ "tag",
74
+ "native-type",
75
+ "block",
76
+ "plain",
77
+ "square",
78
+ "round",
79
+ "disabled",
80
+ "hairline",
81
+ "loading",
82
+ "loading-text",
83
+ "loading-type",
84
+ "loading-size",
85
+ "url",
86
+ "to",
87
+ "replace"
88
+ ]
89
+ },
68
90
  "van-calendar": {
69
91
  "attributes": [
70
92
  "type",
@@ -111,49 +133,6 @@
111
133
  "range-prompt"
112
134
  ]
113
135
  },
114
- "van-button": {
115
- "attributes": [
116
- "type",
117
- "size",
118
- "text",
119
- "color",
120
- "icon",
121
- "icon-prefix",
122
- "icon-position",
123
- "tag",
124
- "native-type",
125
- "block",
126
- "plain",
127
- "square",
128
- "round",
129
- "disabled",
130
- "hairline",
131
- "loading",
132
- "loading-text",
133
- "loading-type",
134
- "loading-size",
135
- "url",
136
- "to",
137
- "replace"
138
- ]
139
- },
140
- "van-area": {
141
- "attributes": [
142
- "value",
143
- "title",
144
- "confirm-button-text",
145
- "cancel-button-text",
146
- "area-list",
147
- "columns-placeholder",
148
- "loading",
149
- "readonly",
150
- "item-height",
151
- "columns-num",
152
- "visible-item-count",
153
- "swipe-duration",
154
- "is-oversea-code"
155
- ]
156
- },
157
136
  "van-cascader": {
158
137
  "attributes": [
159
138
  "title",
@@ -209,6 +188,27 @@
209
188
  "label-class"
210
189
  ]
211
190
  },
191
+ "van-action-sheet": {
192
+ "attributes": [
193
+ "v-model (value)",
194
+ "actions",
195
+ "title",
196
+ "cancel-text",
197
+ "description",
198
+ "closeable",
199
+ "close-icon",
200
+ "duration",
201
+ "round",
202
+ "overlay",
203
+ "lock-scroll",
204
+ "lazy-render",
205
+ "close-on-popstate",
206
+ "close-on-click-action",
207
+ "close-on-click-overlay",
208
+ "safe-area-inset-bottom",
209
+ "get-container"
210
+ ]
211
+ },
212
212
  "van-checkbox": {
213
213
  "attributes": [
214
214
  "v-model (value)",
@@ -606,6 +606,7 @@
606
606
  "close-icon",
607
607
  "close-icon-position",
608
608
  "transition",
609
+ "overlay-style",
609
610
  "get-container"
610
611
  ]
611
612
  },