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 10
10
11
11
---
12
12
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
+
13
27
## 3.0.0-alpha.15
14
28
15
29
` 2021-12-12 `
Original file line number Diff line number Diff line change 10
10
11
11
---
12
12
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
+
13
27
## 3.0.0-alpha.15
14
28
15
29
` 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`] = `
30
30
31
31
exports[`renders ./components/input/demo/basic.vue correctly 1`] = `<input placeholder = " Basic usage" type = " text" class = " ant-input" >`;
32
32
33
+ exports[`renders ./components/input/demo/borderless.vue correctly 1`] = `<input placeholder = " Borderless" type = " text" class = " ant-input ant-input-borderless" >`;
34
+
33
35
exports[`renders ./components/input/demo/group.vue correctly 1`] = `
34
36
<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>
35
37
<!---->
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 13
13
<password-input />
14
14
<show-count />
15
15
<textarea-resize />
16
+ <borderlessVue />
16
17
</demo-sort >
17
18
</template >
18
19
@@ -30,6 +31,7 @@ import PasswordInput from './password-input.vue';
30
31
import ShowCount from ' ./show-count.vue' ;
31
32
import Addon from ' ./addon.vue' ;
32
33
import Tooltip from ' ./tooltip.vue' ;
34
+ import borderlessVue from ' ./borderless.vue' ;
33
35
import CN from ' ../index.zh-CN.md' ;
34
36
import US from ' ../index.en-US.md' ;
35
37
import { defineComponent } from ' vue' ;
@@ -51,6 +53,7 @@ export default defineComponent({
51
53
AllowClear,
52
54
PasswordInput,
53
55
ShowCount,
56
+ borderlessVue,
54
57
},
55
58
});
56
59
</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
21
21
| addonAfter | The label text displayed after (on the right side of) the input field. | string\| slot | | |
22
22
| addonBefore | The label text displayed before (on the left side of) the input field. | string\| slot | | |
23
23
| defaultValue | The initial input content | string | | |
24
+ | bordered | Whether has border style | boolean | true | 4.5.0 |
24
25
| disabled | Whether the input is disabled. | boolean | false | |
25
26
| id | The ID for input | string | | |
26
27
| 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
21
21
| --- | --- | --- | --- | --- |
22
22
| addonAfter | 带标签的 input,设置后置标签 | string\| slot | | |
23
23
| addonBefore | 带标签的 input,设置前置标签 | string\| slot | | |
24
+ | bordered | 是否有边框 | boolean | true | 3.0 |
24
25
| defaultValue | 输入框默认内容 | string | | |
25
26
| disabled | 是否禁用状态,默认为 false | boolean | false | |
26
27
| id | 输入框的 id | string | | |
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ import ResizableColumn from './resizable-column.vue';
63
63
import bigData from ' ./big-data.vue' ;
64
64
import CN from ' ../index.zh-CN.md' ;
65
65
import US from ' ../index.en-US.md' ;
66
- import { defineComponent } from ' @ vue/runtime-core ' ;
66
+ import { defineComponent } from ' vue' ;
67
67
68
68
export default defineComponent ({
69
69
CN ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " ant-design-vue" ,
3
- "version" : " 3.0.0-alpha.15 " ,
3
+ "version" : " 3.0.0-alpha.16 " ,
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