mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
Compare commits
5 Commits
785caafe4a
...
0b142daf19
Author | SHA1 | Date | |
---|---|---|---|
|
0b142daf19 | ||
|
e439292d9b | ||
|
9aa60ee6dc | ||
|
abb967ef71 | ||
|
1e0429c989 |
@ -16,6 +16,15 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/).
|
||||
|
||||
## Details
|
||||
|
||||
### [v2.12.11](https://github.com/youzan/vant/compare/v2.12.10...v2.12.11)
|
||||
|
||||
`2021-03-30`
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- Field: should not reset validation after blured [#8412](https://github.com/youzan/vant/issues/8412)
|
||||
- Tabs: fix incorrect horizontal slip judgment [#8387](https://github.com/youzan/vant/issues/8387)
|
||||
|
||||
### [v2.12.10](https://github.com/youzan/vant/compare/v2.12.9...v2.12.10)
|
||||
|
||||
`2021-03-19`
|
||||
|
@ -16,6 +16,15 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
|
||||
|
||||
## 更新内容
|
||||
|
||||
### [v2.12.11](https://github.com/youzan/vant/compare/v2.12.10...v2.12.11)
|
||||
|
||||
`2021-03-30`
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- Field: 修复在个别情况下错误地清除错误提示的问题 [#8412](https://github.com/youzan/vant/issues/8412)
|
||||
- Tabs: 修复在 safari 上左滑退出页面时手势判断错误的问题 [#8387](https://github.com/youzan/vant/issues/8387)
|
||||
|
||||
### [v2.12.10](https://github.com/youzan/vant/compare/v2.12.9...v2.12.10)
|
||||
|
||||
`2021-03-19`
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vant",
|
||||
"version": "2.12.10",
|
||||
"version": "2.12.11",
|
||||
"description": "Mobile UI Components built on Vue",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
@ -33,7 +33,7 @@ export default {
|
||||
return {
|
||||
minDate: new Date(2020, 0, 1),
|
||||
maxDate: new Date(2025, 10, 1),
|
||||
currentDate: new Date(),
|
||||
currentDate: new Date(2021, 0, 17),
|
||||
};
|
||||
},
|
||||
};
|
||||
|
@ -35,7 +35,7 @@ export default {
|
||||
return {
|
||||
minDate: new Date(2020, 0, 1),
|
||||
maxDate: new Date(2025, 10, 1),
|
||||
currentDate: new Date(),
|
||||
currentDate: new Date(2021, 0, 17),
|
||||
};
|
||||
},
|
||||
};
|
||||
|
@ -121,7 +121,7 @@ export default {
|
||||
minDate: new Date(2020, 0, 1),
|
||||
maxDate: new Date(2025, 10, 1),
|
||||
value: {
|
||||
date: null,
|
||||
date: new Date(2021, 0, 17),
|
||||
time: '12:00',
|
||||
datetime: new Date(2020, 0, 1),
|
||||
datehour: new Date(2020, 0, 1),
|
||||
|
@ -10,11 +10,11 @@ exports[`renders demo correctly 1`] = `
|
||||
<!---->
|
||||
<div class="van-picker__columns" style="height: 264px;">
|
||||
<div class="van-picker-column">
|
||||
<ul class="van-picker-column__wrapper" style="transform: translate3d(0, 110px, 0); transition-duration: 0ms; transition-property: none;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item van-picker-column__item--selected" style="height: 44px;">
|
||||
<ul class="van-picker-column__wrapper" style="transform: translate3d(0, 66px, 0); transition-duration: 0ms; transition-property: none;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
<div class="van-ellipsis">2020</div>
|
||||
</li>
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item van-picker-column__item--selected" style="height: 44px;">
|
||||
<div class="van-ellipsis">2021</div>
|
||||
</li>
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
@ -72,8 +72,8 @@ exports[`renders demo correctly 1`] = `
|
||||
</ul>
|
||||
</div>
|
||||
<div class="van-picker-column">
|
||||
<ul class="van-picker-column__wrapper" style="transform: translate3d(0, 110px, 0); transition-duration: 0ms; transition-property: none;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item van-picker-column__item--selected" style="height: 44px;">
|
||||
<ul class="van-picker-column__wrapper" style="transform: translate3d(0, -594px, 0); transition-duration: 0ms; transition-property: none;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
<div class="van-ellipsis">01</div>
|
||||
</li>
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
@ -121,7 +121,7 @@ exports[`renders demo correctly 1`] = `
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
<div class="van-ellipsis">16</div>
|
||||
</li>
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
<li role="button" tabindex="0" class="van-picker-column__item van-picker-column__item--selected" style="height: 44px;">
|
||||
<div class="van-ellipsis">17</div>
|
||||
</li>
|
||||
<li role="button" tabindex="0" class="van-picker-column__item" style="height: 44px;">
|
||||
|
@ -252,6 +252,7 @@ Use `input-align` prop to align the input value.
|
||||
| right-icon | Right side icon name | _string_ | - |
|
||||
| icon-prefix `v2.5.3` | Icon className prefix | _string_ | `van-icon` |
|
||||
| rules `v2.5.0` | Form validation rules | _Rule[]_ | - |
|
||||
| autocomplete | [autocomplete](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) attribute of native input element | _string_ | - |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -277,6 +277,7 @@ export default {
|
||||
| right-icon | 右侧[图标名称](#/zh-CN/icon)或图片链接 | _string_ | - |
|
||||
| icon-prefix `v2.5.3` | 图标类名前缀,同 Icon 组件的 [class-prefix 属性](#/zh-CN/icon#props) | _string_ | `van-icon` |
|
||||
| rules `v2.5.0` | 表单校验规则,详见 [Form 组件](#/zh-CN/form#rule-shu-ju-jie-gou) | _Rule[]_ | - |
|
||||
| autocomplete | input 标签原生的[自动完成属性](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) | _string_ | - |
|
||||
|
||||
### Events
|
||||
|
||||
|
@ -2101,9 +2101,9 @@
|
||||
transliteration "^2.1.7"
|
||||
|
||||
"@vant/markdown-vetur@^2.0.2":
|
||||
version "2.0.2"
|
||||
resolved "https://registry.npm.taobao.org/@vant/markdown-vetur/download/@vant/markdown-vetur-2.0.2.tgz#8e6be188952a2c4b0e1d626bf93f47f84ab0f22d"
|
||||
integrity sha1-jmvhiJUqLEsOHWJr+T9H+Eqw8i0=
|
||||
version "2.1.0"
|
||||
resolved "https://registry.npm.taobao.org/@vant/markdown-vetur/download/@vant/markdown-vetur-2.1.0.tgz?cache=0&sync_timestamp=1617347165035&other_urls=https%3A%2F%2Fregistry.npm.taobao.org%2F%40vant%2Fmarkdown-vetur%2Fdownload%2F%40vant%2Fmarkdown-vetur-2.1.0.tgz#cc49ad807dfcccca898562966d64b7a657ca3aad"
|
||||
integrity sha1-zEmtgH38zMqJhWKWbWS3plfKOq0=
|
||||
dependencies:
|
||||
fast-glob "^3.2.2"
|
||||
fs-extra "^9.0.0"
|
||||
|
Loading…
x
Reference in New Issue
Block a user