diff --git a/CHANGELOG.md b/CHANGELOG.md index a28cff16e60a..01b1a6cca5fc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,28 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + + +### Bug Fixes + +* boot sequence ([#10042](https://github.com/SAP/ui5-webcomponents/issues/10042)) ([106373d](https://github.com/SAP/ui5-webcomponents/commit/106373d4585dd2c5fa458ffccd513596289a2f79)) +* **ui5-list:** growing button loading layout fixed ([#10043](https://github.com/SAP/ui5-webcomponents/issues/10043)) ([efd7e6a](https://github.com/SAP/ui5-webcomponents/commit/efd7e6ad4f27befb5fb1316e8163456c6b77726f)), closes [#9977](https://github.com/SAP/ui5-webcomponents/issues/9977) [#10047](https://github.com/SAP/ui5-webcomponents/issues/10047) +* **ui5-notification-list:** fix header bar visibility ([#10010](https://github.com/SAP/ui5-webcomponents/issues/10010)) ([95db5c6](https://github.com/SAP/ui5-webcomponents/commit/95db5c63a3c21ba2d948f5070f3bd1ba85e584ef)), closes [#9995](https://github.com/SAP/ui5-webcomponents/issues/9995) +* **ui5-slider, ui5-range-slider:** adjust aria-attributes ([#10039](https://github.com/SAP/ui5-webcomponents/issues/10039)) ([ed3abfc](https://github.com/SAP/ui5-webcomponents/commit/ed3abfcf2eec5469bd18ac5becf29e34e427a2f1)), closes [#9547](https://github.com/SAP/ui5-webcomponents/issues/9547) +* **ui5-split-button:** adjust focus outline on keydown ([#10001](https://github.com/SAP/ui5-webcomponents/issues/10001)) ([898db40](https://github.com/SAP/ui5-webcomponents/commit/898db4031d5710b890a0a9d76c34216cf35a969b)) +* **ui5-table:** wrong horiz. alignm. behavior and wrong texts ([#10040](https://github.com/SAP/ui5-webcomponents/issues/10040)) ([f3da992](https://github.com/SAP/ui5-webcomponents/commit/f3da99295b4255e8f22b58f4ed72561fa0bbe215)), closes [#9639](https://github.com/SAP/ui5-webcomponents/issues/9639) [#10017](https://github.com/SAP/ui5-webcomponents/issues/10017) + + +### Features + +* **ui5-barcode-scanner-dialog:** added support for custom header and footer slots ([#10066](https://github.com/SAP/ui5-webcomponents/issues/10066)) ([4d06b2e](https://github.com/SAP/ui5-webcomponents/commit/4d06b2e94024e1cf6e121650453362ca79fc8836)), closes [#8919](https://github.com/SAP/ui5-webcomponents/issues/8919) +* **ui5-filter-item, ui5-sort-item,..:** add selected `filterItems` to `ui5-confirm` event details ([#9838](https://github.com/SAP/ui5-webcomponents/issues/9838)) ([56ad311](https://github.com/SAP/ui5-webcomponents/commit/56ad3115affe17f453a30ac0880ac879dbbd763b)) + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/docs/2-advanced/09-accessibility.md b/docs/2-advanced/09-accessibility.md index 5c176498adcc..b77b078dc379 100644 --- a/docs/2-advanced/09-accessibility.md +++ b/docs/2-advanced/09-accessibility.md @@ -63,6 +63,74 @@ Theming is an important aspect when it comes to a UI5 Web Components application For more information regarding the available themes and how to use them, see the [Configuration](../2-advanced/01-configuration.md) section. +### Theme Selection According to OS Settings + +The UI5 Web Components framework does not offer a built-in mechanism for selecting themes based on the users' OS settings. However, we recommend using standard APIs to implement OS-based theme selection in applications built with UI5 Web Components. + +In the next sections, we will demonstrate one of the possible approaches to detect and apply a theme that aligns with the user's OS preferences. However, you are free to explore and develop your own detection and matching algorithm. + +#### Light | Dark + +To synchronize theme switching with the OS's light or dark mode, you can use the [prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) CSS Media feature, as shown in the next example: + +Check `prefers-color-scheme` for `dark` or `light` and apply one of the availabe light/dark themes (Horizon Morning, Horizon Evening, ect.) + +```ts +import { setTheme } from "@ui5/webcomponents-base/dist/config/Theme.js"; + +const darkColorScheme = window.matchMedia("(prefers-color-scheme: dark)").matches; + +setTheme(darkColorScheme ? "sap_horizon_dark" : "sap_horizon"); +``` + +#### Contrast + +To switch to a high contrast theme when the OS does, you can use [prefers-color-scheme](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-color-scheme) and [prefers-contrast](https://developer.mozilla.org/en-US/docs/Web/CSS/@media/prefers-contrast) (detecting MacOS contrast preferences and Windows high contrast themes) CSS features, as shown in the next example: + +Check `prefers-color-scheme` for `dark` or `light` and `prefers-contrast` for `more`, and apply one of the available high contrast themes (Horizon High Contrast White or Horizon High Contrast Black) + +```ts +import { setTheme } from "@ui5/webcomponents-base/dist/config/Theme.js"; + +const darkColorScheme = window.matchMedia("(prefers-color-scheme: dark)").matches; +const prefersContrastMore = window.matchMedia("(prefers-contrast: more)").matches; +const prefersContrastCustom = window.matchMedia("(prefers-contrast: custom)").matches; +const prefersContrast = prefersContrastMore || prefersContrastCustom; + +if (prefersContrast) { + setTheme(darkColorScheme ? "sap_horizon_hcb" : "sap_horizon_hcw"); +} +``` + +**Note:** In addition to detecting contrast mode, you need to check for light and dark modes via `prefers-color-scheme` to pick between the High Contrast Black and High Contrast White themes. + +The examples above will work for initial loading. However, to react on dynamic changes of the user preferences, you need to attach for the media query `change` event, fired when the status of media query support changes. + +Here is the full solution, listening for changes of the OS settings and considering light, dark and contrast preferences: + +```ts +import { setTheme } from "@ui5/webcomponents-base/dist/config/Theme.js"; + +const darkColorScheme = window.matchMedia("(prefers-color-scheme: dark)"); +const prefersContrastMore = window.matchMedia("(prefers-contrast: more)"); +const prefersContrastCustom = window.matchMedia("(prefers-contrast: custom)"); + +const applyOSThemePreferences = () => { + if (prefersContrastMore.matches || prefersContrastCustom.matches) { + setTheme(darkColorScheme.matches ? "sap_horizon_hcb" : "sap_horizon_hcw"); + } else { + setTheme(darkColorScheme.matches ? "sap_horizon_dark" : "sap_horizon"); + } +} + +darkColorScheme.onchange = applyOSThemePreferences; +prefersContrastMore.onchange = applyOSThemePreferences; +prefersContrastCustom.onchange = applyOSThemePreferences; + +applyOSThemePreferences(); +``` + +Although you've learned how to detect OS settings and apply the corresponding theme, we recommend allowing users to decide whether the theme should always match the OS setting OS settings by providing application settings and not forcing the OS settings by default. ## Accessibility APIs diff --git a/lerna.json b/lerna.json index 622f2016503a..15e34021f0cf 100644 --- a/lerna.json +++ b/lerna.json @@ -14,7 +14,7 @@ "packages/create-package", "packages/compat" ], - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "command": { "publish": { "allowBranch": "*", diff --git a/packages/ai/CHANGELOG.md b/packages/ai/CHANGELOG.md index 6e53045294c2..f5ff10531e8f 100644 --- a/packages/ai/CHANGELOG.md +++ b/packages/ai/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-ai + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/ai/package.json b/packages/ai/package.json index ed01386bb5a4..6ad32c223426 100644 --- a/packages/ai/package.json +++ b/packages/ai/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-ai", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.ai", "ui5": { "webComponentsPackage": true @@ -45,13 +45,13 @@ "directory": "packages/ai" }, "dependencies": { - "@ui5/webcomponents": "2.4.0-rc.1", - "@ui5/webcomponents-base": "2.4.0-rc.1", - "@ui5/webcomponents-icons": "2.4.0-rc.1", - "@ui5/webcomponents-theming": "2.4.0-rc.1" + "@ui5/webcomponents": "2.4.0-rc.2", + "@ui5/webcomponents-base": "2.4.0-rc.2", + "@ui5/webcomponents-icons": "2.4.0-rc.2", + "@ui5/webcomponents-theming": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "chromedriver": "^129.0.0" } } diff --git a/packages/base/CHANGELOG.md b/packages/base/CHANGELOG.md index ad8cfd5e964c..2e105440ddc7 100644 --- a/packages/base/CHANGELOG.md +++ b/packages/base/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + + +### Bug Fixes + +* boot sequence ([#10042](https://github.com/SAP/ui5-webcomponents/issues/10042)) ([106373d](https://github.com/SAP/ui5-webcomponents/commit/106373d4585dd2c5fa458ffccd513596289a2f79)) + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/base/package.json b/packages/base/package.json index 2a64ee459d1e..d75548d3cbd7 100644 --- a/packages/base/package.json +++ b/packages/base/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-base", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.base", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -52,7 +52,7 @@ }, "devDependencies": { "@openui5/sap.ui.core": "1.120.17", - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "chromedriver": "^129.0.0", "clean-css": "^5.2.2", "copy-and-watch": "^0.1.5", diff --git a/packages/compat/CHANGELOG.md b/packages/compat/CHANGELOG.md index 1a2180260e09..adcbdfce3c8c 100644 --- a/packages/compat/CHANGELOG.md +++ b/packages/compat/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-compat + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/compat/package.json b/packages/compat/package.json index 1c7c7941cd8d..31098d5c2a3b 100644 --- a/packages/compat/package.json +++ b/packages/compat/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-compat", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.compat", "ui5": { "webComponentsPackage": true @@ -45,13 +45,13 @@ "directory": "packages/compat" }, "dependencies": { - "@ui5/webcomponents": "2.4.0-rc.1", - "@ui5/webcomponents-base": "2.4.0-rc.1", - "@ui5/webcomponents-icons": "2.4.0-rc.1", - "@ui5/webcomponents-theming": "2.4.0-rc.1" + "@ui5/webcomponents": "2.4.0-rc.2", + "@ui5/webcomponents-base": "2.4.0-rc.2", + "@ui5/webcomponents-icons": "2.4.0-rc.2", + "@ui5/webcomponents-theming": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "chromedriver": "^129.0.0" } } diff --git a/packages/create-package/CHANGELOG.md b/packages/create-package/CHANGELOG.md index c9fa24693072..6cdfa8a68d8c 100644 --- a/packages/create-package/CHANGELOG.md +++ b/packages/create-package/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/create-webcomponents-package + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/create-package/package.json b/packages/create-package/package.json index 8c2bcc44ebc6..9ca739967b80 100644 --- a/packages/create-package/package.json +++ b/packages/create-package/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/create-webcomponents-package", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: create package", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", diff --git a/packages/fiori/CHANGELOG.md b/packages/fiori/CHANGELOG.md index 88d094a11c5d..de0d377bdf3f 100644 --- a/packages/fiori/CHANGELOG.md +++ b/packages/fiori/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + + +### Bug Fixes + +* **ui5-notification-list:** fix header bar visibility ([#10010](https://github.com/SAP/ui5-webcomponents/issues/10010)) ([95db5c6](https://github.com/SAP/ui5-webcomponents/commit/95db5c63a3c21ba2d948f5070f3bd1ba85e584ef)), closes [#9995](https://github.com/SAP/ui5-webcomponents/issues/9995) + + +### Features + +* **ui5-barcode-scanner-dialog:** added support for custom header and footer slots ([#10066](https://github.com/SAP/ui5-webcomponents/issues/10066)) ([4d06b2e](https://github.com/SAP/ui5-webcomponents/commit/4d06b2e94024e1cf6e121650453362ca79fc8836)), closes [#8919](https://github.com/SAP/ui5-webcomponents/issues/8919) +* **ui5-filter-item, ui5-sort-item,..:** add selected `filterItems` to `ui5-confirm` event details ([#9838](https://github.com/SAP/ui5-webcomponents/issues/9838)) ([56ad311](https://github.com/SAP/ui5-webcomponents/commit/56ad3115affe17f453a30ac0880ac879dbbd763b)) + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/fiori/package.json b/packages/fiori/package.json index 3f6d43de1fa2..5c027e568123 100644 --- a/packages/fiori/package.json +++ b/packages/fiori/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-fiori", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.fiori", "ui5": { "webComponentsPackage": true @@ -53,14 +53,14 @@ "directory": "packages/fiori" }, "dependencies": { - "@ui5/webcomponents": "2.4.0-rc.1", - "@ui5/webcomponents-base": "2.4.0-rc.1", - "@ui5/webcomponents-icons": "2.4.0-rc.1", - "@ui5/webcomponents-theming": "2.4.0-rc.1", + "@ui5/webcomponents": "2.4.0-rc.2", + "@ui5/webcomponents-base": "2.4.0-rc.2", + "@ui5/webcomponents-icons": "2.4.0-rc.2", + "@ui5/webcomponents-theming": "2.4.0-rc.2", "@zxing/library": "^0.17.1" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "chromedriver": "^129.0.0", "lit": "^2.0.0" } diff --git a/packages/fiori/src/themes/base/DynamicPage-parameters.css b/packages/fiori/src/themes/base/DynamicPage-parameters.css index ed02061bbb8f..dab5439396fc 100644 --- a/packages/fiori/src/themes/base/DynamicPage-parameters.css +++ b/packages/fiori/src/themes/base/DynamicPage-parameters.css @@ -7,7 +7,7 @@ --_ui5_dynamic_page_title_padding_XL: 0.5rem 3rem; --_ui5_dynamic_page_header_padding_S: 0.5rem 1rem 0.125rem;/* 1px padding-bottom added to ensue box-shadow is not overlapped */ --_ui5_dynamic_page_header_padding_M: 1rem 2rem; - --_ui5_dynamic_page_header_padding_L: 1rem 3rem; + --_ui5_dynamic_page_header_padding_L: 1rem 2rem; --_ui5_dynamic_page_header_padding_XL: 1rem 3rem; --_ui5_dynamic_page_content_padding_S: 2rem 1rem 0; --_ui5_dynamic_page_content_padding_M: 2rem 2rem 0; diff --git a/packages/icons-business-suite/CHANGELOG.md b/packages/icons-business-suite/CHANGELOG.md index 2b1e1a20adc9..39c6fb7d2257 100644 --- a/packages/icons-business-suite/CHANGELOG.md +++ b/packages/icons-business-suite/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-icons-business-suite + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/icons-business-suite/package.json b/packages/icons-business-suite/package.json index 4b9bc8efa16e..b07cc2432907 100644 --- a/packages/icons-business-suite/package.json +++ b/packages/icons-business-suite/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-icons-business-suite", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: SAP Fiori Tools icon set", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -28,9 +28,9 @@ "directory": "packages/icons-business-suite" }, "dependencies": { - "@ui5/webcomponents-base": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1" + "@ui5/webcomponents-tools": "2.4.0-rc.2" } } diff --git a/packages/icons-tnt/CHANGELOG.md b/packages/icons-tnt/CHANGELOG.md index 6343e7694806..832486ef55a0 100644 --- a/packages/icons-tnt/CHANGELOG.md +++ b/packages/icons-tnt/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-icons-tnt + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/icons-tnt/package.json b/packages/icons-tnt/package.json index 6663972d97bd..a9e5fb0efa4a 100644 --- a/packages/icons-tnt/package.json +++ b/packages/icons-tnt/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-icons-tnt", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: SAP Fiori Tools icon set", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -28,9 +28,9 @@ "directory": "packages/icons-tnt" }, "dependencies": { - "@ui5/webcomponents-base": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1" + "@ui5/webcomponents-tools": "2.4.0-rc.2" } } diff --git a/packages/icons/CHANGELOG.md b/packages/icons/CHANGELOG.md index 19d3a1ef71da..5b85db4cbe23 100644 --- a/packages/icons/CHANGELOG.md +++ b/packages/icons/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-icons + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/icons/package.json b/packages/icons/package.json index f4a9f6ee3fc1..de441698e00c 100644 --- a/packages/icons/package.json +++ b/packages/icons/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-icons", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.SAP-icons", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -28,9 +28,9 @@ "directory": "packages/icons" }, "dependencies": { - "@ui5/webcomponents-base": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1" + "@ui5/webcomponents-tools": "2.4.0-rc.2" } } diff --git a/packages/localization/CHANGELOG.md b/packages/localization/CHANGELOG.md index 98a582ddf3a1..99420ce3c9dd 100644 --- a/packages/localization/CHANGELOG.md +++ b/packages/localization/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-localization + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/localization/package.json b/packages/localization/package.json index 6d84e4fa6291..ce32ecd29c90 100644 --- a/packages/localization/package.json +++ b/packages/localization/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-localization", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "Localization for UI5 Web Components", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -33,7 +33,7 @@ "@babel/generator": "^7.23.6", "@babel/parser": "^7.23.6", "@openui5/sap.ui.core": "1.120.17", - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "babel-plugin-amd-to-esm": "^2.0.3", "chromedriver": "^129.0.0", "estree-walk": "^2.2.0", @@ -42,6 +42,6 @@ }, "dependencies": { "@types/openui5": "^1.113.0", - "@ui5/webcomponents-base": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2" } } diff --git a/packages/main/CHANGELOG.md b/packages/main/CHANGELOG.md index 35e78858eba5..b35234796342 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. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + + +### Bug Fixes + +* **ui5-list:** growing button loading layout fixed ([#10043](https://github.com/SAP/ui5-webcomponents/issues/10043)) ([efd7e6a](https://github.com/SAP/ui5-webcomponents/commit/efd7e6ad4f27befb5fb1316e8163456c6b77726f)), closes [#9977](https://github.com/SAP/ui5-webcomponents/issues/9977) [#10047](https://github.com/SAP/ui5-webcomponents/issues/10047) +* **ui5-slider, ui5-range-slider:** adjust aria-attributes ([#10039](https://github.com/SAP/ui5-webcomponents/issues/10039)) ([ed3abfc](https://github.com/SAP/ui5-webcomponents/commit/ed3abfcf2eec5469bd18ac5becf29e34e427a2f1)), closes [#9547](https://github.com/SAP/ui5-webcomponents/issues/9547) +* **ui5-split-button:** adjust focus outline on keydown ([#10001](https://github.com/SAP/ui5-webcomponents/issues/10001)) ([898db40](https://github.com/SAP/ui5-webcomponents/commit/898db4031d5710b890a0a9d76c34216cf35a969b)) +* **ui5-table:** wrong horiz. alignm. behavior and wrong texts ([#10040](https://github.com/SAP/ui5-webcomponents/issues/10040)) ([f3da992](https://github.com/SAP/ui5-webcomponents/commit/f3da99295b4255e8f22b58f4ed72561fa0bbe215)), closes [#9639](https://github.com/SAP/ui5-webcomponents/issues/9639) [#10017](https://github.com/SAP/ui5-webcomponents/issues/10017) + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/main/package.json b/packages/main/package.json index 99fd6d9ea5be..617ffe248580 100644 --- a/packages/main/package.json +++ b/packages/main/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.main", "ui5": { "webComponentsPackage": true @@ -50,15 +50,15 @@ "directory": "packages/main" }, "dependencies": { - "@ui5/webcomponents-base": "2.4.0-rc.1", - "@ui5/webcomponents-icons": "2.4.0-rc.1", - "@ui5/webcomponents-icons-business-suite": "2.4.0-rc.1", - "@ui5/webcomponents-icons-tnt": "2.4.0-rc.1", - "@ui5/webcomponents-localization": "2.4.0-rc.1", - "@ui5/webcomponents-theming": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2", + "@ui5/webcomponents-icons": "2.4.0-rc.2", + "@ui5/webcomponents-icons-business-suite": "2.4.0-rc.2", + "@ui5/webcomponents-icons-tnt": "2.4.0-rc.2", + "@ui5/webcomponents-localization": "2.4.0-rc.2", + "@ui5/webcomponents-theming": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "chromedriver": "^129.0.0", "lit": "^2.0.0" } diff --git a/packages/main/src/i18n/messagebundle_ar.properties b/packages/main/src/i18n/messagebundle_ar.properties index baee04634fc0..60e4605aa086 100644 --- a/packages/main/src/i18n/messagebundle_ar.properties +++ b/packages/main/src/i18n/messagebundle_ar.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=أداة انتقاء الشهر YEAR_PICKER_DESCRIPTION=أداة انتقاء السنة +SLIDER_TOOLTIP_INPUT_DESCRIPTION=اضغط على F2 لإدخال قيمة. + +SLIDER_TOOLTIP_INPUT_LABEL=القيمة الحالية + STEPINPUT_DEC_ICON_TITLE=تخفيض STEPINPUT_INC_ICON_TITLE=زيادة diff --git a/packages/main/src/i18n/messagebundle_bg.properties b/packages/main/src/i18n/messagebundle_bg.properties index 00b04e12f20c..c60a7814d369 100644 --- a/packages/main/src/i18n/messagebundle_bg.properties +++ b/packages/main/src/i18n/messagebundle_bg.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Избор на месец YEAR_PICKER_DESCRIPTION=Избор на година +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Натиснете F2, за да въведете стойност + +SLIDER_TOOLTIP_INPUT_LABEL=Текуща стойност + STEPINPUT_DEC_ICON_TITLE=Намаляване STEPINPUT_INC_ICON_TITLE=Увеличаване diff --git a/packages/main/src/i18n/messagebundle_ca.properties b/packages/main/src/i18n/messagebundle_ca.properties index 5ac245501761..e36983fd7555 100644 --- a/packages/main/src/i18n/messagebundle_ca.properties +++ b/packages/main/src/i18n/messagebundle_ca.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selector de mes YEAR_PICKER_DESCRIPTION=Selector d''any +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Prémer F2 per introduir un valor + +SLIDER_TOOLTIP_INPUT_LABEL=Valor actual + STEPINPUT_DEC_ICON_TITLE=Reduir STEPINPUT_INC_ICON_TITLE=Ampliar diff --git a/packages/main/src/i18n/messagebundle_cnr.properties b/packages/main/src/i18n/messagebundle_cnr.properties index c9dd940e0330..5bdbe33c548b 100644 --- a/packages/main/src/i18n/messagebundle_cnr.properties +++ b/packages/main/src/i18n/messagebundle_cnr.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Odabir mjeseca YEAR_PICKER_DESCRIPTION=Odabir godine +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pritisnite F2 da biste unijeli vrijednost + +SLIDER_TOOLTIP_INPUT_LABEL=Trenutna vrijednost + STEPINPUT_DEC_ICON_TITLE=Smanji STEPINPUT_INC_ICON_TITLE=Povećaj diff --git a/packages/main/src/i18n/messagebundle_cs.properties b/packages/main/src/i18n/messagebundle_cs.properties index 956acfc68c74..92eaea107f29 100644 --- a/packages/main/src/i18n/messagebundle_cs.properties +++ b/packages/main/src/i18n/messagebundle_cs.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Volič měsíce YEAR_PICKER_DESCRIPTION=Volič roku +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Stiskněte F2 pro zadání hodnoty + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuální hodnota + STEPINPUT_DEC_ICON_TITLE=Zmenšení STEPINPUT_INC_ICON_TITLE=Zvětšení diff --git a/packages/main/src/i18n/messagebundle_cy.properties b/packages/main/src/i18n/messagebundle_cy.properties index 9ce78005238a..09f2bd4869ad 100644 --- a/packages/main/src/i18n/messagebundle_cy.properties +++ b/packages/main/src/i18n/messagebundle_cy.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Dewiswr Mis YEAR_PICKER_DESCRIPTION=Dewiswr Blwyddyn +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pwyswch F2 i roi gwerth + +SLIDER_TOOLTIP_INPUT_LABEL=Gwerth Cyfredol + STEPINPUT_DEC_ICON_TITLE=Lleihau STEPINPUT_INC_ICON_TITLE=Cynyddu diff --git a/packages/main/src/i18n/messagebundle_da.properties b/packages/main/src/i18n/messagebundle_da.properties index 0d4315a3bf8a..852d0a299755 100644 --- a/packages/main/src/i18n/messagebundle_da.properties +++ b/packages/main/src/i18n/messagebundle_da.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Månedsselektion YEAR_PICKER_DESCRIPTION=Årsselektion +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Tryk på F2 for at indtaste en værdi + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuel værdi + STEPINPUT_DEC_ICON_TITLE=Formindsk STEPINPUT_INC_ICON_TITLE=Forstør diff --git a/packages/main/src/i18n/messagebundle_de.properties b/packages/main/src/i18n/messagebundle_de.properties index 8b056b157dd2..223792c1e256 100644 --- a/packages/main/src/i18n/messagebundle_de.properties +++ b/packages/main/src/i18n/messagebundle_de.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Monatsauswahl YEAR_PICKER_DESCRIPTION=Jahresauswahl +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Um einen Wert einzugeben, F2 drücken + +SLIDER_TOOLTIP_INPUT_LABEL=Aktueller Wert + STEPINPUT_DEC_ICON_TITLE=Verkleinern STEPINPUT_INC_ICON_TITLE=Vergrößern diff --git a/packages/main/src/i18n/messagebundle_el.properties b/packages/main/src/i18n/messagebundle_el.properties index fb4a17682b3e..696f88af088f 100644 --- a/packages/main/src/i18n/messagebundle_el.properties +++ b/packages/main/src/i18n/messagebundle_el.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Επιλογέας Μήνα YEAR_PICKER_DESCRIPTION=Επιλογέας Ετους +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Πατήστε F2 για να εισάγετε μία τιμή + +SLIDER_TOOLTIP_INPUT_LABEL=Τρέχουσα Τιμή + STEPINPUT_DEC_ICON_TITLE=Μείωση STEPINPUT_INC_ICON_TITLE=Αύξηση diff --git a/packages/main/src/i18n/messagebundle_en_GB.properties b/packages/main/src/i18n/messagebundle_en_GB.properties index 9416a52a388b..3b76c73b4d3f 100644 --- a/packages/main/src/i18n/messagebundle_en_GB.properties +++ b/packages/main/src/i18n/messagebundle_en_GB.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Month Picker YEAR_PICKER_DESCRIPTION=Year Picker +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Press F2 to enter a value + +SLIDER_TOOLTIP_INPUT_LABEL=Current Value + STEPINPUT_DEC_ICON_TITLE=Decrease STEPINPUT_INC_ICON_TITLE=Increase diff --git a/packages/main/src/i18n/messagebundle_es.properties b/packages/main/src/i18n/messagebundle_es.properties index 97c84e806b34..8ea35cbdd5b4 100644 --- a/packages/main/src/i18n/messagebundle_es.properties +++ b/packages/main/src/i18n/messagebundle_es.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selector de mes YEAR_PICKER_DESCRIPTION=Selector de año +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pulse F2 para introducir un valor + +SLIDER_TOOLTIP_INPUT_LABEL=Valor actual + STEPINPUT_DEC_ICON_TITLE=Reducir STEPINPUT_INC_ICON_TITLE=Ampliar diff --git a/packages/main/src/i18n/messagebundle_es_MX.properties b/packages/main/src/i18n/messagebundle_es_MX.properties index 6afdf5198738..6bf0c05c22e1 100644 --- a/packages/main/src/i18n/messagebundle_es_MX.properties +++ b/packages/main/src/i18n/messagebundle_es_MX.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selector de meses YEAR_PICKER_DESCRIPTION=Selector de años +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Presione F2 para ingresar un valor + +SLIDER_TOOLTIP_INPUT_LABEL=Valor actual + STEPINPUT_DEC_ICON_TITLE=Disminuir STEPINPUT_INC_ICON_TITLE=Aumentar diff --git a/packages/main/src/i18n/messagebundle_et.properties b/packages/main/src/i18n/messagebundle_et.properties index efb3522282de..b0074429d19b 100644 --- a/packages/main/src/i18n/messagebundle_et.properties +++ b/packages/main/src/i18n/messagebundle_et.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Kuuvalija YEAR_PICKER_DESCRIPTION=Aastavalija +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Väärtuse sisestamiseks vajutage klahvi F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Praegune väärtus + STEPINPUT_DEC_ICON_TITLE=Vähenda STEPINPUT_INC_ICON_TITLE=Suurenda diff --git a/packages/main/src/i18n/messagebundle_fi.properties b/packages/main/src/i18n/messagebundle_fi.properties index 4eb2a5df6208..cff69a3595c4 100644 --- a/packages/main/src/i18n/messagebundle_fi.properties +++ b/packages/main/src/i18n/messagebundle_fi.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Kuukausivalitsin YEAR_PICKER_DESCRIPTION=Vuosivalitsin +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Syötä arvo painamalla F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Nykyinen arvo + STEPINPUT_DEC_ICON_TITLE=Pienennä STEPINPUT_INC_ICON_TITLE=Suurenna diff --git a/packages/main/src/i18n/messagebundle_fr.properties b/packages/main/src/i18n/messagebundle_fr.properties index 6a05fdb16c41..e4e9e6fc3653 100644 --- a/packages/main/src/i18n/messagebundle_fr.properties +++ b/packages/main/src/i18n/messagebundle_fr.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Sélecteur de mois YEAR_PICKER_DESCRIPTION=Sélecteur d''année +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Appuyer sur F2 pour saisir une valeur + +SLIDER_TOOLTIP_INPUT_LABEL=Valeur actuelle + STEPINPUT_DEC_ICON_TITLE=Diminuer STEPINPUT_INC_ICON_TITLE=Augmenter diff --git a/packages/main/src/i18n/messagebundle_fr_CA.properties b/packages/main/src/i18n/messagebundle_fr_CA.properties index 5e90cb7b50cb..02761b51fe77 100644 --- a/packages/main/src/i18n/messagebundle_fr_CA.properties +++ b/packages/main/src/i18n/messagebundle_fr_CA.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Sélecteur de mois YEAR_PICKER_DESCRIPTION=Sélecteur d''année +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Appuyez sur F2 pour saisir une valeur. + +SLIDER_TOOLTIP_INPUT_LABEL=Valeur actuelle + STEPINPUT_DEC_ICON_TITLE=Diminuer STEPINPUT_INC_ICON_TITLE=Augmenter diff --git a/packages/main/src/i18n/messagebundle_hi.properties b/packages/main/src/i18n/messagebundle_hi.properties index aa6c3cca3130..816c2b55e327 100644 --- a/packages/main/src/i18n/messagebundle_hi.properties +++ b/packages/main/src/i18n/messagebundle_hi.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=महीना पिकर YEAR_PICKER_DESCRIPTION=वर्ष पिकर +SLIDER_TOOLTIP_INPUT_DESCRIPTION=मान दर्ज करने के लिए F2 दबाएं + +SLIDER_TOOLTIP_INPUT_LABEL=वर्तमान मान + STEPINPUT_DEC_ICON_TITLE=कमी STEPINPUT_INC_ICON_TITLE=वृध्दि diff --git a/packages/main/src/i18n/messagebundle_hr.properties b/packages/main/src/i18n/messagebundle_hr.properties index 05a142eca108..7b1d917002c4 100644 --- a/packages/main/src/i18n/messagebundle_hr.properties +++ b/packages/main/src/i18n/messagebundle_hr.properties @@ -332,11 +332,15 @@ MONTH_PICKER_DESCRIPTION=Odabir mjeseca YEAR_PICKER_DESCRIPTION=Odabir godine +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pritisnite F2 za unos vrijednosti + +SLIDER_TOOLTIP_INPUT_LABEL=Trenutačna vrijednost + STEPINPUT_DEC_ICON_TITLE=Smanjenje STEPINPUT_INC_ICON_TITLE=Povećanje -SPLIT_BUTTON_DESCRIPTION=Razdijeljeni gumb +SPLIT_BUTTON_DESCRIPTION=Gumb Razdijeli SPLIT_BUTTON_KEYBOARD_HINT=Pritisnite razmaknicu ili Enter za pokretanje preddefinirane radnje i Alt + strelicu dolje ili F4 za pokretanje radnje strelice diff --git a/packages/main/src/i18n/messagebundle_hu.properties b/packages/main/src/i18n/messagebundle_hu.properties index 0f42fcb0bdea..b4f1efa4cf40 100644 --- a/packages/main/src/i18n/messagebundle_hu.properties +++ b/packages/main/src/i18n/messagebundle_hu.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Hónapválasztó YEAR_PICKER_DESCRIPTION=Évválasztó +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Érték beviteléhez nyomja meg az F2 billentyűt + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuális érték + STEPINPUT_DEC_ICON_TITLE=Csökkentés STEPINPUT_INC_ICON_TITLE=Növelés diff --git a/packages/main/src/i18n/messagebundle_id.properties b/packages/main/src/i18n/messagebundle_id.properties index a9ca1aa63b55..3e079d5b571b 100644 --- a/packages/main/src/i18n/messagebundle_id.properties +++ b/packages/main/src/i18n/messagebundle_id.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Pemilih Bulan YEAR_PICKER_DESCRIPTION=Pemilih Tahun +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Tekan F2 untuk memasukkan nilai + +SLIDER_TOOLTIP_INPUT_LABEL=Nilai Saat Ini + STEPINPUT_DEC_ICON_TITLE=Turunkan STEPINPUT_INC_ICON_TITLE=Tingkatkan diff --git a/packages/main/src/i18n/messagebundle_it.properties b/packages/main/src/i18n/messagebundle_it.properties index 05ce319dbc6f..8b94d83eb6f3 100644 --- a/packages/main/src/i18n/messagebundle_it.properties +++ b/packages/main/src/i18n/messagebundle_it.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selettore mese YEAR_PICKER_DESCRIPTION=Selettore anno +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Premi F2 per inserire un valore + +SLIDER_TOOLTIP_INPUT_LABEL=Valore attuale + STEPINPUT_DEC_ICON_TITLE=Riduci STEPINPUT_INC_ICON_TITLE=Aumenta diff --git a/packages/main/src/i18n/messagebundle_iw.properties b/packages/main/src/i18n/messagebundle_iw.properties index a08ded0c671f..0e6f001c96f2 100644 --- a/packages/main/src/i18n/messagebundle_iw.properties +++ b/packages/main/src/i18n/messagebundle_iw.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=בוחר חודש YEAR_PICKER_DESCRIPTION=בוחר שנה +SLIDER_TOOLTIP_INPUT_DESCRIPTION=לחץ על F2 כדי להזין ערך + +SLIDER_TOOLTIP_INPUT_LABEL=ערך נוכחי + STEPINPUT_DEC_ICON_TITLE=הפחת STEPINPUT_INC_ICON_TITLE=הגדל diff --git a/packages/main/src/i18n/messagebundle_ja.properties b/packages/main/src/i18n/messagebundle_ja.properties index 1d3ae1513f71..a41e64457c09 100644 --- a/packages/main/src/i18n/messagebundle_ja.properties +++ b/packages/main/src/i18n/messagebundle_ja.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=月ピッカー YEAR_PICKER_DESCRIPTION=年ピッカー +SLIDER_TOOLTIP_INPUT_DESCRIPTION=F2 を押して値を入力 + +SLIDER_TOOLTIP_INPUT_LABEL=現在の値 + STEPINPUT_DEC_ICON_TITLE=減少 STEPINPUT_INC_ICON_TITLE=増加 diff --git a/packages/main/src/i18n/messagebundle_kk.properties b/packages/main/src/i18n/messagebundle_kk.properties index 480fc5336d00..bd8a890e3a24 100644 --- a/packages/main/src/i18n/messagebundle_kk.properties +++ b/packages/main/src/i18n/messagebundle_kk.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Айды таңдау құралы YEAR_PICKER_DESCRIPTION=Жылды таңдау құралы +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Мәнді енгізу үшін F2 пернесін басыңыз + +SLIDER_TOOLTIP_INPUT_LABEL=Ағымдағы мән + STEPINPUT_DEC_ICON_TITLE=Азайту STEPINPUT_INC_ICON_TITLE=Арттыру diff --git a/packages/main/src/i18n/messagebundle_ko.properties b/packages/main/src/i18n/messagebundle_ko.properties index 51a6021ff94b..386331f97c7a 100644 --- a/packages/main/src/i18n/messagebundle_ko.properties +++ b/packages/main/src/i18n/messagebundle_ko.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=월 선택 도구 YEAR_PICKER_DESCRIPTION=연도 선택 도구 +SLIDER_TOOLTIP_INPUT_DESCRIPTION=값을 입력하려면 F2를 누르십시오. + +SLIDER_TOOLTIP_INPUT_LABEL=현재 값 + STEPINPUT_DEC_ICON_TITLE=감소 STEPINPUT_INC_ICON_TITLE=증가 diff --git a/packages/main/src/i18n/messagebundle_lt.properties b/packages/main/src/i18n/messagebundle_lt.properties index a62755173538..c618ce12f833 100644 --- a/packages/main/src/i18n/messagebundle_lt.properties +++ b/packages/main/src/i18n/messagebundle_lt.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Mėnesio ieškos įrankis YEAR_PICKER_DESCRIPTION=Metų ieškos įrankis +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Norėdami įvesti reikšmę, paspauskite F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Dabartinė reikšmė + STEPINPUT_DEC_ICON_TITLE=Sumažinti STEPINPUT_INC_ICON_TITLE=Padidinti diff --git a/packages/main/src/i18n/messagebundle_lv.properties b/packages/main/src/i18n/messagebundle_lv.properties index e4a3bdcdcab2..0d96b5d2de76 100644 --- a/packages/main/src/i18n/messagebundle_lv.properties +++ b/packages/main/src/i18n/messagebundle_lv.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Mēneša komplektētājs YEAR_PICKER_DESCRIPTION=Gada komplektētājs +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Nospiediet F2, lai ievadītu vērtību + +SLIDER_TOOLTIP_INPUT_LABEL=Pašreizējā vērtība + STEPINPUT_DEC_ICON_TITLE=Samazināt STEPINPUT_INC_ICON_TITLE=Palielināt diff --git a/packages/main/src/i18n/messagebundle_mk.properties b/packages/main/src/i18n/messagebundle_mk.properties index adfac049fe7e..02582fd832ff 100644 --- a/packages/main/src/i18n/messagebundle_mk.properties +++ b/packages/main/src/i18n/messagebundle_mk.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Избирач на месец YEAR_PICKER_DESCRIPTION=Избирач на година +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Притиснете F2 за да внесете вредност + +SLIDER_TOOLTIP_INPUT_LABEL=Тековна вредност + STEPINPUT_DEC_ICON_TITLE=Намали STEPINPUT_INC_ICON_TITLE=Зголеми diff --git a/packages/main/src/i18n/messagebundle_ms.properties b/packages/main/src/i18n/messagebundle_ms.properties index 3dbe1e9a7ac8..d67b51280246 100644 --- a/packages/main/src/i18n/messagebundle_ms.properties +++ b/packages/main/src/i18n/messagebundle_ms.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Pemilih Bulan YEAR_PICKER_DESCRIPTION=Pemilih Tahun +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Tekan F2 untuk masukkan nilai + +SLIDER_TOOLTIP_INPUT_LABEL=Nilai Semasa + STEPINPUT_DEC_ICON_TITLE=Penurunan STEPINPUT_INC_ICON_TITLE=Tingkatkan diff --git a/packages/main/src/i18n/messagebundle_nl.properties b/packages/main/src/i18n/messagebundle_nl.properties index bbd7fd610266..4c7083d9b5c2 100644 --- a/packages/main/src/i18n/messagebundle_nl.properties +++ b/packages/main/src/i18n/messagebundle_nl.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Maandselectie YEAR_PICKER_DESCRIPTION=Jaarselectie +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Druk op F2 om een waarde in te voeren + +SLIDER_TOOLTIP_INPUT_LABEL=Huidige waarde + STEPINPUT_DEC_ICON_TITLE=Verkleinen STEPINPUT_INC_ICON_TITLE=Vergroten diff --git a/packages/main/src/i18n/messagebundle_no.properties b/packages/main/src/i18n/messagebundle_no.properties index dcd0393f44b4..1c94f9a8bea9 100644 --- a/packages/main/src/i18n/messagebundle_no.properties +++ b/packages/main/src/i18n/messagebundle_no.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Månedsutvalg YEAR_PICKER_DESCRIPTION=Utvalg av år +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Trykk på F2 for å oppgi en verdi + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuell verdi + STEPINPUT_DEC_ICON_TITLE=Reduksjon STEPINPUT_INC_ICON_TITLE=Økning diff --git a/packages/main/src/i18n/messagebundle_pl.properties b/packages/main/src/i18n/messagebundle_pl.properties index cc69341e0531..8fa581385760 100644 --- a/packages/main/src/i18n/messagebundle_pl.properties +++ b/packages/main/src/i18n/messagebundle_pl.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selektor miesiąca YEAR_PICKER_DESCRIPTION=Selektor roku +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Naciśnij F2, aby wprowadzić wartość + +SLIDER_TOOLTIP_INPUT_LABEL=Wartość bieżąca + STEPINPUT_DEC_ICON_TITLE=Zmniejsz STEPINPUT_INC_ICON_TITLE=Zwiększ diff --git a/packages/main/src/i18n/messagebundle_pt.properties b/packages/main/src/i18n/messagebundle_pt.properties index 878a09cb7bef..2ef2969ad918 100644 --- a/packages/main/src/i18n/messagebundle_pt.properties +++ b/packages/main/src/i18n/messagebundle_pt.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selecionador de mês YEAR_PICKER_DESCRIPTION=Selecionador de ano +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pressionar F2 para inserir um valor + +SLIDER_TOOLTIP_INPUT_LABEL=Valor atual + STEPINPUT_DEC_ICON_TITLE=Reduzir STEPINPUT_INC_ICON_TITLE=Ampliar diff --git a/packages/main/src/i18n/messagebundle_pt_PT.properties b/packages/main/src/i18n/messagebundle_pt_PT.properties index 2a5ecfe4026d..73033f06b4b5 100644 --- a/packages/main/src/i18n/messagebundle_pt_PT.properties +++ b/packages/main/src/i18n/messagebundle_pt_PT.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Seletor de mês YEAR_PICKER_DESCRIPTION=Seletor de ano +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Prima F2 para introduzir um valor + +SLIDER_TOOLTIP_INPUT_LABEL=Valor atual + STEPINPUT_DEC_ICON_TITLE=Diminuir STEPINPUT_INC_ICON_TITLE=Aumentar diff --git a/packages/main/src/i18n/messagebundle_ro.properties b/packages/main/src/i18n/messagebundle_ro.properties index f28878fcdf4f..5faa0edd1699 100644 --- a/packages/main/src/i18n/messagebundle_ro.properties +++ b/packages/main/src/i18n/messagebundle_ro.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Selector lună YEAR_PICKER_DESCRIPTION=Selector an +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Apăsați F2 pentru a introduce o valoare + +SLIDER_TOOLTIP_INPUT_LABEL=Valoare curentă + STEPINPUT_DEC_ICON_TITLE=Scădere STEPINPUT_INC_ICON_TITLE=Creștere diff --git a/packages/main/src/i18n/messagebundle_ru.properties b/packages/main/src/i18n/messagebundle_ru.properties index ba8f334dfe38..40c1dccc342d 100644 --- a/packages/main/src/i18n/messagebundle_ru.properties +++ b/packages/main/src/i18n/messagebundle_ru.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Выбор месяца YEAR_PICKER_DESCRIPTION=Выбор года +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Для ввода значения нажмите F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Текущее значение + STEPINPUT_DEC_ICON_TITLE=Уменьшить STEPINPUT_INC_ICON_TITLE=Увеличить diff --git a/packages/main/src/i18n/messagebundle_sh.properties b/packages/main/src/i18n/messagebundle_sh.properties index 23f2ec69e235..674467190baf 100644 --- a/packages/main/src/i18n/messagebundle_sh.properties +++ b/packages/main/src/i18n/messagebundle_sh.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Odabir meseca YEAR_PICKER_DESCRIPTION=Odabir godine +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Pritisnite F2 da biste uneli vrednost + +SLIDER_TOOLTIP_INPUT_LABEL=Trenutna vrednost + STEPINPUT_DEC_ICON_TITLE=Smanji STEPINPUT_INC_ICON_TITLE=Povećaj diff --git a/packages/main/src/i18n/messagebundle_sk.properties b/packages/main/src/i18n/messagebundle_sk.properties index 2c347e027f39..bd54b9dedd87 100644 --- a/packages/main/src/i18n/messagebundle_sk.properties +++ b/packages/main/src/i18n/messagebundle_sk.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Výber mesiaca YEAR_PICKER_DESCRIPTION=Výber roka +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Ak chcete zadať hodnotu, stlačte kláves F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuálna hodnota + STEPINPUT_DEC_ICON_TITLE=Zmenšiť STEPINPUT_INC_ICON_TITLE=Zväčšiť diff --git a/packages/main/src/i18n/messagebundle_sl.properties b/packages/main/src/i18n/messagebundle_sl.properties index c97a1095044c..0b067c43cfbc 100644 --- a/packages/main/src/i18n/messagebundle_sl.properties +++ b/packages/main/src/i18n/messagebundle_sl.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Izbirnik meseca YEAR_PICKER_DESCRIPTION=Izbirnik leta +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Za vnos vrednosti pritisnite F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Trenutna vrednost + STEPINPUT_DEC_ICON_TITLE=Pomanjšanje STEPINPUT_INC_ICON_TITLE=Povečanje diff --git a/packages/main/src/i18n/messagebundle_sr.properties b/packages/main/src/i18n/messagebundle_sr.properties index a55abcac9e2d..8966bbeaa77c 100644 --- a/packages/main/src/i18n/messagebundle_sr.properties +++ b/packages/main/src/i18n/messagebundle_sr.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Одабир месеца YEAR_PICKER_DESCRIPTION=Одабир године +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Притисните F2 да бисте унели вредност + +SLIDER_TOOLTIP_INPUT_LABEL=Тренутна вредност + STEPINPUT_DEC_ICON_TITLE=Смањи STEPINPUT_INC_ICON_TITLE=Повећај diff --git a/packages/main/src/i18n/messagebundle_sv.properties b/packages/main/src/i18n/messagebundle_sv.properties index 96139f6c795a..8a91c96aaf10 100644 --- a/packages/main/src/i18n/messagebundle_sv.properties +++ b/packages/main/src/i18n/messagebundle_sv.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Månadsväljare YEAR_PICKER_DESCRIPTION=Årsväljare +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Press F2 to enter a value + +SLIDER_TOOLTIP_INPUT_LABEL=Aktuellt värde + STEPINPUT_DEC_ICON_TITLE=Minska STEPINPUT_INC_ICON_TITLE=Öka diff --git a/packages/main/src/i18n/messagebundle_th.properties b/packages/main/src/i18n/messagebundle_th.properties index 57dbc1bc7e05..4d510aa6c396 100644 --- a/packages/main/src/i18n/messagebundle_th.properties +++ b/packages/main/src/i18n/messagebundle_th.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=ตัวเลือกเดือน YEAR_PICKER_DESCRIPTION=ตัวเลือกปี +SLIDER_TOOLTIP_INPUT_DESCRIPTION=กด F2 เพื่อป้อนค่า + +SLIDER_TOOLTIP_INPUT_LABEL=ค่าปัจจุบัน + STEPINPUT_DEC_ICON_TITLE=ลด STEPINPUT_INC_ICON_TITLE=เพิ่ม diff --git a/packages/main/src/i18n/messagebundle_tr.properties b/packages/main/src/i18n/messagebundle_tr.properties index 707a67797447..d913c5f53ad1 100644 --- a/packages/main/src/i18n/messagebundle_tr.properties +++ b/packages/main/src/i18n/messagebundle_tr.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Ay seçici YEAR_PICKER_DESCRIPTION=Yıl seçici +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Değer girmek için F2''ye basın + +SLIDER_TOOLTIP_INPUT_LABEL=Güncel değer + STEPINPUT_DEC_ICON_TITLE=Azalt STEPINPUT_INC_ICON_TITLE=Artır diff --git a/packages/main/src/i18n/messagebundle_uk.properties b/packages/main/src/i18n/messagebundle_uk.properties index b31297974489..29e6603e5e5e 100644 --- a/packages/main/src/i18n/messagebundle_uk.properties +++ b/packages/main/src/i18n/messagebundle_uk.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Комплектувальник місяця YEAR_PICKER_DESCRIPTION=Комплектувальник року +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Щоб ввести значення, натисніть F2 + +SLIDER_TOOLTIP_INPUT_LABEL=Поточне значення + STEPINPUT_DEC_ICON_TITLE=Зменшити STEPINPUT_INC_ICON_TITLE=Збільшити diff --git a/packages/main/src/i18n/messagebundle_vi.properties b/packages/main/src/i18n/messagebundle_vi.properties index d2c83724050c..d9ba68fe74bc 100644 --- a/packages/main/src/i18n/messagebundle_vi.properties +++ b/packages/main/src/i18n/messagebundle_vi.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=Trình chọn tháng YEAR_PICKER_DESCRIPTION=Trình chọn năm +SLIDER_TOOLTIP_INPUT_DESCRIPTION=Nhấn F2 để nhập giá trị + +SLIDER_TOOLTIP_INPUT_LABEL=Giá trị hiện tại + STEPINPUT_DEC_ICON_TITLE=Giảm STEPINPUT_INC_ICON_TITLE=Tăng diff --git a/packages/main/src/i18n/messagebundle_zh_CN.properties b/packages/main/src/i18n/messagebundle_zh_CN.properties index d13749bca0eb..a523120b68e4 100644 --- a/packages/main/src/i18n/messagebundle_zh_CN.properties +++ b/packages/main/src/i18n/messagebundle_zh_CN.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=月份选取器 YEAR_PICKER_DESCRIPTION=年度选取器 +SLIDER_TOOLTIP_INPUT_DESCRIPTION=按 F2 输入值 + +SLIDER_TOOLTIP_INPUT_LABEL=当前值 + STEPINPUT_DEC_ICON_TITLE=减少 STEPINPUT_INC_ICON_TITLE=增加 diff --git a/packages/main/src/i18n/messagebundle_zh_TW.properties b/packages/main/src/i18n/messagebundle_zh_TW.properties index 81f641883673..2e225491f30d 100644 --- a/packages/main/src/i18n/messagebundle_zh_TW.properties +++ b/packages/main/src/i18n/messagebundle_zh_TW.properties @@ -332,6 +332,10 @@ MONTH_PICKER_DESCRIPTION=月份選擇器 YEAR_PICKER_DESCRIPTION=年份選擇器 +SLIDER_TOOLTIP_INPUT_DESCRIPTION=按 F2 鍵輸入值。 + +SLIDER_TOOLTIP_INPUT_LABEL=目前值 + STEPINPUT_DEC_ICON_TITLE=減少 STEPINPUT_INC_ICON_TITLE=增加 diff --git a/packages/main/test/pages/Kitchen.html b/packages/main/test/pages/Kitchen.html index f10882e8498d..ae2074eec7c5 100644 --- a/packages/main/test/pages/Kitchen.html +++ b/packages/main/test/pages/Kitchen.html @@ -37,6 +37,23 @@ + diff --git a/packages/theming/CHANGELOG.md b/packages/theming/CHANGELOG.md index 6a4689fad841..788e796169b6 100644 --- a/packages/theming/CHANGELOG.md +++ b/packages/theming/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-theming + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/theming/package.json b/packages/theming/package.json index 01f7c5b21d97..1a4ddebf5667 100644 --- a/packages/theming/package.json +++ b/packages/theming/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-theming", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.theming", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", @@ -31,10 +31,10 @@ }, "dependencies": { "@sap-theming/theming-base-content": "11.17.1", - "@ui5/webcomponents-base": "2.4.0-rc.1" + "@ui5/webcomponents-base": "2.4.0-rc.2" }, "devDependencies": { - "@ui5/webcomponents-tools": "2.4.0-rc.1", + "@ui5/webcomponents-tools": "2.4.0-rc.2", "globby": "^13.1.1", "json-beautify": "^1.1.1", "nps": "^5.10.0", diff --git a/packages/tools/CHANGELOG.md b/packages/tools/CHANGELOG.md index 255b9f0484c2..19fad381383f 100644 --- a/packages/tools/CHANGELOG.md +++ b/packages/tools/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + +**Note:** Version bump only for package @ui5/webcomponents-tools + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) diff --git a/packages/tools/package.json b/packages/tools/package.json index 691a0d919a24..86463eae058d 100644 --- a/packages/tools/package.json +++ b/packages/tools/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-tools", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "description": "UI5 Web Components: webcomponents.tools", "author": "SAP SE (https://www.sap.com)", "license": "Apache-2.0", diff --git a/packages/website/CHANGELOG.md b/packages/website/CHANGELOG.md index 0408df826d88..b3a494026be1 100644 --- a/packages/website/CHANGELOG.md +++ b/packages/website/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [2.4.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.1...v2.4.0-rc.2) (2024-10-24) + + +### Bug Fixes + +* **ui5-notification-list:** fix header bar visibility ([#10010](https://github.com/SAP/ui5-webcomponents/issues/10010)) ([95db5c6](https://github.com/SAP/ui5-webcomponents/commit/95db5c63a3c21ba2d948f5070f3bd1ba85e584ef)), closes [#9995](https://github.com/SAP/ui5-webcomponents/issues/9995) +* **ui5-table:** wrong horiz. alignm. behavior and wrong texts ([#10040](https://github.com/SAP/ui5-webcomponents/issues/10040)) ([f3da992](https://github.com/SAP/ui5-webcomponents/commit/f3da99295b4255e8f22b58f4ed72561fa0bbe215)), closes [#9639](https://github.com/SAP/ui5-webcomponents/issues/9639) [#10017](https://github.com/SAP/ui5-webcomponents/issues/10017) + + + + + # [2.4.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.0...v2.4.0-rc.1) (2024-10-17) **Note:** Version bump only for package @ui5/webcomponents-website diff --git a/packages/website/package.json b/packages/website/package.json index dcc2ec66d816..bd4033494dd5 100644 --- a/packages/website/package.json +++ b/packages/website/package.json @@ -1,6 +1,6 @@ { "name": "@ui5/webcomponents-website", - "version": "2.4.0-rc.1", + "version": "2.4.0-rc.2", "private": true, "scripts": { "generate-local-cdn": "rimraf ./local-cdn && node ./build-scripts/local-cdn.mjs", diff --git a/yarn.lock b/yarn.lock index 242bd6bc4ea8..4139624a164f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1957,7 +1957,7 @@ "@docusaurus/theme-search-algolia" "3.1.1" "@docusaurus/types" "3.1.1" -"@docusaurus/react-loadable@5.5.2", "react-loadable@npm:@docusaurus/react-loadable@5.5.2": +"@docusaurus/react-loadable@5.5.2": version "5.5.2" resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz#81aae0db81ecafbdaee3651f12804580868fa6ce" integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ== @@ -10007,9 +10007,9 @@ http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1: debug "^4.3.4" http-proxy-middleware@^2.0.3: - version "2.0.6" - resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz#e1a4dd6979572c7ab5a4e4b55095d1f32a74963f" - integrity sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw== + version "2.0.7" + resolved "https://registry.yarnpkg.com/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz#915f236d92ae98ef48278a95dedf17e991936ec6" + integrity sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA== dependencies: "@types/http-proxy" "^1.17.8" http-proxy "^1.18.1" @@ -14912,6 +14912,14 @@ react-loadable-ssr-addon-v5-slorber@^1.0.1: dependencies: "@babel/runtime" "^7.10.3" +"react-loadable@npm:@docusaurus/react-loadable@5.5.2": + version "5.5.2" + resolved "https://registry.yarnpkg.com/@docusaurus/react-loadable/-/react-loadable-5.5.2.tgz#81aae0db81ecafbdaee3651f12804580868fa6ce" + integrity sha512-A3dYjdBGuy0IGT+wyLIGIKLRE+sAk1iNk0f1HjNDysO7u8lhL4N3VEm+FAubmJbAztn94F7MxBTPmnixbiyFdQ== + dependencies: + "@types/react" "*" + prop-types "^15.6.2" + react-router-config@^5.1.1: version "5.1.1" resolved "https://registry.yarnpkg.com/react-router-config/-/react-router-config-5.1.1.tgz#0f4263d1a80c6b2dc7b9c1902c9526478194a988" @@ -16302,7 +16310,16 @@ stream-combiner@~0.0.4: dependencies: duplexer "~0.1.1" -"string-width-cjs@npm:string-width@^4.2.0", "string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +"string-width@^1.0.2 || 2 || 3 || 4", string-width@^4.0.0, string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: version "4.2.3" resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== @@ -16396,7 +16413,7 @@ stringify-object@^3.3.0: is-obj "^1.0.1" is-regexp "^1.0.0" -"strip-ansi-cjs@npm:strip-ansi@^6.0.1", strip-ansi@^6.0.0, strip-ansi@^6.0.1: +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": version "6.0.1" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== @@ -16417,6 +16434,13 @@ strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0: dependencies: ansi-regex "^4.1.0" +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + strip-ansi@^7.0.1: version "7.1.0" resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" @@ -18001,7 +18025,7 @@ workerpool@6.2.1: resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.2.1.tgz#46fc150c17d826b86a008e5a4508656777e9c343" integrity sha512-ILEIE97kDZvF9Wb9f6h5aXK4swSlKGUcOEGiIYb2OOu/IrDU9iwj0fD//SsA6E5ibwJxpEvhullJY4Sl4GcpAw== -"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0", wrap-ansi@^7.0.0: +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": version "7.0.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== @@ -18028,6 +18052,15 @@ wrap-ansi@^6.2.0: string-width "^4.1.0" strip-ansi "^6.0.0" +wrap-ansi@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + wrap-ansi@^8.0.1, wrap-ansi@^8.1.0: version "8.1.0" resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214"