File tree Expand file tree Collapse file tree 9 files changed +68
-2
lines changed Expand file tree Collapse file tree 9 files changed +68
-2
lines changed Original file line number Diff line number Diff line change 1010
1111---
1212
13+ ## 3.0.0-alpha.16
14+
15+ ` 2021-12-19 `
16+
17+ - 🌟 Refactored Input and added borderless configuration
18+ - Table
19+ - 🌟 Table customCell added column parameter [ #5052 ] ( https://github.com/vueComponent/ant-design-vue/issues/5052 )
20+ - 🐞 Fix the console output error warning problem when turning Table pages [ #5029 ] ( https://github.com/vueComponent/ant-design-vue/issues/5029 )
21+ - 🐞 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 )
22+ - 🐞 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 )
23+ - 🐞 Fix Menu custom class not taking effect [ #5038 ] ( https://github.com/vueComponent/ant-design-vue/issues/5038 )
24+ - 🐞 Fix the problem of printing warning when Carousel mobile device is touched [ #5040 ] ( https://github.com/vueComponent/ant-design-vue/issues/5040 )
25+ - 🐞 Fix the problem that Select cannot be selected when customizing prefixCls [ #5023 ] ( https://github.com/vueComponent/ant-design-vue/issues/5023 )
26+
1327## 3.0.0-alpha.15
1428
1529` 2021-12-12 `
Original file line number Diff line number Diff line change 1010
1111---
1212
13+ ## 3.0.0-alpha.16
14+
15+ ` 2021-12-19 `
16+
17+ - 🌟 重构 Input,新增无边框配置
18+ - Table
19+ - 🌟 Table customCell 新增 column 参数[ #5052 ] ( https://github.com/vueComponent/ant-design-vue/issues/5052 )
20+ - 🐞 修复 Table 翻页时,控制台输出错误 warning 问题 [ #5029 ] ( https://github.com/vueComponent/ant-design-vue/issues/5029 )
21+ - 🐞 修复 Table 翻页组件弹出框隐藏时,弹框位置错误问题 [ #5028 ] ( https://github.com/vueComponent/ant-design-vue/issues/5028 )
22+ - 🐞 修复 Rate 组件全局 prefixCls 未生效问题 [ #5026 ] ( https://github.com/vueComponent/ant-design-vue/issues/5026 )
23+ - 🐞 修复 Menu 自定义 class 未生效问题 [ #5038 ] ( https://github.com/vueComponent/ant-design-vue/issues/5038 )
24+ - 🐞 修复 Carousel 移动设备触摸时,打印 warning 问题 [ #5040 ] ( https://github.com/vueComponent/ant-design-vue/issues/5040 )
25+ - 🐞 修复自定义 prefixCls 时,Select 无法选中问题 [ #5023 ] ( https://github.com/vueComponent/ant-design-vue/issues/5023 )
26+
1327## 3.0.0-alpha.15
1428
1529` 2021-12-12 `
Original file line number Diff line number Diff line change @@ -30,6 +30,8 @@ exports[`renders ./components/input/demo/autosize-textarea.vue correctly 1`] = `
3030
3131exports[`renders ./components/input/demo/basic.vue correctly 1`] = `<input placeholder = " Basic usage" type = " text" class = " ant-input" >`;
3232
33+ exports[`renders ./components/input/demo/borderless.vue correctly 1`] = `<input placeholder = " Borderless" type = " text" class = " ant-input ant-input-borderless" >`;
34+
3335exports[`renders ./components/input/demo/group.vue correctly 1`] = `
3436<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>
3537 <!---->
Original file line number Diff line number Diff line change 1+ <docs >
2+ ---
3+ order: 0
4+ title:
5+ zh-CN: 无边框
6+ en-US: Borderless
7+ ---
8+
9+ ## zh-CN
10+
11+ 没有边框。
12+
13+ ## en-US
14+
15+ No border.
16+
17+ </docs >
18+ <template >
19+ <a-input v-model:value =" value" :bordered =" false" placeholder =" Borderless" />
20+ </template >
21+ <script lang="ts">
22+ import { defineComponent , ref } from ' vue' ;
23+ export default defineComponent ({
24+ setup() {
25+ const value = ref <string >(' ' );
26+ return {
27+ value ,
28+ };
29+ },
30+ });
31+ </script >
Original file line number Diff line number Diff line change 1313 <password-input />
1414 <show-count />
1515 <textarea-resize />
16+ <borderlessVue />
1617 </demo-sort >
1718</template >
1819
@@ -30,6 +31,7 @@ import PasswordInput from './password-input.vue';
3031import ShowCount from ' ./show-count.vue' ;
3132import Addon from ' ./addon.vue' ;
3233import Tooltip from ' ./tooltip.vue' ;
34+ import borderlessVue from ' ./borderless.vue' ;
3335import CN from ' ../index.zh-CN.md' ;
3436import US from ' ../index.en-US.md' ;
3537import { defineComponent } from ' vue' ;
@@ -51,6 +53,7 @@ export default defineComponent({
5153 AllowClear,
5254 PasswordInput,
5355 ShowCount,
56+ borderlessVue,
5457 },
5558});
5659 </script >
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ A basic widget for getting the user input is a text field. Keyboard and mouse ca
2121| addonAfter | The label text displayed after (on the right side of) the input field. | string\| slot | | |
2222| addonBefore | The label text displayed before (on the left side of) the input field. | string\| slot | | |
2323| defaultValue | The initial input content | string | | |
24+ | bordered | Whether has border style | boolean | true | 4.5.0 |
2425| disabled | Whether the input is disabled. | boolean | false | |
2526| id | The ID for input | string | | |
2627| maxlength | max length | number | | 1.5.0 |
Original file line number Diff line number Diff line change @@ -21,6 +21,7 @@ cover: https://gw.alipayobjects.com/zos/alicdn/xS9YEJhfe/Input.svg
2121| --- | --- | --- | --- | --- |
2222| addonAfter | 带标签的 input,设置后置标签 | string\| slot | | |
2323| addonBefore | 带标签的 input,设置前置标签 | string\| slot | | |
24+ | bordered | 是否有边框 | boolean | true | 3.0 |
2425| defaultValue | 输入框默认内容 | string | | |
2526| disabled | 是否禁用状态,默认为 false | boolean | false | |
2627| id | 输入框的 id | string | | |
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ import ResizableColumn from './resizable-column.vue';
6363import bigData from ' ./big-data.vue' ;
6464import CN from ' ../index.zh-CN.md' ;
6565import US from ' ../index.en-US.md' ;
66- import { defineComponent } from ' @ vue/runtime-core ' ;
66+ import { defineComponent } from ' vue' ;
6767
6868export default defineComponent ({
6969 CN ,
Original file line number Diff line number Diff line change 11{
22 "name" : " ant-design-vue" ,
3- "version" : " 3.0.0-alpha.15 " ,
3+ "version" : " 3.0.0-alpha.16 " ,
44 "title" : " Ant Design Vue" ,
55 "description" : " An enterprise-class UI design language and Vue-based implementation" ,
66 "keywords" : [
You can’t perform that action at this time.
0 commit comments