mirror of
https://gitee.com/vant-contrib/vant.git
synced 2026-06-05 01:48:10 +08:00
Compare commits
3 Commits
93e0a95c1d
...
5a75326b65
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5a75326b65 | ||
|
|
c147428176 | ||
|
|
a12fc05970 |
@ -16,6 +16,28 @@ Vant follows [Semantic Versioning 2.0.0](https://semver.org/lang/zh-CN/).
|
||||
|
||||
## Details
|
||||
|
||||
### [v3.2.2](https://github.com/youzan/vant/compare/v3.2.1...v3.2.2)
|
||||
|
||||
`2021-09-02`
|
||||
|
||||
**Feature**
|
||||
|
||||
- Field: add id prop [#9347](https://github.com/youzan/vant/issues/9347)
|
||||
- Field: add `van-field__error` class when error [#9327](https://github.com/youzan/vant/issues/9327)
|
||||
- Field: using `label` tag for label [#9346](https://github.com/youzan/vant/issues/9346)
|
||||
- Popover: add show-arrow prop [#9372](https://github.com/youzan/vant/issues/9372)
|
||||
- Progress: add transition effect [ba4ff5](https://github.com/youzan/vant/commit/ba4ff58af6ccf67e255bf43ef905677dc64596a3)
|
||||
- Search: add id prop [#9349](https://github.com/youzan/vant/issues/9349)
|
||||
- Tab: add show-zero-badge prop [#9343](https://github.com/youzan/vant/issues/9343)
|
||||
- Locale: simplify locale configs [#9329](https://github.com/youzan/vant/issues/9329)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- AddressEdit: remove unused finish button [#9364](https://github.com/youzan/vant/issues/9364)
|
||||
- Progress: fix render error when use v-show and improve performance [841e09](https://github.com/youzan/vant/commit/841e09d0529961058ecb63ed26f018cf3a66a3bf)
|
||||
- Progress: percentage missing default value [8ac597](https://github.com/youzan/vant/commit/8ac597dc3d2316d34f866dcfd7e1646c695da180)
|
||||
- fix animation css vars not work [#9337](https://github.com/youzan/vant/issues/9337)
|
||||
|
||||
### [v3.2.1](https://github.com/youzan/vant/compare/v3.2.0...v3.2.1)
|
||||
|
||||
`2021-08-22`
|
||||
|
||||
@ -16,6 +16,28 @@ Vant 遵循 [Semver](https://semver.org/lang/zh-CN/) 语义化版本规范。
|
||||
|
||||
## 更新内容
|
||||
|
||||
### [v3.2.2](https://github.com/youzan/vant/compare/v3.2.1...v3.2.2)
|
||||
|
||||
`2021-09-02`
|
||||
|
||||
**Feature**
|
||||
|
||||
- Field: 新增 id 属性 [#9347](https://github.com/youzan/vant/issues/9347)
|
||||
- Field: 新增 `van-field__error` 类名 [#9327](https://github.com/youzan/vant/issues/9327)
|
||||
- Field: label 现在会使用原生 `label` 标签 [#9346](https://github.com/youzan/vant/issues/9346)
|
||||
- Popover: 新增 show-arrow 属性 [#9372](https://github.com/youzan/vant/issues/9372)
|
||||
- Progress: 新增过渡动画效果 [ba4ff5](https://github.com/youzan/vant/commit/ba4ff58af6ccf67e255bf43ef905677dc64596a3)
|
||||
- Search: 新增 id 属性 [#9349](https://github.com/youzan/vant/issues/9349)
|
||||
- Tab: 新增 show-zero-badge 属性 [#9343](https://github.com/youzan/vant/issues/9343)
|
||||
- Locale: 精简一部分国际化文本配置 [#9329](https://github.com/youzan/vant/issues/9329)
|
||||
|
||||
**Bug Fixes**
|
||||
|
||||
- AddressEdit: 移除了无效的样式变量 [#9364](https://github.com/youzan/vant/issues/9364)
|
||||
- Progress: 修复在 v-show 内使用时无法正确渲染的问题 [841e09](https://github.com/youzan/vant/commit/841e09d0529961058ecb63ed26f018cf3a66a3bf)
|
||||
- Progress: 修复 percentage 属性缺少默认值的问题 [8ac597](https://github.com/youzan/vant/commit/8ac597dc3d2316d34f866dcfd7e1646c695da180)
|
||||
- 修复动画相关的 CSS 变量不生效的问题 [#9337](https://github.com/youzan/vant/issues/9337)
|
||||
|
||||
### [v3.2.1](https://github.com/youzan/vant/compare/v3.2.0...v3.2.1)
|
||||
|
||||
`2021-08-22`
|
||||
|
||||
@ -12,6 +12,10 @@ Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源
|
||||
|
||||
目前 Vant 官方提供了 [Vue 2 版本](https://vant-contrib.gitee.io/vant)、[Vue 3 版本](https://vant-contrib.gitee.io/vant/v3)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/mxdi9i7/vant-react)和[支付宝小程序版本](https://github.com/ant-move/Vant-Aliapp)。
|
||||
|
||||
### 版本提示
|
||||
|
||||
你当前浏览的是 **Vant 3.x 版本** 的文档,适用于 Vue 3 开发。如果你在使用 Vue 2,请浏览 [Vant 2 文档](https://vant-contrib.gitee.io/vant)。
|
||||
|
||||
### 特性
|
||||
|
||||
- 提供 60 多个高质量组件,覆盖移动端各类场景
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "vant",
|
||||
"version": "3.2.1",
|
||||
"version": "3.2.2",
|
||||
"description": "Mobile UI Components built on Vue",
|
||||
"main": "lib/index.js",
|
||||
"module": "es/index.js",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user