Skip to content

Commit

Permalink
chore(release): v1.3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
oasis-cloud committed Sep 14, 2022
1 parent 4060de1 commit 34ceb1c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## v1.3.3
`2022-09-14`
* :sparkles: chore: 组件 icon 自定义以及优化typing 导出 (#283) @oasis-cloud
* :sparkles: chore: sideEffects 优化 (#280) @oasis-cloud
* :sparkles: feat: drag组件增加单元测试 (#277) @irisSong
* :sparkles: feat: 适配jd小程序。 (#278) @xiaoyatong
* :bug: fix: 修复 button 组件 loading 效果 (#284) @oasis-cloud
* :bug: fix: countdown 组件 props 能力补全、demo 和文档国际化 (#279) @irisSong
* :bug: fix : rate组件taro适配 (#276) @libin0824

## v1.3.2
`2022-09-07`
* :sparkles: feat: Popover 新增国际化 (#260) @yangxiaolu1993
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nutui/nutui-react",
"version": "1.3.2",
"version": "1.3.3",
"style": "dist/style.css",
"main": "dist/nutui.react.umd.js",
"module": "dist/esm/nutui-react.es.js",
Expand Down
10 changes: 3 additions & 7 deletions src/packages/countdown/demo.taro.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ const CountDownDemo = () => {
<h2>显示天</h2>

<Cell>
<CountDown endTime={stateRef.current.endTime} showDays />
<CountDown endTime={stateRef.current.endTime} />
</Cell>

<h2>以服务端的时间为准</h2>
Expand All @@ -85,17 +85,13 @@ const CountDownDemo = () => {
<h2>显示为天时分秒</h2>

<Cell>
<CountDown
showDays
showPlainText
endTime={stateRef.current.endTime}
/>
<CountDown endTime={stateRef.current.endTime} />
</Cell>

<h2>异步更新结束时间</h2>

<Cell>
<CountDown showPlainText endTime={asyncEnd} />
<CountDown endTime={asyncEnd} />
</Cell>

<h2>控制开始和暂停的倒计时</h2>
Expand Down

0 comments on commit 34ceb1c

Please sign in to comment.