diff --git a/CHANGELOG.md b/CHANGELOG.md index d1fd35d7804..173f9c85d86 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,22 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Bug Fixes + +- **AnalyticalTable:** only sync scroll if parent is available ([#4906](https://github.com/SAP/ui5-webcomponents-react/issues/4906)) ([4ebd0b1](https://github.com/SAP/ui5-webcomponents-react/commit/4ebd0b1ba2a4865be487db57b5409c17b1f78d84)) +- **charts:** fix description and behavior of `chartConfig.legendPosition` ([#4911](https://github.com/SAP/ui5-webcomponents-react/issues/4911)) ([a86fce6](https://github.com/SAP/ui5-webcomponents-react/commit/a86fce6dfae7cce57f45394c60a38ece19ca3bb9)) +- **FormItem:** apply bottom margin of group on custom Label ([#4932](https://github.com/SAP/ui5-webcomponents-react/issues/4932)) ([251421d](https://github.com/SAP/ui5-webcomponents-react/commit/251421d09a37006d6fe0b7a1de6cf1ee91847e4c)), closes [#4921](https://github.com/SAP/ui5-webcomponents-react/issues/4921) +- **Form:** support conditional rendering of children ([#4942](https://github.com/SAP/ui5-webcomponents-react/issues/4942)) ([9d3bcdb](https://github.com/SAP/ui5-webcomponents-react/commit/9d3bcdb5965acb152fe83f6a0d884c301d68d7ba)), closes [#4923](https://github.com/SAP/ui5-webcomponents-react/issues/4923) +- **ObjectStatus:** apply latest available specs ([#4939](https://github.com/SAP/ui5-webcomponents-react/issues/4939)) ([03835db](https://github.com/SAP/ui5-webcomponents-react/commit/03835db128a77b682c68559fffeb50e1b496afc3)), closes [#4934](https://github.com/SAP/ui5-webcomponents-react/issues/4934) +- omit html attributes from web components if value is `false` ([#4941](https://github.com/SAP/ui5-webcomponents-react/issues/4941)) ([f5361c0](https://github.com/SAP/ui5-webcomponents-react/commit/f5361c0660e7e040c7212980a8980a6fc1b54e0a)), closes [#4937](https://github.com/SAP/ui5-webcomponents-react/issues/4937) +- **useStylesheet:** add 'use client' directive ([#4919](https://github.com/SAP/ui5-webcomponents-react/issues/4919)) ([1f2ee04](https://github.com/SAP/ui5-webcomponents-react/commit/1f2ee0459217ff83754930df0f60aa2b3d2dda35)) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + ## [1.17.3](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.2...v1.17.3) (2023-07-19) ### Bug Fixes diff --git a/lerna.json b/lerna.json index 8a369b23ffa..5eca3094547 100644 --- a/lerna.json +++ b/lerna.json @@ -1,6 +1,6 @@ { "$schema": "node_modules/lerna/schemas/lerna-schema.json", - "version": "1.17.3", + "version": "1.18.0", "npmClient": "yarn", "command": { "version": { diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index 9faf5064e20..00ea72e70aa 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Bug Fixes + +- **useStylesheet:** add 'use client' directive ([#4919](https://github.com/SAP/ui5-webcomponents-react/issues/4919)) ([1f2ee04](https://github.com/SAP/ui5-webcomponents-react/commit/1f2ee0459217ff83754930df0f60aa2b3d2dda35)) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + ## [1.17.3](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.2...v1.17.3) (2023-07-19) **Note:** Version bump only for package @ui5/webcomponents-react-base diff --git a/packages/base/package.json b/packages/base/package.json index 8c83054c613..bad3e2f246b 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-base", - "version": "1.17.3", + "version": "1.18.0", "description": "Base for ui5-webcomponents-react", "type": "module", "main": "dist/index.js", diff --git a/packages/charts/CHANGELOG.md b/packages/charts/CHANGELOG.md index 931abbb4c8b..735aa4c9d11 100644 --- a/packages/charts/CHANGELOG.md +++ b/packages/charts/CHANGELOG.md @@ -3,6 +3,16 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Bug Fixes + +- **charts:** fix description and behavior of `chartConfig.legendPosition` ([#4911](https://github.com/SAP/ui5-webcomponents-react/issues/4911)) ([a86fce6](https://github.com/SAP/ui5-webcomponents-react/commit/a86fce6dfae7cce57f45394c60a38ece19ca3bb9)) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + ## [1.17.3](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.2...v1.17.3) (2023-07-19) ### Bug Fixes diff --git a/packages/charts/package.json b/packages/charts/package.json index 567bd3689f8..e04a13ae315 100644 --- a/packages/charts/package.json +++ b/packages/charts/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react-charts", - "version": "1.17.3", + "version": "1.18.0", "description": "Charts for ui5-webcomponents-react", "type": "module", "main": "dist/index.js", diff --git a/packages/cra-template-seed/CHANGELOG.md b/packages/cra-template-seed/CHANGELOG.md index 0ede4a8a828..9e4e73aabed 100644 --- a/packages/cra-template-seed/CHANGELOG.md +++ b/packages/cra-template-seed/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + # [1.17.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.16.3...v1.17.0) (2023-07-03) ### Features diff --git a/packages/cra-template-seed/package.json b/packages/cra-template-seed/package.json index c8082e3d2ac..c61e38eaf46 100644 --- a/packages/cra-template-seed/package.json +++ b/packages/cra-template-seed/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/cra-template-webcomponents-react-seed", - "version": "1.17.0", + "version": "1.18.0", "keywords": [ "react", "create-react-app", diff --git a/packages/cra-template/CHANGELOG.md b/packages/cra-template/CHANGELOG.md index 6c902aaf063..99da47428f8 100644 --- a/packages/cra-template/CHANGELOG.md +++ b/packages/cra-template/CHANGELOG.md @@ -3,6 +3,12 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + # [1.17.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.16.3...v1.17.0) (2023-07-03) ### Features diff --git a/packages/cra-template/package.json b/packages/cra-template/package.json index ca513209304..dd292490bfe 100644 --- a/packages/cra-template/package.json +++ b/packages/cra-template/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/cra-template-webcomponents-react", - "version": "1.17.0", + "version": "1.18.0", "keywords": [ "react", "create-react-app", diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index 4580964fae0..db4412b3d8e 100644 --- a/packages/main/CHANGELOG.md +++ b/packages/main/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [1.18.0](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.3...v1.18.0) (2023-08-04) + +### Bug Fixes + +- **AnalyticalTable:** only sync scroll if parent is available ([#4906](https://github.com/SAP/ui5-webcomponents-react/issues/4906)) ([4ebd0b1](https://github.com/SAP/ui5-webcomponents-react/commit/4ebd0b1ba2a4865be487db57b5409c17b1f78d84)) +- **FormItem:** apply bottom margin of group on custom Label ([#4932](https://github.com/SAP/ui5-webcomponents-react/issues/4932)) ([251421d](https://github.com/SAP/ui5-webcomponents-react/commit/251421d09a37006d6fe0b7a1de6cf1ee91847e4c)), closes [#4921](https://github.com/SAP/ui5-webcomponents-react/issues/4921) +- **Form:** support conditional rendering of children ([#4942](https://github.com/SAP/ui5-webcomponents-react/issues/4942)) ([9d3bcdb](https://github.com/SAP/ui5-webcomponents-react/commit/9d3bcdb5965acb152fe83f6a0d884c301d68d7ba)), closes [#4923](https://github.com/SAP/ui5-webcomponents-react/issues/4923) +- **ObjectStatus:** apply latest available specs ([#4939](https://github.com/SAP/ui5-webcomponents-react/issues/4939)) ([03835db](https://github.com/SAP/ui5-webcomponents-react/commit/03835db128a77b682c68559fffeb50e1b496afc3)), closes [#4934](https://github.com/SAP/ui5-webcomponents-react/issues/4934) +- omit html attributes from web components if value is `false` ([#4941](https://github.com/SAP/ui5-webcomponents-react/issues/4941)) ([f5361c0](https://github.com/SAP/ui5-webcomponents-react/commit/f5361c0660e7e040c7212980a8980a6fc1b54e0a)), closes [#4937](https://github.com/SAP/ui5-webcomponents-react/issues/4937) + +### Features + +- update `@ui5/webcomponents` to `~1.16.0` ([#4933](https://github.com/SAP/ui5-webcomponents-react/issues/4933)) ([4f42717](https://github.com/SAP/ui5-webcomponents-react/commit/4f427171453eefb0b43b0862f677a0c18ac3900a)) + ## [1.17.3](https://github.com/SAP/ui5-webcomponents-react/compare/v1.17.2...v1.17.3) (2023-07-19) ### Bug Fixes diff --git a/packages/main/package.json b/packages/main/package.json index 11570730ffa..3f5ce25adb2 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-react", - "version": "1.17.3", + "version": "1.18.0", "description": "React Wrapper for UI5 Web Components and additional components", "type": "module", "main": "dist/index.js",