@ui5/webcomponents-icons 1.12.0-rc.0 → 1.12.0-rc.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [1.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.0...v1.12.0-rc.1) (2023-03-16)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **icons:** use strings instead of template literal for imports ([#6681](https://github.com/SAP/ui5-webcomponents/issues/6681)) ([ac70676](https://github.com/SAP/ui5-webcomponents/commit/ac7067685c72288ddc8d55363f5b589a9d279b0d))
12
+
13
+
14
+
15
+
16
+
6
17
  # [1.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0...v1.12.0-rc.0) (2023-03-09)
7
18
 
8
19
  **Note:** Version bump only for package @ui5/webcomponents-icons
@@ -2,10 +2,10 @@ import { registerIconLoader } from "@ui5/webcomponents-base/dist/asset-registrie
2
2
  const loadIconsBundle = async (collection) => {
3
3
  let iconData;
4
4
  if (collection === "SAP-icons-v5") {
5
- iconData = (await import(`../generated/assets/v5/SAP-icons.json`)).default;
5
+ iconData = (await import("../generated/assets/v5/SAP-icons.json")).default;
6
6
  }
7
7
  else {
8
- iconData = (await import(`../generated/assets/v4/SAP-icons.json`)).default;
8
+ iconData = (await import("../generated/assets/v4/SAP-icons.json")).default;
9
9
  }
10
10
  if (typeof iconData === "string" && iconData.endsWith(".json")) {
11
11
  throw new Error("[icons] Invalid bundling detected - dynamic JSON imports bundled as URLs. Switch to inlining JSON files from the build or use `import \"@ui5/webcomponents-icons/dist/Assets-static.js\". Check the \"Assets\" documentation for more information.");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-icons",
3
- "version": "1.12.0-rc.0",
3
+ "version": "1.12.0-rc.1",
4
4
  "description": "UI5 Web Components: webcomponents.SAP-icons",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -26,11 +26,11 @@
26
26
  "directory": "packages/icons"
27
27
  },
28
28
  "dependencies": {
29
- "@ui5/webcomponents-base": "1.12.0-rc.0"
29
+ "@ui5/webcomponents-base": "1.12.0-rc.1"
30
30
  },
31
31
  "devDependencies": {
32
- "@ui5/webcomponents-tools": "1.12.0-rc.0",
33
- "chromedriver": "109.0.0"
32
+ "@ui5/webcomponents-tools": "1.12.0-rc.1",
33
+ "chromedriver": "110.0.0"
34
34
  },
35
- "gitHead": "f5e3a2ba480455bc1154eee1b04ee04ebb0dbe14"
35
+ "gitHead": "d9d5077df87afcda0589596174767ef5d512bcf1"
36
36
  }