From 7c4e575553c112c765157c1b6fd56e0fc46dfcc9 Mon Sep 17 00:00:00 2001 From: youluna Date: Wed, 22 May 2019 19:48:07 +0800 Subject: [PATCH] chore(*): Release-1.14.5 --- CHANGELOG.md | 14 +++++++++++++- LATESTLOG.md | 20 +++++--------------- docs/cascader/index.md | 6 +++--- docs/field/demo/topath-defaults.md | 8 ++++---- docs/number-picker/demo/accessibility.md | 13 ++++++------- index.js | 2 +- package.json | 2 +- 7 files changed, 33 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1848a7b8bf..65c3f4f69d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/LATESTLOG.md b/LATESTLOG.md index d997c48ad7..49ca3be7d8 100644 --- a/LATESTLOG.md +++ b/LATESTLOG.md @@ -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)) diff --git a/docs/cascader/index.md b/docs/cascader/index.md index e0a88950ba..ef462f1c7d 100644 --- a/docs/cascader/index.md +++ b/docs/cascader/index.md @@ -76,8 +76,8 @@ const dataSource = [{ | 按键 | 说明 | | :---------- | :--------------------- | -| Left Arrow | 获取同级当前项前一项焦点 | -| Right Arrow | 获取同级当前项后一项焦点 | -| Tab | 进入当前项的子元素,并获取第一个子元素为焦点 | +| Left Arrow | 获取同级当前项前一项焦点 | +| Right Arrow | 获取同级当前项后一项焦点 | +| Tab | 进入当前项的子元素,并获取第一个子元素为焦点 | | Esc | 返回当前项的父元素并获取焦点 | | SPACE | 选择当前项 | diff --git a/docs/field/demo/topath-defaults.md b/docs/field/demo/topath-defaults.md index 9057aefe3d..49405ba251 100644 --- a/docs/field/demo/topath-defaults.md +++ b/docs/field/demo/topath-defaults.md @@ -39,7 +39,7 @@ class Demo extends React.Component { } } = this; - validate(['bbb.ccc']) + validate(['bbb.ccc']); }; render() { @@ -50,9 +50,9 @@ class Demo extends React.Component { } } = this; - console.log(this) + console.log(this); - return
+ return ( @@ -60,7 +60,7 @@ class Demo extends React.Component { - ; + ); } } diff --git a/docs/number-picker/demo/accessibility.md b/docs/number-picker/demo/accessibility.md index 610027b3fb..189fe74dcc 100644 --- a/docs/number-picker/demo/accessibility.md +++ b/docs/number-picker/demo/accessibility.md @@ -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 (
- + const { value, tip } = this.state; + return (
+
); } } ReactDOM.render(, mountNode); - -```` \ No newline at end of file +```` diff --git a/index.js b/index.js index 99fd86d6f4..e8230a5684 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ var next = require('./lib/index.js'); -next.version = '1.14.4'; +next.version = '1.14.5'; module.exports = next; diff --git a/package.json b/package.json index 0156f9d8c0..61e48b3126 100644 --- a/package.json +++ b/package.json @@ -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",