@ui5/webcomponents-tools 0.0.0-f6676abdd → 0.0.0-f6c8f637f

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 (101) hide show
  1. package/CHANGELOG.md +608 -0
  2. package/LICENSE.txt +201 -0
  3. package/README.md +7 -7
  4. package/assets-meta.js +1 -1
  5. package/bin/dev.js +10 -4
  6. package/bin/ui5nps.js +301 -0
  7. package/components-package/eslint.js +2 -38
  8. package/components-package/nps.js +98 -77
  9. package/components-package/wdio.js +8 -2
  10. package/icons-collection/nps.js +30 -21
  11. package/lib/amd-to-es6/index.js +17 -10
  12. package/lib/cem/cem.js +16 -0
  13. package/lib/cem/custom-elements-manifest.config.mjs +86 -57
  14. package/lib/cem/patch/@custom-elements-manifest/analyzer/cli.js +128 -0
  15. package/lib/cem/patch/@custom-elements-manifest/analyzer/package.json +59 -0
  16. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/browser-entrypoint.js +23 -0
  17. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/create.js +117 -0
  18. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/arrow-function.js +26 -0
  19. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/class-jsdoc.js +157 -0
  20. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/classes.js +20 -0
  21. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createArrowFunction.js +17 -0
  22. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createAttribute.js +24 -0
  23. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClass.js +301 -0
  24. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClassField.js +26 -0
  25. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createFunctionLike.js +73 -0
  26. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createMixin.js +33 -0
  27. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createVariable.js +22 -0
  28. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/handlers.js +338 -0
  29. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/custom-elements-define-calls.js +90 -0
  30. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/exports.js +156 -0
  31. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/function-like.js +24 -0
  32. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/mixins.js +29 -0
  33. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/reexported-wrapped-mixin-exports.js +84 -0
  34. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/variables.js +34 -0
  35. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/collect-phase/collect-imports.js +101 -0
  36. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/catalyst.js +11 -0
  37. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/controller.js +34 -0
  38. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/catalyst.js +11 -0
  39. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/controller.js +34 -0
  40. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/attr.js +53 -0
  41. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/custom-element-decorator.js +36 -0
  42. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/fast/fast.js +7 -0
  43. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/lit.js +13 -0
  44. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/member-denylist.js +21 -0
  45. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/method-denylist.js +20 -0
  46. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/property-decorator.js +94 -0
  47. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/static-properties.js +121 -0
  48. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/utils.js +66 -0
  49. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/stencil/stencil.js +129 -0
  50. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/index.js +80 -0
  51. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/cleanup-classes.js +25 -0
  52. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/field-denylist.js +22 -0
  53. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/method-denylist.js +25 -0
  54. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/apply-inheritance.js +78 -0
  55. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/is-custom-element.js +34 -0
  56. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/link-class-to-tagname.js +27 -0
  57. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/remove-unexported-declarations.js +23 -0
  58. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/resolve-initializers.js +52 -0
  59. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/ast-helpers.js +186 -0
  60. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/cli-helpers.js +164 -0
  61. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/exports.js +44 -0
  62. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/find-external-manifests.js +67 -0
  63. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/imports.js +25 -0
  64. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/index.js +71 -0
  65. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/jsdoc.js +19 -0
  66. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/manifest-helpers.js +194 -0
  67. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/mixins.js +112 -0
  68. package/lib/cem/schema-internal.json +9 -0
  69. package/lib/cem/utils.mjs +9 -9
  70. package/lib/cem/validate.js +66 -55
  71. package/lib/chokidar/chokidar.js +28 -0
  72. package/lib/copy-and-watch/index.js +110 -97
  73. package/lib/copy-list/index.js +18 -10
  74. package/lib/create-icons/index.js +24 -19
  75. package/lib/create-illustrations/index.js +57 -29
  76. package/lib/create-new-component/index.js +8 -6
  77. package/lib/css-processors/css-processor-components.mjs +83 -59
  78. package/lib/css-processors/css-processor-themes.mjs +104 -57
  79. package/lib/css-processors/postcss-plugin.mjs +153 -0
  80. package/lib/css-processors/scope-variables.mjs +3 -1
  81. package/lib/css-processors/shared.mjs +8 -17
  82. package/lib/dev-server/dev-server.mjs +23 -11
  83. package/lib/eslint/eslint.js +44 -0
  84. package/lib/generate-js-imports/illustrations.js +55 -54
  85. package/lib/generate-json-imports/i18n.js +22 -11
  86. package/lib/generate-json-imports/themes.js +24 -12
  87. package/lib/i18n/defaults.js +14 -7
  88. package/lib/i18n/toJSON.js +40 -12
  89. package/lib/icons-hash/icons-hash.mjs +149 -0
  90. package/lib/remove-dev-mode/remove-dev-mode.mjs +38 -24
  91. package/lib/rimraf/rimraf.js +31 -0
  92. package/lib/test-runner/test-runner.js +56 -48
  93. package/lib/vite-bundler/vite-bundler.mjs +35 -0
  94. package/package.json +15 -22
  95. package/components-package/cypress/support/commands.js +0 -66
  96. package/components-package/cypress/support/component-index.html +0 -17
  97. package/components-package/cypress/support/component.d.ts +0 -22
  98. package/components-package/cypress/support/component.js +0 -46
  99. package/components-package/cypress/support/cypress-ct-preact.js +0 -11
  100. package/components-package/cypress.config.js +0 -33
  101. package/types/index.d.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,614 @@
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-f6c8f637f](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.2...v0.0.0-f6c8f637f) (2026-02-05)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [2.19.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.1...v2.19.0-rc.2) (2026-01-22)
15
+
16
+ **Note:** Version bump only for package @ui5/webcomponents-tools
17
+
18
+
19
+
20
+
21
+
22
+ # [2.19.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.0...v2.19.0-rc.1) (2026-01-15)
23
+
24
+ **Note:** Version bump only for package @ui5/webcomponents-tools
25
+
26
+
27
+
28
+
29
+
30
+ # [2.19.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.18.0...v2.19.0-rc.0) (2026-01-08)
31
+
32
+
33
+ ### Bug Fixes
34
+
35
+ * **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))
36
+
37
+
38
+
39
+
40
+
41
+ # [2.18.0](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.3...v2.18.0) (2026-01-05)
42
+
43
+ **Note:** Version bump only for package @ui5/webcomponents-tools
44
+
45
+
46
+
47
+
48
+
49
+ # [2.18.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.2...v2.18.0-rc.3) (2026-01-01)
50
+
51
+ **Note:** Version bump only for package @ui5/webcomponents-tools
52
+
53
+
54
+
55
+
56
+
57
+ # [2.18.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.1...v2.18.0-rc.2) (2025-12-25)
58
+
59
+ **Note:** Version bump only for package @ui5/webcomponents-tools
60
+
61
+
62
+
63
+
64
+
65
+ # [2.18.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.0...v2.18.0-rc.1) (2025-12-18)
66
+
67
+ **Note:** Version bump only for package @ui5/webcomponents-tools
68
+
69
+
70
+
71
+
72
+
73
+ # [2.18.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.17.0...v2.18.0-rc.0) (2025-12-11)
74
+
75
+ **Note:** Version bump only for package @ui5/webcomponents-tools
76
+
77
+
78
+
79
+
80
+
81
+ # [2.17.0](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.5...v2.17.0) (2025-12-05)
82
+
83
+
84
+ ### Reverts
85
+
86
+ * 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)
87
+ * 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)
88
+ * 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)
89
+
90
+
91
+
92
+
93
+
94
+ # [2.17.0-rc.5](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.4...v2.17.0-rc.5) (2025-12-04)
95
+
96
+
97
+ ### Bug Fixes
98
+
99
+ * **tools:** dependencies usage ([#12716](https://github.com/UI5/webcomponents/issues/12716)) ([89bb0dd](https://github.com/UI5/webcomponents/commit/89bb0dd62322598bd1ea7ce984eaf0618546a6f2))
100
+
101
+
102
+ ### Features
103
+
104
+ * **framework:** introduce loadBaseThemingCSSVariables configuration ([#12699](https://github.com/UI5/webcomponents/issues/12699)) ([f01b2eb](https://github.com/UI5/webcomponents/commit/f01b2eb6256f2032bd802d0a60c4625b0d1af5fe))
105
+
106
+
107
+
108
+
109
+
110
+ # [2.17.0-rc.4](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v2.17.0-rc.4) (2025-11-27)
111
+
112
+
113
+ ### Bug Fixes
114
+
115
+ * **build:** fix issue with legacy dev setup ([#12706](https://github.com/UI5/webcomponents/issues/12706)) ([89fa5ca](https://github.com/UI5/webcomponents/commit/89fa5ca9f83551363e8c1d9980269cd58fa09d85))
116
+
117
+
118
+
119
+
120
+
121
+ # [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
122
+
123
+
124
+ ### Bug Fixes
125
+
126
+ * **cem:** alias references ([#12682](https://github.com/UI5/webcomponents/issues/12682)) ([4ce5617](https://github.com/UI5/webcomponents/commit/4ce5617ff580c869640996545fa618ff90447ba4))
127
+
128
+
129
+ ### Features
130
+
131
+ * **framework:** scope theming css variables with component packages ([#12491](https://github.com/UI5/webcomponents/issues/12491)) ([43ff5de](https://github.com/UI5/webcomponents/commit/43ff5defaf6e08bac848df3d2d34943de15bee83))
132
+
133
+
134
+
135
+
136
+
137
+ # [2.17.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v2.17.0-rc.2) (2025-11-13)
138
+
139
+
140
+ ### Bug Fixes
141
+
142
+ * **tools:** fix wc-dev test command ([#12662](https://github.com/UI5/webcomponents/issues/12662)) ([7dd11fb](https://github.com/UI5/webcomponents/commit/7dd11fbb88711a74d3602328a492a923552fd4ef))
143
+
144
+
145
+
146
+
147
+
148
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
149
+
150
+
151
+ ### Bug Fixes
152
+
153
+ * **tools:** dev-server for 3rd party packages ([#12631](https://github.com/UI5/webcomponents/issues/12631)) ([a4f4dd5](https://github.com/UI5/webcomponents/commit/a4f4dd5b0a68620ec063de32e724c064bd73af87))
154
+
155
+
156
+
157
+
158
+
159
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
160
+
161
+
162
+ ### Features
163
+
164
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
165
+
166
+
167
+
168
+
169
+
170
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
171
+
172
+ **Note:** Version bump only for package @ui5/webcomponents-tools
173
+
174
+
175
+
176
+
177
+
178
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
179
+
180
+ **Note:** Version bump only for package @ui5/webcomponents-tools
181
+
182
+
183
+
184
+
185
+
186
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
187
+
188
+
189
+ ### Bug Fixes
190
+
191
+ * dev server on windows ([#12565](https://github.com/UI5/webcomponents/issues/12565)) ([af96b2c](https://github.com/UI5/webcomponents/commit/af96b2ce2292e7624c6186c58e002c6337e13847))
192
+ * devServer exception ([#12547](https://github.com/UI5/webcomponents/issues/12547)) ([6b3e28e](https://github.com/UI5/webcomponents/commit/6b3e28ea2790868755d5679cabb8a5f5a22f93c5))
193
+
194
+
195
+
196
+
197
+
198
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
199
+
200
+ **Note:** Version bump only for package @ui5/webcomponents-tools
201
+
202
+
203
+
204
+
205
+
206
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
207
+
208
+
209
+ ### Bug Fixes
210
+
211
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
212
+
213
+
214
+
215
+
216
+
217
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
218
+
219
+ **Note:** Version bump only for package @ui5/webcomponents-tools
220
+
221
+
222
+
223
+
224
+
225
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
226
+
227
+ **Note:** Version bump only for package @ui5/webcomponents-tools
228
+
229
+
230
+
231
+
232
+
233
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
234
+
235
+ **Note:** Version bump only for package @ui5/webcomponents-tools
236
+
237
+
238
+
239
+
240
+
241
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
242
+
243
+ **Note:** Version bump only for package @ui5/webcomponents-tools
244
+
245
+
246
+
247
+
248
+
249
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * **ui5-illustrated-message:** fix imports filter ([#12271](https://github.com/UI5/webcomponents/issues/12271)) ([f62d703](https://github.com/UI5/webcomponents/commit/f62d703b58aa4460dbc5a293c277290b48ca851f))
255
+
256
+
257
+
258
+
259
+
260
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
261
+
262
+ **Note:** Version bump only for package @ui5/webcomponents-tools
263
+
264
+
265
+
266
+
267
+
268
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
269
+
270
+ **Note:** Version bump only for package @ui5/webcomponents-tools
271
+
272
+
273
+
274
+
275
+
276
+ # [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)
277
+
278
+ **Note:** Version bump only for package @ui5/webcomponents-tools
279
+
280
+
281
+
282
+
283
+
284
+ # [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)
285
+
286
+ **Note:** Version bump only for package @ui5/webcomponents-tools
287
+
288
+
289
+
290
+
291
+
292
+ # [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)
293
+
294
+ **Note:** Version bump only for package @ui5/webcomponents-tools
295
+
296
+
297
+
298
+
299
+
300
+ # [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)
301
+
302
+ **Note:** Version bump only for package @ui5/webcomponents-tools
303
+
304
+
305
+
306
+
307
+
308
+ # [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)
309
+
310
+
311
+ ### Bug Fixes
312
+
313
+ * **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))
314
+
315
+
316
+
317
+
318
+
319
+ # [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)
320
+
321
+
322
+ ### Bug Fixes
323
+
324
+ * **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))
325
+
326
+
327
+
328
+
329
+
330
+ # [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)
331
+
332
+ **Note:** Version bump only for package @ui5/webcomponents-tools
333
+
334
+
335
+
336
+
337
+
338
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
339
+
340
+ **Note:** Version bump only for package @ui5/webcomponents-tools
341
+
342
+
343
+
344
+
345
+
346
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
347
+
348
+ **Note:** Version bump only for package @ui5/webcomponents-tools
349
+
350
+
351
+
352
+
353
+
354
+ # [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)
355
+
356
+ **Note:** Version bump only for package @ui5/webcomponents-tools
357
+
358
+
359
+
360
+
361
+
362
+ # [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)
363
+
364
+ **Note:** Version bump only for package @ui5/webcomponents-tools
365
+
366
+
367
+
368
+
369
+
370
+ # [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)
371
+
372
+ **Note:** Version bump only for package @ui5/webcomponents-tools
373
+
374
+
375
+
376
+
377
+
378
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
379
+
380
+ **Note:** Version bump only for package @ui5/webcomponents-tools
381
+
382
+
383
+
384
+
385
+
386
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
387
+
388
+ **Note:** Version bump only for package @ui5/webcomponents-tools
389
+
390
+
391
+
392
+
393
+
394
+ # [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)
395
+
396
+ **Note:** Version bump only for package @ui5/webcomponents-tools
397
+
398
+
399
+
400
+
401
+
402
+ # [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)
403
+
404
+ **Note:** Version bump only for package @ui5/webcomponents-tools
405
+
406
+
407
+
408
+
409
+
410
+ # [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)
411
+
412
+ **Note:** Version bump only for package @ui5/webcomponents-tools
413
+
414
+
415
+
416
+
417
+
418
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
419
+
420
+ **Note:** Version bump only for package @ui5/webcomponents-tools
421
+
422
+
423
+
424
+
425
+
426
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
427
+
428
+ **Note:** Version bump only for package @ui5/webcomponents-tools
429
+
430
+
431
+
432
+
433
+
434
+ # [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)
435
+
436
+
437
+ ### Features
438
+
439
+ * **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))
440
+
441
+
442
+
443
+
444
+
445
+ # [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)
446
+
447
+
448
+ ### Features
449
+
450
+ * 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))
451
+
452
+
453
+
454
+
455
+
456
+ # [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)
457
+
458
+ **Note:** Version bump only for package @ui5/webcomponents-tools
459
+
460
+
461
+
462
+
463
+
464
+ # [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)
465
+
466
+ **Note:** Version bump only for package @ui5/webcomponents-tools
467
+
468
+
469
+
470
+
471
+
472
+ # [2.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0...v2.11.0-rc.0) (2025-05-08)
473
+
474
+ **Note:** Version bump only for package @ui5/webcomponents-tools
475
+
476
+
477
+
478
+
479
+
480
+ # [2.10.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.3...v2.10.0) (2025-05-07)
481
+
482
+ **Note:** Version bump only for package @ui5/webcomponents-tools
483
+
484
+
485
+
486
+
487
+
488
+ # [2.10.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.2...v2.10.0-rc.3) (2025-05-01)
489
+
490
+
491
+ ### Bug Fixes
492
+
493
+ * escape backslash when processing component's css ([#11425](https://github.com/SAP/ui5-webcomponents/issues/11425)) ([2c4dc74](https://github.com/SAP/ui5-webcomponents/commit/2c4dc744fb06f79ec77df6cbe725723a75eecb87))
494
+
495
+
496
+ ### Features
497
+
498
+ * **ui5-button:** make click button preventable ([#11318](https://github.com/SAP/ui5-webcomponents/issues/11318)) ([1f4aa92](https://github.com/SAP/ui5-webcomponents/commit/1f4aa927d2841e0c51f665ab2bdb851b1d030c35))
499
+
500
+
501
+
502
+
503
+
504
+ # [2.10.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.1...v2.10.0-rc.2) (2025-04-24)
505
+
506
+ **Note:** Version bump only for package @ui5/webcomponents-tools
507
+
508
+
509
+
510
+
511
+
512
+ # [2.10.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.0...v2.10.0-rc.1) (2025-04-17)
513
+
514
+ **Note:** Version bump only for package @ui5/webcomponents-tools
515
+
516
+
517
+
518
+
519
+
520
+ # [2.10.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.1-rc.0...v2.10.0-rc.0) (2025-04-14)
521
+
522
+ **Note:** Version bump only for package @ui5/webcomponents-tools
523
+
524
+
525
+
526
+
527
+
528
+ ## [2.9.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0...v2.9.1-rc.0) (2025-04-10)
529
+
530
+ **Note:** Version bump only for package @ui5/webcomponents-tools
531
+
532
+
533
+
534
+
535
+
536
+ # [2.9.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.3...v2.9.0) (2025-04-04)
537
+
538
+ **Note:** Version bump only for package @ui5/webcomponents-tools
539
+
540
+
541
+
542
+
543
+
544
+ # [2.9.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.2...v2.9.0-rc.3) (2025-04-03)
545
+
546
+
547
+ ### Bug Fixes
548
+
549
+ * **framework:** fix fetching "id" (indonesian) language ([#11251](https://github.com/SAP/ui5-webcomponents/issues/11251)) ([9a36df5](https://github.com/SAP/ui5-webcomponents/commit/9a36df5dc2191758abd665d6fb1014d645e322f7)), closes [#11233](https://github.com/SAP/ui5-webcomponents/issues/11233)
550
+
551
+
552
+
553
+
554
+
555
+ # [2.9.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.1...v2.9.0-rc.2) (2025-03-27)
556
+
557
+ **Note:** Version bump only for package @ui5/webcomponents-tools
558
+
559
+
560
+
561
+
562
+
563
+ # [2.9.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.0...v2.9.0-rc.1) (2025-03-20)
564
+
565
+
566
+ ### Bug Fixes
567
+
568
+ * **tools:** fix icon imports to i18n texts ([#11091](https://github.com/SAP/ui5-webcomponents/issues/11091)) ([472ffdc](https://github.com/SAP/ui5-webcomponents/commit/472ffdcd602a4da53a839829e5a5bcf017ff618c))
569
+
570
+
571
+
572
+
573
+
574
+ # [2.9.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.1-rc.0...v2.9.0-rc.0) (2025-03-13)
575
+
576
+ **Note:** Version bump only for package @ui5/webcomponents-tools
577
+
578
+
579
+
580
+
581
+
582
+ ## [2.8.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0...v2.8.1-rc.0) (2025-03-06)
583
+
584
+ **Note:** Version bump only for package @ui5/webcomponents-tools
585
+
586
+
587
+
588
+
589
+
590
+ # [2.8.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.3...v2.8.0) (2025-03-04)
591
+
592
+ **Note:** Version bump only for package @ui5/webcomponents-tools
593
+
594
+
595
+
596
+
597
+
598
+ # [2.8.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.2...v2.8.0-rc.3) (2025-02-27)
599
+
600
+ **Note:** Version bump only for package @ui5/webcomponents-tools
601
+
602
+
603
+
604
+
605
+
606
+ # [2.8.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.1...v2.8.0-rc.2) (2025-02-20)
607
+
608
+ **Note:** Version bump only for package @ui5/webcomponents-tools
609
+
610
+
611
+
612
+
613
+
6
614
  # [2.8.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.0...v2.8.0-rc.1) (2025-02-13)
7
615
 
8
616
  **Note:** Version bump only for package @ui5/webcomponents-tools