Skip to content

Commit bd1b660

Browse files
authored
Merge pull request #602 from Tencent/docs/version/0.12.2
docs: release 0.12.2
2 parents 6f4c7a0 + d350d2e commit bd1b660

File tree

5 files changed

+33
-21
lines changed

5 files changed

+33
-21
lines changed

CHANGELOG.md

Lines changed: 26 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,36 @@
1-
### 🌈 1.12.1 2022-04-17
2-
3-
### 🚀 Features
4-
- `Card` 新增卡片组件 [@zhwachen](https://github.com/zhwachen) ([#530](https://github.com/Tencent/tdesign-vue-next/pull/530))
5-
- `Form` 优化 样式 & 默认渲染 extra 节点 [@HQ-Lin](https://github.com/HQ-Lin) ([#572](https://github.com/Tencent/tdesign-vue-next/pull/572))
6-
7-
### 🐞 Bug Fixes
8-
- `Calendar`修复日历组件 cell 和 cellAppend 插槽在 build 版本不生效的问题 [@PsTiu](https://github.com/PsTiu) ([#564](https://github.com/Tencent/tdesign-vue-next/pull/564))
9-
- `Checkbox` 修复组件开发时,热更新导致的 provide & inject 失效 [@k1nz](https://github.com/k1nz) ([#561](https://github.com/Tencent/tdesign-vue-next/pull/561))
10-
- `Collapse` 异步获取 panel 列表优化 [@asbstty](https://github.com/asbstty) ([#571](https://github.com/Tencent/tdesign-vue-next/pull/571))
11-
- `Timepicker` 修复手动清空 value 的异常 [@uyarn](https://github.com/uyarn) ([#575](https://github.com/Tencent/tdesign-vue-next/pull/575))
12-
13-
### 🚧 Others
14-
- `Transfer` 使用composition api 重构 [@btea](https://github.com/btea) ([#496](https://github.com/Tencent/tdesign-vue-next/pull/496))
15-
16-
171
---
182
title: 更新日志
193
spline: explain
204
toc: false
215
docClass: timeline
226
---
237

8+
### 🌈 1.12.2 2022-04-19
9+
10+
### 🐞 Bug Fixes
11+
12+
- `Transfer` 修复设置 targetSort 后未按预期展示的问题 [@BigLiao](https://github.com/BigLiao) ([#599](https://github.com/Tencent/tdesign-vue-next/pull/599))
13+
- `Anchor`: 修复 click 事件参数不正确 [@pengYYYYY](https://github.com/pengYYYYY) ([#589](https://github.com/Tencent/tdesign-vue-next/pull/589))
14+
- 修复 slider 引起的产物报错 [@pengYYYYY](https://github.com/pengYYYYY)
15+
16+
### 🌈 1.12.1 2022-04-17
17+
18+
### 🚀 Features
19+
20+
- `Card` 新增卡片组件 [@zhwachen](https://github.com/zhwachen) ([#530](https://github.com/Tencent/tdesign-vue-next/pull/530))
21+
- `Form` 优化 样式 & 默认渲染 extra 节点 [@HQ-Lin](https://github.com/HQ-Lin) ([#572](https://github.com/Tencent/tdesign-vue-next/pull/572))
22+
23+
### 🐞 Bug Fixes
24+
25+
- `Calendar`修复日历组件 cell 和 cellAppend 插槽在 build 版本不生效的问题 [@PsTiu](https://github.com/PsTiu) ([#564](https://github.com/Tencent/tdesign-vue-next/pull/564))
26+
- `Checkbox` 修复组件开发时,热更新导致的 provide & inject 失效 [@k1nz](https://github.com/k1nz) ([#561](https://github.com/Tencent/tdesign-vue-next/pull/561))
27+
- `Collapse` 异步获取 panel 列表优化 [@asbstty](https://github.com/asbstty) ([#571](https://github.com/Tencent/tdesign-vue-next/pull/571))
28+
- `Timepicker` 修复手动清空 value 的异常 [@uyarn](https://github.com/uyarn) ([#575](https://github.com/Tencent/tdesign-vue-next/pull/575))
29+
30+
### 🚧 Others
31+
32+
- `Transfer` 使用composition api 重构 [@btea](https://github.com/btea) ([#496](https://github.com/Tencent/tdesign-vue-next/pull/496))
33+
2434
## 0.12.0 `2022-04-08`
2535

2636
### ❗ Breaking Changes

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "tdesign-vue-next",
33
"purename": "tdesign",
4-
"version": "0.12.1",
4+
"version": "0.12.2",
55
"title": "tdesign-vue-next",
66
"description": "TDesign Component for vue-next",
77
"keywords": [
@@ -183,4 +183,4 @@
183183
"eslint --fix"
184184
]
185185
}
186-
}
186+
}

src/slider/hooks/style/css.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '../../style/index.css';

src/slider/hooks/style/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import '../../style/index.js';

src/slider/hooks/useSliderInput.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { computed, reactive, ComputedRef, watch } from 'vue';
2-
import { TdSliderProps } from '..';
3-
import InputNumber, { InputNumberProps } from '../../input-number/index';
1+
import { computed, ComputedRef } from 'vue';
2+
import { TdSliderProps } from '../type';
3+
import InputNumber, { InputNumberProps } from '../../input-number';
44

55
/**
66
* 聚合管理inputNumber渲染逻辑

0 commit comments

Comments
 (0)