Skip to content

Commit a982cb9

Browse files
committed
bump 1.4.0
1 parent 50daddc commit a982cb9

File tree

5 files changed

+43
-1
lines changed

5 files changed

+43
-1
lines changed

CHANGELOG.en-US.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ timeline: true
1414

1515
---
1616

17+
## 1.4.0
18+
19+
`2017-06-24`
20+
21+
- **Feature**
22+
- `Button` 新增 `activeClassName` 以自定义点击时类名。([3331f00](https://github.com/ant-design/ant-design-mobile/commit/3331f00b1a89d7fb76dcffa554f1cf9b165819d9))
23+
- `Card.Header` 的 thumb 支持 React.Element。([#1484](https://github.com/ant-design/ant-design-mobile/issues/1484))
24+
- `InputItem` 支持通过 locale 来自定义内置文案。([#1475](https://github.com/ant-design/ant-design-mobile/issues/1475))
25+
26+
- **Bug Fix**
27+
- 修复 ListView sticky header 被遮挡的问题。([#1456](https://github.com/ant-design/ant-design-mobile/issues/1456))
28+
- `InputItem` 修复当`type=money` 虚拟键盘无法隐藏的问题。([#1468](https://github.com/ant-design/ant-design-mobile/issues/1468))
29+
30+
31+
- **Improve && Enhancement**
32+
- `InputItem` 背景图片替换为 svg。([#1470](https://github.com/ant-design/ant-design-mobile/issues/1470))
33+
- `Button` 高度增大为 `94px`
34+
- `ListItem` 高度减小为 `88px`
35+
- `Result` 间距,字体,颜色调整。
36+
1737
## 1.3.1
1838

1939
`2017-06-19`

CHANGELOG.zh-CN.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,26 @@ timeline: true
1414

1515
---
1616

17+
## 1.4.0
18+
19+
`2017-06-24`
20+
21+
- **Feature**
22+
- `Button` 新增 `activeClassName` 以自定义点击时类名。([3331f00](https://github.com/ant-design/ant-design-mobile/commit/3331f00b1a89d7fb76dcffa554f1cf9b165819d9))
23+
- `Card.Header` 的 thumb 支持 React.Element。([#1484](https://github.com/ant-design/ant-design-mobile/issues/1484))
24+
- `InputItem` 支持通过 locale 来自定义内置文案。([#1475](https://github.com/ant-design/ant-design-mobile/issues/1475))
25+
26+
- **Bug Fix**
27+
- 修复 ListView sticky header 被遮挡的问题。([#1456](https://github.com/ant-design/ant-design-mobile/issues/1456))
28+
- `InputItem` 修复当`type=money` 虚拟键盘无法隐藏的问题。([#1468](https://github.com/ant-design/ant-design-mobile/issues/1468))
29+
30+
31+
- **Improve && Enhancement**
32+
- `InputItem` 背景图片替换为 svg。([#1470](https://github.com/ant-design/ant-design-mobile/issues/1470))
33+
- `Button` 高度增大为 `94px`
34+
- `ListItem` 高度减小为 `88px`
35+
- `Result` 间距,字体,颜色调整。
36+
1737
## 1.3.1
1838

1939
`2017-06-19`

components/button/index.en-US.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ Properties | Descrition | Type | Default
1616
| type | can be set to `primary`/`ghost`/`warning` or omitted | string | - |
1717
| size | can be set to `large``small` or omitted | string | `large`|
1818
| activeStyle | the feedback's custom style (set to false to disable click feedback) | {}/false | {} |
19+
| activeClassName | the feedback's custom class name | string | |
1920
| disabled | set disabled | boolean | false |
2021
| onClick | set the handler to handle `click` event | (e: Object): void | - |
2122
| style | custom style | Object | - |

components/button/index.zh-CN.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ subtitle: 按钮
1717
| type | 按钮类型,可选值为`primary`/`ghost`/`warning`或者不设 | string | - |
1818
| size | 按钮大小,可选值为`large``small` | string | `large`|
1919
| activeStyle | 点击反馈的自定义样式 (设为 false 时表示禁止点击反馈) | {}/false | {} |
20+
| activeClassName | 点击反馈的自定义类名 | string | |
2021
| disabled | 设置禁用 | boolean | false |
2122
| onClick | 点击按钮的点击回调函数 | (e: Object): void ||
2223
| style | 自定义样式 | Object ||

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "antd-mobile",
3-
"version": "1.3.1",
3+
"version": "1.4.0",
44
"description": "基于 React 的移动设计规范实现",
55
"homepage": "http://mobile.ant.design",
66
"keywords": [

0 commit comments

Comments
 (0)