@ui5/webcomponents-tools 2.16.0 → 2.17.0-rc.0

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,25 @@
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
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
7
+
8
+
9
+ ### Features
10
+
11
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
12
+
13
+
14
+
15
+
16
+
17
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
18
+
19
+ **Note:** Version bump only for package @ui5/webcomponents-tools
20
+
21
+
22
+
23
+
24
+
6
25
  # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
7
26
 
8
27
  **Note:** Version bump only for package @ui5/webcomponents-tools
@@ -121,7 +121,7 @@ const generate = async (argv) => {
121
121
  // If no Dot is present, Spot will be imported as Dot
122
122
  const hasDot = dotIllustrationNames.indexOf(illustrationName) !== -1 ? 'Dot' : 'Spot';
123
123
 
124
- return `import { registerIllustration } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
124
+ return `import { unsafeRegisterIllustration } from "@ui5/webcomponents-base/dist/asset-registries/Illustrations.js";
125
125
  import dialogSvg from "./${illustrationsPrefix}-Dialog-${illustrationName}.js";
126
126
  import sceneSvg from "./${illustrationsPrefix}-Scene-${illustrationName}.js";
127
127
  import spotSvg from "./${illustrationsPrefix}-Spot-${illustrationName}.js";
@@ -136,7 +136,7 @@ const collection = "${collection}";${defaultText ? `
136
136
  const title = IM_TITLE_${illustrationNameUpperCase};
137
137
  const subtitle = IM_SUBTITLE_${illustrationNameUpperCase};` : ``}
138
138
 
139
- registerIllustration(name, {
139
+ unsafeRegisterIllustration(name, {
140
140
  dialogSvg,
141
141
  sceneSvg,
142
142
  spotSvg,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-tools",
3
- "version": "2.16.0",
3
+ "version": "2.17.0-rc.0",
4
4
  "description": "UI5 Web Components: webcomponents.tools",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -84,5 +84,5 @@
84
84
  "esbuild": "^0.25.0",
85
85
  "yargs": "^17.5.1"
86
86
  },
87
- "gitHead": "d9f33317a5ddce42e1f1b4efed2b9872a7b0ee23"
87
+ "gitHead": "72216c34fa3b5ecbad90836884677ca5d4edef7d"
88
88
  }