Skip to content

Commit

Permalink
chore(*): Release-1.11.6
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Dec 26, 2018
1 parent b830af0 commit cbbe069
Show file tree
Hide file tree
Showing 8 changed files with 38 additions and 21 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

<a name="1.11.6"></a>
## [1.11.6](https://github.com/alibaba-fusion/next/compare/1.11.5...1.11.6) (2018-12-26)


### Bug Fixes

* **Cascader:** keyboard not blur ([3e43e6a](https://github.com/alibaba-fusion/next/commit/3e43e6a))
* **Pagination:** select dropdown menu position error on scrolling ([70375c1](https://github.com/alibaba-fusion/next/commit/70375c1))
* **Tab:** can not render when child have null item ([fb20367](https://github.com/alibaba-fusion/next/commit/fb20367))
* **Tab, Grid:** inconsistency between doc and code ([5145fe7](https://github.com/alibaba-fusion/next/commit/5145fe7)) ([b07f5ac](https://github.com/alibaba-fusion/next/commit/b07f5ac)) ([43a4fd1](https://github.com/alibaba-fusion/next/commit/43a4fd1))
* **Table:** style conflict with align ([aa32515](https://github.com/alibaba-fusion/next/commit/aa32515))
* **Upload:** allow remove file when disabled ([2590a70](https://github.com/alibaba-fusion/next/commit/2590a70))



<a name="1.11.5"></a>
## [1.11.5](https://github.com/alibaba-fusion/next/compare/1.11.4...1.11.5) (2018-12-19)

Expand Down
12 changes: 7 additions & 5 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
# Latest Log

## [1.11.5](https://github.com/alibaba-fusion/next/compare/1.11.4...1.11.5) (2018-12-19)
## [1.11.6](https://github.com/alibaba-fusion/next/compare/1.11.5...1.11.6) (2018-12-26)


### Bug Fixes

* **NumberPicker:** float bug by chrome. Close [#79](https://github.com/alibaba-fusion/next/issues/79) ([4ac7f41](https://github.com/alibaba-fusion/next/commit/4ac7f41))
* **Select:** defaultValue with async dataSource ([6fd23ba](https://github.com/alibaba-fusion/next/commit/6fd23ba))
* **Table:** can't find unmounted component ([f004b52](https://github.com/alibaba-fusion/next/commit/f004b52))
* **Typescripts:** perfect typescripts ([4459f14](https://github.com/alibaba-fusion/next/commit/4459f14))
* **Cascader:** keyboard not blur ([3e43e6a](https://github.com/alibaba-fusion/next/commit/3e43e6a))
* **Pagination:** select dropdown menu position error on scrolling ([70375c1](https://github.com/alibaba-fusion/next/commit/70375c1))
* **Tab:** can not render when child have null item ([fb20367](https://github.com/alibaba-fusion/next/commit/fb20367))
* **Tab, Grid:** inconsistency between doc and code ([5145fe7](https://github.com/alibaba-fusion/next/commit/5145fe7)) ([b07f5ac](https://github.com/alibaba-fusion/next/commit/b07f5ac)) ([43a4fd1](https://github.com/alibaba-fusion/next/commit/43a4fd1))
* **Table:** style conflict with align ([aa32515](https://github.com/alibaba-fusion/next/commit/aa32515))
* **Upload:** allow remove file when disabled ([2590a70](https://github.com/alibaba-fusion/next/commit/2590a70))


22 changes: 11 additions & 11 deletions docs/grid/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,17 +22,17 @@

### Grid.Row

| 参数 | 说明 | 类型 | 默认值 |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------- | --------- |
| children | 行内容 | ReactNode | - |
| gutter | 列间隔 | String/Number | 0 |
| wrap | 列在行中宽度溢出后是否换行 | Boolean | false |
| fixed | 行在某一断点下宽度是否保持不变(默认行宽度随视口变化而变化) | Boolean | false |
| fixedWidth | 固定行的宽度为某一断点的宽度,不受视口影响而变动<br><br>**可选值**:<br>'xxs'(320px)<br>'xs'(480px)<br>'s'(720px)<br>'m'(990px)<br>'l'(1200px)<br>'xl'(1500px) | Enum | - |
| align | (不支持IE9浏览器)多列垂直方向对齐方式<br><br>**可选值**:<br>'top'(顶部对齐)<br>'center'(居中对齐)<br>'bottom'(底部对齐)<br>'baseline'(按第一行文字基线对齐)<br>'stretch'(未设置高度或设为 auto,将占满整个容器的高度) | Enum | 'stretch' |
| justify | (不支持IE9浏览器)行内具有多余空间时的布局方式<br><br>**可选值**:<br>'start'(左对齐)<br>'center'(居中对齐)<br>'end'(右对齐)<br>'space-between'(两端对齐,列之间间距相等)<br>'space-around'(每列具有相同的左右间距,行两端间距是列间距的二分之一) | Enum | 'start' |
| hidden | 行在不同断点下的显示与隐藏<br><br>**可选值**:<br>true(在所有断点下隐藏)<br>false(在所有断点下显示)<br>'xs'(在 xs 断点下隐藏)<br>['xxs', 'xs', 's', 'm', 'l', 'xl']\(在 xxs, xs, s, m, l, xl 断点下隐藏) | Boolean/String/Array | - |
| component | 指定以何种元素渲染该节点<br>- 默认为 'div' | String | 'div' |
| 参数 | 说明 | 类型 | 默认值 |
| ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | -------------------- | ----- |
| children | 行内容 | ReactNode | - |
| gutter | 列间隔 | String/Number | 0 |
| wrap | 列在行中宽度溢出后是否换行 | Boolean | false |
| fixed | 行在某一断点下宽度是否保持不变(默认行宽度随视口变化而变化) | Boolean | false |
| fixedWidth | 固定行的宽度为某一断点的宽度,不受视口影响而变动<br><br>**可选值**:<br>'xxs'(320px)<br>'xs'(480px)<br>'s'(720px)<br>'m'(990px)<br>'l'(1200px)<br>'xl'(1500px) | Enum | - |
| align | (不支持IE9浏览器)多列垂直方向对齐方式<br><br>**可选值**:<br>'top'(顶部对齐)<br>'center'(居中对齐)<br>'bottom'(底部对齐)<br>'baseline'(按第一行文字基线对齐)<br>'stretch'(未设置高度或设为 auto,将占满整个容器的高度) | Enum | - |
| justify | (不支持IE9浏览器)行内具有多余空间时的布局方式<br><br>**可选值**:<br>'start'(左对齐)<br>'center'(居中对齐)<br>'end'(右对齐)<br>'space-between'(两端对齐,列之间间距相等)<br>'space-around'(每列具有相同的左右间距,行两端间距是列间距的二分之一) | Enum | - |
| hidden | 行在不同断点下的显示与隐藏<br><br>**可选值**:<br>true(在所有断点下隐藏)<br>false(在所有断点下显示)<br>'xs'(在 xs 断点下隐藏)<br>['xxs', 'xs', 's', 'm', 'l', 'xl']\(在 xxs, xs, s, m, l, xl 断点下隐藏) | Boolean/String/Array | - |
| component | 指定以何种元素渲染该节点<br>- 默认为 'div' | String | 'div' |

### Grid.Col

Expand Down
2 changes: 1 addition & 1 deletion docs/tab/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,4 @@ Fusion 提供了三级选项卡,分别用于不同的场景。
| --------- | ---------- | --------- | ----- |
| title | 选项卡标题 | ReactNode | - |
| closeable | 单个选项卡是否可关闭 | Boolean | false |
| disabled | 选项卡是否被禁用 | Boolean | false |
| disabled | 选项卡是否被禁用 | Boolean | - |
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
var next = require('./lib/index.js');

next.version = '1.11.5';
next.version = '1.11.6';

module.exports = next;
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@alifd/next",
"version": "1.11.5",
"version": "1.11.6",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
2 changes: 1 addition & 1 deletion site/en-us/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ import '@alifd/next/lib/button/style';

Follow [Semantic Versioning 2.0.0](https://semver.org/) Semantic Version Strategy.

Patch Version: Every Monday release of a bugfix version(anytime for urgent bugfix).
Patch Version: Every Wednesday release of a bugfix version(anytime for urgent bugfix).

Minor Version: Monthly release of a backward compatible version with new features.

Expand Down
2 changes: 1 addition & 1 deletion site/zh-cn/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ babel配置:

遵循 [Semantic Versioning 2.0.0](https://semver.org/) 语义化版本管理策略:

z 位:每周一会进行日常 bug 修复版本的更新,紧急问题不受此限制,可以随时发布
z 位:每周三会进行日常 bug 修复版本的更新,紧急问题不受此限制,可以随时发布

y 位:每月发布一个带有新特性的向下兼容的版本

Expand Down

0 comments on commit cbbe069

Please sign in to comment.