Skip to content

Commit

Permalink
chore(*): Release-1.19.13
Browse files Browse the repository at this point in the history
  • Loading branch information
youluna committed Feb 14, 2020
1 parent e6318c3 commit d26b262
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)


Expand Down
11 changes: 8 additions & 3 deletions LATESTLOG.md
Original file line number Diff line number Diff line change
@@ -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))


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.19.12';
next.version = '1.19.13';

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.19.12",
"version": "1.19.13",
"description": "A configurable component library for web built on React.",
"keywords": [
"fusion",
Expand Down
5 changes: 4 additions & 1 deletion site/en-us/theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}]
]
}
},
Expand Down
5 changes: 4 additions & 1 deletion site/zh-cn/theme.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
}],
],
},
},
Expand Down

0 comments on commit d26b262

Please sign in to comment.