diff --git a/plugin/upload.js b/plugin/upload.js index 4a8c222b..0db25a26 100644 --- a/plugin/upload.js +++ b/plugin/upload.js @@ -6,7 +6,7 @@ const util = require('../build/util.js') const buildReadme = require('../build/build-readme.js') const root = path.join(__dirname,'..') const modulesId = process.env.UNI_MODULES_ID -// const modulesId = 'uni-icons' +// const modulesId = 'uni-forms' const comName = modulesId.replace(/uni-/, '') const comPath = path.join(root, 'uni_modules') // console.error('upload.js - modulesId :' + modulesId); @@ -44,47 +44,58 @@ if (modulesId === 'uni-ui') { } else { // 将组件拷贝到临时目录 util.copyDir(getModulesPath(modulesId), path.join(tempExamplePath, 'uni_modules', modulesId)) - handlePageJson(comName, tempExamplePath) - // 获取关联组件 - if (packageJson && packageJson.uni_modules && packageJson.uni_modules.dependencies.length > 0) { - relationComponents = packageJson.uni_modules.dependencies - } - // 同步依赖组件 - if (relationComponents && relationComponents.length > 0) { - relationComponents.reduce((promise, item) => { - return new Promise((resolve, reject) => { - util.copyDir(getModulesPath(item), path.join(tempExamplePath, 'uni_modules', item)) - resolve() - }) - }, Promise.resolve([])).then(res => { - // console.error('所有依赖组件同步完成'); - setPageComponents(modulesId, comName) - }).catch((err)=>{ - console.log('error',err); - }) - } else { - setPageComponents(modulesId, comName) - } + handlePageJson(comName, tempExamplePath) + // 同步页面使用的组件 + setPageComponents(modulesId, comName) + // 同步组件依赖的组间 + syncRelyOn(modulesId) } function setPageComponents(modulesId, comName) { const pagePath = path.join(root, 'pages', 'vue', comName, comName + '.vue') const pageContent = fs.readFileSync(pagePath).toString() const pageContents = getComName(pageContent) - // console.error('组件名称:' + pageContents); - if (pageContents.length > 0) { - pageContents.reduce((promise, item) => { - const inputPath = getModulesPath(item) + pageContents.reduce((promise, item) => { + const inputPath = getModulesPath(item) const exists = fs.existsSync(inputPath) - if (item === modulesId || !exists) return promise - return new Promise((resolve, reject) => { - util.copyDir(inputPath, path.join(tempExamplePath, 'uni_modules', item)) + if (item === modulesId || !exists) return promise + return new Promise((resolve, reject) => { + util.copyDir(inputPath, path.join(tempExamplePath, 'uni_modules', item)) + resolve() + }).then(()=>{ + syncRelyOn(item) }) }, Promise.resolve([])).then(res => { - // console.error('所有依赖组件同步完成'); + // console.log('所有依赖组件同步完成'); }) } +} + +function syncRelyOn(modulesName){ + const packageJson = getPackage(modulesName, comPath) + let relationComponents = [] + // 获取关联组件 + if (packageJson && packageJson.uni_modules && packageJson.uni_modules.dependencies.length > 0) { + relationComponents = packageJson.uni_modules.dependencies + } + // 同步依赖组件 + if (relationComponents && relationComponents.length > 0) { + return relationComponents.reduce((promise, item) => { + return new Promise((resolve, reject) => { + util.copyDir(getModulesPath(item), path.join(tempExamplePath, 'uni_modules', item)) + resolve() + }).then(()=>{ + syncRelyOn(item) + }) + }, Promise.resolve([])).then(res => { + // console.error('所有依赖组件同步完成'); + // setPageComponents(modulesId, comName) + }).catch((err)=>{ + // console.log('error',err); + }) + } + return Promise.resolve() } /** diff --git a/uni_modules/uni-badge/changelog.md b/uni_modules/uni-badge/changelog.md index e34a5dd8..550eb41d 100644 --- a/uni_modules/uni-badge/changelog.md +++ b/uni_modules/uni-badge/changelog.md @@ -1,3 +1,5 @@ +## 1.1.1(2021-05-12) +- 新增 组件示例地址 ## 1.1.0(2021-05-12) - 新增 uni-badge 的 absolute 属性,支持定位 - 新增 uni-badge 的 offset 属性,支持定位偏移 diff --git a/uni_modules/uni-badge/package.json b/uni_modules/uni-badge/package.json index d7b1bd0e..4b0c851d 100644 --- a/uni_modules/uni-badge/package.json +++ b/uni_modules/uni-badge/package.json @@ -1,7 +1,7 @@ { "id": "uni-badge", "displayName": "uni-badge 数字角标", - "version": "1.1.0", + "version": "1.1.1", "description": "数字角标(徽章)组件,在元素周围展示消息提醒,一般用于列表、九宫格、按钮等地方。", "keywords": [ "", diff --git a/uni_modules/uni-calendar/changelog.md b/uni_modules/uni-calendar/changelog.md index cd8fdb9f..2def8447 100644 --- a/uni_modules/uni-calendar/changelog.md +++ b/uni_modules/uni-calendar/changelog.md @@ -1,2 +1,4 @@ +## 1.3.16(2021-05-12) +- 新增 组件示例地址 ## 1.3.15(2021-02-04) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-calendar/package.json b/uni_modules/uni-calendar/package.json index 91995b14..d5af68d2 100644 --- a/uni_modules/uni-calendar/package.json +++ b/uni_modules/uni-calendar/package.json @@ -1,7 +1,7 @@ { "id": "uni-calendar", "displayName": "uni-calendar 日历", - "version": "1.3.15", + "version": "1.3.16", "description": "日历组件", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-calendar/readme.md b/uni_modules/uni-calendar/readme.md index 39f9d320..4f3ca0e8 100644 --- a/uni_modules/uni-calendar/readme.md +++ b/uni_modules/uni-calendar/readme.md @@ -96,3 +96,8 @@ export default { + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/calendar/calendar](https://hellouniapp.dcloud.net.cn/pages/extUI/calendar/calendar) \ No newline at end of file diff --git a/uni_modules/uni-card/changelog.md b/uni_modules/uni-card/changelog.md index 359ce17b..71db1175 100644 --- a/uni_modules/uni-card/changelog.md +++ b/uni_modules/uni-card/changelog.md @@ -1,2 +1,4 @@ +## 1.1.7(2021-05-12) +- 新增 组件示例地址 ## 1.1.6(2021-02-04) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-card/package.json b/uni_modules/uni-card/package.json index 78e34797..804e2bba 100644 --- a/uni_modules/uni-card/package.json +++ b/uni_modules/uni-card/package.json @@ -1,7 +1,7 @@ { "id": "uni-card", "displayName": "uni-card 卡片", - "version": "1.1.6", + "version": "1.1.7", "description": "Card 组件,提供常见的卡片样式。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-card/readme.md b/uni_modules/uni-card/readme.md index 1afd97a9..32c8f8a1 100644 --- a/uni_modules/uni-card/readme.md +++ b/uni_modules/uni-card/readme.md @@ -96,4 +96,8 @@ |插槽称名 |说明 | |:-: |:-: | -|footer |卡片底部插槽 | \ No newline at end of file +|footer |卡片底部插槽 | + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/card/card](https://hellouniapp.dcloud.net.cn/pages/extUI/card/card) \ No newline at end of file diff --git a/uni_modules/uni-collapse/changelog.md b/uni_modules/uni-collapse/changelog.md index f8f136f4..fa4953ee 100644 --- a/uni_modules/uni-collapse/changelog.md +++ b/uni_modules/uni-collapse/changelog.md @@ -1,3 +1,5 @@ +## 1.1.7(2021-05-12) +- 新增 组件示例地址 ## 1.1.6(2021-02-05) - 优化 组件引用关系,通过uni_modules引用组件 ## 1.1.5(2021-02-05) diff --git a/uni_modules/uni-collapse/package.json b/uni_modules/uni-collapse/package.json index f3ea641b..48d02701 100644 --- a/uni_modules/uni-collapse/package.json +++ b/uni_modules/uni-collapse/package.json @@ -1,7 +1,7 @@ { "id": "uni-collapse", "displayName": "uni-collapse 折叠面板", - "version": "1.1.6", + "version": "1.1.7", "description": "Collapse 组件,可以折叠 / 展开的内容区域。", "keywords": [ "", diff --git a/uni_modules/uni-collapse/readme.md b/uni_modules/uni-collapse/readme.md index 910c1402..50a21adc 100644 --- a/uni_modules/uni-collapse/readme.md +++ b/uni_modules/uni-collapse/readme.md @@ -106,4 +106,8 @@ |thumb |String |- |标题左侧缩略图 | |disabled |Boolean|false |是否禁用 | |open |Boolean|false |是否展开面板 | -|showAnimation |Boolean |false |开启动画 | \ No newline at end of file +|showAnimation |Boolean |false |开启动画 | + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/collapse/collapse](https://hellouniapp.dcloud.net.cn/pages/extUI/collapse/collapse) \ No newline at end of file diff --git a/uni_modules/uni-combox/changelog.md b/uni_modules/uni-combox/changelog.md index 22b9819a..0c0f7926 100644 --- a/uni_modules/uni-combox/changelog.md +++ b/uni_modules/uni-combox/changelog.md @@ -1,3 +1,5 @@ +## 0.0.6(2021-05-12) +- 新增 组件示例地址 ## 0.0.5(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 0.0.4(2021-02-05) diff --git a/uni_modules/uni-combox/package.json b/uni_modules/uni-combox/package.json index a8235792..d13bd270 100644 --- a/uni_modules/uni-combox/package.json +++ b/uni_modules/uni-combox/package.json @@ -1,7 +1,7 @@ { "id": "uni-combox", "displayName": "uni-combox 组合框", - "version": "0.0.5", + "version": "0.0.6", "description": "可以选择也可以输入的表单项 ", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-combox/readme.md b/uni_modules/uni-combox/readme.md index 745c16bf..edab4d40 100644 --- a/uni_modules/uni-combox/readme.md +++ b/uni_modules/uni-combox/readme.md @@ -45,3 +45,8 @@ + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/combox/combox](https://hellouniapp.dcloud.net.cn/pages/extUI/combox/combox) \ No newline at end of file diff --git a/uni_modules/uni-countdown/changelog.md b/uni_modules/uni-countdown/changelog.md index 4619a56d..63d8dcee 100644 --- a/uni_modules/uni-countdown/changelog.md +++ b/uni_modules/uni-countdown/changelog.md @@ -1,3 +1,5 @@ +## 1.0.4(2021-05-12) +- 新增 组件示例地址 ## 1.0.3(2021-05-08) - 修复 uni-countdown 不能控制倒计时的 bug ## 1.0.2(2021-02-04) diff --git a/uni_modules/uni-countdown/package.json b/uni_modules/uni-countdown/package.json index 4b921662..8d5429b4 100644 --- a/uni_modules/uni-countdown/package.json +++ b/uni_modules/uni-countdown/package.json @@ -1,7 +1,7 @@ { "id": "uni-countdown", "displayName": "uni-countdown 倒计时", - "version": "1.0.3", + "version": "1.0.4", "description": "CountDown 倒计时组件", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-data-checkbox/changelog.md b/uni_modules/uni-data-checkbox/changelog.md index 9a5d23f5..07b227e8 100644 --- a/uni_modules/uni-data-checkbox/changelog.md +++ b/uni_modules/uni-data-checkbox/changelog.md @@ -1,3 +1,5 @@ +## 0.1.5(2021-05-12) +- 新增 组件示例地址 ## 0.1.4(2021-04-09) - 修复 nvue 下无法选中的问题 ## 0.1.3(2021-03-22) diff --git a/uni_modules/uni-data-checkbox/package.json b/uni_modules/uni-data-checkbox/package.json index 42088c53..981601b9 100644 --- a/uni_modules/uni-data-checkbox/package.json +++ b/uni_modules/uni-data-checkbox/package.json @@ -1,7 +1,7 @@ { "id": "uni-data-checkbox", "displayName": "uni-data-checkbox 数据选择器", - "version": "0.1.4", + "version": "0.1.5", "description": "通过数据驱动的单选框和复选框", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-data-checkbox/readme.md b/uni_modules/uni-data-checkbox/readme.md index f376fa27..f1c32e40 100644 --- a/uni_modules/uni-data-checkbox/readme.md +++ b/uni_modules/uni-data-checkbox/readme.md @@ -291,3 +291,8 @@ export default { | @change| 选中状态改变时触发事件 | - | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/data-checkbox/data-checkbox](https://hellouniapp.dcloud.net.cn/pages/extUI/data-checkbox/data-checkbox) \ No newline at end of file diff --git a/uni_modules/uni-data-picker/changelog.md b/uni_modules/uni-data-picker/changelog.md index 11532c51..21e68bb3 100644 --- a/uni_modules/uni-data-picker/changelog.md +++ b/uni_modules/uni-data-picker/changelog.md @@ -1,3 +1,5 @@ +## 0.3.3(2021-05-12) +- 新增 组件示例地址 ## 0.3.2(2021-04-22) - 修复 非树形数据有 where 属性查询报错的问题 ## 0.3.1(2021-04-15) diff --git a/uni_modules/uni-data-picker/package.json b/uni_modules/uni-data-picker/package.json index 293ef1ff..2c06c222 100644 --- a/uni_modules/uni-data-picker/package.json +++ b/uni_modules/uni-data-picker/package.json @@ -1,7 +1,7 @@ { "id": "uni-data-picker", "displayName": "uni-data-picker 数据驱动的picker选择器", - "version": "0.3.2", + "version": "0.3.3", "description": "Picker选择器", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-data-picker/readme.md b/uni_modules/uni-data-picker/readme.md index 9c64fe96..078dd1cc 100644 --- a/uni_modules/uni-data-picker/readme.md +++ b/uni_modules/uni-data-picker/readme.md @@ -262,3 +262,8 @@ ``` + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/data-picker/data-picker](https://hellouniapp.dcloud.net.cn/pages/extUI/data-picker/data-picker) \ No newline at end of file diff --git a/uni_modules/uni-dateformat/changelog.md b/uni_modules/uni-dateformat/changelog.md index 9dee4463..72ad8297 100644 --- a/uni_modules/uni-dateformat/changelog.md +++ b/uni_modules/uni-dateformat/changelog.md @@ -1,3 +1,5 @@ +## 0.0.4(2021-05-12) +- 新增 组件示例地址 ## 0.0.3(2021-02-04) - 调整为uni_modules目录规范 - 修复 iOS 平台日期格式化出错的问题 diff --git a/uni_modules/uni-dateformat/package.json b/uni_modules/uni-dateformat/package.json index acfab114..6ab208a2 100644 --- a/uni_modules/uni-dateformat/package.json +++ b/uni_modules/uni-dateformat/package.json @@ -1,7 +1,7 @@ { "id": "uni-dateformat", "displayName": "uni-dateformat 日期格式化", - "version": "0.0.3", + "version": "0.0.4", "description": "日期格式化组件,可以将日期格式化为1分钟前、刚刚等形式", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-dateformat/readme.md b/uni_modules/uni-dateformat/readme.md index 21740d42..7d2da4aa 100644 --- a/uni_modules/uni-dateformat/readme.md +++ b/uni_modules/uni-dateformat/readme.md @@ -70,3 +70,8 @@ format接收字符以及含义如下: |SSS |三位毫秒(不足三位在前面补0) | |S |毫秒,不自动补0 | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/dateformat/dateformat](https://hellouniapp.dcloud.net.cn/pages/extUI/dateformat/dateformat) \ No newline at end of file diff --git a/uni_modules/uni-datetime-picker/changelog.md b/uni_modules/uni-datetime-picker/changelog.md index 0af7a5a2..ac2eac26 100644 --- a/uni_modules/uni-datetime-picker/changelog.md +++ b/uni_modules/uni-datetime-picker/changelog.md @@ -1,3 +1,5 @@ +## 2.0.4(2021-05-12) +- 新增 组件示例地址 ## 2.0.3(2021-05-10) - 修复 ios 下不识别 '-' 日期格式的 bug - 优化 pc 下弹出层添加边框和阴影 diff --git a/uni_modules/uni-datetime-picker/package.json b/uni_modules/uni-datetime-picker/package.json index a23d5d2a..f8e11aa4 100644 --- a/uni_modules/uni-datetime-picker/package.json +++ b/uni_modules/uni-datetime-picker/package.json @@ -1,7 +1,7 @@ { "id": "uni-datetime-picker", "displayName": "uni-datetime-picker 日期选择器", - "version": "2.0.3", + "version": "2.0.4", "description": "uni-datetime-picker 日期时间选择器,支持日历,支持范围选择", "keywords": [ "uni-datetime-picker", diff --git a/uni_modules/uni-datetime-picker/readme.md b/uni_modules/uni-datetime-picker/readme.md index 1823a4fd..863c034f 100644 --- a/uni_modules/uni-datetime-picker/readme.md +++ b/uni_modules/uni-datetime-picker/readme.md @@ -59,4 +59,8 @@ range|选择器类型 | |事件名称 |说明 |返回值 | |:-: |:-: |:-: | -|change |确定日期时间时触发的事件,参数为当前选择的日期对象 | 单选返回日期字符串,如:'2010-02-3';范围选返回日期字符串数组,如:['2020-10-1', '2021-4-1'] | \ No newline at end of file +|change |确定日期时间时触发的事件,参数为当前选择的日期对象 | 单选返回日期字符串,如:'2010-02-3';范围选返回日期字符串数组,如:['2020-10-1', '2021-4-1'] | + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/datetime-picker/datetime-picker](https://hellouniapp.dcloud.net.cn/pages/extUI/datetime-picker/datetime-picker) \ No newline at end of file diff --git a/uni_modules/uni-drawer/changelog.md b/uni_modules/uni-drawer/changelog.md index bd9ce336..c5cf8ac6 100644 --- a/uni_modules/uni-drawer/changelog.md +++ b/uni_modules/uni-drawer/changelog.md @@ -1,2 +1,4 @@ +## 1.0.7(2021-05-12) +- 新增 组件示例地址 ## 1.0.6(2021-02-04) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-drawer/package.json b/uni_modules/uni-drawer/package.json index cca9c3e3..80e68001 100644 --- a/uni_modules/uni-drawer/package.json +++ b/uni_modules/uni-drawer/package.json @@ -1,7 +1,7 @@ { "id": "uni-drawer", "displayName": "uni-drawer 抽屉", - "version": "1.0.6", + "version": "1.0.7", "description": "抽屉式导航,用于展示侧滑菜单,侧滑导航。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-drawer/readme.md b/uni_modules/uni-drawer/readme.md index 4fb4aeee..d4a8b15b 100644 --- a/uni_modules/uni-drawer/readme.md +++ b/uni_modules/uni-drawer/readme.md @@ -79,3 +79,8 @@ |close |关闭抽屉 |-| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/drawer/drawer](https://hellouniapp.dcloud.net.cn/pages/extUI/drawer/drawer) \ No newline at end of file diff --git a/uni_modules/uni-easyinput/changelog.md b/uni_modules/uni-easyinput/changelog.md index a95b4e2b..6283e161 100644 --- a/uni_modules/uni-easyinput/changelog.md +++ b/uni_modules/uni-easyinput/changelog.md @@ -1,3 +1,5 @@ +## 0.0.12(2021-05-12) +- 新增 组件示例地址 ## 0.0.11(2021-05-07) - 修复 input-border 属性不生效的问题 ## 0.0.10(2021-04-30) diff --git a/uni_modules/uni-easyinput/package.json b/uni_modules/uni-easyinput/package.json index 1717bf1d..24fe860e 100644 --- a/uni_modules/uni-easyinput/package.json +++ b/uni_modules/uni-easyinput/package.json @@ -1,7 +1,7 @@ { "id": "uni-easyinput", "displayName": "uni-easyinput 增强输入框", - "version": "0.0.11", + "version": "0.0.12", "description": "Easyinput 组件是对原生input组件的增强", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-easyinput/readme.md b/uni_modules/uni-easyinput/readme.md index 4d61363e..6c07243c 100644 --- a/uni_modules/uni-easyinput/readme.md +++ b/uni_modules/uni-easyinput/readme.md @@ -192,3 +192,8 @@ easyinput 组件是对原生input组件的增强 ,是专门为配合表单组 |@iconClick |点击图标时触发 | prefix/suffix | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/easyinput/easyinput](https://hellouniapp.dcloud.net.cn/pages/extUI/easyinput/easyinput) \ No newline at end of file diff --git a/uni_modules/uni-fab/changelog.md b/uni_modules/uni-fab/changelog.md index d8e69eb9..5b431218 100644 --- a/uni_modules/uni-fab/changelog.md +++ b/uni_modules/uni-fab/changelog.md @@ -1,3 +1,5 @@ +## 1.0.7(2021-05-12) +- 新增 组件示例地址 ## 1.0.6(2021-02-05) - 调整为uni_modules目录规范 - 优化 按钮背景色调整 diff --git a/uni_modules/uni-fab/package.json b/uni_modules/uni-fab/package.json index 62b69aeb..c86761d4 100644 --- a/uni_modules/uni-fab/package.json +++ b/uni_modules/uni-fab/package.json @@ -1,7 +1,7 @@ { "id": "uni-fab", "displayName": "uni-fab 悬浮按钮", - "version": "1.0.6", + "version": "1.0.7", "description": "悬浮按钮 fab button ,点击可展开一个图标按钮菜单。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-fab/readme.md b/uni_modules/uni-fab/readme.md index bfef1b8c..0ed6ce81 100644 --- a/uni_modules/uni-fab/readme.md +++ b/uni_modules/uni-fab/readme.md @@ -84,3 +84,8 @@ + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/fab/fab](https://hellouniapp.dcloud.net.cn/pages/extUI/fab/fab) \ No newline at end of file diff --git a/uni_modules/uni-fav/changelog.md b/uni_modules/uni-fav/changelog.md index 1d824b3f..ebb8b718 100644 --- a/uni_modules/uni-fav/changelog.md +++ b/uni_modules/uni-fav/changelog.md @@ -1,3 +1,5 @@ +## 1.0.6(2021-05-12) +- 新增 组件示例地址 ## 1.0.5(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 1.0.4(2021-02-05) diff --git a/uni_modules/uni-fav/package.json b/uni_modules/uni-fav/package.json index e88e852f..d3ec2c23 100644 --- a/uni_modules/uni-fav/package.json +++ b/uni_modules/uni-fav/package.json @@ -1,7 +1,7 @@ { "id": "uni-fav", "displayName": "uni-fav 收藏按钮", - "version": "1.0.5", + "version": "1.0.6", "description": " Fav 收藏组件,可自定义颜色、大小。", "keywords": [ "fav", diff --git a/uni_modules/uni-fav/readme.md b/uni_modules/uni-fav/readme.md index 59854003..83a01fca 100644 --- a/uni_modules/uni-fav/readme.md +++ b/uni_modules/uni-fav/readme.md @@ -43,3 +43,8 @@ |事件称名 |说明 |返回值 | |:-: |:-: |:-: | |click |点击 fav按钮 触发事件 |- | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/fav/fav](https://hellouniapp.dcloud.net.cn/pages/extUI/fav/fav) \ No newline at end of file diff --git a/uni_modules/uni-file-picker/changelog.md b/uni_modules/uni-file-picker/changelog.md index 8f891261..550fde76 100644 --- a/uni_modules/uni-file-picker/changelog.md +++ b/uni_modules/uni-file-picker/changelog.md @@ -1,3 +1,5 @@ +## 0.0.7(2021-05-12) +- 新增 组件示例地址 ## 0.0.6(2021-04-09) - 修复 选择的文件非 file-extname 字段指定的扩展名报错的Bug ## 0.0.5(2021-04-09) diff --git a/uni_modules/uni-file-picker/package.json b/uni_modules/uni-file-picker/package.json index 36af8251..547781d8 100644 --- a/uni_modules/uni-file-picker/package.json +++ b/uni_modules/uni-file-picker/package.json @@ -1,7 +1,7 @@ { "id": "uni-file-picker", "displayName": "uni-file-picker 文件选择上传", - "version": "0.0.6", + "version": "0.0.7", "description": "文件选择上传组件,可以选择图片、视频等任意文件并上传到当前绑定的服务空间", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-file-picker/readme.md b/uni_modules/uni-file-picker/readme.md index 7d360503..213c2fb5 100644 --- a/uni_modules/uni-file-picker/readme.md +++ b/uni_modules/uni-file-picker/readme.md @@ -294,3 +294,8 @@ export default { ``` + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/file-picker/file-picker](https://hellouniapp.dcloud.net.cn/pages/extUI/file-picker/file-picker) \ No newline at end of file diff --git a/uni_modules/uni-forms/changelog.md b/uni_modules/uni-forms/changelog.md index 86e4c391..fa2ce9f3 100644 --- a/uni_modules/uni-forms/changelog.md +++ b/uni_modules/uni-forms/changelog.md @@ -1,3 +1,5 @@ +## 1.0.43(2021-05-12) +- 新增 组件示例地址 ## 1.0.42(2021-04-30) - 修复 自定义检验器失效的问题 ## 1.0.41(2021-03-05) diff --git a/uni_modules/uni-forms/package.json b/uni_modules/uni-forms/package.json index a8428d09..8036729d 100644 --- a/uni_modules/uni-forms/package.json +++ b/uni_modules/uni-forms/package.json @@ -1,7 +1,7 @@ { "id": "uni-forms", "displayName": "uni-forms 表单", - "version": "1.0.42", + "version": "1.0.43", "description": "由输入框、选择器、单选框、多选框等控件组成,用以收集、校验、提交数据", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-forms/readme.md b/uni_modules/uni-forms/readme.md index 6c811c73..860fc198 100644 --- a/uni_modules/uni-forms/readme.md +++ b/uni_modules/uni-forms/readme.md @@ -533,3 +533,8 @@ this.$refs.form.clearValidate(['name', 'email']) | label-align |String | left |left/center/right | label的文字对齐方式| | label-position |String | left |top/left | label的文字的位置| | error-message |String | - |- | 显示的错误提示内容,如果为空字符串或者false,则不显示错误信息| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/forms/forms](https://hellouniapp.dcloud.net.cn/pages/extUI/forms/forms) \ No newline at end of file diff --git a/uni_modules/uni-goods-nav/changelog.md b/uni_modules/uni-goods-nav/changelog.md index 3b8a66c5..e29d7850 100644 --- a/uni_modules/uni-goods-nav/changelog.md +++ b/uni_modules/uni-goods-nav/changelog.md @@ -1,3 +1,5 @@ +## 1.0.7(2021-05-12) +- 新增 组件示例地址 ## 1.0.6(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 1.0.5(2021-02-05) diff --git a/uni_modules/uni-goods-nav/package.json b/uni_modules/uni-goods-nav/package.json index 3e6dcf63..39532e79 100644 --- a/uni_modules/uni-goods-nav/package.json +++ b/uni_modules/uni-goods-nav/package.json @@ -1,7 +1,7 @@ { "id": "uni-goods-nav", "displayName": "uni-goods-nav 商品导航", - "version": "1.0.6", + "version": "1.0.7", "description": "商品导航组件主要用于电商类应用底部导航,可自定义加入购物车,购买等操作", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-goods-nav/readme.md b/uni_modules/uni-goods-nav/readme.md index 3f9e0403..4e47bfda 100644 --- a/uni_modules/uni-goods-nav/readme.md +++ b/uni_modules/uni-goods-nav/readme.md @@ -104,4 +104,8 @@ export default { ### 插件预览地址 -[https://uniapp.dcloud.io/h5/pages/extUI/goods-nav/goods-nav](https://uniapp.dcloud.io/h5/pages/extUI/goods-nav/goods-nav) \ No newline at end of file +[https://uniapp.dcloud.io/h5/pages/extUI/goods-nav/goods-nav](https://uniapp.dcloud.io/h5/pages/extUI/goods-nav/goods-nav) + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/goods-nav/goods-nav](https://hellouniapp.dcloud.net.cn/pages/extUI/goods-nav/goods-nav) \ No newline at end of file diff --git a/uni_modules/uni-grid/changelog.md b/uni_modules/uni-grid/changelog.md index 4fa6a9be..8e6e81f7 100644 --- a/uni_modules/uni-grid/changelog.md +++ b/uni_modules/uni-grid/changelog.md @@ -1,2 +1,4 @@ +## 1.2.4(2021-05-12) +- 新增 组件示例地址 ## 1.2.3(2021-02-05) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-grid/package.json b/uni_modules/uni-grid/package.json index 7a477b04..c1d5f5df 100644 --- a/uni_modules/uni-grid/package.json +++ b/uni_modules/uni-grid/package.json @@ -1,7 +1,7 @@ { "id": "uni-grid", "displayName": "uni-grid 宫格", - "version": "1.2.3", + "version": "1.2.4", "description": "Grid 宫格组件,提供移动端常见的宫格布局,如九宫格。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-grid/readme.md b/uni_modules/uni-grid/readme.md index 34dfbb77..a7489547 100644 --- a/uni_modules/uni-grid/readme.md +++ b/uni_modules/uni-grid/readme.md @@ -88,3 +88,8 @@ |属性名|类型 |默认值 |说明 | |:-: |:-: |:-: |:-: | |index|Number |- |子组件的唯一标识 ,点击gird会返回当前的标识| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/grid/grid](https://hellouniapp.dcloud.net.cn/pages/extUI/grid/grid) \ No newline at end of file diff --git a/uni_modules/uni-group/changelog.md b/uni_modules/uni-group/changelog.md index ddaac006..8493853d 100644 --- a/uni_modules/uni-group/changelog.md +++ b/uni_modules/uni-group/changelog.md @@ -1,3 +1,5 @@ +## 1.0.3(2021-05-12) +- 新增 组件示例地址 ## 1.0.2(2021-02-05) - 调整为uni_modules目录规范 - 优化 兼容 nvue 页面 diff --git a/uni_modules/uni-group/package.json b/uni_modules/uni-group/package.json index f849cea0..b0dc7c27 100644 --- a/uni_modules/uni-group/package.json +++ b/uni_modules/uni-group/package.json @@ -1,7 +1,7 @@ { "id": "uni-group", "displayName": "uni-group 分组", - "version": "1.0.2", + "version": "1.0.3", "description": "分组组件可用于将组件用于分组,添加间隔,以产生明显的区块", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-group/readme.md b/uni_modules/uni-group/readme.md index dcce669f..9490e691 100644 --- a/uni_modules/uni-group/readme.md +++ b/uni_modules/uni-group/readme.md @@ -46,3 +46,8 @@ title|String|主标题| top|Number|分组间隔| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/group/group](https://hellouniapp.dcloud.net.cn/pages/extUI/group/group) \ No newline at end of file diff --git a/uni_modules/uni-icons/changelog.md b/uni_modules/uni-icons/changelog.md index 887bcdff..204f31b3 100644 --- a/uni_modules/uni-icons/changelog.md +++ b/uni_modules/uni-icons/changelog.md @@ -1,2 +1,4 @@ +## 1.1.5(2021-05-12) +- 新增 组件示例地址 ## 1.1.4(2021-02-05) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-icons/package.json b/uni_modules/uni-icons/package.json index e80c1789..c8e12248 100644 --- a/uni_modules/uni-icons/package.json +++ b/uni_modules/uni-icons/package.json @@ -1,7 +1,7 @@ { "id": "uni-icons", "displayName": "uni-icons 图标", - "version": "1.1.4", + "version": "1.1.5", "description": "图标组件,用于展示移动端常见的图标,可自定义颜色、大小。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-indexed-list/changelog.md b/uni_modules/uni-indexed-list/changelog.md index 36c9f9ee..a6fd7081 100644 --- a/uni_modules/uni-indexed-list/changelog.md +++ b/uni_modules/uni-indexed-list/changelog.md @@ -1,3 +1,5 @@ +## 1.0.11(2021-05-12) +- 新增 组件示例地址 ## 1.0.10(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 1.0.9(2021-02-05) diff --git a/uni_modules/uni-indexed-list/package.json b/uni_modules/uni-indexed-list/package.json index abf0c9da..3ac7f15b 100644 --- a/uni_modules/uni-indexed-list/package.json +++ b/uni_modules/uni-indexed-list/package.json @@ -1,7 +1,7 @@ { "id": "uni-indexed-list", "displayName": "uni-indexed-list 索引列表", - "version": "1.0.10", + "version": "1.0.11", "description": "索引列表", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-indexed-list/readme.md b/uni_modules/uni-indexed-list/readme.md index 484c2a62..4fb6a0a7 100644 --- a/uni_modules/uni-indexed-list/readme.md +++ b/uni_modules/uni-indexed-list/readme.md @@ -60,3 +60,8 @@ |事件名 |说明 |返回值 | |:-: |:-: |:-: | |click |点击列表事件 ,返回当前选择项的事件对象 |- | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/indexed-list/indexed-list](https://hellouniapp.dcloud.net.cn/pages/extUI/indexed-list/indexed-list) \ No newline at end of file diff --git a/uni_modules/uni-link/changelog.md b/uni_modules/uni-link/changelog.md index 79570ae6..1548e2e7 100644 --- a/uni_modules/uni-link/changelog.md +++ b/uni_modules/uni-link/changelog.md @@ -1,3 +1,5 @@ +## 0.0.4(2021-05-12) +- 新增 组件示例地址 ## 0.0.3(2021-03-09) - 新增 href 属性支持 tel:|mailto: diff --git a/uni_modules/uni-link/package.json b/uni_modules/uni-link/package.json index 3b738743..84e22a47 100644 --- a/uni_modules/uni-link/package.json +++ b/uni_modules/uni-link/package.json @@ -1,7 +1,7 @@ { "id": "uni-link", "displayName": "uni-link 超链接", - "version": "0.0.2", + "version": "0.0.4", "description": "uni-link是一个外部网页超链接组件,在小程序内复制url,在app内打开外部浏览器,在h5端打", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-link/readme.md b/uni_modules/uni-link/readme.md index fb180435..588b96df 100644 --- a/uni_modules/uni-link/readme.md +++ b/uni_modules/uni-link/readme.md @@ -34,3 +34,8 @@ uni-link是一个外部网页超链接组件,在小程序内复制url,在app |color |String |#999999 |链接文字颜色 | |fontSize |String |14 |链接文字大小,单位px | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/link/link](https://hellouniapp.dcloud.net.cn/pages/extUI/link/link) \ No newline at end of file diff --git a/uni_modules/uni-list/changelog.md b/uni_modules/uni-list/changelog.md index cc4ea776..e3338a96 100644 --- a/uni_modules/uni-list/changelog.md +++ b/uni_modules/uni-list/changelog.md @@ -1,3 +1,5 @@ +## 1.0.17(2021-05-12) +- 新增 组件示例地址 ## 1.0.16(2021-02-05) - 优化 组件引用关系,通过uni_modules引用组件 ## 1.0.15(2021-02-05) diff --git a/uni_modules/uni-list/package.json b/uni_modules/uni-list/package.json index 44eac686..3437e9e6 100644 --- a/uni_modules/uni-list/package.json +++ b/uni_modules/uni-list/package.json @@ -1,7 +1,7 @@ { "id": "uni-list", "displayName": "uni-list 列表", - "version": "1.0.16", + "version": "1.0.17", "description": "List 组件 ,帮助使用者快速构建列表。", "keywords": [ "", diff --git a/uni_modules/uni-list/readme.md b/uni_modules/uni-list/readme.md index 03d1db08..e4a5d73d 100644 --- a/uni_modules/uni-list/readme.md +++ b/uni_modules/uni-list/readme.md @@ -340,4 +340,8 @@ default | 自定义列表右侧内容(包括时间和角标显示) 1. 云端一体列表/宫格视图互切:[https://ext.dcloud.net.cn/plugin?id=2651](https://ext.dcloud.net.cn/plugin?id=2651) 2. 云端一体列表(宫格模式):[https://ext.dcloud.net.cn/plugin?id=2671](https://ext.dcloud.net.cn/plugin?id=2671) -3. 云端一体列表(列表模式):[https://ext.dcloud.net.cn/plugin?id=2672](https://ext.dcloud.net.cn/plugin?id=2672) \ No newline at end of file +3. 云端一体列表(列表模式):[https://ext.dcloud.net.cn/plugin?id=2672](https://ext.dcloud.net.cn/plugin?id=2672) + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/list/list](https://hellouniapp.dcloud.net.cn/pages/extUI/list/list) \ No newline at end of file diff --git a/uni_modules/uni-load-more/changelog.md b/uni_modules/uni-load-more/changelog.md index 7ed3afeb..42ffec12 100644 --- a/uni_modules/uni-load-more/changelog.md +++ b/uni_modules/uni-load-more/changelog.md @@ -1,3 +1,5 @@ +## 1.1.8(2021-05-12) +- 新增 组件示例地址 ## 1.1.7(2021-03-30) - 修复 uni-load-more 在首页使用时,h5 平台报 'uni is not defined' 的 bug ## 1.1.6(2021-02-05) diff --git a/uni_modules/uni-load-more/package.json b/uni_modules/uni-load-more/package.json index 081a3cbf..4fb61794 100644 --- a/uni_modules/uni-load-more/package.json +++ b/uni_modules/uni-load-more/package.json @@ -1,7 +1,7 @@ { "id": "uni-load-more", "displayName": "uni-load-more 加载更多", - "version": "1.1.7", + "version": "1.1.8", "description": "LoadMore 组件,常用在列表里面,做滚动加载使用。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-load-more/readme.md b/uni_modules/uni-load-more/readme.md index af17c9ab..b781fafd 100644 --- a/uni_modules/uni-load-more/readme.md +++ b/uni_modules/uni-load-more/readme.md @@ -63,3 +63,8 @@ |:-: |:-: |:-: | |clickLoadMore |点击加载更多时触发 |e.detail={status:'loading'}| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/load-more/load-more](https://hellouniapp.dcloud.net.cn/pages/extUI/load-more/load-more) \ No newline at end of file diff --git a/uni_modules/uni-nav-bar/changelog.md b/uni_modules/uni-nav-bar/changelog.md index cb3189a8..73c80f99 100644 --- a/uni_modules/uni-nav-bar/changelog.md +++ b/uni_modules/uni-nav-bar/changelog.md @@ -1,3 +1,5 @@ +## 1.0.11(2021-05-12) +- 新增 组件示例地址 ## 1.0.10(2021-04-30) - 修复 在nvue下fixed为true,宽度不能撑满的Bug ## 1.0.9(2021-04-21) diff --git a/uni_modules/uni-nav-bar/package.json b/uni_modules/uni-nav-bar/package.json index 38d159f3..d6bf311b 100644 --- a/uni_modules/uni-nav-bar/package.json +++ b/uni_modules/uni-nav-bar/package.json @@ -1,7 +1,7 @@ { "id": "uni-nav-bar", "displayName": "uni-nav-bar 自定义导航栏", - "version": "1.0.10", + "version": "1.0.11", "description": "自定义导航栏组件,主要用于头部导航。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-nav-bar/readme.md b/uni_modules/uni-nav-bar/readme.md index 920d6c58..fa34c8e6 100644 --- a/uni_modules/uni-nav-bar/readme.md +++ b/uni_modules/uni-nav-bar/readme.md @@ -64,4 +64,8 @@ export default { ### 插件预览地址 -[https://uniapp.dcloud.io/h5/pages/extUI/nav-bar/nav-bar](https://uniapp.dcloud.io/h5/pages/extUI/nav-bar/nav-bar) \ No newline at end of file +[https://uniapp.dcloud.io/h5/pages/extUI/nav-bar/nav-bar](https://uniapp.dcloud.io/h5/pages/extUI/nav-bar/nav-bar) + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/nav-bar/nav-bar](https://hellouniapp.dcloud.net.cn/pages/extUI/nav-bar/nav-bar) \ No newline at end of file diff --git a/uni_modules/uni-notice-bar/changelog.md b/uni_modules/uni-notice-bar/changelog.md index ebe04c6f..30e06a62 100644 --- a/uni_modules/uni-notice-bar/changelog.md +++ b/uni_modules/uni-notice-bar/changelog.md @@ -1,3 +1,5 @@ +## 1.0.9(2021-05-12) +- 新增 组件示例地址 ## 1.0.8(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 1.0.7(2021-02-05) diff --git a/uni_modules/uni-notice-bar/package.json b/uni_modules/uni-notice-bar/package.json index 91fcdd43..9e095685 100644 --- a/uni_modules/uni-notice-bar/package.json +++ b/uni_modules/uni-notice-bar/package.json @@ -1,7 +1,7 @@ { "id": "uni-notice-bar", "displayName": "uni-notice-bar 通告栏", - "version": "1.0.8", + "version": "1.0.9", "description": "NoticeBar 通告栏组件,常用于展示公告信息,可设为滚动公告", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-notice-bar/readme.md b/uni_modules/uni-notice-bar/readme.md index 7f9d40ab..f65c5788 100644 --- a/uni_modules/uni-notice-bar/readme.md +++ b/uni_modules/uni-notice-bar/readme.md @@ -64,3 +64,8 @@ |@click |点击 NoticeBar 触发事件 |- | |@close |关闭 NoticeBar 触发事件 |- | |@getmore |点击”查看更多“时触发事件 |- | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/notice-bar/notice-bar](https://hellouniapp.dcloud.net.cn/pages/extUI/notice-bar/notice-bar) \ No newline at end of file diff --git a/uni_modules/uni-number-box/changelog.md b/uni_modules/uni-number-box/changelog.md index b4033fdf..7e065097 100644 --- a/uni_modules/uni-number-box/changelog.md +++ b/uni_modules/uni-number-box/changelog.md @@ -1,3 +1,5 @@ +## 1.0.7(2021-05-12) +- 新增 组件示例地址 ## 1.0.6(2021-04-20) - 修复 uni-number-box 浮点数运算不精确的 bug - 修复 uni-number-box change 事件触发不正确的 bug diff --git a/uni_modules/uni-number-box/package.json b/uni_modules/uni-number-box/package.json index b8ce8db1..09f6c894 100644 --- a/uni_modules/uni-number-box/package.json +++ b/uni_modules/uni-number-box/package.json @@ -1,7 +1,7 @@ { "id": "uni-number-box", "displayName": "uni-number-box 数字输入框", - "version": "1.0.6", + "version": "1.0.7", "description": "NumberBox 带加减按钮的数字输入框组件,用户可以控制每次点击增加的数值,支持小数。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-number-box/readme.md b/uni_modules/uni-number-box/readme.md index 663e88dc..9c951e48 100644 --- a/uni_modules/uni-number-box/readme.md +++ b/uni_modules/uni-number-box/readme.md @@ -43,3 +43,8 @@ |change |输入框值改变时触发的事件,参数为输入框当前的 value |- | |focus |输入框聚焦时触发的事件,参数为 event 对象 |- | |blur |输入框失焦时触发的事件,参数为 event 对象 |- | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/number-box/number-box](https://hellouniapp.dcloud.net.cn/pages/extUI/number-box/number-box) \ No newline at end of file diff --git a/uni_modules/uni-pagination/changelog.md b/uni_modules/uni-pagination/changelog.md index 53ca60ab..c8725728 100644 --- a/uni_modules/uni-pagination/changelog.md +++ b/uni_modules/uni-pagination/changelog.md @@ -1,3 +1,5 @@ +## 1.0.7(2021-05-12) +- 新增 组件示例地址 ## 1.0.6(2021-04-12) - 新增 PC 和 移动端适配不同的 ui ## 1.0.5(2021-02-05) diff --git a/uni_modules/uni-pagination/package.json b/uni_modules/uni-pagination/package.json index 179f3f43..45c36e49 100644 --- a/uni_modules/uni-pagination/package.json +++ b/uni_modules/uni-pagination/package.json @@ -1,7 +1,7 @@ { "id": "uni-pagination", "displayName": "uni-pagination 分页器", - "version": "1.0.6", + "version": "1.0.7", "description": "Pagination 分页器组件,用于展示页码、请求数据等。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-pagination/readme.md b/uni_modules/uni-pagination/readme.md index f7f8747e..c8e47e3e 100644 --- a/uni_modules/uni-pagination/readme.md +++ b/uni_modules/uni-pagination/readme.md @@ -41,3 +41,8 @@ |事件称名 |说明 |返回值 | |:-: |:-: |:-: | |@change|点击页码按钮时触发 |e={type,current} current为当前页,type值为:next/prev,表示点击的是上一页还是下一个 | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/pagination/pagination](https://hellouniapp.dcloud.net.cn/pages/extUI/pagination/pagination) \ No newline at end of file diff --git a/uni_modules/uni-popup/changelog.md b/uni_modules/uni-popup/changelog.md index ec500d4c..dbb84d55 100644 --- a/uni_modules/uni-popup/changelog.md +++ b/uni_modules/uni-popup/changelog.md @@ -1,3 +1,5 @@ +## 1.4.2(2021-05-12) +- 新增 组件示例地址 ## 1.4.1(2021-04-29) - 修复 组件内放置 input 、textarea 组件,无法聚焦的问题 ## 1.4.0 (2021-04-29) diff --git a/uni_modules/uni-popup/package.json b/uni_modules/uni-popup/package.json index f8141c03..ea49d5a9 100644 --- a/uni_modules/uni-popup/package.json +++ b/uni_modules/uni-popup/package.json @@ -1,7 +1,7 @@ { "id": "uni-popup", "displayName": "uni-popup 弹出层", - "version": "1.4.1", + "version": "1.4.2", "description": " Popup 组件,提供常用的弹层", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-popup/readme.md b/uni_modules/uni-popup/readme.md index 14e10159..92ad31b4 100644 --- a/uni_modules/uni-popup/readme.md +++ b/uni_modules/uni-popup/readme.md @@ -287,3 +287,8 @@ export default { ## 帮助 在使用中如遇到无法解决的问题,请提 [Issues](https://github.com/dcloudio/uni-ui/issues) 给我们。 + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/popup/popup](https://hellouniapp.dcloud.net.cn/pages/extUI/popup/popup) \ No newline at end of file diff --git a/uni_modules/uni-rate/changelog.md b/uni_modules/uni-rate/changelog.md index fe3af0f4..36f29fbb 100644 --- a/uni_modules/uni-rate/changelog.md +++ b/uni_modules/uni-rate/changelog.md @@ -1,3 +1,5 @@ +## 1.1.2(2021-05-12) +- 新增 组件示例地址 ## 1.1.1(2021-04-21) - 修复 布局变化后 uni-rate 星星计算不准确的 bug - 优化 添加依赖 uni-icons, 导入 uni-rate 自动下载依赖 diff --git a/uni_modules/uni-rate/package.json b/uni_modules/uni-rate/package.json index df1c32aa..5d72c2d6 100644 --- a/uni_modules/uni-rate/package.json +++ b/uni_modules/uni-rate/package.json @@ -1,7 +1,7 @@ { "id": "uni-rate", "displayName": "uni-rate 评分", - "version": "1.1.1", + "version": "1.1.2", "description": "Rate 评分组件,可自定义评分星星图标的大小、间隔、评分数。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-rate/readme.md b/uni_modules/uni-rate/readme.md index bb4a2504..bb088001 100644 --- a/uni_modules/uni-rate/readme.md +++ b/uni_modules/uni-rate/readme.md @@ -100,3 +100,8 @@ touchable | Boolean | true | 是否支持滑动手势 事件称名 | 说明 | 返回参数 :-: | :-: | :-: @change | 改变 value 的值返回 | e = { value:number } + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/rate/rate](https://hellouniapp.dcloud.net.cn/pages/extUI/rate/rate) \ No newline at end of file diff --git a/uni_modules/uni-row/changelog.md b/uni_modules/uni-row/changelog.md index edcc1aa2..703a7b8a 100644 --- a/uni_modules/uni-row/changelog.md +++ b/uni_modules/uni-row/changelog.md @@ -1,3 +1,5 @@ +## 0.0.4(2021-05-12) +- 新增 组件示例地址 ## 0.0.3(2021-02-05) - 调整为uni_modules目录规范 - 新增uni-row组件 diff --git a/uni_modules/uni-row/package.json b/uni_modules/uni-row/package.json index 8d9f92d6..0df45ab6 100644 --- a/uni_modules/uni-row/package.json +++ b/uni_modules/uni-row/package.json @@ -1,7 +1,7 @@ { "id": "uni-row", "displayName": "uni-row 布局-行", - "version": "0.0.3", + "version": "0.0.4", "description": "流式栅格系统,随着屏幕或视口分为 24 份,可以迅速简便地创建布局。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-row/readme.md b/uni_modules/uni-row/readme.md index 91ce75cf..8013a9e4 100644 --- a/uni_modules/uni-row/readme.md +++ b/uni_modules/uni-row/readme.md @@ -176,3 +176,8 @@ | md | Number/object | - | - | 否 | 屏幕宽度`≥992px`时,要显示的栅格规则 | | lg | Number/object | - | - | 否 | 屏幕宽度`≥1200px`时,要显示的栅格规则 | | xl | Number/object | - | - | 否 | 屏幕宽度`≥1920px`时,要显示的栅格规则 | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/row/row](https://hellouniapp.dcloud.net.cn/pages/extUI/row/row) \ No newline at end of file diff --git a/uni_modules/uni-search-bar/changelog.md b/uni_modules/uni-search-bar/changelog.md index af759bad..1ab31280 100644 --- a/uni_modules/uni-search-bar/changelog.md +++ b/uni_modules/uni-search-bar/changelog.md @@ -1,3 +1,5 @@ +## 1.0.9(2021-05-12) +- 新增 项目示例地址 ## 1.0.8(2021-04-21) - 优化 添加依赖 uni-icons, 导入后自动下载依赖 ## 1.0.7(2021-04-15) diff --git a/uni_modules/uni-search-bar/package.json b/uni_modules/uni-search-bar/package.json index c6ff42c5..98f64a27 100644 --- a/uni_modules/uni-search-bar/package.json +++ b/uni_modules/uni-search-bar/package.json @@ -1,7 +1,7 @@ { "id": "uni-search-bar", "displayName": "uni-search-bar 搜索栏", - "version": "1.0.8", + "version": "1.0.9", "description": "搜索栏组件,通常用于搜索商品、文章等", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-search-bar/readme.md b/uni_modules/uni-search-bar/readme.md index 04653af2..b39d6cfc 100644 --- a/uni_modules/uni-search-bar/readme.md +++ b/uni_modules/uni-search-bar/readme.md @@ -79,3 +79,8 @@ ``` + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/search-bar/search-bar](https://hellouniapp.dcloud.net.cn/pages/extUI/search-bar/search-bar) \ No newline at end of file diff --git a/uni_modules/uni-segmented-control/changelog.md b/uni_modules/uni-segmented-control/changelog.md index aec4bdd1..c4234584 100644 --- a/uni_modules/uni-segmented-control/changelog.md +++ b/uni_modules/uni-segmented-control/changelog.md @@ -1,2 +1,4 @@ +## 1.0.5(2021-05-12) +- 新增 项目示例地址 ## 1.0.4(2021-02-05) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-segmented-control/package.json b/uni_modules/uni-segmented-control/package.json index aa88d79f..bfba9629 100644 --- a/uni_modules/uni-segmented-control/package.json +++ b/uni_modules/uni-segmented-control/package.json @@ -1,7 +1,7 @@ { "id": "uni-segmented-control", "displayName": "uni-segmented-control 分段器", - "version": "1.0.4", + "version": "1.0.5", "description": "分段器由至少 2 个分段控件组成,用作不同视图的显示", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-segmented-control/readme.md b/uni_modules/uni-segmented-control/readme.md index e060bb5a..47790169 100644 --- a/uni_modules/uni-segmented-control/readme.md +++ b/uni_modules/uni-segmented-control/readme.md @@ -53,3 +53,8 @@ |:-: |:-: |:-: | |@clickItem |组件触发点击事件时触发 |e={currentIndex} | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/segmented-control/segmented-control](https://hellouniapp.dcloud.net.cn/pages/extUI/segmented-control/segmented-control) \ No newline at end of file diff --git a/uni_modules/uni-steps/changelog.md b/uni_modules/uni-steps/changelog.md index 5892c073..f09183eb 100644 --- a/uni_modules/uni-steps/changelog.md +++ b/uni_modules/uni-steps/changelog.md @@ -1,3 +1,5 @@ +## 1.0.8(2021-05-12) +- 新增 项目示例地址 ## 1.0.7(2021-05-06) - 修复 uni-steps 横向布局时,多行文字高度不合理的 bug ## 1.0.6(2021-04-21) diff --git a/uni_modules/uni-steps/package.json b/uni_modules/uni-steps/package.json index 60a0ea54..70108b5d 100644 --- a/uni_modules/uni-steps/package.json +++ b/uni_modules/uni-steps/package.json @@ -1,7 +1,7 @@ { "id": "uni-steps", "displayName": "uni-steps 步骤条", - "version": "1.0.7", + "version": "1.0.8", "description": "步骤条组件,提供横向和纵向两种布局格式。", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-steps/readme.md b/uni_modules/uni-steps/readme.md index d002e7b2..d262e304 100644 --- a/uni_modules/uni-steps/readme.md +++ b/uni_modules/uni-steps/readme.md @@ -42,3 +42,8 @@ | :-: | :-: | | row | 横向 | | column | 纵向 | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/steps/steps](https://hellouniapp.dcloud.net.cn/pages/extUI/steps/steps) \ No newline at end of file diff --git a/uni_modules/uni-swipe-action/changelog.md b/uni_modules/uni-swipe-action/changelog.md index ab4e213c..57e4530d 100644 --- a/uni_modules/uni-swipe-action/changelog.md +++ b/uni_modules/uni-swipe-action/changelog.md @@ -1,3 +1,5 @@ +## 1.1.9(2021-05-12) +- 新增 项目示例地址 ## 1.1.8(2021-03-26) - 修复 微信小程序 nv_navigator is not defined 报错的bug ## 1.1.7(2021-02-05) diff --git a/uni_modules/uni-swipe-action/package.json b/uni_modules/uni-swipe-action/package.json index c4d73b0e..62b5468a 100644 --- a/uni_modules/uni-swipe-action/package.json +++ b/uni_modules/uni-swipe-action/package.json @@ -1,7 +1,7 @@ { "id": "uni-swipe-action", "displayName": "uni-swipe-action 滑动操作", - "version": "1.1.8", + "version": "1.1.9", "description": "SwipeAction 滑动操作操作组件", "keywords": [ "", diff --git a/uni_modules/uni-swipe-action/readme.md b/uni_modules/uni-swipe-action/readme.md index 276f3fe2..2492bf93 100644 --- a/uni_modules/uni-swipe-action/readme.md +++ b/uni_modules/uni-swipe-action/readme.md @@ -162,3 +162,8 @@ export default { > } > ``` + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/swipe-action/swipe-action](https://hellouniapp.dcloud.net.cn/pages/extUI/swipe-action/swipe-action) \ No newline at end of file diff --git a/uni_modules/uni-swiper-dot/changelog.md b/uni_modules/uni-swiper-dot/changelog.md index 48fc775a..f46f6289 100644 --- a/uni_modules/uni-swiper-dot/changelog.md +++ b/uni_modules/uni-swiper-dot/changelog.md @@ -1,3 +1,6 @@ +## 1.0.6(2021-05-12) +- 新增 示例地址 +- 修复 示例项目缺少组件的Bug ## 1.0.5(2021-02-05) - 调整为uni_modules目录规范 - 新增 clickItem 事件,支持指示点控制轮播 diff --git a/uni_modules/uni-swiper-dot/package.json b/uni_modules/uni-swiper-dot/package.json index fdbef252..6161c969 100644 --- a/uni_modules/uni-swiper-dot/package.json +++ b/uni_modules/uni-swiper-dot/package.json @@ -1,7 +1,7 @@ { "id": "uni-swiper-dot", "displayName": "uni-swiper-dot 轮播图指示点", - "version": "1.0.5", + "version": "1.0.6", "description": "自定义轮播图指示点组件", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-swiper-dot/readme.md b/uni_modules/uni-swiper-dot/readme.md index 4494b755..5ccfab8f 100644 --- a/uni_modules/uni-swiper-dot/readme.md +++ b/uni_modules/uni-swiper-dot/readme.md @@ -84,3 +84,8 @@ export default { |selectedBackgroundColor|Color | '#333' |已选择指示点背景色,**在 mode = nav 时不生效** | |selectedBorder |Border | '1px rgba(0, 0, 0, .9) solid' |已选择指示点边框样式,**在 mode = nav 时不生效** | + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/swiper-dot/swiper-dot](https://hellouniapp.dcloud.net.cn/pages/extUI/swiper-dot/swiper-dot) \ No newline at end of file diff --git a/uni_modules/uni-table/changelog.md b/uni_modules/uni-table/changelog.md index 923a08ee..583444d9 100644 --- a/uni_modules/uni-table/changelog.md +++ b/uni_modules/uni-table/changelog.md @@ -1,3 +1,6 @@ +## 1.0.4(2021-05-12) +- 新增 示例地址 +- 修复 示例项目缺少组件的Bug ## 1.0.3(2021-04-16) - 新增 sortable 属性,是否开启单列排序 - 优化 表格多选逻辑 diff --git a/uni_modules/uni-table/package.json b/uni_modules/uni-table/package.json index ed9f5b60..e617cde6 100644 --- a/uni_modules/uni-table/package.json +++ b/uni_modules/uni-table/package.json @@ -1,7 +1,7 @@ { "id": "uni-table", "displayName": "uni-table 表格", - "version": "1.0.3", + "version": "1.0.4", "description": "用于展示多条结构类似的数据", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-table/readme.md b/uni_modules/uni-table/readme.md index 7495d552..5e8c2e3a 100644 --- a/uni_modules/uni-table/readme.md +++ b/uni_modules/uni-table/readme.md @@ -121,3 +121,8 @@ selection-change | 开启多选时,当选择项发生变化时会触发该事 |属性名 |类型 |默认值 |可选值 |说明| |:-: |:-: |:-: |:-: |:-:| |align |Boolean| left |left/center/right | 单元格对齐方式| + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/table/table](https://hellouniapp.dcloud.net.cn/pages/extUI/table/table) \ No newline at end of file diff --git a/uni_modules/uni-title/changelog.md b/uni_modules/uni-title/changelog.md index f8e00971..beb70bb0 100644 --- a/uni_modules/uni-title/changelog.md +++ b/uni_modules/uni-title/changelog.md @@ -1,2 +1,5 @@ +## 1.0.2(2021-05-12) +- 新增 示例地址 +- 修复 示例项目缺少组件的Bug ## 1.0.1(2021-02-05) - 调整为uni_modules目录规范 diff --git a/uni_modules/uni-title/package.json b/uni_modules/uni-title/package.json index 2015ba6e..3391b684 100644 --- a/uni_modules/uni-title/package.json +++ b/uni_modules/uni-title/package.json @@ -1,7 +1,7 @@ { "id": "uni-title", "displayName": "uni-title 章节标题", - "version": "1.0.1", + "version": "1.0.2", "description": "章节标题,通常用于记录页面标题,使用当前组件,uni-app 如果开启统计,将会自动统计页面标题", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-title/readme.md b/uni_modules/uni-title/readme.md index 552bd646..26836023 100644 --- a/uni_modules/uni-title/readme.md +++ b/uni_modules/uni-title/readme.md @@ -64,4 +64,8 @@ title 组件可以与 uni统计集合使用,只要开启uni统计,即可自 |title |String |- |章节标题内容 | |align |String |- |对齐方式,可选值 left:左对齐;center:居中;right:右对齐; | |color |String |- |字体颜色 | -|stat |Boolean|- |是否开启统计功能呢,如不填写type值,默认为开启,填写 type 属性,默认为关闭 | \ No newline at end of file +|stat |Boolean|- |是否开启统计功能呢,如不填写type值,默认为开启,填写 type 属性,默认为关闭 | + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/title/title](https://hellouniapp.dcloud.net.cn/pages/extUI/title/title) \ No newline at end of file diff --git a/uni_modules/uni-transition/changelog.md b/uni_modules/uni-transition/changelog.md index b9b64fe2..9235ea62 100644 --- a/uni_modules/uni-transition/changelog.md +++ b/uni_modules/uni-transition/changelog.md @@ -1,3 +1,6 @@ +## 1.1.1(2021-05-12) +- 新增 示例地址 +- 修复 示例项目缺少组件的Bug ## 1.1.0(2021-04-22) - 新增 通过方法自定义动画 - 新增 custom-class 非 NVUE 平台支持自定义 class 定制样式 diff --git a/uni_modules/uni-transition/package.json b/uni_modules/uni-transition/package.json index 6a089378..065d49e5 100644 --- a/uni_modules/uni-transition/package.json +++ b/uni_modules/uni-transition/package.json @@ -1,7 +1,7 @@ { "id": "uni-transition", "displayName": "uni-transition 过渡动画", - "version": "1.1.0", + "version": "1.1.1", "description": "元素的简单过渡动画", "keywords": [ "uni-ui", diff --git a/uni_modules/uni-transition/readme.md b/uni_modules/uni-transition/readme.md index 7cbecb65..f3986238 100644 --- a/uni_modules/uni-transition/readme.md +++ b/uni_modules/uni-transition/readme.md @@ -390,3 +390,8 @@ this.$refs.ani.step({ }) ``` + + +## 组件示例 + +点击查看:[https://hellouniapp.dcloud.net.cn/pages/extUI/transition/transition](https://hellouniapp.dcloud.net.cn/pages/extUI/transition/transition) \ No newline at end of file