Skip to content
This repository was archived by the owner on Apr 3, 2023. It is now read-only.

Commit 772ce4e

Browse files
committed
组件类库升级至1.8.5
1 parent 3d56c48 commit 772ce4e

File tree

39 files changed

+700
-564
lines changed

39 files changed

+700
-564
lines changed

CHANGELOG.zh-CN.md

+7
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
🐞 🤖 🛠 🔥 🌐 🎉 📦 🗑 💄 🆕
44

5+
## 1.3.1
6+
7+
`2021-0x-xx`
8+
9+
- 🌟 `优化` 🎉 优化原有全部组件演示示例。
10+
- 🆕 `新增` 新增组件`ConfigProvider`、内置样式演示示例。
11+
512
## 1.3.0
613

714
`2021-08-30`

README.md

-12
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,3 @@ node app
2525
本示例参考了依据官网增加了新控件的使用示例。 🔥 <a href="https://vant-contrib.gitee.io/vant-weapp">Vant 文档网站</a>
2626

2727
## 更新日志
28-
29-
### 1.2.2(2021-01-30)
30-
31-
升级版本至 1.6.7,增加新功能示例(自定义属性示例),优化原有功能。
32-
33-
### 1.1.0(2020-04-30)
34-
35-
升级版本至 1.2.1,增加新功能示例,优化原有功能。
36-
37-
### 1.0.0(2020-02-19)
38-
39-
支持 H5 模式编译。

build/repo/dist1.8.5.zip

210 KB
Binary file not shown.

src/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,5 @@ unpackage
3030
# uniapp idea hbuilder
3131
.hbuilderx
3232

33-
package-lock.json
33+
package-lock.json
34+
yarn.lock

src/common/components.js

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ export default [{
99
path: '/cell',
1010
title: 'Cell 单元格'
1111
},
12+
13+
{
14+
path: '/config-provider',
15+
title: 'ConfigProvider 全局配置'
16+
},
1217
{
1318
path: '/icon',
1419
title: 'Icon 图标'

src/common/tools.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* vant 组件功能菜单 */
2+
export default [{
3+
groupName: '组件配置',
4+
list: [{
5+
path: '/sytle',
6+
title: '内置样式'
7+
},
8+
9+
]
10+
}];

src/config.js

-232
This file was deleted.

src/package.json

+15-15
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
2-
"name": "mp-vant-weapp-uniapp",
3-
"version": "1.0.0",
4-
"description": "",
5-
"main": "main.js",
6-
"dependencies": {
7-
"@vant/icons": "^1.4.0",
8-
"dayjs": "^1.10.6",
9-
"prettier": "^2.1.0"
10-
},
11-
"devDependencies": {},
12-
"scripts": {
13-
"test": "echo \"Error: no test specified\" && exit 1"
14-
},
15-
"author": "",
16-
"license": "MIT"
2+
"name": "mp-vant-weapp-uniapp",
3+
"version": "1.0.0",
4+
"description": "",
5+
"main": "main.js",
6+
"dependencies": {
7+
"@vant/icons": "^1.4.0",
8+
"dayjs": "^1.10.6",
9+
"prettier": "^2.1.0"
10+
},
11+
"devDependencies": {},
12+
"scripts": {
13+
"test": "echo \"Error: no test specified\" && exit 1"
14+
},
15+
"author": "",
16+
"license": "MIT"
1717
}

src/pages.json

+13-3
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@
3737
"navigationStyle": "default"
3838
}
3939
},
40+
{
41+
"path": "pages/config-provider/config-provider",
42+
"style": {
43+
"navigationBarTitleText": "ConfigProvider 全局配置",
44+
"navigationStyle": "default"
45+
}
46+
47+
},
4048
{
4149
"path": "pages/icon/icon",
4250
"style": {
@@ -391,11 +399,12 @@
391399
"subPackages": [{
392400
"root": "pagesA",
393401
"pages": [{
394-
"path": "index/index",
402+
"path": "sytle/sytle",
395403
"style": {
396-
"navigationBarTitleText": "工具",
404+
"navigationBarTitleText": "内置样式",
397405
"navigationStyle": "default"
398406
}
407+
399408
}]
400409
}, {
401410
"root": "pagesB",
@@ -478,7 +487,8 @@
478487
"van-sidebar-item": "/wxcomponents/vant/sidebar-item/index",
479488
"van-calendar": "/wxcomponents/vant/calendar/index",
480489
"van-share-sheet": "/wxcomponents/vant/share-sheet/index",
481-
"van-empty": "/wxcomponents/vant/empty/index"
490+
"van-empty": "/wxcomponents/vant/empty/index",
491+
"van-config-provider": "/wxcomponents/vant/config-provider/index"
482492
}
483493
},
484494
"usingComponts": true,

0 commit comments

Comments
 (0)