Skip to content

Commit

Permalink
chore(*): Release-1.11.8
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Jan 9, 2019
1 parent a004afd commit a86fb45
Show file tree
Hide file tree
Showing 6 changed files with 39 additions and 28 deletions.
23 changes: 22 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,25 @@
# Change Log
# Change Log

<a name="1.11.8"></a>
## [1.11.8](https://github.com/alibaba-fusion/next/compare/1.11.7...1.11.8) (2019-01-09)


### Bug Fixes

* **CascaderSelect:** value type not equal dataSource value ([3cc1785](https://github.com/alibaba-fusion/next/commit/3cc1785))
* **ConfigProvider:** check locales before set ([a0da7bf](https://github.com/alibaba-fusion/next/commit/a0da7bf))
* **Form:** remove warning while message write in jsx ([87d6085](https://github.com/alibaba-fusion/next/commit/87d6085))
* **Form:** switch aligin while size=large ([db989ee](https://github.com/alibaba-fusion/next/commit/db989ee))
* **Nav:** can't config nav group label font size/height ([5f439a5](https://github.com/alibaba-fusion/next/commit/5f439a5))
* **Nav:** icon-only overflow bug fix ([1bc40fe](https://github.com/alibaba-fusion/next/commit/1bc40fe))
* **Radio:** button shape hover border covers checked border ([33be122](https://github.com/alibaba-fusion/next/commit/33be122))
* **Select:** fix Select with useVirtual when empty dataSource ([#164](https://github.com/alibaba-fusion/next/issues/164)) ([54da63f](https://github.com/alibaba-fusion/next/commit/54da63f))
* **Tab:** max-call-exceeded ([d8de050](https://github.com/alibaba-fusion/next/commit/d8de050))
* **Timeline:** timline-item warning has function type prop ([18c48f4](https://github.com/alibaba-fusion/next/commit/18c48f4))
* **Validate:** value can be false ([0e871d8](https://github.com/alibaba-fusion/next/commit/0e871d8))




<a name="1.11.7"></a>
## [1.11.7](https://github.com/alibaba-fusion/next/compare/1.11.6...1.11.7) (2019-01-02)
Expand Down
23 changes: 13 additions & 10 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,20 @@
# Latest Log
# Latest Log

## [1.11.7](https://github.com/alibaba-fusion/next/compare/1.11.6...1.11.7) (2019-01-02)
## [1.11.8](https://github.com/alibaba-fusion/next/compare/1.11.7...1.11.8) (2019-01-09)


### Bug Fixes

* **Menu:** to much data overflow when popupAlign is outside ([726da77](https://github.com/alibaba-fusion/next/commit/726da77))
* **Switch:** tweak switch off-state right padding ([7882d35](https://github.com/alibaba-fusion/next/commit/7882d35))
* **Table:** wrong value of offsetTop when set scrollToRow, close [#117](https://github.com/alibaba-fusion/next/issues/117) ([ac086c4](https://github.com/alibaba-fusion/next/commit/ac086c4))


### Features

* **CascaderSelect:** support itemRender ([7f9b0f5](https://github.com/alibaba-fusion/next/commit/7f9b0f5))
* **CascaderSelect:** value type not equal dataSource value ([3cc1785](https://github.com/alibaba-fusion/next/commit/3cc1785))
* **ConfigProvider:** check locales before set ([a0da7bf](https://github.com/alibaba-fusion/next/commit/a0da7bf))
* **Form:** remove warning while message write in jsx ([87d6085](https://github.com/alibaba-fusion/next/commit/87d6085))
* **Form:** switch aligin while size=large ([db989ee](https://github.com/alibaba-fusion/next/commit/db989ee))
* **Nav:** can't config nav group label font size/height ([5f439a5](https://github.com/alibaba-fusion/next/commit/5f439a5))
* **Nav:** icon-only overflow bug fix ([1bc40fe](https://github.com/alibaba-fusion/next/commit/1bc40fe))
* **Radio:** button shape hover border covers checked border ([33be122](https://github.com/alibaba-fusion/next/commit/33be122))
* **Select:** fix Select with useVirtual when empty dataSource ([#164](https://github.com/alibaba-fusion/next/issues/164)) ([54da63f](https://github.com/alibaba-fusion/next/commit/54da63f))
* **Tab:** max-call-exceeded ([d8de050](https://github.com/alibaba-fusion/next/commit/d8de050))
* **Timeline:** timline-item warning has function type prop ([18c48f4](https://github.com/alibaba-fusion/next/commit/18c48f4))
* **Validate:** value can be false ([0e871d8](https://github.com/alibaba-fusion/next/commit/0e871d8))


4 changes: 2 additions & 2 deletions docs/form/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@
| size | 单个 Item 的 size 自定义,优先级高于 Form 的 size, 并且当组件与 Item 一起使用时,组件自身设置 size 属性无效。<br><br>**可选值**:<br>'large', 'small', 'medium' | Enum | - |
| labelCol | label 标签布局,通 `<Col>` 组件,设置 span offset 值,如 {span: 8, offset: 16},该项仅在垂直表单有效 | Object | - |
| wrapperCol | 需要为输入控件设置布局样式时,使用该属性,用法同 labelCol | Object | - |
| help | 自定义提示信息,如不设置,则会根据校验规则自动生成. 设置后会覆盖校验信息 | ReactNode | - |
| help | 自定义提示信息,如不设置,则会根据校验规则自动生成. | ReactNode | - |
| extra | 额外的提示信息,和 help 类似,当需要错误信息和提示文案同时出现时,可以使用这个。 位于错误信息后面 | ReactNode | - |
| validateState | 校验状态,如不设置,则会根据校验规则自动生成<br><br>**可选值**:<br>'error'<br>'success'(成功)<br>'loading'(失败) | Enum | - |
| validateState | 校验状态,如不设置,则会根据校验规则自动生成<br><br>**可选值**:<br>'error'(成功)<br>'success'(失败)<br>'loading'(校验中) | Enum | - |
| hasFeedback | 配合 validateState 属性使用,是否展示 success/loading 的校验状态图标, 目前只有Input支持 | Boolean | false |
| children | node 或者 function(values) | ReactNode/Function | - |
| labelAlign | 标签的位置<br><br>**可选值**:<br>'top'(上)<br>'left'(左)<br>'inset'(内) | Enum | - |
Expand Down
13 changes: 0 additions & 13 deletions docs/timeline/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,3 @@
| 参数 | 说明 | 类型 | 默认值 |
| ---- | ------------------------------------------------------------------- | ----- | --- |
| fold | 自定义折叠选项 示例`[{foldArea: [startIndex, endIndex], foldShow: boolean}]` | Array | \[] |

### Timeline.Item

| 参数 | 说明 | 类型 | 默认值 |
| --------- | ------------------------------------------------------------- | --------- | ------ |
| state | 节点状态<br><br>**可选值**:<br>'done', 'process', 'error', 'success' | Enum | 'done' |
| icon | 图标 | String | - |
| dot | 自定义时间轴节点 | ReactNode | - |
| time | 格式化后的时间 | ReactNode | - |
| title | 标题 | ReactNode | - |
| timeLeft | 左侧时间 | ReactNode | - |
| content | 右侧内容 | ReactNode | - |
| animation | 动画 | Boolean | true |
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.7';
next.version = '1.11.8';

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.7",
"version": "1.11.8",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down

0 comments on commit a86fb45

Please sign in to comment.