@ui5/webcomponents-tools 0.0.0-b132dd7b9 → 0.0.0-b3a4f8020

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.
Files changed (96) hide show
  1. package/CHANGELOG.md +501 -0
  2. package/LICENSE.txt +201 -0
  3. package/README.md +7 -7
  4. package/bin/dev.js +10 -4
  5. package/bin/ui5nps.js +301 -0
  6. package/components-package/nps.js +97 -94
  7. package/components-package/wdio.js +8 -2
  8. package/icons-collection/nps.js +30 -21
  9. package/lib/amd-to-es6/index.js +17 -10
  10. package/lib/cem/cem.js +16 -0
  11. package/lib/cem/custom-elements-manifest.config.mjs +56 -4
  12. package/lib/cem/merge.mjs +220 -0
  13. package/lib/cem/patch/@custom-elements-manifest/analyzer/cli.js +128 -0
  14. package/lib/cem/patch/@custom-elements-manifest/analyzer/package.json +59 -0
  15. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/browser-entrypoint.js +23 -0
  16. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/create.js +117 -0
  17. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/arrow-function.js +26 -0
  18. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/class-jsdoc.js +157 -0
  19. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/classes.js +20 -0
  20. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createArrowFunction.js +17 -0
  21. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createAttribute.js +24 -0
  22. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClass.js +301 -0
  23. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClassField.js +26 -0
  24. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createFunctionLike.js +73 -0
  25. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createMixin.js +33 -0
  26. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createVariable.js +22 -0
  27. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/handlers.js +338 -0
  28. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/custom-elements-define-calls.js +90 -0
  29. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/exports.js +156 -0
  30. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/function-like.js +24 -0
  31. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/mixins.js +29 -0
  32. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/reexported-wrapped-mixin-exports.js +84 -0
  33. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/variables.js +34 -0
  34. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/collect-phase/collect-imports.js +101 -0
  35. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/catalyst.js +11 -0
  36. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/controller.js +34 -0
  37. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/catalyst.js +11 -0
  38. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/controller.js +34 -0
  39. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/attr.js +53 -0
  40. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/custom-element-decorator.js +36 -0
  41. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/fast/fast.js +7 -0
  42. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/lit.js +13 -0
  43. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/member-denylist.js +21 -0
  44. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/method-denylist.js +20 -0
  45. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/property-decorator.js +94 -0
  46. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/static-properties.js +121 -0
  47. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/utils.js +66 -0
  48. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/stencil/stencil.js +129 -0
  49. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/index.js +80 -0
  50. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/cleanup-classes.js +25 -0
  51. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/field-denylist.js +22 -0
  52. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/method-denylist.js +25 -0
  53. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/apply-inheritance.js +78 -0
  54. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/is-custom-element.js +34 -0
  55. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/link-class-to-tagname.js +27 -0
  56. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/remove-unexported-declarations.js +23 -0
  57. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/resolve-initializers.js +52 -0
  58. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/ast-helpers.js +186 -0
  59. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/cli-helpers.js +164 -0
  60. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/exports.js +44 -0
  61. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/find-external-manifests.js +67 -0
  62. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/imports.js +25 -0
  63. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/index.js +71 -0
  64. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/jsdoc.js +19 -0
  65. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/manifest-helpers.js +194 -0
  66. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/mixins.js +112 -0
  67. package/lib/cem/schema-internal.json +41 -1
  68. package/lib/cem/schema.json +41 -1
  69. package/lib/cem/types-internal.d.ts +32 -2
  70. package/lib/cem/types.d.ts +32 -2
  71. package/lib/cem/utils.mjs +13 -3
  72. package/lib/cem/validate.js +61 -47
  73. package/lib/chokidar/chokidar.js +28 -0
  74. package/lib/copy-and-watch/index.js +110 -97
  75. package/lib/copy-list/index.js +18 -10
  76. package/lib/create-icons/index.js +19 -15
  77. package/lib/create-illustrations/index.js +57 -29
  78. package/lib/create-new-component/index.js +5 -3
  79. package/lib/css-processors/css-processor-components.mjs +85 -60
  80. package/lib/css-processors/css-processor-themes.mjs +105 -57
  81. package/lib/css-processors/postcss-plugin.mjs +153 -0
  82. package/lib/css-processors/scope-variables.mjs +26 -1
  83. package/lib/css-processors/shared.mjs +8 -17
  84. package/lib/dev-server/dev-server.mjs +23 -11
  85. package/lib/eslint/eslint.js +44 -0
  86. package/lib/generate-js-imports/illustrations.js +55 -54
  87. package/lib/generate-json-imports/i18n.js +22 -11
  88. package/lib/generate-json-imports/themes.js +24 -12
  89. package/lib/i18n/defaults.js +14 -7
  90. package/lib/i18n/toJSON.js +40 -12
  91. package/lib/icons-hash/icons-hash.mjs +149 -0
  92. package/lib/remove-dev-mode/remove-dev-mode.mjs +38 -24
  93. package/lib/rimraf/rimraf.js +31 -0
  94. package/lib/test-runner/test-runner.js +56 -48
  95. package/lib/vite-bundler/vite-bundler.mjs +35 -0
  96. package/package.json +15 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,507 @@
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
+ # [0.0.0-b3a4f8020](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.2...v0.0.0-b3a4f8020) (2026-03-02)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [2.20.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.1...v2.20.0-rc.2) (2026-02-26)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * CSS variables scoping to depend VersionInfo ([#13091](https://github.com/UI5/webcomponents/issues/13091)) ([d2e43ed](https://github.com/UI5/webcomponents/commit/d2e43ed692c63a0a36a9b14da59de354e2e7d0b0))
20
+
21
+
22
+
23
+
24
+
25
+ # [2.20.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.0...v2.20.0-rc.1) (2026-02-19)
26
+
27
+ **Note:** Version bump only for package @ui5/webcomponents-tools
28
+
29
+
30
+
31
+
32
+
33
+ # [2.20.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.19.0...v2.20.0-rc.0) (2026-02-12)
34
+
35
+ **Note:** Version bump only for package @ui5/webcomponents-tools
36
+
37
+
38
+
39
+
40
+
41
+ # [2.19.0](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.3...v2.19.0) (2026-02-05)
42
+
43
+ **Note:** Version bump only for package @ui5/webcomponents-tools
44
+
45
+
46
+
47
+
48
+
49
+ # [2.19.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.2...v2.19.0-rc.3) (2026-02-05)
50
+
51
+ **Note:** Version bump only for package @ui5/webcomponents-tools
52
+
53
+
54
+
55
+
56
+
57
+ # [2.19.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.1...v2.19.0-rc.2) (2026-01-22)
58
+
59
+ **Note:** Version bump only for package @ui5/webcomponents-tools
60
+
61
+
62
+
63
+
64
+
65
+ # [2.19.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.0...v2.19.0-rc.1) (2026-01-15)
66
+
67
+ **Note:** Version bump only for package @ui5/webcomponents-tools
68
+
69
+
70
+
71
+
72
+
73
+ # [2.19.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.18.0...v2.19.0-rc.0) (2026-01-08)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * **i18n:** handle utf-8 escape sequences in message bundle properties files ([#12784](https://github.com/UI5/webcomponents/issues/12784)) ([54a3f15](https://github.com/UI5/webcomponents/commit/54a3f15a8d23de8683db5829c78255307ef3f8b5))
79
+
80
+
81
+
82
+
83
+
84
+ # [2.18.0](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.3...v2.18.0) (2026-01-05)
85
+
86
+ **Note:** Version bump only for package @ui5/webcomponents-tools
87
+
88
+
89
+
90
+
91
+
92
+ # [2.18.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.2...v2.18.0-rc.3) (2026-01-01)
93
+
94
+ **Note:** Version bump only for package @ui5/webcomponents-tools
95
+
96
+
97
+
98
+
99
+
100
+ # [2.18.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.1...v2.18.0-rc.2) (2025-12-25)
101
+
102
+ **Note:** Version bump only for package @ui5/webcomponents-tools
103
+
104
+
105
+
106
+
107
+
108
+ # [2.18.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.0...v2.18.0-rc.1) (2025-12-18)
109
+
110
+ **Note:** Version bump only for package @ui5/webcomponents-tools
111
+
112
+
113
+
114
+
115
+
116
+ # [2.18.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.17.0...v2.18.0-rc.0) (2025-12-11)
117
+
118
+ **Note:** Version bump only for package @ui5/webcomponents-tools
119
+
120
+
121
+
122
+
123
+
124
+ # [2.17.0](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.5...v2.17.0) (2025-12-05)
125
+
126
+
127
+ ### Reverts
128
+
129
+ * Revert "feat(framework): scope theming css variables with component packages (#12491)" (#12775) ([3385623](https://github.com/UI5/webcomponents/commit/33856235e357a3d4d0b9391eab2a83a5b3010556)), closes [#12491](https://github.com/UI5/webcomponents/issues/12491) [#12775](https://github.com/UI5/webcomponents/issues/12775)
130
+ * Revert "chore: scope theming variables used in illustrations (#12687)" (#12770) ([c9288ff](https://github.com/UI5/webcomponents/commit/c9288ff0f655fdd03262b71ac788e5688c904add)), closes [#12687](https://github.com/UI5/webcomponents/issues/12687) [#12770](https://github.com/UI5/webcomponents/issues/12770)
131
+ * Revert "feat(framework): introduce loadBaseThemingCSSVariables configuration (#12699)" (#12767) ([db375d3](https://github.com/UI5/webcomponents/commit/db375d30b9f4a7e07961fabbdcefdcdc78a93f46)), closes [#12699](https://github.com/UI5/webcomponents/issues/12699) [#12767](https://github.com/UI5/webcomponents/issues/12767)
132
+
133
+
134
+
135
+
136
+
137
+ # [2.17.0-rc.5](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.4...v2.17.0-rc.5) (2025-12-04)
138
+
139
+
140
+ ### Bug Fixes
141
+
142
+ * **tools:** dependencies usage ([#12716](https://github.com/UI5/webcomponents/issues/12716)) ([89bb0dd](https://github.com/UI5/webcomponents/commit/89bb0dd62322598bd1ea7ce984eaf0618546a6f2))
143
+
144
+
145
+ ### Features
146
+
147
+ * **framework:** introduce loadBaseThemingCSSVariables configuration ([#12699](https://github.com/UI5/webcomponents/issues/12699)) ([f01b2eb](https://github.com/UI5/webcomponents/commit/f01b2eb6256f2032bd802d0a60c4625b0d1af5fe))
148
+
149
+
150
+
151
+
152
+
153
+ # [2.17.0-rc.4](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v2.17.0-rc.4) (2025-11-27)
154
+
155
+
156
+ ### Bug Fixes
157
+
158
+ * **build:** fix issue with legacy dev setup ([#12706](https://github.com/UI5/webcomponents/issues/12706)) ([89fa5ca](https://github.com/UI5/webcomponents/commit/89fa5ca9f83551363e8c1d9980269cd58fa09d85))
159
+
160
+
161
+
162
+
163
+
164
+ # [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
165
+
166
+
167
+ ### Bug Fixes
168
+
169
+ * **cem:** alias references ([#12682](https://github.com/UI5/webcomponents/issues/12682)) ([4ce5617](https://github.com/UI5/webcomponents/commit/4ce5617ff580c869640996545fa618ff90447ba4))
170
+
171
+
172
+ ### Features
173
+
174
+ * **framework:** scope theming css variables with component packages ([#12491](https://github.com/UI5/webcomponents/issues/12491)) ([43ff5de](https://github.com/UI5/webcomponents/commit/43ff5defaf6e08bac848df3d2d34943de15bee83))
175
+
176
+
177
+
178
+
179
+
180
+ # [2.17.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v2.17.0-rc.2) (2025-11-13)
181
+
182
+
183
+ ### Bug Fixes
184
+
185
+ * **tools:** fix wc-dev test command ([#12662](https://github.com/UI5/webcomponents/issues/12662)) ([7dd11fb](https://github.com/UI5/webcomponents/commit/7dd11fbb88711a74d3602328a492a923552fd4ef))
186
+
187
+
188
+
189
+
190
+
191
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
192
+
193
+
194
+ ### Bug Fixes
195
+
196
+ * **tools:** dev-server for 3rd party packages ([#12631](https://github.com/UI5/webcomponents/issues/12631)) ([a4f4dd5](https://github.com/UI5/webcomponents/commit/a4f4dd5b0a68620ec063de32e724c064bd73af87))
197
+
198
+
199
+
200
+
201
+
202
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
203
+
204
+
205
+ ### Features
206
+
207
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
208
+
209
+
210
+
211
+
212
+
213
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
214
+
215
+ **Note:** Version bump only for package @ui5/webcomponents-tools
216
+
217
+
218
+
219
+
220
+
221
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
222
+
223
+ **Note:** Version bump only for package @ui5/webcomponents-tools
224
+
225
+
226
+
227
+
228
+
229
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
230
+
231
+
232
+ ### Bug Fixes
233
+
234
+ * dev server on windows ([#12565](https://github.com/UI5/webcomponents/issues/12565)) ([af96b2c](https://github.com/UI5/webcomponents/commit/af96b2ce2292e7624c6186c58e002c6337e13847))
235
+ * devServer exception ([#12547](https://github.com/UI5/webcomponents/issues/12547)) ([6b3e28e](https://github.com/UI5/webcomponents/commit/6b3e28ea2790868755d5679cabb8a5f5a22f93c5))
236
+
237
+
238
+
239
+
240
+
241
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
242
+
243
+ **Note:** Version bump only for package @ui5/webcomponents-tools
244
+
245
+
246
+
247
+
248
+
249
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
255
+
256
+
257
+
258
+
259
+
260
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
261
+
262
+ **Note:** Version bump only for package @ui5/webcomponents-tools
263
+
264
+
265
+
266
+
267
+
268
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
269
+
270
+ **Note:** Version bump only for package @ui5/webcomponents-tools
271
+
272
+
273
+
274
+
275
+
276
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
277
+
278
+ **Note:** Version bump only for package @ui5/webcomponents-tools
279
+
280
+
281
+
282
+
283
+
284
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
285
+
286
+ **Note:** Version bump only for package @ui5/webcomponents-tools
287
+
288
+
289
+
290
+
291
+
292
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
293
+
294
+
295
+ ### Bug Fixes
296
+
297
+ * **ui5-illustrated-message:** fix imports filter ([#12271](https://github.com/UI5/webcomponents/issues/12271)) ([f62d703](https://github.com/UI5/webcomponents/commit/f62d703b58aa4460dbc5a293c277290b48ca851f))
298
+
299
+
300
+
301
+
302
+
303
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
304
+
305
+ **Note:** Version bump only for package @ui5/webcomponents-tools
306
+
307
+
308
+
309
+
310
+
311
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
312
+
313
+ **Note:** Version bump only for package @ui5/webcomponents-tools
314
+
315
+
316
+
317
+
318
+
319
+ # [2.14.0-rc.7](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.6...v2.14.0-rc.7) (2025-09-04)
320
+
321
+ **Note:** Version bump only for package @ui5/webcomponents-tools
322
+
323
+
324
+
325
+
326
+
327
+ # [2.14.0-rc.6](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.5...v2.14.0-rc.6) (2025-08-29)
328
+
329
+ **Note:** Version bump only for package @ui5/webcomponents-tools
330
+
331
+
332
+
333
+
334
+
335
+ # [2.14.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.4...v2.14.0-rc.5) (2025-08-28)
336
+
337
+ **Note:** Version bump only for package @ui5/webcomponents-tools
338
+
339
+
340
+
341
+
342
+
343
+ # [2.14.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.3...v2.14.0-rc.4) (2025-08-25)
344
+
345
+ **Note:** Version bump only for package @ui5/webcomponents-tools
346
+
347
+
348
+
349
+
350
+
351
+ # [2.14.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.2...v2.14.0-rc.3) (2025-08-22)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * **tools:** correct strip unused theming base content ([#12133](https://github.com/SAP/ui5-webcomponents/issues/12133)) ([a97901d](https://github.com/SAP/ui5-webcomponents/commit/a97901da861836a5567cd4076a34bb07522ef7ba))
357
+
358
+
359
+
360
+
361
+
362
+ # [2.14.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.1...v2.14.0-rc.2) (2025-08-21)
363
+
364
+
365
+ ### Bug Fixes
366
+
367
+ * **framework:** use font-face declarations from theming-base-content ([#12144](https://github.com/SAP/ui5-webcomponents/issues/12144)) ([50deee9](https://github.com/SAP/ui5-webcomponents/commit/50deee9b9f512d3bd506de1648d3dc8f145a7d88))
368
+
369
+
370
+
371
+
372
+
373
+ # [2.14.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.0...v2.14.0-rc.1) (2025-08-14)
374
+
375
+ **Note:** Version bump only for package @ui5/webcomponents-tools
376
+
377
+
378
+
379
+
380
+
381
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
382
+
383
+ **Note:** Version bump only for package @ui5/webcomponents-tools
384
+
385
+
386
+
387
+
388
+
389
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
390
+
391
+ **Note:** Version bump only for package @ui5/webcomponents-tools
392
+
393
+
394
+
395
+
396
+
397
+ # [2.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.2...v2.13.0-rc.3) (2025-07-31)
398
+
399
+ **Note:** Version bump only for package @ui5/webcomponents-tools
400
+
401
+
402
+
403
+
404
+
405
+ # [2.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.1...v2.13.0-rc.2) (2025-07-24)
406
+
407
+ **Note:** Version bump only for package @ui5/webcomponents-tools
408
+
409
+
410
+
411
+
412
+
413
+ # [2.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.0...v2.13.0-rc.1) (2025-07-17)
414
+
415
+ **Note:** Version bump only for package @ui5/webcomponents-tools
416
+
417
+
418
+
419
+
420
+
421
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
422
+
423
+ **Note:** Version bump only for package @ui5/webcomponents-tools
424
+
425
+
426
+
427
+
428
+
429
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
430
+
431
+ **Note:** Version bump only for package @ui5/webcomponents-tools
432
+
433
+
434
+
435
+
436
+
437
+ # [2.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.2...v2.12.0-rc.3) (2025-07-03)
438
+
439
+ **Note:** Version bump only for package @ui5/webcomponents-tools
440
+
441
+
442
+
443
+
444
+
445
+ # [2.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.1...v2.12.0-rc.2) (2025-06-26)
446
+
447
+ **Note:** Version bump only for package @ui5/webcomponents-tools
448
+
449
+
450
+
451
+
452
+
453
+ # [2.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.0...v2.12.0-rc.1) (2025-06-19)
454
+
455
+ **Note:** Version bump only for package @ui5/webcomponents-tools
456
+
457
+
458
+
459
+
460
+
461
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
462
+
463
+ **Note:** Version bump only for package @ui5/webcomponents-tools
464
+
465
+
466
+
467
+
468
+
469
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
470
+
471
+ **Note:** Version bump only for package @ui5/webcomponents-tools
472
+
473
+
474
+
475
+
476
+
477
+ # [2.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.3...v2.11.0-rc.4) (2025-06-05)
478
+
479
+
480
+ ### Features
481
+
482
+ * **ui5-illustrated-message:** added new illustration types ([#11560](https://github.com/SAP/ui5-webcomponents/issues/11560)) ([5517e2c](https://github.com/SAP/ui5-webcomponents/commit/5517e2c84add4d88077e8dda7c82641eb672d7ee))
483
+
484
+
485
+
486
+
487
+
488
+ # [2.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.2...v2.11.0-rc.3) (2025-05-29)
489
+
490
+
491
+ ### Features
492
+
493
+ * add `Assets-node` module for node/ssr env ([#11522](https://github.com/SAP/ui5-webcomponents/issues/11522)) ([4a874cc](https://github.com/SAP/ui5-webcomponents/commit/4a874cc1f88e440f8bce4f9f0757df1af2a04314))
494
+
495
+
496
+
497
+
498
+
499
+ # [2.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.1...v2.11.0-rc.2) (2025-05-22)
500
+
501
+ **Note:** Version bump only for package @ui5/webcomponents-tools
502
+
503
+
504
+
505
+
506
+
6
507
  # [2.11.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.0...v2.11.0-rc.1) (2025-05-15)
7
508
 
8
509
  **Note:** Version bump only for package @ui5/webcomponents-tools