release 3.0.0-alpha.16

This commit is contained in:
tangjinzhou 2021-12-19 09:49:04 +08:00
parent ebd52af454
commit b77ca0eed7
9 changed files with 68 additions and 2 deletions

View File

@ -10,6 +10,20 @@
---
## 3.0.0-alpha.16
`2021-12-19`
- 🌟 Refactored Input and added borderless configuration
- Table
- 🌟 Table customCell added column parameter [#5052](https://github.com/vueComponent/ant-design-vue/issues/5052)
- 🐞 Fix the console output error warning problem when turning Table pages [#5029](https://github.com/vueComponent/ant-design-vue/issues/5029)
- 🐞 Fix the problem that the pop-up box of the Table page turning component is hidden, and the pop-up box position is wrong [#5028](https://github.com/vueComponent/ant-design-vue/issues/5028)
- 🐞 Fix the issue that the global prefixCls of the Rate component does not take effect [#5026](https://github.com/vueComponent/ant-design-vue/issues/5026)
- 🐞 Fix Menu custom class not taking effect [#5038](https://github.com/vueComponent/ant-design-vue/issues/5038)
- 🐞 Fix the problem of printing warning when Carousel mobile device is touched [#5040](https://github.com/vueComponent/ant-design-vue/issues/5040)
- 🐞 Fix the problem that Select cannot be selected when customizing prefixCls [#5023](https://github.com/vueComponent/ant-design-vue/issues/5023)
## 3.0.0-alpha.15
`2021-12-12`

View File

@ -10,6 +10,20 @@
---
## 3.0.0-alpha.16
`2021-12-19`
- 🌟 重构 Input新增无边框配置
- Table
- 🌟 Table customCell 新增 column 参数[#5052](https://github.com/vueComponent/ant-design-vue/issues/5052)
- 🐞 修复 Table 翻页时,控制台输出错误 warning 问题 [#5029](https://github.com/vueComponent/ant-design-vue/issues/5029)
- 🐞 修复 Table 翻页组件弹出框隐藏时,弹框位置错误问题 [#5028](https://github.com/vueComponent/ant-design-vue/issues/5028)
- 🐞 修复 Rate 组件全局 prefixCls 未生效问题 [#5026](https://github.com/vueComponent/ant-design-vue/issues/5026)
- 🐞 修复 Menu 自定义 class 未生效问题 [#5038](https://github.com/vueComponent/ant-design-vue/issues/5038)
- 🐞 修复 Carousel 移动设备触摸时,打印 warning 问题 [#5040](https://github.com/vueComponent/ant-design-vue/issues/5040)
- 🐞 修复自定义 prefixCls 时Select 无法选中问题 [#5023](https://github.com/vueComponent/ant-design-vue/issues/5023)
## 3.0.0-alpha.15
`2021-12-12`

View File

@ -30,6 +30,8 @@ exports[`renders ./components/input/demo/autosize-textarea.vue correctly 1`] = `
exports[`renders ./components/input/demo/basic.vue correctly 1`] = `<input placeholder="Basic usage" type="text" class="ant-input">`;
exports[`renders ./components/input/demo/borderless.vue correctly 1`] = `<input placeholder="Borderless" type="text" class="ant-input ant-input-borderless">`;
exports[`renders ./components/input/demo/group.vue correctly 1`] = `
<div><span class="ant-input-group ant-input-group-lg"><div class="ant-row" style="margin-left: -4px; margin-right: -4px;"><div class="ant-col ant-col-5" style="padding-left: 4px; padding-right: 4px;"><input type="text" class="ant-input"></div><div class="ant-col ant-col-8" style="padding-left: 4px; padding-right: 4px;"><input type="text" class="ant-input"></div></div></span><br><span class="ant-input-group ant-input-group-compact"><input type="text" style="width: 20%;" class="ant-input"><input type="text" style="width: 30%;" class="ant-input"></span><br><span class="ant-input-group ant-input-group-compact"><div class="ant-select ant-select-single ant-select-show-arrow"><!----><!----><div class="ant-select-selector"><span class="ant-select-selection-search"><input id="rc_select_TEST_OR_SSR" autocomplete="off" class="ant-select-selection-search-input" style="opacity: 0;" role="combobox" aria-haspopup="listbox" aria-owns="rc_select_TEST_OR_SSR_list" aria-autocomplete="list" aria-controls="rc_select_TEST_OR_SSR_list" aria-activedescendant="rc_select_TEST_OR_SSR_list_0" readonly="" unselectable="on" type="search"></span><span class="ant-select-selection-item">Zhejiang</span>
<!---->

View File

@ -0,0 +1,31 @@
<docs>
---
order: 0
title:
zh-CN: 无边框
en-US: Borderless
---
## zh-CN
没有边框
## en-US
No border.
</docs>
<template>
<a-input v-model:value="value" :bordered="false" placeholder="Borderless" />
</template>
<script lang="ts">
import { defineComponent, ref } from 'vue';
export default defineComponent({
setup() {
const value = ref<string>('');
return {
value,
};
},
});
</script>

View File

@ -13,6 +13,7 @@
<password-input />
<show-count />
<textarea-resize />
<borderlessVue />
</demo-sort>
</template>
@ -30,6 +31,7 @@ import PasswordInput from './password-input.vue';
import ShowCount from './show-count.vue';
import Addon from './addon.vue';
import Tooltip from './tooltip.vue';
import borderlessVue from './borderless.vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import { defineComponent } from 'vue';
@ -51,6 +53,7 @@ export default defineComponent({
AllowClear,
PasswordInput,
ShowCount,
borderlessVue,
},
});
</script>

View File

@ -21,6 +21,7 @@ A basic widget for getting the user input is a text field. Keyboard and mouse ca
| addonAfter | The label text displayed after (on the right side of) the input field. | string\|slot | | |
| addonBefore | The label text displayed before (on the left side of) the input field. | string\|slot | | |
| defaultValue | The initial input content | string | | |
| bordered | Whether has border style | boolean | true | 4.5.0 |
| disabled | Whether the input is disabled. | boolean | false | |
| id | The ID for input | string | | |
| maxlength | max length | number | | 1.5.0 |

View File

@ -21,6 +21,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/xS9YEJhfe/Input.svg
| --- | --- | --- | --- | --- |
| addonAfter | 带标签的 input设置后置标签 | string\|slot | | |
| addonBefore | 带标签的 input设置前置标签 | string\|slot | | |
| bordered | 是否有边框 | boolean | true | 3.0 |
| defaultValue | 输入框默认内容 | string | | |
| disabled | 是否禁用状态,默认为 false | boolean | false | |
| id | 输入框的 id | string | | |

View File

@ -63,7 +63,7 @@ import ResizableColumn from './resizable-column.vue';
import bigData from './big-data.vue';
import CN from '../index.zh-CN.md';
import US from '../index.en-US.md';
import { defineComponent } from '@vue/runtime-core';
import { defineComponent } from 'vue';
export default defineComponent({
CN,

View File

@ -1,6 +1,6 @@
{
"name": "ant-design-vue",
"version": "3.0.0-alpha.15",
"version": "3.0.0-alpha.16",
"title": "Ant Design Vue",
"description": "An enterprise-class UI design language and Vue-based implementation",
"keywords": [