Skip to content

Commit

Permalink
chore(*): Release-1.14.5
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed May 22, 2019
1 parent 3928bfd commit 7c4e575
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 32 deletions.
14 changes: 13 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Change Log
# Change Log

## [1.14.5](https://github.com/alibaba-fusion/next/compare/1.14.4...1.14.5) (2019-05-22)


### Bug Fixes

* **Field:** parseName defaults ([#683](https://github.com/alibaba-fusion/next/issues/683)) ([7fe0130](https://github.com/alibaba-fusion/next/commit/7fe0130))
* **Field:** revert typescript of Field to any ([c35d935](https://github.com/alibaba-fusion/next/commit/c35d935))
* **Input:** maxLength in safari on Mac. Close [#671](https://github.com/alibaba-fusion/next/issues/671) ([f771d67](https://github.com/alibaba-fusion/next/commit/f771d67))
* **Tab:** should not listen to extra keyboard events ([50e1699](https://github.com/alibaba-fusion/next/commit/50e1699))



## [1.14.4](https://github.com/alibaba-fusion/next/compare/1.14.3...1.14.4) (2019-05-16)

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

## [1.14.4](https://github.com/alibaba-fusion/next/compare/1.14.3...1.14.4) (2019-05-16)
## [1.14.5](https://github.com/alibaba-fusion/next/compare/1.14.4...1.14.5) (2019-05-22)


### Bug Fixes

* fix DatePicker,Switch,Upload to a11y ([99ef836](https://github.com/alibaba-fusion/next/commit/99ef836))
* **Checkbox:** number 0 should be rendered ([93318d8](https://github.com/alibaba-fusion/next/commit/93318d8))
* **Field:** no react key props for errors ([93127d6](https://github.com/alibaba-fusion/next/commit/93127d6))
* **Menu:** Resolve expanding and selecting in uncontrolled mode ([#667](https://github.com/alibaba-fusion/next/issues/667)) ([0ba7e4a](https://github.com/alibaba-fusion/next/commit/0ba7e4a))
* **Menu:** Resolve items that created by `React.forwardRef` ([807d8de](https://github.com/alibaba-fusion/next/commit/807d8de))
* **Select:** hight first item with remote datasource. Close [#654](https://github.com/alibaba-fusion/next/issues/654) ([d784ee0](https://github.com/alibaba-fusion/next/commit/d784ee0))


### Features

* add file types/ to customize index.d.ts ([c537d81](https://github.com/alibaba-fusion/next/commit/c537d81))
* **Menu:** add API embeddable ([6d21bb1](https://github.com/alibaba-fusion/next/commit/6d21bb1))
* **Nav:** add API embeddable ([1379df3](https://github.com/alibaba-fusion/next/commit/1379df3))
* **Table:** add API sortIcons to customize sort icons ([7abcf7c](https://github.com/alibaba-fusion/next/commit/7abcf7c))
* **Field:** parseName defaults ([#683](https://github.com/alibaba-fusion/next/issues/683)) ([7fe0130](https://github.com/alibaba-fusion/next/commit/7fe0130))
* **Field:** revert typescript of Field to any ([c35d935](https://github.com/alibaba-fusion/next/commit/c35d935))
* **Input:** maxLength in safari on Mac. Close [#671](https://github.com/alibaba-fusion/next/issues/671) ([f771d67](https://github.com/alibaba-fusion/next/commit/f771d67))
* **Tab:** should not listen to extra keyboard events ([50e1699](https://github.com/alibaba-fusion/next/commit/50e1699))


6 changes: 3 additions & 3 deletions docs/cascader/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ const dataSource = [{

| 按键 | 说明 |
| :---------- | :--------------------- |
| Left Arrow | 获取同级当前项前一项焦点 |
| Right Arrow | 获取同级当前项后一项焦点 |
| Tab | 进入当前项的子元素,并获取第一个子元素为焦点 |
| Left Arrow | 获取同级当前项前一项焦点 |
| Right Arrow | 获取同级当前项后一项焦点 |
| Tab | 进入当前项的子元素,并获取第一个子元素为焦点 |
| Esc | 返回当前项的父元素并获取焦点 |
| SPACE | 选择当前项 |
8 changes: 4 additions & 4 deletions docs/field/demo/topath-defaults.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class Demo extends React.Component {
}
} = this;

validate(['bbb.ccc'])
validate(['bbb.ccc']);
};

render() {
Expand All @@ -50,17 +50,17 @@ class Demo extends React.Component {
}
} = this;

console.log(this)
console.log(this);

return <Form field={field}>
return (<Form field={field}>
<Button onClick={this._handleValidate}>validate</Button>
<Form.Item label="aaa" key="aaa">
<Input name="aaa.0"/>
</Form.Item>
<Form.Item label="ccc" key="ccc">
<Input name="bbb.ccc"/>
</Form.Item>
</Form>;
</Form>);
}
}

Expand Down
13 changes: 6 additions & 7 deletions docs/number-picker/demo/accessibility.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,21 +33,20 @@ class App extends React.Component {
if(value >= 0){
num = value;
}else {
num =`negative ${value * -1}`
num = `negative ${value * -1}`;
}
this.setState({
value: value,
tip:`${num}`,
tip: `${num}`,
});
}
render() {
const {value, tip} = this.state;
return (<div>
<span id="a11y-number-picker" aria-live="assertive" aria-label={tip}></span>
const { value, tip } = this.state;
return (<div>
<span id="a11y-number-picker" aria-live="assertive" aria-label={tip}></span>
<NumberPicker type="inline" value={value} onChange={this.onChange} upBtnProps={{'aria-label':'increasing button'}} downBtnProps={{'aria-label':'decreasing button'}} aria-labelledby="a11y-number-picker" />
</div>);
}
}
ReactDOM.render(<App/>, mountNode);

````
````
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.14.4';
next.version = '1.14.5';

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

0 comments on commit 7c4e575

Please sign in to comment.