diff --git a/CHANGELOG.md b/CHANGELOG.md
index 201c0cc685..8710f394f7 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,28 @@
# Change Log
+
+## [1.11.3](https://github.com/alibaba-fusion/next/compare/1.11.2...1.11.3) (2018-12-13)
+
+
+### Bug Fixes
+
+* **Balloon:** ltr when set rtl on it own ([8cc4a8a](https://github.com/alibaba-fusion/next/commit/8cc4a8a))
+* **ConfigProvider:** remove warning when not using rtl ([f59dd15](https://github.com/alibaba-fusion/next/commit/f59dd15))
+* **Form:** css hack only in ie9 ([f5e77bc](https://github.com/alibaba-fusion/next/commit/f5e77bc))
+* **Input:** loading and hint not cannot occur at the same time ([cf97c99](https://github.com/alibaba-fusion/next/commit/cf97c99))
+* **Input:** padding reversed when select arrow translate 180 ([d5e9573](https://github.com/alibaba-fusion/next/commit/d5e9573))
+* **Menu:** keyboard not blur ([dda5a16](https://github.com/alibaba-fusion/next/commit/dda5a16))
+* **Slider:** dots' trigger area changed from to parent ([346f684](https://github.com/alibaba-fusion/next/commit/346f684))
+* **Step:** rtl style bugfix ([cadfec8](https://github.com/alibaba-fusion/next/commit/cadfec8))
+* **Table:** Avoid display error when browser scale ([b07b680](https://github.com/alibaba-fusion/next/commit/b07b680))
+* **Table:** lock columns cant align with whole table when affixed ([f1531c3](https://github.com/alibaba-fusion/next/commit/f1531c3))
+* **Timeline:** timeline-item cannot set className ([23754a3](https://github.com/alibaba-fusion/next/commit/23754a3))
+* **Upload:** forbid deleting file when upload is disabled ([e0936e5](https://github.com/alibaba-fusion/next/commit/e0936e5))
+* **Upload:** no space between upload and file list ([181517c](https://github.com/alibaba-fusion/next/commit/181517c))
+
+
+
+
## [1.11.2](https://github.com/alibaba-fusion/next/compare/1.11.1...1.11.2) (2018-12-06)
diff --git a/LATESTLOG.md b/LATESTLOG.md
index 68ed60dbde..4bfabae249 100644
--- a/LATESTLOG.md
+++ b/LATESTLOG.md
@@ -1,10 +1,22 @@
# Latest Log
-## [1.11.2](https://github.com/alibaba-fusion/next/compare/1.11.1...1.11.2) (2018-12-06)
+## [1.11.3](https://github.com/alibaba-fusion/next/compare/1.11.2...1.11.3) (2018-12-13)
### Bug Fixes
-* **Overlay:** fix postion caculate error ([d38a78f](https://github.com/alibaba-fusion/next/commit/d38a78f))
+* **Balloon:** ltr when set rtl on it own ([8cc4a8a](https://github.com/alibaba-fusion/next/commit/8cc4a8a))
+* **ConfigProvider:** remove warning when not using rtl ([f59dd15](https://github.com/alibaba-fusion/next/commit/f59dd15))
+* **Form:** css hack only in ie9 ([f5e77bc](https://github.com/alibaba-fusion/next/commit/f5e77bc))
+* **Input:** loading and hint not cannot occur at the same time ([cf97c99](https://github.com/alibaba-fusion/next/commit/cf97c99))
+* **Input:** padding reversed when select arrow translate 180 ([d5e9573](https://github.com/alibaba-fusion/next/commit/d5e9573))
+* **Menu:** keyboard not blur ([dda5a16](https://github.com/alibaba-fusion/next/commit/dda5a16))
+* **Slider:** dots' trigger area changed from to parent ([346f684](https://github.com/alibaba-fusion/next/commit/346f684))
+* **Step:** rtl style bugfix ([cadfec8](https://github.com/alibaba-fusion/next/commit/cadfec8))
+* **Table:** Avoid display error when browser scale ([b07b680](https://github.com/alibaba-fusion/next/commit/b07b680))
+* **Table:** lock columns cant align with whole table when affixed ([f1531c3](https://github.com/alibaba-fusion/next/commit/f1531c3))
+* **Timeline:** timeline-item cannot set className ([23754a3](https://github.com/alibaba-fusion/next/commit/23754a3))
+* **Upload:** forbid deleting file when upload is disabled ([e0936e5](https://github.com/alibaba-fusion/next/commit/e0936e5))
+* **Upload:** no space between upload and file list ([181517c](https://github.com/alibaba-fusion/next/commit/181517c))
diff --git a/docs/form/index.md b/docs/form/index.md
index 024a495cc8..21b58c753b 100644
--- a/docs/form/index.md
+++ b/docs/form/index.md
@@ -80,6 +80,7 @@
| formatMessage | format 自定义错误信息 | String | - |
| formatTrigger | format 自定义触发方式 | String/Array | - |
| validator | [表单校验] 自定义校验函数 **签名**: Function() => void | Function | - |
+| validatorTrigger | validator 自定义触发方式 | String/Array | - |
### Form.Submit
diff --git a/docs/search/index.md b/docs/search/index.md
index ebdde74bb9..ec1bdc2909 100644
--- a/docs/search/index.md
+++ b/docs/search/index.md
@@ -27,12 +27,12 @@
| shape | 形状 **可选值**: 'normal', 'simple' | Enum | 'normal' |
| defaultValue | 搜索框默认值 | String | - |
| value | 搜索框数值 | String/Number | - |
-| onChange | 输入关键字时的回掉 **签名**: Function() => void | Function | func.noop |
-| onSearch | 点击搜索按钮触发的回调 **签名**: Function() => void | Function | func.noop |
+| onChange | 输入关键字时的回掉 **签名**: Function(输入值: Object) => void **参数**: _输入值_: {Object} null | Function | func.noop |
+| onSearch | 点击搜索按钮触发的回调 **签名**: Function(输入值: Object) => void **参数**: _输入值_: {Object} null | Function | func.noop |
| defaultFilterValue | 选择器默认值 | String | - |
| filter | 选择器 | Array | \[] |
| filterValue | 选择器值 | String | - |
-| onFilterChange | 选择器发生变化时回调 **签名**: Function() => void | Function | func.noop |
+| onFilterChange | 选择器发生变化时回调 **签名**: Function(filter: Object) => void **参数**: _filter_: {Object} value | Function | func.noop |
| dataSource | 搜索框下拉联想列表 | Array | - |
| placeholder | 默认提示 | String | - |
| searchText | button 的内容 | ReactNode | - |
diff --git a/index.js b/index.js
index e735a050c3..9157c92559 100644
--- a/index.js
+++ b/index.js
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');
-next.version = '1.11.2';
+next.version = '1.11.3';
module.exports = next;
diff --git a/package.json b/package.json
index a9c8c1c841..7dfe46239e 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
- "version": "1.11.2",
+ "version": "1.11.3",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
@@ -132,7 +132,7 @@
"minimist": "^1.2.0",
"mocha": "^3.5.3",
"moment": "^2.20.1",
- "node-sass": "^4.5.3",
+ "node-sass": "4.6.0",
"node-sass-package-importer": "^5.2.0",
"postcss-loader": "^2.0.6",
"postcss-scss": "1.0.2",
diff --git a/src/form/main.scss b/src/form/main.scss
index db8b056436..3fa982a30f 100644
--- a/src/form/main.scss
+++ b/src/form/main.scss
@@ -132,7 +132,7 @@ $form-element-large-height:40px;
}
}
-@media screen and (min-width:0\0) and (min-resolution: .001dpcm) {
+@media screen and (min-width: 0\0) and (min-resolution: .001dpcm) {
#{$form-prefix}-item.#{$css-prefix}left > #{$form-prefix}-item-label {
display: table-cell;
}