diff --git a/CHANGELOG.md b/CHANGELOG.md index efbb8a9012..1ff7a3df37 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Change Log +# [1.21.0](https://github.com/alibaba-fusion/next/compare/1.20.28...1.21.0) (2020-08-25) + + +### Features + +* **Button:** add active ([51107d1](https://github.com/alibaba-fusion/next/commit/51107d1)) +* **Button:** update disabled configuration ([18140ab](https://github.com/alibaba-fusion/next/commit/18140ab)) +* **List:** add loading/emptyContent/dataSource/renderItem, close [#2050](https://github.com/alibaba-fusion/next/issues/2050) ([#2105](https://github.com/alibaba-fusion/next/issues/2105)) ([1fb62bf](https://github.com/alibaba-fusion/next/commit/1fb62bf)) +* **Locale:** add vi and it ([#2051](https://github.com/alibaba-fusion/next/issues/2051)) ([efd5da9](https://github.com/alibaba-fusion/next/commit/efd5da9)) +* **Table:** ExpandTable with StickyLock ([343a550](https://github.com/alibaba-fusion/next/commit/343a550)) +* **Table:** support columns ([83ef263](https://github.com/alibaba-fusion/next/commit/83ef263)) +* **Table:** update lock with position sticky, close [#1728](https://github.com/alibaba-fusion/next/issues/1728) ([8732416](https://github.com/alibaba-fusion/next/commit/8732416)) +* **Upload:** add fileKeyName to set form-data name for file. fix [#1940](https://github.com/alibaba-fusion/next/issues/1940) ([6f5d5f4](https://github.com/alibaba-fusion/next/commit/6f5d5f4)) +* **Upload:** add fileKeyName to set form-data name for file. fix [#1940](https://github.com/alibaba-fusion/next/issues/1940) ([df561e2](https://github.com/alibaba-fusion/next/commit/df561e2)) +* **Upload:** api fileNameRender/actionRender fix [#910](https://github.com/alibaba-fusion/next/issues/910),[#1934](https://github.com/alibaba-fusion/next/issues/1934),[#1778](https://github.com/alibaba-fusion/next/issues/1778) ([acd381d](https://github.com/alibaba-fusion/next/commit/acd381d)) +* **Upload:** api fileNameRender/actionRender fix [#910](https://github.com/alibaba-fusion/next/issues/910),[#1934](https://github.com/alibaba-fusion/next/issues/1934),[#1778](https://github.com/alibaba-fusion/next/issues/1778) ([d681304](https://github.com/alibaba-fusion/next/commit/d681304)) + + + + ## [1.20.28](https://github.com/alibaba-fusion/next/compare/1.20.26...1.20.28) (2020-08-12) diff --git a/LATESTLOG.md b/LATESTLOG.md index d454681107..9ff383411a 100644 --- a/LATESTLOG.md +++ b/LATESTLOG.md @@ -1,11 +1,20 @@ # Latest Log -## [1.20.28](https://github.com/alibaba-fusion/next/compare/1.20.26...1.20.28) (2020-08-12) +# [1.21.0](https://github.com/alibaba-fusion/next/compare/1.20.28...1.21.0) (2020-08-25) -### Bug Fixes +### Features -* **Menu:** in caseof children null, close [#2088](https://github.com/alibaba-fusion/next/issues/2088) ([7f20168](https://github.com/alibaba-fusion/next/commit/7f20168)) -* **Select:** compact with string value while useDetailValue=true ([59bd67a](https://github.com/alibaba-fusion/next/commit/59bd67a)) +* **Button:** add active ([51107d1](https://github.com/alibaba-fusion/next/commit/51107d1)) +* **Button:** update disabled configuration ([18140ab](https://github.com/alibaba-fusion/next/commit/18140ab)) +* **List:** add loading/emptyContent/dataSource/renderItem, close [#2050](https://github.com/alibaba-fusion/next/issues/2050) ([#2105](https://github.com/alibaba-fusion/next/issues/2105)) ([1fb62bf](https://github.com/alibaba-fusion/next/commit/1fb62bf)) +* **Locale:** add vi and it ([#2051](https://github.com/alibaba-fusion/next/issues/2051)) ([efd5da9](https://github.com/alibaba-fusion/next/commit/efd5da9)) +* **Table:** ExpandTable with StickyLock ([343a550](https://github.com/alibaba-fusion/next/commit/343a550)) +* **Table:** support columns ([83ef263](https://github.com/alibaba-fusion/next/commit/83ef263)) +* **Table:** update lock with position sticky, close [#1728](https://github.com/alibaba-fusion/next/issues/1728) ([8732416](https://github.com/alibaba-fusion/next/commit/8732416)) +* **Upload:** add fileKeyName to set form-data name for file. fix [#1940](https://github.com/alibaba-fusion/next/issues/1940) ([6f5d5f4](https://github.com/alibaba-fusion/next/commit/6f5d5f4)) +* **Upload:** add fileKeyName to set form-data name for file. fix [#1940](https://github.com/alibaba-fusion/next/issues/1940) ([df561e2](https://github.com/alibaba-fusion/next/commit/df561e2)) +* **Upload:** api fileNameRender/actionRender fix [#910](https://github.com/alibaba-fusion/next/issues/910),[#1934](https://github.com/alibaba-fusion/next/issues/1934),[#1778](https://github.com/alibaba-fusion/next/issues/1778) ([acd381d](https://github.com/alibaba-fusion/next/commit/acd381d)) +* **Upload:** api fileNameRender/actionRender fix [#910](https://github.com/alibaba-fusion/next/issues/910),[#1934](https://github.com/alibaba-fusion/next/issues/1934),[#1778](https://github.com/alibaba-fusion/next/issues/1778) ([d681304](https://github.com/alibaba-fusion/next/commit/d681304)) diff --git a/docs/list/demo/custom-loading.md b/docs/list/demo/custom-loading.md index 981772866d..b4bd6e6a95 100644 --- a/docs/list/demo/custom-loading.md +++ b/docs/list/demo/custom-loading.md @@ -57,7 +57,7 @@ const CustomLoading = (props) => ( const App = () => { const [loading, setLoading] = useState(false); - return
+ return (
{ dataSource={data} renderItem={(item, i) => }>List Item {i}} /> -
-} +
); +}; ReactDOM.render( , mountNode); diff --git a/docs/list/demo/loading.md b/docs/list/demo/loading.md index b8c41c6bd3..177987e3d2 100644 --- a/docs/list/demo/loading.md +++ b/docs/list/demo/loading.md @@ -44,7 +44,7 @@ const data = [ const App = () => { const [loading, setLoading] = useState(false); - return
+ return (
{ dataSource={data} renderItem={(item, i) => }>List Item {i}} /> -
-} +
); +}; ReactDOM.render( , mountNode); diff --git a/docs/select/demo/select-scroll-load.md b/docs/select/demo/select-scroll-load.md index 4b9ecaea8e..3dbb251d6e 100644 --- a/docs/select/demo/select-scroll-load.md +++ b/docs/select/demo/select-scroll-load.md @@ -45,17 +45,17 @@ class App extends React.Component { console.log(dataSource, otherData); this.setState({ dataSource: dataSource.concat(otherData) - }) + }); } } render() { - return