Skip to content

Commit e297cfa

Browse files
committed
chore: publish v0.6.2
1 parent b864570 commit e297cfa

File tree

100 files changed

+376
-439
lines changed

Some content is hidden

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

100 files changed

+376
-439
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,23 @@ spline: explain
44
toc: false
55
docClass: timeline
66
---
7+
## 0.6.2 `2022-3-14`
78

9+
### Bug Fixes
10+
11+
- Button:
12+
- 兼容不支持 `wx://form-field-button` 的版本 [#249](https://github.com/Tencent/tdesign-miniprogram/pull/249) [@anlyyao](https://github.com/anlyyao)
13+
- 修正 type 属性的正确实现 [#250](https://github.com/Tencent/tdesign-miniprogram/pull/250) [@anlyyao](https://github.com/anlyyao)
14+
- 修复在 form 下无法获取值的问题:
15+
- Input [#256](https://github.com/Tencent/tdesign-miniprogram/pull/256) [@anlyyao](https://github.com/anlyyao)
16+
- Checkbox、Radio、Switch [#257](https://github.com/Tencent/tdesign-miniprogram/pull/257) [@anlyyao](https://github.com/anlyyao)
17+
- Upload: 修复关闭按钮层级过低的问题 [#246](https://github.com/Tencent/tdesign-miniprogram/pull/246) [@Winfans ](https://github.com/Winfans )
18+
- Toast: 修复层级过低的问题 [f4f6b5b](https://github.com/Tencent/tdesign-miniprogram/commit/f4f6b5be9c0f770c54c9c3ac976dce3f57ca2591) [@LeeJim](https://github.com/LeeJim)
19+
20+
### Feature
21+
22+
- Button:
23+
- 新增 `customDataset` 属性,可通过 `event.currentTarget.dataset.custom` 获取 [#259](https://github.com/Tencent/tdesign-miniprogram/pull/259) [@anlyyao](https://github.com/anlyyao)
824
## 0.6.1 `2022-3-10`
925

1026
### Bug Fixes
@@ -15,8 +31,10 @@ docClass: timeline
1531
- Button: 属性 shape 的默认值改为 rectangle [#240](https://github.com/Tencent/tdesign-miniprogram/pull/240) [@anlyyao](https://github.com/anlyyao)
1632
- Rate: 修复 `value = 0` 时无法点击的问题 [#242](https://github.com/Tencent/tdesign-miniprogram/pull/242) [@zhenzhencai](https://github.com/zhenzhencai)
1733
- Grid: 修复样式问题 [#243](https://github.com/Tencent/tdesign-miniprogram/pull/243) [@xihangzhou](https://github.com/xihangzhou)
34+
1835
## 0.6.0 `2022-3-8`
1936
### Bug Fixes
37+
2038
- Stepper: 修复 Stepper 组件事件向上冒泡 [#216](https://github.com/Tencent/tdesign-miniprogram/pull/216) [@zhenzhencai](https://github.com/zhenzhencai)
2139
- Checkbox: 修复 prefix 问题 [#218](https://github.com/Tencent/tdesign-miniprogram/pull/218) [@amberlwan](https://github.com/amberlwan)
2240
- Popup: 支持默认 slot [#219](https://github.com/Tencent/tdesign-miniprogram/pull/219) [@Perisiguiendo](https://github.com/Perisiguiendo)
@@ -28,6 +46,7 @@ docClass: timeline
2846
- 修复 z-index 低于 Popup 问题 [#233](https://github.com/Tencent/tdesign-miniprogram/pull/233) [@LeeJim](https://github.com/LeeJim)
2947

3048
### BREAKING CHANGES
49+
3150
- Button: [#212](https://github.com/Tencent/tdesign-miniprogram/pull/212) [@anlyyao](https://github.com/anlyyao)
3251
- 重构 shape 的实现,新增支持 rectangle、circle 类型
3352
- 修复 shape = round 样式不对的问题

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tdesign-miniprogram",
33
"purename": "tdesign",
4-
"version": "0.6.1",
4+
"version": "0.6.2",
55
"description": "tdesign-miniprogram",
66
"title": "tdesign-miniprogram",
77
"main": "miniprogram_dist/index.js",

tdesign-miniprogram/avatar/avatar.wxml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</view>
3030
</view>
3131
<t-badge
32-
class="{{prefix}}-badge__{{shape === 'circle' ? 'circle' : 'round'}}"
32+
class="{{prefix}}-badge-host {{prefix}}-badge__{{shape === 'circle' ? 'circle' : 'round'}}"
3333
wx:if="{{badgeProps.dot || badgeProps.count}}"
3434
color="{{badgeProps.color}}"
3535
count="{{badgeProps.count}}"

tdesign-miniprogram/avatar/avatar.wxss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
color: #0052d9;
4343
border-radius: 999rpx;
4444
}
45-
.t-avatar__wrapper t-badge {
45+
.t-avatar__wrapper .t-badge-host {
4646
position: absolute;
4747
}
4848
.t-avatar__wrapper .t-badge__round {

tdesign-miniprogram/avatar/avatar.wxss.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tdesign-miniprogram/back-top/back-top.wxss.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)