Merge branch 'main' into feat-v3.3
commit
9280b418d7
|
@ -44,6 +44,18 @@
|
||||||
- ๐ ไผๅ Upload ๆไฝๆ้ฎ็ๆ ทๅผ็ป่ใ
|
- ๐ ไผๅ Upload ๆไฝๆ้ฎ็ๆ ทๅผ็ป่ใ
|
||||||
- ๐ ไฟฎๅค Switch ๅจๆ้ปไธป้ขไธๅ
ณ้ญๆถ็้ข่ฒ้ฎ้ขใ
|
- ๐ ไฟฎๅค Switch ๅจๆ้ปไธป้ขไธๅ
ณ้ญๆถ็้ข่ฒ้ฎ้ขใ
|
||||||
|
|
||||||
|
##3.2.4
|
||||||
|
|
||||||
|
`2022-05-23`
|
||||||
|
|
||||||
|
- ๐ Fix InputNumber v-model type error [#5577](https://github.com/vueComponent/ant-design-vue/issues/5677)
|
||||||
|
- ๐ Select supports global size [#5590](https://github.com/vueComponent/ant-design-vue/issues/5590)
|
||||||
|
- ๐ Form clearValidate resetValidate support array [#5619](https://github.com/vueComponent/ant-design-vue/issues/5619)
|
||||||
|
- ๐ Drawer custom closeIcon does not take effect [#5616](https://github.com/vueComponent/ant-design-vue/issues/5616)
|
||||||
|
- ๐ Fix CountDown support dayjs [#5edca6](https://github.com/vueComponent/ant-design-vue/commit/5edca6be5a4e1aee9cde46724b14900f6c86bfb2)
|
||||||
|
- ๐ Tree support scrollTo [#5626](https://github.com/vueComponent/ant-design-vue/issues/5626)
|
||||||
|
- ๐ Tooltip disabled class name error [#5627](https://github.com/vueComponent/ant-design-vue/issues/5627)
|
||||||
|
|
||||||
## 3.2.3
|
## 3.2.3
|
||||||
|
|
||||||
`2022-05-05`
|
`2022-05-05`
|
||||||
|
|
|
@ -44,6 +44,18 @@
|
||||||
- ๐ ไผๅ Upload ๆไฝๆ้ฎ็ๆ ทๅผ็ป่ใ
|
- ๐ ไผๅ Upload ๆไฝๆ้ฎ็ๆ ทๅผ็ป่ใ
|
||||||
- ๐ ไฟฎๅค Switch ๅจๆ้ปไธป้ขไธๅ
ณ้ญๆถ็้ข่ฒ้ฎ้ขใ
|
- ๐ ไฟฎๅค Switch ๅจๆ้ปไธป้ขไธๅ
ณ้ญๆถ็้ข่ฒ้ฎ้ขใ
|
||||||
|
|
||||||
|
## 3.2.4
|
||||||
|
|
||||||
|
`2022-05-23`
|
||||||
|
|
||||||
|
- ๐ ไฟฎๅค InputNumber v-model ็ฑปๅ้่ฏฏ [#5577](https://github.com/vueComponent/ant-design-vue/issues/5677)
|
||||||
|
- ๐ Select ๆฏๆๅ
จๅฑ size [#5590](https://github.com/vueComponent/ant-design-vue/issues/5590)
|
||||||
|
- ๐ Form clearValidate resetValidate ๆฏๆๆฐ็ป [#5619](https://github.com/vueComponent/ant-design-vue/issues/5619)
|
||||||
|
- ๐ Drawer ่ชๅฎไน closeIcon ไธ็ๆ้ฎ้ข [#5616](https://github.com/vueComponent/ant-design-vue/issues/5616)
|
||||||
|
- ๐ ไฟฎๅค CountDown ๆฏๆ dayjs [#5edca6](https://github.com/vueComponent/ant-design-vue/commit/5edca6be5a4e1aee9cde46724b14900f6c86bfb2)
|
||||||
|
- ๐ Tree ๆฏๆ scrollTo [#5626](https://github.com/vueComponent/ant-design-vue/issues/5626)
|
||||||
|
- ๐ Tooltip disabled ็ฑปๅ้่ฏฏ้ฎ้ข [#5627](https://github.com/vueComponent/ant-design-vue/issues/5627)
|
||||||
|
|
||||||
## 3.2.3
|
## 3.2.3
|
||||||
|
|
||||||
`2022-05-05`
|
`2022-05-05`
|
||||||
|
|
|
@ -158,6 +158,7 @@ export default defineComponent({
|
||||||
display: 'inline-block', // default inline-block is important
|
display: 'inline-block', // default inline-block is important
|
||||||
...picked,
|
...picked,
|
||||||
cursor: 'not-allowed',
|
cursor: 'not-allowed',
|
||||||
|
lineHeight: 1, // use the true height of child nodes
|
||||||
width: ele.props && ele.props.block ? '100%' : null,
|
width: ele.props && ele.props.block ? '100%' : null,
|
||||||
};
|
};
|
||||||
const buttonStyle = {
|
const buttonStyle = {
|
||||||
|
@ -172,7 +173,7 @@ export default defineComponent({
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<span style={spanStyle} class={`${prefixCls}-disabled-compatible-wrapper`}>
|
<span style={spanStyle} class={`${prefixCls.value}-disabled-compatible-wrapper`}>
|
||||||
{child}
|
{child}
|
||||||
</span>
|
</span>
|
||||||
);
|
);
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ant-design-vue",
|
"name": "ant-design-vue",
|
||||||
"version": "3.2.3",
|
"version": "3.2.4",
|
||||||
"title": "Ant Design Vue",
|
"title": "Ant Design Vue",
|
||||||
"description": "An enterprise-class UI design language and Vue-based implementation",
|
"description": "An enterprise-class UI design language and Vue-based implementation",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
|
Loadingโฆ
Reference in New Issue