File tree Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Expand file tree Collapse file tree 4 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 44
44
- 💄 优化 Upload 操作按钮的样式细节。
45
45
- 🐞 修复 Switch 在暗黑主题下关闭时的颜色问题。
46
46
47
+ ##3 .2.4
48
+
49
+ ` 2022-05-23 `
50
+
51
+ - 🐞 Fix InputNumber v-model type error [ #5577 ] ( https://github.com/vueComponent/ant-design-vue/issues/5677 )
52
+ - 🌟 Select supports global size [ #5590 ] ( https://github.com/vueComponent/ant-design-vue/issues/5590 )
53
+ - 🐞 Form clearValidate resetValidate support array [ #5619 ] ( https://github.com/vueComponent/ant-design-vue/issues/5619 )
54
+ - 🐞 Drawer custom closeIcon does not take effect [ #5616 ] ( https://github.com/vueComponent/ant-design-vue/issues/5616 )
55
+ - 🌟 Fix CountDown support dayjs [ #5edca6] ( https://github.com/vueComponent/ant-design-vue/commit/5edca6be5a4e1aee9cde46724b14900f6c86bfb2 )
56
+ - 🌟 Tree support scrollTo [ #5626 ] ( https://github.com/vueComponent/ant-design-vue/issues/5626 )
57
+ - 🐞 Tooltip disabled class name error [ #5627 ] ( https://github.com/vueComponent/ant-design-vue/issues/5627 )
58
+
47
59
## 3.2.3
48
60
49
61
` 2022-05-05 `
Original file line number Diff line number Diff line change 44
44
- 💄 优化 Upload 操作按钮的样式细节。
45
45
- 🐞 修复 Switch 在暗黑主题下关闭时的颜色问题。
46
46
47
+ ## 3.2.4
48
+
49
+ ` 2022-05-23 `
50
+
51
+ - 🐞 修复 InputNumber v-model 类型错误 [ #5577 ] ( https://github.com/vueComponent/ant-design-vue/issues/5677 )
52
+ - 🌟 Select 支持全局 size [ #5590 ] ( https://github.com/vueComponent/ant-design-vue/issues/5590 )
53
+ - 🐞 Form clearValidate resetValidate 支持数组 [ #5619 ] ( https://github.com/vueComponent/ant-design-vue/issues/5619 )
54
+ - 🐞 Drawer 自定义 closeIcon 不生效问题 [ #5616 ] ( https://github.com/vueComponent/ant-design-vue/issues/5616 )
55
+ - 🌟 修复 CountDown 支持 dayjs [ #5edca6] ( https://github.com/vueComponent/ant-design-vue/commit/5edca6be5a4e1aee9cde46724b14900f6c86bfb2 )
56
+ - 🌟 Tree 支持 scrollTo [ #5626 ] ( https://github.com/vueComponent/ant-design-vue/issues/5626 )
57
+ - 🐞 Tooltip disabled 类名错误问题 [ #5627 ] ( https://github.com/vueComponent/ant-design-vue/issues/5627 )
58
+
47
59
## 3.2.3
48
60
49
61
` 2022-05-05 `
Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ export default defineComponent({
158
158
display : 'inline-block' , // default inline-block is important
159
159
...picked ,
160
160
cursor : 'not-allowed' ,
161
+ lineHeight : 1 , // use the true height of child nodes
161
162
width : ele . props && ele . props . block ? '100%' : null ,
162
163
} ;
163
164
const buttonStyle = {
@@ -172,7 +173,7 @@ export default defineComponent({
172
173
true ,
173
174
) ;
174
175
return (
175
- < span style = { spanStyle } class = { `${ prefixCls } -disabled-compatible-wrapper` } >
176
+ < span style = { spanStyle } class = { `${ prefixCls . value } -disabled-compatible-wrapper` } >
176
177
{ child }
177
178
</ span >
178
179
) ;
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ant-design-vue" ,
3
- "version" : " 3.2.3 " ,
3
+ "version" : " 3.2.4 " ,
4
4
"title" : " Ant Design Vue" ,
5
5
"description" : " An enterprise-class UI design language and Vue-based implementation" ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments