Skip to content

Commit 183ec79

Browse files
committed
+ uni-ui 新增 uni-goods-nav 组件角标的前景色和背景设置
+ uni-ui 新增 uni-drawer 组件 width 属性修改,仅在 vue 页面生效 + uni-ui 新增 uni-drawer 组件 maskClikc 属性,点击遮罩是否可以关闭抽屉 + uni-ui 新增 uni-drawer 组件滚动内容示例 + uni-ui 新增 uni-popup 组件的信息提示、对话框、底部分享示例三种扩展样式 + uni-ui 优化 uni-popup 组件部分代码逻辑,可支持自定义扩展组件 + uni-ui 优化 uni-drawer 组件废弃 visible 属性,改用 open、close 方法开关抽屉,避免在某些场景不能正常关闭的 Bug + uni-ui 修复 uni-goods-nav 组件 buttonGroup 属性修改 color 不生效的Bug + uni-ui 修复 uni-drawer 组件 close 回调执行两遍的 Bug + uni-ui 修复 uni-popup 组件内放置 input/textarea 获取不到焦点的 Bug + uni-ui 修复 uni-swipe-action 组件按钮点击失效或点击错位的 Bug + uni-ui 修复 uni-swipe-action 组件在 ios13 中关闭组件不能触发按钮点击事件的 Bug
1 parent c4f7156 commit 183ec79

File tree

68 files changed

+1703
-901
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

68 files changed

+1703
-901
lines changed

components/uni-badge/uni-badge.vue

+2
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,8 @@
6969
.uni-badge {
7070
/* #ifndef APP-PLUS */
7171
display: flex;
72+
box-sizing: border-box;
73+
overflow: hidden;
7274
/* #endif */
7375
justify-content: center;
7476
flex-direction: row;

components/uni-calendar/uni-calendar-item.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,12 @@
8585
}
8686
8787
.uni-calendar-item__weeks-box-text {
88-
font-size: 28rpx;
88+
font-size: 14px;
8989
color: #333;
9090
}
9191
9292
.uni-calendar-item__weeks-lunar-text {
93-
font-size: 24rpx;
93+
font-size: 12px;
9494
color: #333;
9595
}
9696

components/uni-calendar/uni-calendar.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@
336336
.uni-calendar__header-text {
337337
text-align: center;
338338
width: 100px;
339-
font-size: 28rpx;
339+
font-size: 14px;
340340
color: #333;
341341
}
342342

0 commit comments

Comments
 (0)