From d26b26215ff150ad29fec5ce1ed02bc02deaa691 Mon Sep 17 00:00:00 2001 From: youluna Date: Fri, 14 Feb 2020 18:41:48 +0800 Subject: [PATCH] chore(*): Release-1.19.13 --- CHANGELOG.md | 16 ++++++++++++++++ LATESTLOG.md | 11 ++++++++--- index.js | 2 +- package.json | 2 +- site/en-us/theme.md | 5 ++++- site/zh-cn/theme.md | 5 ++++- 6 files changed, 34 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fd2a408c0..98fe5bb5a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## [1.19.13](https://github.com/alibaba-fusion/next/compare/1.19.12...1.19.13) (2020-02-14) + + +### Bug Fixes + +* **Collapse:** collapsed panel should be overflow hidden, close [#1569](https://github.com/alibaba-fusion/next/issues/1569) ([c2767ec](https://github.com/alibaba-fusion/next/commit/c2767ec)) + + +### Features + +* **Shell:** add align for Shell.Navigaiton ([#1576](https://github.com/alibaba-fusion/next/issues/1576)) ([e6318c3](https://github.com/alibaba-fusion/next/commit/e6318c3)) +* **Table:** add htmlTitle for header ([8a89c0a](https://github.com/alibaba-fusion/next/commit/8a89c0a)) + + + + ## [1.19.12](https://github.com/alibaba-fusion/next/compare/1.19.11...1.19.12) (2020-02-10) diff --git a/LATESTLOG.md b/LATESTLOG.md index 0f41e15d6f..74cc3212ed 100644 --- a/LATESTLOG.md +++ b/LATESTLOG.md @@ -1,11 +1,16 @@ # Latest Log -## [1.19.12](https://github.com/alibaba-fusion/next/compare/1.19.11...1.19.12) (2020-02-10) +## [1.19.13](https://github.com/alibaba-fusion/next/compare/1.19.12...1.19.13) (2020-02-14) ### Bug Fixes -* **Checkbox:** allow pass title to label ([fd36f8c](https://github.com/alibaba-fusion/next/commit/fd36f8c)) -* **Tab:** fix tab hover shake ([#1563](https://github.com/alibaba-fusion/next/issues/1563)) ([c921c89](https://github.com/alibaba-fusion/next/commit/c921c89)) +* **Collapse:** collapsed panel should be overflow hidden, close [#1569](https://github.com/alibaba-fusion/next/issues/1569) ([c2767ec](https://github.com/alibaba-fusion/next/commit/c2767ec)) + + +### Features + +* **Shell:** add align for Shell.Navigaiton ([#1576](https://github.com/alibaba-fusion/next/issues/1576)) ([e6318c3](https://github.com/alibaba-fusion/next/commit/e6318c3)) +* **Table:** add htmlTitle for header ([8a89c0a](https://github.com/alibaba-fusion/next/commit/8a89c0a)) diff --git a/index.js b/index.js index 88992cd435..90c22b02ac 100644 --- a/index.js +++ b/index.js @@ -1,5 +1,5 @@ var next = require('./lib/index.js'); -next.version = '1.19.12'; +next.version = '1.19.13'; module.exports = next; diff --git a/package.json b/package.json index ec4cf6d27c..c19ce5958d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@alifd/next", - "version": "1.19.12", + "version": "1.19.13", "description": "A configurable component library for web built on React.", "keywords": [ "fusion", diff --git a/site/en-us/theme.md b/site/en-us/theme.md index d665284b85..5eb55fe047 100644 --- a/site/en-us/theme.md +++ b/site/en-us/theme.md @@ -56,7 +56,10 @@ module.exports = { plugins: [ 'add-module-exports', 'transform-decorators-legacy', - ['babel-plugin-import', { style: true }] + ['babel-plugin-import', { + libraryName: '@alifd/next', + style: true + }] ] } }, diff --git a/site/zh-cn/theme.md b/site/zh-cn/theme.md index 50ed9f734c..d3dfd2f05c 100644 --- a/site/zh-cn/theme.md +++ b/site/zh-cn/theme.md @@ -64,7 +64,10 @@ module.exports = { plugins: [ 'add-module-exports', 'transform-decorators-legacy', - ['babel-plugin-import', { style: true }], + ['babel-plugin-import', { + libraryName: '@alifd/next', + style: true + }], ], }, },