Skip to content

Commit

Permalink
fix(Demo-Progress): 为 Demo Progress 进度条添加 active 状态演示 (#2860)
Browse files Browse the repository at this point in the history
* 为 Demo Progress 进度条添加 active 状态

* 啊,没注意到还有快照
  • Loading branch information
ArcticFoxPro authored Jun 12, 2024
1 parent 0ce986f commit 2f72b33
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/progress/__test__/__snapshots__/demo.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ exports[`Progress Progress line demo works fine 1`] = `
percentage="88"
status="success"
/>
<t-progress
percentage="88"
status="active"
/>
</line>
`;

Expand All @@ -101,6 +105,11 @@ exports[`Progress Progress plump demo works fine 1`] = `
status="success"
theme="plump"
/>
<t-progress
percentage="88"
status="active"
theme="plump"
/>
</plump>
`;

Expand Down
1 change: 1 addition & 0 deletions src/progress/_example/line/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
<t-progress percentage="88" status="warning" />
<t-progress percentage="88" status="error" />
<t-progress percentage="88" status="success" />
<t-progress percentage="88" status="active" />
1 change: 1 addition & 0 deletions src/progress/_example/plump/index.wxml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
<t-progress theme="plump" percentage="88" status="warning" />
<t-progress theme="plump" percentage="88" status="error" />
<t-progress theme="plump" percentage="88" status="success" />
<t-progress theme="plump" percentage="88" status="active" />

0 comments on commit 2f72b33

Please sign in to comment.