[breaking change] Rename to vant-weapp

This commit is contained in:
陈嘉涵 2018-07-30 09:47:31 +08:00
parent c57d8811e9
commit 93ed851740
43 changed files with 253 additions and 253 deletions

View File

@ -8,40 +8,40 @@
## 概述
[ZanUI-WeApp](https://youzan.github.io/zanui-weapp)是有赞移动 Web UI 规范 `ZanUI` 的小程序现实版本,结合了微信的视觉规范,为用户提供更加统一的使用感受。
[vant-weapp](https://youzan.github.io/vant-weapp)是有赞移动端组件库 Vant 的小程序版本,结合了微信的视觉规范,为用户提供更加统一的使用感受。
现已包含 badge、btn、card、cell、dialog、icon、label、noticebar、panel、popup、switch、tab、toast、toptips 等组件或元素。具体可以扫描下方小程序二维码,体验组件库示例 Demo
![ZanUI-WeApp 演示](https://img.yzcdn.cn/public_files/2017/10/30/554dd940eb1a269d4ac9133e78ae321f.jpg?imageView2/2/w/300/h/300)
![vant-weapp 演示](https://img.yzcdn.cn/public_files/2017/10/30/554dd940eb1a269d4ac9133e78ae321f.jpg?imageView2/2/w/300/h/300)
更多背景介绍,请移步 [我们写的介绍文章](http://tech.youzan.com/zanui-weapp/)。
更多背景介绍,请移步 [我们写的介绍文章](http://tech.youzan.com/vant-weapp/)。
## 下载
``` bash
git clone https://github.com/youzan/zanui-weapp.git
git clone https://github.com/youzan/vant-weapp.git
```
## 预览
1. 在 zanui-weapp 根目录下运行
1. 在 vant-weapp 根目录下运行
``` bash
# 安装项目依赖
npm install
# 执行组件编译
npm run dev
```
2. 打开[微信web开发者工具](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html)'本地小程序项目 - 添加项目',把 zanui-weapp/example 目录添加进去就可以预览示例demo了。
2. 打开[微信web开发者工具](https://mp.weixin.qq.com/debug/wxadoc/dev/devtools/download.html)'本地小程序项目 - 添加项目',把 vant-weapp/example 目录添加进去就可以预览示例demo了。
![](https://img.yzcdn.cn/public_files/2017/02/08/a5e6445075826183659742cc6946c477.png)
## 使用
1. 使用 [ZanUI-WeApp] 前请确保已经学习过微信官方的 [小程序简易教程] 和 [小程序框架介绍]。
2. 然后用 [Bower] 将 [ZanUI-WeApp] 添加到你的项目中使用。
3. 你也可以 fork 出一份你自己的 [ZanUI-WeApp],这样可以获得更稳定的代码和更方便的进行个性定制。
1. 使用 [vant-weapp] 前请确保已经学习过微信官方的 [小程序简易教程] 和 [小程序框架介绍]。
2. 然后用 [Bower] 将 [vant-weapp] 添加到你的项目中使用。
3. 你也可以 fork 出一份你自己的 [vant-weapp],这样可以获得更稳定的代码和更方便的进行个性定制。
我们推荐在你的`app.wxss`直接引入`zanui-weapp/dist/index.wxss`。
我们推荐在你的`app.wxss`直接引入`vant-weapp/dist/index.wxss`。
详细使用文档,请参考 [快速上手](https://youzan.github.io/zanui-weapp)
详细使用文档,请参考 [快速上手](https://youzan.github.io/vant-weapp)
### 组件分类介绍
根据功能的不同可以将组件大致的分为2类
@ -52,7 +52,7 @@ npm run dev
```json
{
"usingComponents": {
"zan-button": "/path/to/zanui-weapp/dist/btn/index"
"zan-button": "/path/to/vant-weapp/dist/btn/index"
}
}
```
@ -71,7 +71,7 @@ npm run dev
```json
{
"usingComponents": {
"zan-toast": "/path/to/zanui-weapp/dist/toast/index"
"zan-toast": "/path/to/vant-weapp/dist/toast/index"
}
}
```
@ -84,7 +84,7 @@ npm run dev
```js
// example/toast/index.js
const Toast = require('/path/to/zanui-weapp/dist/toast/toast');
const Toast = require('/path/to/vant-weapp/dist/toast/toast');
Page({
showToast() {
@ -108,7 +108,7 @@ Page({
## 微信讨论群
欢迎大家在微信上联系我们,添加下方微信并注明『交流 ZanUI-WeApp』即可
欢迎大家在微信上联系我们,添加下方微信并注明『交流 vant-weapp』即可
<img src="https://img.yzcdn.cn/vant/wechat_20180606.png" width="220" height="292" >
@ -117,11 +117,11 @@ Page({
## 贡献
如果你有好的意见或建议,欢迎给我们提 [issue] 或 [PR],为优化 [ZanUI-Weapp] 贡献力量
如果你有好的意见或建议,欢迎给我们提 [issue] 或 [PR],为优化 [vant-weapp] 贡献力量
[ZanUI-WeApp]: https://github.com/youzan/zanui-weapp
[issue]: https://github.com/youzan/zanui-weapp/issues/new
[PR]: https://github.com/youzan/zanui-weapp/compare
[vant-weapp]: https://github.com/youzan/vant-weapp
[issue]: https://github.com/youzan/vant-weapp/issues/new
[PR]: https://github.com/youzan/vant-weapp/compare
[MIT]: http://opensource.org/licenses/MIT
[小程序简易教程]: https://mp.weixin.qq.com/debug/wxadoc/dev/
[小程序框架介绍]: https://mp.weixin.qq.com/debug/wxadoc/dev/framework/MINA.html

View File

@ -1,11 +1,11 @@
{
"name": "zanui-weapp",
"name": "vant-weapp",
"authors": [
"Nino <ninofocus@gmail.com>",
"Pangxie <pangxie@youzan.com>"
"Pangxie <pangxie@youzan.com>",
"Chenjiahan <chenjiahan@buaa.edu.cn>"
],
"directory": "zanui-weapp",
"description": "A UI Library for Weapp",
"directory": "vant-weapp",
"description": "Lightweight Mobile UI Components for weapp",
"main": "zan",
"license": "MIT",
"homepage": "",

View File

@ -1,310 +1,310 @@
`ZanUI-WeApp` 严格遵循 [Semantic Versioning 2.0.0](http://semver.org/lang/zh-CN/) 语义化版本规范。
`vant-weapp` 严格遵循 [Semantic Versioning 2.0.0](http://semver.org/lang/zh-CN/) 语义化版本规范。
## [v3.0.9](https://github.com/youzan/zanui-weapp/tree/v3.0.9) (2018-07-17)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.8...v3.0.9)
## [v3.0.9](https://github.com/youzan/vant-weapp/tree/v3.0.9) (2018-07-17)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.8...v3.0.9)
**new feature**
- Cell 组件新增 no-border 属性 [\#369](https://github.com/youzan/zanui-weapp/pull/369) ([realywithoutname](https://github.com/realywithoutname))
- 新增 Radio 组件 [\#354](https://github.com/youzan/zanui-weapp/pull/354) ([jerryni](https://github.com/jerryni))
- Cell 组件新增 no-border 属性 [\#369](https://github.com/youzan/vant-weapp/pull/369) ([realywithoutname](https://github.com/realywithoutname))
- 新增 Radio 组件 [\#354](https://github.com/youzan/vant-weapp/pull/354) ([jerryni](https://github.com/jerryni))
**Improvements**
- 优化 Dialog 弹窗组件对 open 信息的处理 [\#366](https://github.com/youzan/zanui-weapp/pull/366) ([pangxie1991](https://github.com/pangxie1991))
- 优化 Cell 组件默认 slot 展示效果,添加 title 区域自定义 class [\#360](https://github.com/youzan/zanui-weapp/pull/360) ([ylethe](https://github.com/ylethe))
- 优化 LoadMore 组件表现及展示效果 [\#337](https://github.com/youzan/zanui-weapp/pull/337) ([zgrong](https://github.com/zgrong))
- 优化 Dialog 弹窗组件对 open 信息的处理 [\#366](https://github.com/youzan/vant-weapp/pull/366) ([pangxie1991](https://github.com/pangxie1991))
- 优化 Cell 组件默认 slot 展示效果,添加 title 区域自定义 class [\#360](https://github.com/youzan/vant-weapp/pull/360) ([ylethe](https://github.com/ylethe))
- 优化 LoadMore 组件表现及展示效果 [\#337](https://github.com/youzan/vant-weapp/pull/337) ([zgrong](https://github.com/zgrong))
**Bug Fixes**
- 修复文档错误 [\#370](https://github.com/youzan/zanui-weapp/pull/370) ([jerryni](https://github.com/jerryni))
- 修复文档错误 [\#370](https://github.com/youzan/vant-weapp/pull/370) ([jerryni](https://github.com/jerryni))
## [v3.0.8](https://github.com/youzan/zanui-weapp/tree/v3.0.8) (2018-07-12)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.7...v3.0.8)
## [v3.0.8](https://github.com/youzan/vant-weapp/tree/v3.0.8) (2018-07-12)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.7...v3.0.8)
**Bug Fixes**
- 修复 Toast 组件未传入 timeout 时不会自动关闭的问题 [\#361](https://github.com/youzan/zanui-weapp/pull/361) ([pangxie1991](https://github.com/pangxie1991))
- 修复 DateTime 组件接收非标准 iso 格式时间初始时间错误的问题 [\#355](https://github.com/youzan/zanui-weapp/pull/355) ([realywithoutname](https://github.com/realywithoutname))
- 修复 Toast 组件未传入 timeout 时不会自动关闭的问题 [\#361](https://github.com/youzan/vant-weapp/pull/361) ([pangxie1991](https://github.com/pangxie1991))
- 修复 DateTime 组件接收非标准 iso 格式时间初始时间错误的问题 [\#355](https://github.com/youzan/vant-weapp/pull/355) ([realywithoutname](https://github.com/realywithoutname))
## [v3.0.7](https://github.com/youzan/zanui-weapp/tree/v3.0.7) (2018-07-10)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.6...v3.0.7)
## [v3.0.7](https://github.com/youzan/vant-weapp/tree/v3.0.7) (2018-07-10)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.6...v3.0.7)
**new feature**
- \[new feature\] 新增 checkbox 组件 [\#341](https://github.com/youzan/zanui-weapp/pull/341) ([jerryni](https://github.com/jerryni))
- \[new feature\] 新增 checkbox 组件 [\#341](https://github.com/youzan/vant-weapp/pull/341) ([jerryni](https://github.com/jerryni))
**Improvements**
- Tab 组件支持选中项自动滑动到中间位置 [\#347](https://github.com/youzan/zanui-weapp/pull/347) ([rex-zsd](https://github.com/rex-zsd))
- 增加部分组件自定义样式类,方便自定义样式 [\#352](https://github.com/youzan/zanui-weapp/pull/352) ([pangxie1991](https://github.com/pangxie1991))
- Tab 组件支持选中项自动滑动到中间位置 [\#347](https://github.com/youzan/vant-weapp/pull/347) ([rex-zsd](https://github.com/rex-zsd))
- 增加部分组件自定义样式类,方便自定义样式 [\#352](https://github.com/youzan/vant-weapp/pull/352) ([pangxie1991](https://github.com/pangxie1991))
**Bug Fixes**
- 修复 Toptips 组件在示例小程序上的问题 [\#351](https://github.com/youzan/zanui-weapp/pull/351) ([pangxie1991](https://github.com/pangxie1991))
- 修复 DateTime 组件设置初始时间时报错的问题 [\#350](https://github.com/youzan/zanui-weapp/pull/350) ([realywithoutname](https://github.com/realywithoutname))
- 修复 Toptips 组件在示例小程序上的问题 [\#351](https://github.com/youzan/vant-weapp/pull/351) ([pangxie1991](https://github.com/pangxie1991))
- 修复 DateTime 组件设置初始时间时报错的问题 [\#350](https://github.com/youzan/vant-weapp/pull/350) ([realywithoutname](https://github.com/realywithoutname))
## [v3.0.6](https://github.com/youzan/zanui-weapp/tree/v3.0.6) (2018-07-08)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.5...v3.0.6)
## [v3.0.6](https://github.com/youzan/vant-weapp/tree/v3.0.6) (2018-07-08)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.5...v3.0.6)
**new feature**
- 新增搜索组件 [\#321](https://github.com/youzan/zanui-weapp/pull/321) ([jerryni](https://github.com/jerryni))
- 新增分类选择组件 [\#346](https://github.com/youzan/zanui-weapp/pull/346) ([pangxie1991](https://github.com/pangxie1991))
- 新增搜索组件 [\#321](https://github.com/youzan/vant-weapp/pull/321) ([jerryni](https://github.com/jerryni))
- 新增分类选择组件 [\#346](https://github.com/youzan/vant-weapp/pull/346) ([pangxie1991](https://github.com/pangxie1991))
**Improvements**
- 优化 Tab 组件宽度样式 [\#336](https://github.com/youzan/zanui-weapp/pull/336) ([pangxie1991](https://github.com/pangxie1991))
- 优化 Tab 组件宽度样式 [\#336](https://github.com/youzan/vant-weapp/pull/336) ([pangxie1991](https://github.com/pangxie1991))
**Bug Fixes**
- 修复由于 autoprefixer 移除旧浏览器代码导致的兼容性问题 [\#335](https://github.com/youzan/zanui-weapp/pull/335) ([realywithoutname](https://github.com/realywithoutname))
- 修复 select、popup 组件文档错误,改善部分组件文档一致性 [\#334](https://github.com/youzan/zanui-weapp/pull/334) ([rex-zsd](https://github.com/rex-zsd))
- 修复 Toast 组件的 timeout 不支持小于0的问题 [\#340](https://github.com/youzan/zanui-weapp/pull/340) ([rex-zsd](https://github.com/rex-zsd))
- 修复由于 autoprefixer 移除旧浏览器代码导致的兼容性问题 [\#335](https://github.com/youzan/vant-weapp/pull/335) ([realywithoutname](https://github.com/realywithoutname))
- 修复 select、popup 组件文档错误,改善部分组件文档一致性 [\#334](https://github.com/youzan/vant-weapp/pull/334) ([rex-zsd](https://github.com/rex-zsd))
- 修复 Toast 组件的 timeout 不支持小于0的问题 [\#340](https://github.com/youzan/vant-weapp/pull/340) ([rex-zsd](https://github.com/rex-zsd))
## [v3.0.5](https://github.com/youzan/zanui-weapp/tree/v3.0.5) (2018-06-29)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.4...v3.0.5)
## [v3.0.5](https://github.com/youzan/vant-weapp/tree/v3.0.5) (2018-06-29)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.4...v3.0.5)
**Improvements**
- 优化 popup 遮罩层相关文档 [\#324](https://github.com/youzan/zanui-weapp/pull/324) ([jerryni](https://github.com/jerryni))
- 优化 Button支持 disabled 属性 [\#323](https://github.com/youzan/zanui-weapp/pull/323) ([jerryni](https://github.com/jerryni))
- Steps 组件扩展自定义class [\#311](https://github.com/youzan/zanui-weapp/pull/311) ([jerryni](https://github.com/jerryni))
- Stepper 组件 size 属性支持 small middle large [\#306](https://github.com/youzan/zanui-weapp/pull/306) ([jerryni](https://github.com/jerryni))
- 优化 Field 组件在列表中输入框表现 [\#296](https://github.com/youzan/zanui-weapp/pull/296) ([pangxie1991](https://github.com/pangxie1991))
- datepicker 使用原生 picker-view 重写 [\#294](https://github.com/youzan/zanui-weapp/pull/294) ([realywithoutname](https://github.com/realywithoutname))
- Noticebar 组件支持动态更新text [\#314](https://github.com/youzan/zanui-weapp/pull/314) ([rex-zsd](https://github.com/rex-zsd))
- datetime-picker 组件在 demo 中增加 datetime 示例入口 [\#313](https://github.com/youzan/zanui-weapp/pull/313) ([rex-zsd](https://github.com/rex-zsd))
- 优化 popup 遮罩层相关文档 [\#324](https://github.com/youzan/vant-weapp/pull/324) ([jerryni](https://github.com/jerryni))
- 优化 Button支持 disabled 属性 [\#323](https://github.com/youzan/vant-weapp/pull/323) ([jerryni](https://github.com/jerryni))
- Steps 组件扩展自定义class [\#311](https://github.com/youzan/vant-weapp/pull/311) ([jerryni](https://github.com/jerryni))
- Stepper 组件 size 属性支持 small middle large [\#306](https://github.com/youzan/vant-weapp/pull/306) ([jerryni](https://github.com/jerryni))
- 优化 Field 组件在列表中输入框表现 [\#296](https://github.com/youzan/vant-weapp/pull/296) ([pangxie1991](https://github.com/pangxie1991))
- datepicker 使用原生 picker-view 重写 [\#294](https://github.com/youzan/vant-weapp/pull/294) ([realywithoutname](https://github.com/realywithoutname))
- Noticebar 组件支持动态更新text [\#314](https://github.com/youzan/vant-weapp/pull/314) ([rex-zsd](https://github.com/rex-zsd))
- datetime-picker 组件在 demo 中增加 datetime 示例入口 [\#313](https://github.com/youzan/vant-weapp/pull/313) ([rex-zsd](https://github.com/rex-zsd))
**Bug Fixes**
- 修复 Toptips 在自定义组件中引入报错的问题backgroundColor不生效的问题 [\#318](https://github.com/youzan/zanui-weapp/pull/318) ([Yuliang-Lee](https://github.com/Yuliang-Lee))
- Dialog 组件修复取消按钮只生效一次的问题 [\#312](https://github.com/youzan/zanui-weapp/pull/312) ([rex-zsd](https://github.com/rex-zsd))
- 修复使用 dialog 组件的页面切换路由时会报错的问题 \(\#289\) [\#310](https://github.com/youzan/zanui-weapp/pull/310) ([rex-zsd](https://github.com/rex-zsd))
- 修复按钮点击态时没有任何变化的问题 [\#287](https://github.com/youzan/zanui-weapp/pull/287) ([jerryni](https://github.com/jerryni))
- Stepper 组件增加在数字越界前进行校验的操作 [\#283](https://github.com/youzan/zanui-weapp/pull/283) ([icarusion](https://github.com/icarusion))
- 修复 Toptips 在自定义组件中引入报错的问题backgroundColor不生效的问题 [\#318](https://github.com/youzan/vant-weapp/pull/318) ([Yuliang-Lee](https://github.com/Yuliang-Lee))
- Dialog 组件修复取消按钮只生效一次的问题 [\#312](https://github.com/youzan/vant-weapp/pull/312) ([rex-zsd](https://github.com/rex-zsd))
- 修复使用 dialog 组件的页面切换路由时会报错的问题 \(\#289\) [\#310](https://github.com/youzan/vant-weapp/pull/310) ([rex-zsd](https://github.com/rex-zsd))
- 修复按钮点击态时没有任何变化的问题 [\#287](https://github.com/youzan/vant-weapp/pull/287) ([jerryni](https://github.com/jerryni))
- Stepper 组件增加在数字越界前进行校验的操作 [\#283](https://github.com/youzan/vant-weapp/pull/283) ([icarusion](https://github.com/icarusion))
## [v3.0.4](https://github.com/youzan/zanui-weapp/tree/v3.0.4) (2018-05-29)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.3...v3.0.4)
## [v3.0.4](https://github.com/youzan/vant-weapp/tree/v3.0.4) (2018-05-29)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.3...v3.0.4)
**Improvements**
- 使用 babel 简单编译 dist 里面的文件 [\#285](https://github.com/youzan/zanui-weapp/pull/285) ([pangxie1991](https://github.com/pangxie1991))
- Cell 组件增加默认白色背景色 [\#270](https://github.com/youzan/zanui-weapp/pull/270) ([pangxie1991](https://github.com/pangxie1991))
- Stepper 文档添加size属性说明 [\#260](https://github.com/youzan/zanui-weapp/pull/260) ([jerryni](https://github.com/jerryni))
- 使用 babel 简单编译 dist 里面的文件 [\#285](https://github.com/youzan/vant-weapp/pull/285) ([pangxie1991](https://github.com/pangxie1991))
- Cell 组件增加默认白色背景色 [\#270](https://github.com/youzan/vant-weapp/pull/270) ([pangxie1991](https://github.com/pangxie1991))
- Stepper 文档添加size属性说明 [\#260](https://github.com/youzan/vant-weapp/pull/260) ([jerryni](https://github.com/jerryni))
**Bug Fixes**
- 修复 Switch 组件示例名称错误 [\#281](https://github.com/youzan/zanui-weapp/pull/281) ([dlhandsome](https://github.com/dlhandsome))
- 修复 Steps 2步样式 && 优化文档 [\#274](https://github.com/youzan/zanui-weapp/pull/274) ([jerryni](https://github.com/jerryni))
- 修复 Stepper 组件不传 max 情况下,默认置灰的问题 [\#269](https://github.com/youzan/zanui-weapp/pull/269) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Switch 组件示例名称错误 [\#281](https://github.com/youzan/vant-weapp/pull/281) ([dlhandsome](https://github.com/dlhandsome))
- 修复 Steps 2步样式 && 优化文档 [\#274](https://github.com/youzan/vant-weapp/pull/274) ([jerryni](https://github.com/jerryni))
- 修复 Stepper 组件不传 max 情况下,默认置灰的问题 [\#269](https://github.com/youzan/vant-weapp/pull/269) ([pangxie1991](https://github.com/pangxie1991))
## [v3.0.3](https://github.com/youzan/zanui-weapp/tree/v3.0.3) (2018-05-21)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.2...v3.0.3)
## [v3.0.3](https://github.com/youzan/vant-weapp/tree/v3.0.3) (2018-05-21)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.2...v3.0.3)
**Bug Fixes**
- 修复 cell 组件点击事情触发两次的问题 [\#259](https://github.com/youzan/zanui-weapp/pull/259) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Cell 组件文档错误 [\#254](https://github.com/youzan/zanui-weapp/pull/254) ([pangxie1991](https://github.com/pangxie1991))
- 修复 cell 组件点击事情触发两次的问题 [\#259](https://github.com/youzan/vant-weapp/pull/259) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Cell 组件文档错误 [\#254](https://github.com/youzan/vant-weapp/pull/254) ([pangxie1991](https://github.com/pangxie1991))
**Improvements**
- Dialog 组件中的按钮支持 open-type 属性 [\#247](https://github.com/youzan/zanui-weapp/pull/247) ([artecher](https://github.com/artecher))
- Dialog 组件中的按钮支持 open-type 属性 [\#247](https://github.com/youzan/vant-weapp/pull/247) ([artecher](https://github.com/artecher))
## [v3.0.2](https://github.com/youzan/zanui-weapp/tree/v3.0.2) (2018-05-13)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.1...v3.0.2)
## [v3.0.2](https://github.com/youzan/vant-weapp/tree/v3.0.2) (2018-05-13)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.1...v3.0.2)
**new feature**
- 新增时间选择组件 [\#164](https://github.com/youzan/zanui-weapp/pull/164) ([realywithoutname](https://github.com/realywithoutname))
- 新增时间选择组件 [\#164](https://github.com/youzan/vant-weapp/pull/164) ([realywithoutname](https://github.com/realywithoutname))
**Improvements**
- Icon 中增加减号图标 [\#235](https://github.com/youzan/zanui-weapp/pull/235) ([pangxie1991](https://github.com/pangxie1991))
- Toast 组件新增默认配置设置 [\#229](https://github.com/youzan/zanui-weapp/pull/229) ([pangxie1991](https://github.com/pangxie1991))
- Btn 组件和 Field 组件支持原生属性 [\#219](https://github.com/youzan/zanui-weapp/pull/219) ([pangxie1991](https://github.com/pangxie1991))
- Icon 中增加减号图标 [\#235](https://github.com/youzan/vant-weapp/pull/235) ([pangxie1991](https://github.com/pangxie1991))
- Toast 组件新增默认配置设置 [\#229](https://github.com/youzan/vant-weapp/pull/229) ([pangxie1991](https://github.com/pangxie1991))
- Btn 组件和 Field 组件支持原生属性 [\#219](https://github.com/youzan/vant-weapp/pull/219) ([pangxie1991](https://github.com/pangxie1991))
**Bug Fixes**
- 修复部分情况下 cell 边框不出现的问题 [\#237](https://github.com/youzan/zanui-weapp/pull/237) ([pangxie1991](https://github.com/pangxie1991)))
- 修复 Badge 组件在页面数据改变了以后,组件中的数字不变的问题 [\#225](https://github.com/youzan/zanui-weapp/pull/225) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Stepper 组件文档错误 [\#222](https://github.com/youzan/zanui-weapp/pull/222) ([jerryni](https://github.com/jerryni))
- 修复部分文档错误 [\#239](https://github.com/youzan/zanui-weapp/pull/239) ([pangxie1991](https://github.com/pangxie1991))
- 修复部分情况下 cell 边框不出现的问题 [\#237](https://github.com/youzan/vant-weapp/pull/237) ([pangxie1991](https://github.com/pangxie1991)))
- 修复 Badge 组件在页面数据改变了以后,组件中的数字不变的问题 [\#225](https://github.com/youzan/vant-weapp/pull/225) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Stepper 组件文档错误 [\#222](https://github.com/youzan/vant-weapp/pull/222) ([jerryni](https://github.com/jerryni))
- 修复部分文档错误 [\#239](https://github.com/youzan/vant-weapp/pull/239) ([pangxie1991](https://github.com/pangxie1991))
## [v3.0.1](https://github.com/youzan/zanui-weapp/tree/v3.0.1) (2018-04-30)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v3.0.0...v3.0.1)
## [v3.0.1](https://github.com/youzan/vant-weapp/tree/v3.0.1) (2018-04-30)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v3.0.0...v3.0.1)
**Bug Fixes**
- 修复 gulp 插件引起的组件编译后代码异常的问题 [\#209](https://github.com/youzan/zanui-weapp/pull/209) ([pangxie1991](https://github.com/pangxie1991))
- 修复 gulp 插件引起的组件编译后代码异常的问题 [\#209](https://github.com/youzan/vant-weapp/pull/209) ([pangxie1991](https://github.com/pangxie1991))
## [v3.0.0](https://github.com/youzan/zanui-weapp/tree/v3.0.0) (2018-04-28)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.7...v3.0.0)
## [v3.0.0](https://github.com/youzan/vant-weapp/tree/v3.0.0) (2018-04-28)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.7...v3.0.0)
**Breaking changes**
- 升级组件库至自定义组件 [\#199](https://github.com/youzan/zanui-weapp/pull/199) ([pangxie1991](https://github.com/pangxie1991))
- 升级组件库至自定义组件 [\#199](https://github.com/youzan/vant-weapp/pull/199) ([pangxie1991](https://github.com/pangxie1991))
**Improvements**
- Field 组件新增 maxlength 属性 [\#203](https://github.com/youzan/zanui-weapp/pull/203) ([pangxie1991](https://github.com/pangxie1991))
- Field 组件新增 maxlength 属性 [\#203](https://github.com/youzan/vant-weapp/pull/203) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.7](https://github.com/youzan/zanui-weapp/tree/v2.4.7) (2018-03-25)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.6...v2.4.7)
## [v2.4.7](https://github.com/youzan/vant-weapp/tree/v2.4.7) (2018-03-25)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.6...v2.4.7)
**Improvements**
- Field 组件新增 disabled 属性支持 [\#150](https://github.com/youzan/zanui-weapp/pull/150) ([pangxie1991](https://github.com/pangxie1991))
- 移除多余的日志信息 [\#144](https://github.com/youzan/zanui-weapp/pull/144) ([pangxie1991](https://github.com/pangxie1991))
- 新增小程序文档网页 [\#142](https://github.com/youzan/zanui-weapp/pull/142) ([realywithoutname](https://github.com/realywithoutname))
- Field 组件新增 disabled 属性支持 [\#150](https://github.com/youzan/vant-weapp/pull/150) ([pangxie1991](https://github.com/pangxie1991))
- 移除多余的日志信息 [\#144](https://github.com/youzan/vant-weapp/pull/144) ([pangxie1991](https://github.com/pangxie1991))
- 新增小程序文档网页 [\#142](https://github.com/youzan/vant-weapp/pull/142) ([realywithoutname](https://github.com/realywithoutname))
**Bug Fixes**
- 修复弹窗被输入框文本覆盖的问题 [\#149](https://github.com/youzan/zanui-weapp/pull/149) ([pangxie1991](https://github.com/pangxie1991))
- 修复 NoticeBar 组件动画播放异常的问题 [\#155](https://github.com/youzan/zanui-weapp/pull/155) ([pangxie1991](https://github.com/pangxie1991))
- 修复弹窗被输入框文本覆盖的问题 [\#149](https://github.com/youzan/vant-weapp/pull/149) ([pangxie1991](https://github.com/pangxie1991))
- 修复 NoticeBar 组件动画播放异常的问题 [\#155](https://github.com/youzan/vant-weapp/pull/155) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.6](https://github.com/youzan/zanui-weapp/tree/v2.4.6) (2018-02-27)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.5...v2.4.6)
## [v2.4.6](https://github.com/youzan/vant-weapp/tree/v2.4.6) (2018-02-27)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.5...v2.4.6)
**new feature**
- 新增 Field 组件 focus 自动聚焦属性 [\#135](https://github.com/youzan/zanui-weapp/pull/135) ([pangxie1991](https://github.com/pangxie1991))
- 新增文档网站 [\#126](https://github.com/youzan/zanui-weapp/pull/126) ([realywithoutname](https://github.com/realywithoutname))
- 新增 Field 组件 focus 自动聚焦属性 [\#135](https://github.com/youzan/vant-weapp/pull/135) ([pangxie1991](https://github.com/pangxie1991))
- 新增文档网站 [\#126](https://github.com/youzan/vant-weapp/pull/126) ([realywithoutname](https://github.com/realywithoutname))
**Bug Fixes**
- 修复 Field 组件圆角输入框,边框显示问题 [\#134](https://github.com/youzan/zanui-weapp/pull/134) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Noticebar 组件元素查询返回空,导致报错的问题 [\#130](https://github.com/youzan/zanui-weapp/pull/130) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Field 组件圆角输入框,边框显示问题 [\#134](https://github.com/youzan/vant-weapp/pull/134) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Noticebar 组件元素查询返回空,导致报错的问题 [\#130](https://github.com/youzan/vant-weapp/pull/130) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.5](https://github.com/youzan/zanui-weapp/tree/v2.4.5) (2018-02-07)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.4...v2.4.5)
## [v2.4.5](https://github.com/youzan/vant-weapp/tree/v2.4.5) (2018-02-07)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.4...v2.4.5)
**Improvements**
- Toast 新增支持图标展示 [\#121](https://github.com/youzan/zanui-weapp/pull/121) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Actionsheet 文档 [\#118](https://github.com/youzan/zanui-weapp/pull/118) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Toptips 组件未显示时,下拉页面展示问题 [\#116](https://github.com/youzan/zanui-weapp/pull/116) ([pangxie1991](https://github.com/pangxie1991))
- Field 使用示例中增加 picker-view 使用 [\#115](https://github.com/youzan/zanui-weapp/pull/115) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Toptips 组件在控制台里的报错 [\#114](https://github.com/youzan/zanui-weapp/pull/114) ([pangxie1991](https://github.com/pangxie1991))
- Toast 新增支持图标展示 [\#121](https://github.com/youzan/vant-weapp/pull/121) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Actionsheet 文档 [\#118](https://github.com/youzan/vant-weapp/pull/118) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Toptips 组件未显示时,下拉页面展示问题 [\#116](https://github.com/youzan/vant-weapp/pull/116) ([pangxie1991](https://github.com/pangxie1991))
- Field 使用示例中增加 picker-view 使用 [\#115](https://github.com/youzan/vant-weapp/pull/115) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Toptips 组件在控制台里的报错 [\#114](https://github.com/youzan/vant-weapp/pull/114) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.4](https://github.com/youzan/zanui-weapp/tree/v2.4.4) (2018-01-12)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.3...v2.4.4)
## [v2.4.4](https://github.com/youzan/vant-weapp/tree/v2.4.4) (2018-01-12)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.3...v2.4.4)
**Improvements**
- Actionsheet 组件新增 open-type 支持 [\#106](https://github.com/youzan/zanui-weapp/pull/106) ([pangxie1991](https://github.com/pangxie1991))
- Select 组件新增支持 form 中 submit 使用 [\#104](https://github.com/youzan/zanui-weapp/pull/104) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Actionsheet 行动按钮组件 [\#97](https://github.com/youzan/zanui-weapp/pull/97) ([pangxie1991](https://github.com/pangxie1991))
- Actionsheet 组件新增 open-type 支持 [\#106](https://github.com/youzan/vant-weapp/pull/106) ([pangxie1991](https://github.com/pangxie1991))
- Select 组件新增支持 form 中 submit 使用 [\#104](https://github.com/youzan/vant-weapp/pull/104) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Actionsheet 行动按钮组件 [\#97](https://github.com/youzan/vant-weapp/pull/97) ([pangxie1991](https://github.com/pangxie1991))
**Bug Fixes**
- 修复 actionsheet 隐藏时阻挡页面元素点击 [\#99](https://github.com/youzan/zanui-weapp/pull/99) ([yun77op](https://github.com/yun77op))
- 修复 Badge 组件纵向对齐问题 [\#96](https://github.com/youzan/zanui-weapp/pull/96) ([pangxie1991](https://github.com/pangxie1991))
- 修复合并生命周期extend函数并修改tab文档 [\#93](https://github.com/youzan/zanui-weapp/pull/93) ([Tinysymphony](https://github.com/Tinysymphony))
- 修复 actionsheet 隐藏时阻挡页面元素点击 [\#99](https://github.com/youzan/vant-weapp/pull/99) ([yun77op](https://github.com/yun77op))
- 修复 Badge 组件纵向对齐问题 [\#96](https://github.com/youzan/vant-weapp/pull/96) ([pangxie1991](https://github.com/pangxie1991))
- 修复合并生命周期extend函数并修改tab文档 [\#93](https://github.com/youzan/vant-weapp/pull/93) ([Tinysymphony](https://github.com/Tinysymphony))
## [v2.4.3](https://github.com/youzan/zanui-weapp/tree/v2.4.3) (2017-12-28)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.2...v2.4.3)
## [v2.4.3](https://github.com/youzan/vant-weapp/tree/v2.4.3) (2017-12-28)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.2...v2.4.3)
**Improvements**
- 增加无边框的panel样式 [\#92](https://github.com/youzan/zanui-weapp/pull/92) ([w91](https://github.com/w91))
- 增加支持合并page生命周期的extend函数 [\#90](https://github.com/youzan/zanui-weapp/pull/90) ([w91](https://github.com/w91))
- 增加无边框的panel样式 [\#92](https://github.com/youzan/vant-weapp/pull/92) ([w91](https://github.com/w91))
- 增加支持合并page生命周期的extend函数 [\#90](https://github.com/youzan/vant-weapp/pull/90) ([w91](https://github.com/w91))
## [v2.4.2](https://github.com/youzan/zanui-weapp/tree/v2.4.2) (2017-12-25)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.1...v2.4.2)
## [v2.4.2](https://github.com/youzan/vant-weapp/tree/v2.4.2) (2017-12-25)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.1...v2.4.2)
**Bug Fixes**
- 修复 Popup 组件弹出的 container 遮挡主页事件bug [\#83](https://github.com/youzan/zanui-weapp/pull/83) ([shoung6](https://github.com/shoung6))
- 修复 Tab 组件不滚动情况下,文字过长显示问题 [\#81](https://github.com/youzan/zanui-weapp/pull/81) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Popup 组件弹出的 container 遮挡主页事件bug [\#83](https://github.com/youzan/vant-weapp/pull/83) ([shoung6](https://github.com/shoung6))
- 修复 Tab 组件不滚动情况下,文字过长显示问题 [\#81](https://github.com/youzan/vant-weapp/pull/81) ([pangxie1991](https://github.com/pangxie1991))
**Improvements**
- 新增使用文档 [\#88](https://github.com/youzan/zanui-weapp/pull/88) ([pangxie1991](https://github.com/pangxie1991))
- 部分组件边框实现修改 [\#87](https://github.com/youzan/zanui-weapp/pull/87) ([pangxie1991](https://github.com/pangxie1991))
- 新增使用文档 [\#88](https://github.com/youzan/vant-weapp/pull/88) ([pangxie1991](https://github.com/pangxie1991))
- 部分组件边框实现修改 [\#87](https://github.com/youzan/vant-weapp/pull/87) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.1](https://github.com/youzan/zanui-weapp/tree/v2.4.1) (2017-12-13)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.4.0...v2.4.1)
## [v2.4.1](https://github.com/youzan/vant-weapp/tree/v2.4.1) (2017-12-13)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.4.0...v2.4.1)
**Bug Fixes**
- 修复 Tag 展现问题 [\#77](https://github.com/youzan/zanui-weapp/pull/77) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Tag 展现问题 [\#77](https://github.com/youzan/vant-weapp/pull/77) ([pangxie1991](https://github.com/pangxie1991))
**Improvements**
- 新增 tag 组件文档 [\#76](https://github.com/youzan/zanui-weapp/pull/76) ([pangxie1991](https://github.com/pangxie1991))
- 新增 tag 组件文档 [\#76](https://github.com/youzan/vant-weapp/pull/76) ([pangxie1991](https://github.com/pangxie1991))
## [v2.4.0](https://github.com/youzan/zanui-weapp/tree/v2.4.0) (2017-12-09)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.5...v2.4.0)
## [v2.4.0](https://github.com/youzan/vant-weapp/tree/v2.4.0) (2017-12-09)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.5...v2.4.0)
**Improvements**
- 新增 Field 组件对于 Form 的支持 [\#75](https://github.com/youzan/zanui-weapp/pull/75) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Field 组件文档 [\#73](https://github.com/youzan/zanui-weapp/pull/73) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Dialog 组件自定义按钮时按钮点击回调的问题 [\#72](https://github.com/youzan/zanui-weapp/pull/72) ([pangxie1991](https://github.com/pangxie1991))
- Quantity 组件更名为 Stepper [\#70](https://github.com/youzan/zanui-weapp/pull/70) ([pangxie1991](https://github.com/pangxie1991))
- Dialog 组件和 Popup 组件重构 [\#69](https://github.com/youzan/zanui-weapp/pull/69) ([pangxie1991](https://github.com/pangxie1991))
- 修正部分文档错误 [\#68](https://github.com/youzan/zanui-weapp/pull/68) ([0x01f7](https://github.com/0x01f7))
- Label组件重命名为 Tag 并整理样式 [\#55](https://github.com/youzan/zanui-weapp/pull/55) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Field 组件对于 Form 的支持 [\#75](https://github.com/youzan/vant-weapp/pull/75) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Field 组件文档 [\#73](https://github.com/youzan/vant-weapp/pull/73) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Dialog 组件自定义按钮时按钮点击回调的问题 [\#72](https://github.com/youzan/vant-weapp/pull/72) ([pangxie1991](https://github.com/pangxie1991))
- Quantity 组件更名为 Stepper [\#70](https://github.com/youzan/vant-weapp/pull/70) ([pangxie1991](https://github.com/pangxie1991))
- Dialog 组件和 Popup 组件重构 [\#69](https://github.com/youzan/vant-weapp/pull/69) ([pangxie1991](https://github.com/pangxie1991))
- 修正部分文档错误 [\#68](https://github.com/youzan/vant-weapp/pull/68) ([0x01f7](https://github.com/0x01f7))
- Label组件重命名为 Tag 并整理样式 [\#55](https://github.com/youzan/vant-weapp/pull/55) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.5](https://github.com/youzan/zanui-weapp/tree/v2.3.5) (2017-11-27)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.4...v2.3.5)
## [v2.3.5](https://github.com/youzan/vant-weapp/tree/v2.3.5) (2017-11-27)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.4...v2.3.5)
**Improvements**
- 修复 zan-icon-new 展示 [\#66](https://github.com/youzan/zanui-weapp/pull/66) ([pangxie1991](https://github.com/pangxie1991))
- 修复 zan-icon-new 展示 [\#66](https://github.com/youzan/vant-weapp/pull/66) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.4](https://github.com/youzan/zanui-weapp/tree/v2.3.4) (2017-11-24)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.3...v2.3.4)
## [v2.3.4](https://github.com/youzan/vant-weapp/tree/v2.3.4) (2017-11-24)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.3...v2.3.4)
**Improvements**
- 增加新的 Icon [\#65](https://github.com/youzan/zanui-weapp/pull/65) ([pangxie1991](https://github.com/pangxie1991))
- 加回 cart 图标 [\#64](https://github.com/youzan/zanui-weapp/pull/64) ([pangxie1991](https://github.com/pangxie1991))
- 增加新的 Icon [\#65](https://github.com/youzan/vant-weapp/pull/65) ([pangxie1991](https://github.com/pangxie1991))
- 加回 cart 图标 [\#64](https://github.com/youzan/vant-weapp/pull/64) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.3](https://github.com/youzan/zanui-weapp/tree/v2.3.3) (2017-11-20)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.2...v2.3.3)
## [v2.3.3](https://github.com/youzan/vant-weapp/tree/v2.3.3) (2017-11-20)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.2...v2.3.3)
**Improvements**
- 新增部分 icon [\#63](https://github.com/youzan/zanui-weapp/pull/63) ([pangxie1991](https://github.com/pangxie1991))
- Field 增加 value 传入支持 [\#60](https://github.com/youzan/zanui-weapp/pull/60) ([pangxie1991](https://github.com/pangxie1991))
- 修复 capsule 样式问题 [\#51](https://github.com/youzan/zanui-weapp/pull/51) ([everywill](https://github.com/everywill))
- 增加组件使用文档 [\#50](https://github.com/youzan/zanui-weapp/pull/50) ([pangxie1991](https://github.com/pangxie1991))
- 新增部分 icon [\#63](https://github.com/youzan/vant-weapp/pull/63) ([pangxie1991](https://github.com/pangxie1991))
- Field 增加 value 传入支持 [\#60](https://github.com/youzan/vant-weapp/pull/60) ([pangxie1991](https://github.com/pangxie1991))
- 修复 capsule 样式问题 [\#51](https://github.com/youzan/vant-weapp/pull/51) ([everywill](https://github.com/everywill))
- 增加组件使用文档 [\#50](https://github.com/youzan/vant-weapp/pull/50) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.2](https://github.com/youzan/zanui-weapp/tree/v2.3.2) (2017-11-02)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.1...v2.3.2)
## [v2.3.2](https://github.com/youzan/vant-weapp/tree/v2.3.2) (2017-11-02)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.1...v2.3.2)
**Improvements**
- 更新 Icon 中 shop 图标 [\#45](https://github.com/youzan/zanui-weapp/pull/45) ([pangxie1991](https://github.com/pangxie1991))
- 新增 layout 组件 [\#43](https://github.com/youzan/zanui-weapp/pull/43) ([pangxie1991](https://github.com/pangxie1991))
- Field 组件中 Input 事件支持升级 [\#42](https://github.com/youzan/zanui-weapp/pull/42) ([pangxie1991](https://github.com/pangxie1991))
- 增加 css 编译,方便组件书写 [\#40](https://github.com/youzan/zanui-weapp/pull/40) ([pangxie1991](https://github.com/pangxie1991))
- 更新 Icon 中 shop 图标 [\#45](https://github.com/youzan/vant-weapp/pull/45) ([pangxie1991](https://github.com/pangxie1991))
- 新增 layout 组件 [\#43](https://github.com/youzan/vant-weapp/pull/43) ([pangxie1991](https://github.com/pangxie1991))
- Field 组件中 Input 事件支持升级 [\#42](https://github.com/youzan/vant-weapp/pull/42) ([pangxie1991](https://github.com/pangxie1991))
- 增加 css 编译,方便组件书写 [\#40](https://github.com/youzan/vant-weapp/pull/40) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.1](https://github.com/youzan/zanui-weapp/tree/v2.3.1) (2017-10-27)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.3.0...v2.3.1)
## [v2.3.1](https://github.com/youzan/vant-weapp/tree/v2.3.1) (2017-10-27)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.3.0...v2.3.1)
**Bug Fixes**
- 修复 Field 组件多行展示样式问题 [\#39](https://github.com/youzan/zanui-weapp/pull/39) ([pangxie1991](https://github.com/pangxie1991))
- 修复 Field 组件多行展示样式问题 [\#39](https://github.com/youzan/vant-weapp/pull/39) ([pangxie1991](https://github.com/pangxie1991))
## [v2.3.0](https://github.com/youzan/zanui-weapp/tree/v2.3.0) (2017-10-26)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.2.0...v2.3.0)
## [v2.3.0](https://github.com/youzan/vant-weapp/tree/v2.3.0) (2017-10-26)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.2.0...v2.3.0)
**Breaking Change**
- icon 整理 & 新增 [\#38](https://github.com/youzan/zanui-weapp/pull/38) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Field 组件, 代替原有 Form 组件 [\#37](https://github.com/youzan/zanui-weapp/pull/37) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Select 组件,代替原有 Check_label 组件 [\#36](https://github.com/youzan/zanui-weapp/pull/36) ([pangxie1991](https://github.com/pangxie1991))
- icon 整理 & 新增 [\#38](https://github.com/youzan/vant-weapp/pull/38) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Field 组件, 代替原有 Form 组件 [\#37](https://github.com/youzan/vant-weapp/pull/37) ([pangxie1991](https://github.com/pangxie1991))
- 新增 Select 组件,代替原有 Check_label 组件 [\#36](https://github.com/youzan/vant-weapp/pull/36) ([pangxie1991](https://github.com/pangxie1991))
## [v2.2.0](https://github.com/youzan/zanui-weapp/tree/v2.2.0) (2017-10-15)
[Full Changelog](https://github.com/youzan/zanui-weapp/compare/v2.1.1...v2.2.0)
## [v2.2.0](https://github.com/youzan/vant-weapp/tree/v2.2.0) (2017-10-15)
[Full Changelog](https://github.com/youzan/vant-weapp/compare/v2.1.1...v2.2.0)
**Bug Fixes**
- 多页面情况下TopTips 无法自动清除 [\#20](https://github.com/youzan/zanui-weapp/issues/20)
- 多页面情况下TopTips 无法自动清除 [\#20](https://github.com/youzan/vant-weapp/issues/20)
**Improvements**
- \[new feature\] 增加发布脚本 [\#35](https://github.com/youzan/zanui-weapp/pull/35) ([pangxie1991](https://github.com/pangxie1991))
- \[new feature\] 增加Capsule, Noticebar, Popup修正Dialog在非最外层情况下引入的样式问题更新readme。 [\#32](https://github.com/youzan/zanui-weapp/pull/32) ([everywill](https://github.com/everywill))
- \[new feature\] 增加单选 和一个验证码的样式 [\#30](https://github.com/youzan/zanui-weapp/pull/30) ([muzea](https://github.com/muzea))
- \[new feature\] Docs: 文档更新 [\#29](https://github.com/youzan/zanui-weapp/pull/29) ([pangxie1991](https://github.com/pangxie1991))
- \[new feature\] 增加发布脚本 [\#35](https://github.com/youzan/vant-weapp/pull/35) ([pangxie1991](https://github.com/pangxie1991))
- \[new feature\] 增加Capsule, Noticebar, Popup修正Dialog在非最外层情况下引入的样式问题更新readme。 [\#32](https://github.com/youzan/vant-weapp/pull/32) ([everywill](https://github.com/everywill))
- \[new feature\] 增加单选 和一个验证码的样式 [\#30](https://github.com/youzan/vant-weapp/pull/30) ([muzea](https://github.com/muzea))
- \[new feature\] Docs: 文档更新 [\#29](https://github.com/youzan/vant-weapp/pull/29) ([pangxie1991](https://github.com/pangxie1991))
## 2.1.0

View File

@ -1 +1 @@
@font-face{font-family:zanui-weapp-icon;src:url(https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.eot);src:url(https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.eot?#iefix) format('embedded-opentype'),url(https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.woff2) format('woff2'),url(https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.woff) format('woff'),url(https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.ttf) format('truetype')}.zan-icon{display:inline-block}.zan-icon::before{font-family:zanui-weapp-icon!important;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased}.zan-icon-qr-invalid:before{content:'\e800'}.zan-icon-qr:before{content:'\e801'}.zan-icon-exchange:before{content:'\e802'}.zan-icon-close:before{content:'\e803'}.zan-icon-location:before{content:'\e804'}.zan-icon-upgrade:before{content:'\e805'}.zan-icon-check:before{content:'\e806'}.zan-icon-checked:before{content:'\e807'}.zan-icon-like-o:before{content:'\e808'}.zan-icon-like:before{content:'\e809'}.zan-icon-chat:before{content:'\e80a'}.zan-icon-shop:before{content:'\e80b'}.zan-icon-photograph:before{content:'\e80c'}.zan-icon-add:before{content:'\e80d'}.zan-icon-minus:before{content:'\e80e'}.zan-icon-add2:before{content:'\e80f'}.zan-icon-photo:before{content:'\e810'}.zan-icon-logistics:before{content:'\e811'}.zan-icon-edit:before{content:'\e812'}.zan-icon-passed:before{content:'\e813'}.zan-icon-cart:before{content:'\e814'}.zan-icon-shopping-cart:before{content:'\e815'}.zan-icon-arrow:before{content:'\e816'}.zan-icon-gift:before{content:'\e817'}.zan-icon-search:before{content:'\e818'}.zan-icon-clear:before{content:'\e819'}.zan-icon-success:before{content:'\e81a'}.zan-icon-fail:before{content:'\e81b'}.zan-icon-contact:before{content:'\e81c'}.zan-icon-wechat:before{content:'\e81d'}.zan-icon-alipay:before{content:'\e81e'}.zan-icon-password-view:before{content:'\e81f'}.zan-icon-password-not-view:before{content:'\e820'}.zan-icon-wap-nav:before{content:'\e821'}.zan-icon-wap-home:before{content:'\e822'}.zan-icon-ecard-pay:before{content:'\e823'}.zan-icon-balance-pay:before{content:'\e824'}.zan-icon-peer-pay:before{content:'\e825'}.zan-icon-credit-pay:before{content:'\e826'}.zan-icon-debit-pay:before{content:'\e827'}.zan-icon-other-pay:before{content:'\e828'}.zan-icon-browsing-history:before{content:'\e829'}.zan-icon-goods-collect:before{content:'\e82a'}.zan-icon-shop-collect:before{content:'\e82b'}.zan-icon-receive-gift:before{content:'\e82c'}.zan-icon-send-gift:before{content:'\e82d'}.zan-icon-setting:before{content:'\e82e'}.zan-icon-points:before{content:'\e82f'}.zan-icon-coupon:before{content:'\e830'}.zan-icon-free-postage:before{content:'\e831'}.zan-icon-discount:before{content:'\e832'}.zan-icon-birthday-privilege:before{content:'\e833'}.zan-icon-member-day-privilege:before{content:'\e834'}.zan-icon-balance-details:before{content:'\e835'}.zan-icon-cash-back-record:before{content:'\e836'}.zan-icon-points-mall:before{content:'\e837'}.zan-icon-exchange-record:before{content:'\e838'}.zan-icon-pending-payment:before{content:'\e839'}.zan-icon-pending-orders:before{content:'\e83a'}.zan-icon-pending-deliver:before{content:'\e83b'}.zan-icon-pending-evaluate:before{content:'\e83c'}.zan-icon-gift-card-pay:before{content:'\e83d'}.zan-icon-cash-on-deliver:before{content:'\e83e'}.zan-icon-underway:before{content:'\e83f'}.zan-icon-point-gift:before{content:'\e840'}.zan-icon-after-sale:before{content:'\e841'}.zan-icon-edit-data:before{content:'\e842'}.zan-icon-question:before{content:'\e843'}.zan-icon-delete:before{content:'\e844'}.zan-icon-records:before{content:'\e845'}.zan-icon-description:before{content:'\e846'}.zan-icon-card:before{content:'\e847'}.zan-icon-gift-card:before{content:'\e848'}.zan-icon-clock:before{content:'\e849'}.zan-icon-gold-coin:before{content:'\e84a'}.zan-icon-completed:before{content:'\e84b'}.zan-icon-value-card:before{content:'\e84c'}.zan-icon-certificate:before{content:'\e84d'}.zan-icon-tosend:before{content:'\e84e'}.zan-icon-sign:before{content:'\e84f'}.zan-icon-home:before{content:'\e850'}.zan-icon-phone:before{content:'\e851'}.zan-icon-add-o:before{content:'\e852'}.zan-icon-minus-o:before{content:'\e853'}.zan-icon-play:before{content:'\e854'}.zan-icon-pause:before{content:'\e855'}.zan-icon-stop:before{content:'\e856'}.zan-icon-hot:before{content:'\e857'}.zan-icon-new:before{content:'\e858'}.zan-icon-new-arrival:before{content:'\e859'}.zan-icon-hot-sale:before{content:'\e85a'}
@font-face{font-family:zanui-weapp-icon;src:url(https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.eot);src:url(https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.eot?#iefix) format('embedded-opentype'),url(https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.woff2) format('woff2'),url(https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.woff) format('woff'),url(https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.ttf) format('truetype')}.zan-icon{display:inline-block}.zan-icon::before{font-family:zanui-weapp-icon!important;font-style:normal;font-weight:400;speak:none;display:inline-block;text-decoration:inherit;width:1em;text-align:center;font-variant:normal;text-transform:none;line-height:1em;-webkit-font-smoothing:antialiased}.zan-icon-qr-invalid:before{content:'\e800'}.zan-icon-qr:before{content:'\e801'}.zan-icon-exchange:before{content:'\e802'}.zan-icon-close:before{content:'\e803'}.zan-icon-location:before{content:'\e804'}.zan-icon-upgrade:before{content:'\e805'}.zan-icon-check:before{content:'\e806'}.zan-icon-checked:before{content:'\e807'}.zan-icon-like-o:before{content:'\e808'}.zan-icon-like:before{content:'\e809'}.zan-icon-chat:before{content:'\e80a'}.zan-icon-shop:before{content:'\e80b'}.zan-icon-photograph:before{content:'\e80c'}.zan-icon-add:before{content:'\e80d'}.zan-icon-minus:before{content:'\e80e'}.zan-icon-add2:before{content:'\e80f'}.zan-icon-photo:before{content:'\e810'}.zan-icon-logistics:before{content:'\e811'}.zan-icon-edit:before{content:'\e812'}.zan-icon-passed:before{content:'\e813'}.zan-icon-cart:before{content:'\e814'}.zan-icon-shopping-cart:before{content:'\e815'}.zan-icon-arrow:before{content:'\e816'}.zan-icon-gift:before{content:'\e817'}.zan-icon-search:before{content:'\e818'}.zan-icon-clear:before{content:'\e819'}.zan-icon-success:before{content:'\e81a'}.zan-icon-fail:before{content:'\e81b'}.zan-icon-contact:before{content:'\e81c'}.zan-icon-wechat:before{content:'\e81d'}.zan-icon-alipay:before{content:'\e81e'}.zan-icon-password-view:before{content:'\e81f'}.zan-icon-password-not-view:before{content:'\e820'}.zan-icon-wap-nav:before{content:'\e821'}.zan-icon-wap-home:before{content:'\e822'}.zan-icon-ecard-pay:before{content:'\e823'}.zan-icon-balance-pay:before{content:'\e824'}.zan-icon-peer-pay:before{content:'\e825'}.zan-icon-credit-pay:before{content:'\e826'}.zan-icon-debit-pay:before{content:'\e827'}.zan-icon-other-pay:before{content:'\e828'}.zan-icon-browsing-history:before{content:'\e829'}.zan-icon-goods-collect:before{content:'\e82a'}.zan-icon-shop-collect:before{content:'\e82b'}.zan-icon-receive-gift:before{content:'\e82c'}.zan-icon-send-gift:before{content:'\e82d'}.zan-icon-setting:before{content:'\e82e'}.zan-icon-points:before{content:'\e82f'}.zan-icon-coupon:before{content:'\e830'}.zan-icon-free-postage:before{content:'\e831'}.zan-icon-discount:before{content:'\e832'}.zan-icon-birthday-privilege:before{content:'\e833'}.zan-icon-member-day-privilege:before{content:'\e834'}.zan-icon-balance-details:before{content:'\e835'}.zan-icon-cash-back-record:before{content:'\e836'}.zan-icon-points-mall:before{content:'\e837'}.zan-icon-exchange-record:before{content:'\e838'}.zan-icon-pending-payment:before{content:'\e839'}.zan-icon-pending-orders:before{content:'\e83a'}.zan-icon-pending-deliver:before{content:'\e83b'}.zan-icon-pending-evaluate:before{content:'\e83c'}.zan-icon-gift-card-pay:before{content:'\e83d'}.zan-icon-cash-on-deliver:before{content:'\e83e'}.zan-icon-underway:before{content:'\e83f'}.zan-icon-point-gift:before{content:'\e840'}.zan-icon-after-sale:before{content:'\e841'}.zan-icon-edit-data:before{content:'\e842'}.zan-icon-question:before{content:'\e843'}.zan-icon-delete:before{content:'\e844'}.zan-icon-records:before{content:'\e845'}.zan-icon-description:before{content:'\e846'}.zan-icon-card:before{content:'\e847'}.zan-icon-gift-card:before{content:'\e848'}.zan-icon-clock:before{content:'\e849'}.zan-icon-gold-coin:before{content:'\e84a'}.zan-icon-completed:before{content:'\e84b'}.zan-icon-value-card:before{content:'\e84c'}.zan-icon-certificate:before{content:'\e84d'}.zan-icon-tosend:before{content:'\e84e'}.zan-icon-sign:before{content:'\e84f'}.zan-icon-home:before{content:'\e850'}.zan-icon-phone:before{content:'\e851'}.zan-icon-add-o:before{content:'\e852'}.zan-icon-minus-o:before{content:'\e853'}.zan-icon-play:before{content:'\e854'}.zan-icon-pause:before{content:'\e855'}.zan-icon-stop:before{content:'\e856'}.zan-icon-hot:before{content:'\e857'}.zan-icon-new:before{content:'\e858'}.zan-icon-new-arrival:before{content:'\e859'}.zan-icon-hot-sale:before{content:'\e85a'}

View File

@ -3,7 +3,7 @@ module.exports = {
header: {
logo: {
image: 'https://img.yzcdn.cn/public_files/2017/12/18/fd78cf6bb5d12e2a119d0576bedfd230.png',
title: 'ZanUI 小程序',
title: 'Vant 小程序',
href: 'http://www.youzanyun.com/zanui'
},
nav: {
@ -12,22 +12,22 @@ module.exports = {
from: 'zh-CN',
to: 'en-US'
},
github: 'https://github.com/youzan/zanui-weapp'
github: 'https://github.com/youzan/vant-weapp'
}
},
footer: {
github: 'https://github.com/youzan/zanui-weapp',
github: 'https://github.com/youzan/vant-weapp',
nav: {
'React 组件库': 'https://www.youzanyun.com/zanui/zent',
'Vue 组件库': 'https://www.youzanyun.com/zanui/vant',
意见反馈: 'https://github.com/youzan/zanui-weapp/issues',
开发指南: 'https://github.com/youzan/zanui-weapp/blob/dev/.github/CONTRIBUTING.zh-CN.md',
意见反馈: 'https://github.com/youzan/vant-weapp/issues',
开发指南: 'https://github.com/youzan/vant-weapp/blob/dev/.github/CONTRIBUTING.zh-CN.md',
加入我们: 'https://job.youzan.com'
}
},
plugins: [require('./website/plugins/wxapp-demo.js')],
docs: {
base: 'zanui',
base: 'vant',
default: 'icon',
category: [
{

View File

@ -33,7 +33,7 @@
],
"window": {
"navigationBarBackgroundColor": "#FAFAFA",
"navigationBarTitleText": "ZanUI-WeApp",
"navigationBarTitleText": "vant-weapp",
"navigationBarTextStyle": "black",
"backgroundTextStyle": "dark",
"backgroundColor": "#f9f9f9"

View File

@ -21,7 +21,7 @@ Page({
onShareAppMessage() {
return {
title: 'ZanUI-WeApp',
title: 'vant-weapp',
imageUrl: 'https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png'
};
},

View File

@ -1,5 +1,5 @@
{
"navigationBarTitleText": "ZanUI-WeApp",
"navigationBarTitleText": "vant-weapp",
"usingComponents": {
"zan-panel": "../../dist/panel/index",
"zan-cell": "../../dist/cell/index",

View File

@ -133,7 +133,7 @@ Page({
onShareAppMessage() {
return {
title: 'ZanUI-WeApp',
title: 'vant-weapp',
imageUrl: 'https://img.yzcdn.cn/public_files/2017/02/06/ee0ebced79a80457d77ce71c7d414c74.png'
};
},

View File

@ -4,7 +4,7 @@ Page({
data: {
content: '测试toptips',
duration: 2000,
$zanui: {
$vant: {
toptips: {
show: false
}
@ -13,7 +13,7 @@ Page({
showTopTips() {
this.setData({
$zanui: {
$vant: {
toptips: {
show: true
}
@ -22,7 +22,7 @@ Page({
setTimeout(() => {
this.setData({
$zanui: {
$vant: {
toptips: {
show: false
}

View File

@ -21,7 +21,7 @@
<zan-toptips
id="zan-toptips"
content="{{ content }}"
is-show="{{ $zanui.toptips.show }}"
is-show="{{ $vant.toptips.show }}"
/>

2
package-lock.json generated
View File

@ -1,5 +1,5 @@
{
"name": "zanui-weapp",
"name": "vant-weapp",
"version": "3.0.10",
"lockfileVersion": 1,
"requires": true,

View File

@ -1,5 +1,5 @@
{
"name": "zanui-weapp",
"name": "vant-weapp",
"version": "3.0.10",
"description": "高颜值、好用、易扩展的小程序 UI 库Powered by 有赞",
"main": "app.js",
@ -19,17 +19,17 @@
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/youzan/zanui-weapp.git"
"url": "git+ssh://git@github.com/youzan/vant-weapp.git"
},
"author": "youzan",
"license": "ISC",
"bugs": {
"url": "https://github.com/youzan/zanui-weapp/issues"
"url": "https://github.com/youzan/vant-weapp/issues"
},
"files": [
"dist"
],
"homepage": "https://github.com/youzan/zanui-weapp#readme",
"homepage": "https://github.com/youzan/vant-weapp#readme",
"browserslist": [
"safari 6"
],

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-actionsheet": "path/to/zanui-weapp/dist/actionsheet/index"
"zan-actionsheet": "path/to/vant-weapp/dist/actionsheet/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-badge": "path/to/zanui-weapp/dist/badge/index"
"zan-badge": "path/to/vant-weapp/dist/badge/index"
}
}
```

View File

@ -4,7 +4,7 @@
在 json 文件中配置button组件
```json
"usingComponents": {
"zan-button": "path/to/zanui-weapp/dist/btn/index"
"zan-button": "path/to/vant-weapp/dist/btn/index"
}
```
@ -53,8 +53,8 @@
1.在 json 文件中配置 button-group 组件
```json
"usingComponents": {
"zan-button": "path/to/zanui-weapp/dist/btn/index",
"zan-button-group": "path/to/zanui-weapp/dist/btn-group/index"
"zan-button": "path/to/vant-weapp/dist/btn/index",
"zan-button-group": "path/to/vant-weapp/dist/btn-group/index"
}
```
2.在 wxml 中直接引入

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-capsule": "path/to/zanui-weapp/dist/capsule/index"
"zan-capsule": "path/to/vant-weapp/dist/capsule/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-card": "path/to/zanui-weapp/dist/card/index"
"zan-card": "path/to/vant-weapp/dist/card/index"
}
}
```

View File

@ -6,7 +6,7 @@
```json
{
"usingComponents": {
"zan-cell": "path/to/zanui-weapp/dist/cell/index",
"zan-cell": "path/to/vant-weapp/dist/cell/index",
}
}
```
@ -49,8 +49,8 @@
```json
{
"usingComponents": {
"zan-cell": "path/to/zanui-weapp/dist/cell/index",
"zan-cell-group": "path/to/zanui-weapp/dist/cell-group/index"
"zan-cell": "path/to/vant-weapp/dist/cell/index",
"zan-cell-group": "path/to/vant-weapp/dist/cell-group/index"
}
}
```

View File

@ -8,7 +8,7 @@
```json
{
"usingComponents": {
"zan-date-picker": "path/to/zanui-weapp/dist/datetime-picker/index"
"zan-date-picker": "path/to/vant-weapp/dist/datetime-picker/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-dialog": "path/to/zanui-weapp/dist/dialog/index"
"zan-dialog": "path/to/vant-weapp/dist/dialog/index"
}
}
```
@ -15,7 +15,7 @@
<zan-dialog id="zan-dialog-test"></zan-dialog>
```
```js
const Dialog = require('path/to/zanui-weapp/dist/dialog/dialog');
const Dialog = require('path/to/vant-weapp/dist/dialog/dialog');
Page({
// ...

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-field": "path/to/zanui-weapp/dist/field/index"
"zan-field": "path/to/vant-weapp/dist/field/index"
}
}
```

View File

@ -3,7 +3,7 @@
### 使用指南
在 app.wxss 中引入组件库所有样式
```css
@import "path/to/zanui-weapp/dist/index.wxss";
@import "path/to/vant-weapp/dist/index.wxss";
```
### 代码演示

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-icon": "path/to/zanui-weapp/dist/icon/index"
"zan-icon": "path/to/vant-weapp/dist/icon/index"
}
}
```

View File

@ -2,11 +2,11 @@
@font-face {
font-family: 'zanui-weapp-icon';
src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.eot');
src: url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.eot?#iefix') format('embedded-opentype'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.woff2') format('woff2'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.woff') format('woff'),
url('https://b.yzcdn.cn/zanui-weapp/zanui-weapp-icon-eeb0d3c52a.ttf') format('truetype')
src: url('https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.eot');
src: url('https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.eot?#iefix') format('embedded-opentype'),
url('https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.woff2') format('woff2'),
url('https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.woff') format('woff'),
url('https://b.yzcdn.cn/vant-weapp/zanui-weapp-icon-eeb0d3c52a.ttf') format('truetype')
}
.zan-icon {

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-loading": "path/to/zanui-weapp/dist/loading/index"
"zan-loading": "path/to/vant-weapp/dist/loading/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-noticebar": "path/to/zanui-weapp/dist/noticebar/index"
"zan-noticebar": "path/to/vant-weapp/dist/noticebar/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-panel": "path/to/zanui-weapp/dist/panel/index"
"zan-panel": "path/to/vant-weapp/dist/panel/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-popup": "path/to/zanui-weapp/dist/popup/index"
"zan-popup": "path/to/vant-weapp/dist/popup/index"
}
}
```

View File

@ -5,8 +5,8 @@
```json
{
"usingComponents": {
"zan-row": "path/to/zanui-weapp/dist/row/index",
"zan-col": "path/to/zanui-weapp/dist/col/index"
"zan-row": "path/to/vant-weapp/dist/row/index",
"zan-col": "path/to/vant-weapp/dist/col/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-select": "path/to/zanui-weapp/dist/select/index"
"zan-select": "path/to/vant-weapp/dist/select/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-stepper": "path/to/zanui-weapp/dist/stepper/index"
"zan-stepper": "path/to/vant-weapp/dist/stepper/index"
}
}
```

View File

@ -3,14 +3,14 @@
### 使用指南
在 app.wxss 中引入组件库所有样式
```css
@import "path/to/zanui-weapp/dist/index.wxss";
@import "path/to/vant-weapp/dist/index.wxss";
```
在 index.json 中引入组件
```json
{
"usingComponents": {
"zan-steps": "path/to/zanui-weapp/dist/steps/index"
"zan-steps": "path/to/vant-weapp/dist/steps/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-switch": "path/to/zanui-weapp/dist/switch/index"
"zan-switch": "path/to/vant-weapp/dist/switch/index"
}
}
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-tab": "path/to/zanui-weapp/dist/tab/index"
"zan-tab": "path/to/vant-weapp/dist/tab/index"
}
}
```

View File

@ -4,7 +4,7 @@
在 json 文件中配置tag组件
```json
"usingComponents": {
"zan-tag": "path/to/zanui-weapp/dist/tag/index"
"zan-tag": "path/to/vant-weapp/dist/tag/index"
}
```

View File

@ -4,7 +4,7 @@
在 json 文件中配置 toast 组件
```json
"usingComponents": {
"zan-toast": "/path/to/zanui-weapp/dist/toast/index"
"zan-toast": "/path/to/vant-weapp/dist/toast/index"
}
```
@ -13,7 +13,7 @@
<zan-toast id="zan-toast-test"></zan-toast>
```
```js
const Toast = require('path/to/zanui-weapp/dist/toast/toast');
const Toast = require('path/to/vant-weapp/dist/toast/toast');
Page({
// ...

View File

@ -1,4 +1,4 @@
const TOAST_CONFIG_KEY = 'zanui.__zanToastPageConfig';
const TOAST_CONFIG_KEY = 'vant.__zanToastPageConfig';
const DEFAULT_SHOW_TOAST_TIME = 3000;
let timeoutData = {
@ -22,8 +22,8 @@ function getPageCtx(pageCtx) {
// 获取当前页面的 toast 配置数据
function getPageToastConfig(pageCtx) {
const zanuiData = pageCtx.data.zanui || {};
return zanuiData.__zanToastPageConfig || {};
const vantData = pageCtx.data.vant || {};
return vantData.__zanToastPageConfig || {};
}
// Toast 显示函数

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-toptips": "path/to/zanui-weapp/dist/toptips/index"
"zan-toptips": "path/to/vant-weapp/dist/toptips/index"
}
}
```
@ -14,13 +14,13 @@
**toptips提供了声明式和命令式2种调用方式但是由于小程序本身限制会有一定使用的要求**
```js
// 使用声明式调用的方式, 必须在Page中声明 $zanui对象, 结构如下
// 使用声明式调用的方式, 必须在Page中声明 $vant对象, 结构如下
// 同时在其他触发toptips显示的函数中需要手动改变对应的数值
Page({
data: {
duration: 1000,
content: 'xxx',
$zanui: {
$vant: {
toptips: {
show: false
}
@ -31,7 +31,7 @@ Page({
// 使用命令式调用的方式,必须在 wxml 模板中声明组件id
// 默认我们使用了 zan-toptips 如果使用者要更换,可以手动传入
// 注意和 usingComponents 里引用的路径不一样
const Toptips = require('path/to/zanui-weapp/dist/toptips/toptips');
const Toptips = require('path/to/vant-weapp/dist/toptips/toptips');
Page({
customCallback() {
Toptips('只传文案展示');
@ -49,7 +49,7 @@ Page({
data: {
duration: 1000,
content: 'xxx',
$zanui: {
$vant: {
toptips: {
show: false
}
@ -58,7 +58,7 @@ Page({
customCallback() {
this.setData({
$zanui: {
$vant: {
toptips: {
show: true
}
@ -67,7 +67,7 @@ Page({
setTimeout(() => {
this.setData({
$zanui: {
$vant: {
toptips: {
show: false
}
@ -81,7 +81,7 @@ Page({
<zan-toptips
content="tip内容"
duration="{{ duration }}"
is-show="{{ $zanui.toptips.show }}"
is-show="{{ $vant.toptips.show }}"
/>
```

View File

@ -5,7 +5,7 @@
```json
{
"usingComponents": {
"zan-tree-select": "path/to/zanui-weapp/dist/tree-select/index"
"zan-tree-select": "path/to/vant-weapp/dist/tree-select/index"
}
}
```

View File

@ -1,7 +1,7 @@
#!/bin/bash
basepath=$(dirname $0)
server_prefix=/zanui-weapp
server_prefix=/vant-weapp
# convert relative path to absolute path
function abspath() {

View File

@ -2,7 +2,7 @@
"cdn": {
"basic": {
"src": ["website/dist/**/*.*"],
"dist": "zanui/weapp"
"dist": "vant/weapp"
}
}
}

View File

@ -13,7 +13,7 @@ module.exports = {
},
webpack: {
output: {
publicPath: process.argv[process.argv.length - 1] === 'build' ? 'https://b.yzcdn.cn/zanui/weapp' : '/',
publicPath: process.argv[process.argv.length - 1] === 'build' ? 'https://b.yzcdn.cn/vant/weapp' : '/',
filename: '[name].[hash].js'
}
}