Skip to content

Commit

Permalink
release 3.2.14
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjinzhou committed Nov 7, 2022
1 parent fbf1c78 commit 7c35bcf
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 16 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.en-US.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@

---

## 3.2.14

`2022-11-07`

- 🐞 Fix the problem of dynamic theme failure when custom `prefixCls` [#6063](https://github.com/vueComponent/ant-design-vue/issues/6063)
- 🐞 Fix `DatePicker` error when using select and other popup components as slots [#6062](https://github.com/vueComponent/ant-design-vue/issues/6062)
- 🐞 Fix `DirectoryTree` not exposing scrollTo method [#6067](https://github.com/vueComponent/ant-design-vue/issues/6067)
- 🐞 Fix `RangePicker` popup position does not change [#6073](https://github.com/vueComponent/ant-design-vue/issues/6073)

## 3.2.13

`2022-10-08`
Expand Down
9 changes: 9 additions & 0 deletions CHANGELOG.zh-CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@

---

## 3.2.14

`2022-11-07`

- 🐞 修复自定义 `prefixCls` 时,动态主题失效问题 [#6063](https://github.com/vueComponent/ant-design-vue/issues/6063)
- 🐞 修复 `DatePicker` 使用 select 等弹窗组件作为插槽时,报错问题 [#6062](https://github.com/vueComponent/ant-design-vue/issues/6062)
- 🐞 修复 `DirectoryTree` 未暴露 scrollTo 方法 [#6067](https://github.com/vueComponent/ant-design-vue/issues/6067)
- 🐞 修复 `RangePicker` 弹窗位置不改变问题 [#6073](https://github.com/vueComponent/ant-design-vue/issues/6073)

## 3.2.13

`2022-10-08`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ exports[`Popconfirm should show overlay when trigger is clicked 1`] = `
<div class="ant-popover-message"><span role="img" aria-label="exclamation-circle" class="anticon anticon-exclamation-circle"><svg focusable="false" class="" data-icon="exclamation-circle" width="1em" height="1em" fill="currentColor" aria-hidden="true" viewBox="64 64 896 896"><path d="M512 64C264.6 64 64 264.6 64 512s200.6 448 448 448 448-200.6 448-448S759.4 64 512 64zm-32 232c0-4.4 3.6-8 8-8h48c4.4 0 8 3.6 8 8v272c0 4.4-3.6 8-8 8h-48c-4.4 0-8-3.6-8-8V296zm32 440a48.01 48.01 0 010-96 48.01 48.01 0 010 96z"></path></svg></span>
<div class="ant-popover-message-title">code</div>
</div>
<div class="ant-popover-buttons"><button class="ant-btn ant-btn-sm" type="button">
<!----><span>Cancel</span>
</button><button class="ant-btn ant-btn-primary ant-btn-sm" type="button">
<!----><span>OK</span>
</button></div>
<div class="ant-popover-buttons"><button class="ant-btn ant-btn-sm" type="button"><!----><span>Cancel</span></button><button class="ant-btn ant-btn-primary ant-btn-sm" type="button"><!----><span>OK</span></button></div>
</div>
</div>
</div>
Expand Down
14 changes: 4 additions & 10 deletions components/slider/__tests__/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,13 @@ exports[`Slider should show tooltip when hovering slider handler 1`] = `
<div tabindex="-1" class="ant-slider">
<div class="ant-slider-rail"></div>
<div class="ant-slider-track" style="left: 0%; width: 30%;"></div>
<div class="ant-slider-step"></div>
<!--teleport start-->
<!--teleport end-->
<div class="ant-slider-step"></div><!--teleport start--><!--teleport end-->
<div class="ant-tooltip-open ant-slider-handle" style="left: 30%; transform: translateX(-50%);" role="slider" tabindex="0" aria-valuemin="0" aria-valuemax="100" aria-valuenow="30" aria-disabled="false"></div>
<div class="ant-slider-mark"></div>
</div>
</div>
<div style="position: absolute; top: 0px; left: 0px; width: 100%;">
<div>
<!---->
<div><!---->
<div class="ant-tooltip ant-slider-tooltip" style="">
<div class="ant-tooltip-content">
<div class="ant-tooltip-arrow"><span class="ant-tooltip-arrow-content"></span></div>
Expand All @@ -32,16 +29,13 @@ exports[`Slider should show tooltip when hovering slider handler 2`] = `
<div tabindex="-1" class="ant-slider">
<div class="ant-slider-rail"></div>
<div class="ant-slider-track" style="left: 0%; width: 30%;"></div>
<div class="ant-slider-step"></div>
<!--teleport start-->
<!--teleport end-->
<div class="ant-slider-step"></div><!--teleport start--><!--teleport end-->
<div class="ant-slider-handle" style="left: 30%; transform: translateX(-50%);" role="slider" tabindex="0" aria-valuemin="0" aria-valuemax="100" aria-valuenow="30" aria-disabled="false"></div>
<div class="ant-slider-mark"></div>
</div>
</div>
<div style="position: absolute; top: 0px; left: 0px; width: 100%;">
<div>
<!---->
<div><!---->
<div class="ant-tooltip ant-slider-tooltip" style="display: none;">
<div class="ant-tooltip-content">
<div class="ant-tooltip-arrow"><span class="ant-tooltip-arrow-content"></span></div>
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": "ant-design-vue",
"version": "3.2.13",
"version": "3.2.14",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [
Expand Down

0 comments on commit 7c35bcf

Please sign in to comment.