@ui5/webcomponents-tools 0.0.0-9261ac932 → 0.0.0-95afb1087

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 (106) hide show
  1. package/CHANGELOG.md +737 -0
  2. package/LICENSE.txt +201 -0
  3. package/README.md +7 -7
  4. package/assets-meta.js +1 -5
  5. package/bin/dev.js +3 -2
  6. package/bin/ui5nps.js +265 -0
  7. package/components-package/eslint.js +29 -39
  8. package/components-package/nps.js +98 -75
  9. package/components-package/vite.config.js +7 -11
  10. package/components-package/wdio.js +9 -3
  11. package/icons-collection/nps.js +30 -21
  12. package/lib/amd-to-es6/index.js +15 -10
  13. package/lib/cem/cem.js +12 -0
  14. package/lib/cem/custom-elements-manifest.config.mjs +58 -39
  15. package/lib/cem/event.mjs +51 -31
  16. package/lib/cem/patch/@custom-elements-manifest/analyzer/cli.js +128 -0
  17. package/lib/cem/patch/@custom-elements-manifest/analyzer/package.json +59 -0
  18. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/browser-entrypoint.js +23 -0
  19. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/create.js +117 -0
  20. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/arrow-function.js +26 -0
  21. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/class-jsdoc.js +157 -0
  22. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/classes.js +20 -0
  23. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createArrowFunction.js +17 -0
  24. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createAttribute.js +24 -0
  25. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClass.js +301 -0
  26. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClassField.js +26 -0
  27. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createFunctionLike.js +73 -0
  28. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createMixin.js +33 -0
  29. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createVariable.js +22 -0
  30. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/handlers.js +338 -0
  31. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/custom-elements-define-calls.js +90 -0
  32. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/exports.js +156 -0
  33. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/function-like.js +24 -0
  34. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/mixins.js +29 -0
  35. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/reexported-wrapped-mixin-exports.js +84 -0
  36. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/variables.js +34 -0
  37. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/collect-phase/collect-imports.js +101 -0
  38. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/catalyst.js +11 -0
  39. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/controller.js +34 -0
  40. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/catalyst.js +11 -0
  41. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/controller.js +34 -0
  42. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/attr.js +53 -0
  43. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/custom-element-decorator.js +36 -0
  44. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/fast/fast.js +7 -0
  45. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/lit.js +13 -0
  46. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/member-denylist.js +21 -0
  47. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/method-denylist.js +20 -0
  48. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/property-decorator.js +94 -0
  49. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/static-properties.js +121 -0
  50. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/utils.js +66 -0
  51. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/stencil/stencil.js +129 -0
  52. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/index.js +80 -0
  53. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/cleanup-classes.js +25 -0
  54. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/field-denylist.js +22 -0
  55. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/method-denylist.js +25 -0
  56. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/apply-inheritance.js +78 -0
  57. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/is-custom-element.js +34 -0
  58. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/link-class-to-tagname.js +27 -0
  59. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/remove-unexported-declarations.js +23 -0
  60. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/resolve-initializers.js +52 -0
  61. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/ast-helpers.js +186 -0
  62. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/cli-helpers.js +164 -0
  63. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/exports.js +44 -0
  64. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/find-external-manifests.js +67 -0
  65. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/imports.js +25 -0
  66. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/index.js +71 -0
  67. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/jsdoc.js +19 -0
  68. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/manifest-helpers.js +194 -0
  69. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/mixins.js +112 -0
  70. package/lib/cem/schema-internal.json +9 -0
  71. package/lib/cem/utils.mjs +50 -25
  72. package/lib/cem/validate.js +61 -55
  73. package/lib/chokidar/chokidar.js +29 -0
  74. package/lib/copy-and-watch/index.js +105 -97
  75. package/lib/copy-list/index.js +16 -10
  76. package/lib/create-icons/index.js +24 -19
  77. package/lib/create-illustrations/index.js +51 -28
  78. package/lib/create-new-component/{tsFileContentTemplate.js → Component.js} +11 -8
  79. package/lib/create-new-component/ComponentTemplate.js +12 -0
  80. package/lib/create-new-component/index.js +13 -10
  81. package/lib/css-processors/css-processor-components.mjs +75 -60
  82. package/lib/css-processors/css-processor-themes.mjs +101 -62
  83. package/lib/css-processors/scope-variables.mjs +17 -9
  84. package/lib/css-processors/shared.mjs +5 -35
  85. package/lib/dev-server/dev-server.mjs +24 -12
  86. package/lib/dev-server/virtual-index-html-plugin.js +24 -20
  87. package/lib/eslint/eslint.js +44 -0
  88. package/lib/generate-js-imports/illustrations.js +53 -54
  89. package/lib/generate-json-imports/i18n.js +20 -11
  90. package/lib/generate-json-imports/themes.js +20 -12
  91. package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +8 -3
  92. package/lib/i18n/defaults.js +12 -7
  93. package/lib/i18n/toJSON.js +15 -12
  94. package/lib/icons-hash/icons-hash.mjs +149 -0
  95. package/lib/remove-dev-mode/remove-dev-mode.mjs +38 -24
  96. package/lib/rimraf/rimraf.js +31 -0
  97. package/lib/test-runner/test-runner.js +56 -48
  98. package/lib/vite-bundler/vite-bundler.mjs +35 -0
  99. package/package.json +19 -22
  100. package/tsconfig.json +2 -0
  101. package/components-package/cypress/support/commands.js +0 -39
  102. package/components-package/cypress/support/component-index.html +0 -17
  103. package/components-package/cypress/support/component.d.ts +0 -23
  104. package/components-package/cypress/support/component.js +0 -34
  105. package/components-package/cypress.config.js +0 -19
  106. package/types/index.d.ts +0 -1
package/CHANGELOG.md CHANGED
@@ -3,6 +3,743 @@
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-95afb1087](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v0.0.0-95afb1087) (2025-11-25)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **build:** fix issue with legacy dev setup ([#12706](https://github.com/UI5/webcomponents/issues/12706)) ([89fa5ca](https://github.com/UI5/webcomponents/commit/89fa5ca9f83551363e8c1d9980269cd58fa09d85))
12
+ * **tools:** dependencies usage ([0153001](https://github.com/UI5/webcomponents/commit/0153001817687f59130b1e220ad418e65672acfb))
13
+
14
+
15
+
16
+
17
+
18
+ # [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
19
+
20
+
21
+ ### Bug Fixes
22
+
23
+ * **cem:** alias references ([#12682](https://github.com/UI5/webcomponents/issues/12682)) ([4ce5617](https://github.com/UI5/webcomponents/commit/4ce5617ff580c869640996545fa618ff90447ba4))
24
+
25
+
26
+ ### Features
27
+
28
+ * **framework:** scope theming css variables with component packages ([#12491](https://github.com/UI5/webcomponents/issues/12491)) ([43ff5de](https://github.com/UI5/webcomponents/commit/43ff5defaf6e08bac848df3d2d34943de15bee83))
29
+
30
+
31
+
32
+
33
+
34
+ # [2.17.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v2.17.0-rc.2) (2025-11-13)
35
+
36
+
37
+ ### Bug Fixes
38
+
39
+ * **tools:** fix wc-dev test command ([#12662](https://github.com/UI5/webcomponents/issues/12662)) ([7dd11fb](https://github.com/UI5/webcomponents/commit/7dd11fbb88711a74d3602328a492a923552fd4ef))
40
+
41
+
42
+
43
+
44
+
45
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
46
+
47
+
48
+ ### Bug Fixes
49
+
50
+ * **tools:** dev-server for 3rd party packages ([#12631](https://github.com/UI5/webcomponents/issues/12631)) ([a4f4dd5](https://github.com/UI5/webcomponents/commit/a4f4dd5b0a68620ec063de32e724c064bd73af87))
51
+
52
+
53
+
54
+
55
+
56
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
57
+
58
+
59
+ ### Features
60
+
61
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
62
+
63
+
64
+
65
+
66
+
67
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
68
+
69
+ **Note:** Version bump only for package @ui5/webcomponents-tools
70
+
71
+
72
+
73
+
74
+
75
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
76
+
77
+ **Note:** Version bump only for package @ui5/webcomponents-tools
78
+
79
+
80
+
81
+
82
+
83
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
84
+
85
+
86
+ ### Bug Fixes
87
+
88
+ * dev server on windows ([#12565](https://github.com/UI5/webcomponents/issues/12565)) ([af96b2c](https://github.com/UI5/webcomponents/commit/af96b2ce2292e7624c6186c58e002c6337e13847))
89
+ * devServer exception ([#12547](https://github.com/UI5/webcomponents/issues/12547)) ([6b3e28e](https://github.com/UI5/webcomponents/commit/6b3e28ea2790868755d5679cabb8a5f5a22f93c5))
90
+
91
+
92
+
93
+
94
+
95
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
96
+
97
+ **Note:** Version bump only for package @ui5/webcomponents-tools
98
+
99
+
100
+
101
+
102
+
103
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
104
+
105
+
106
+ ### Bug Fixes
107
+
108
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
109
+
110
+
111
+
112
+
113
+
114
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
115
+
116
+ **Note:** Version bump only for package @ui5/webcomponents-tools
117
+
118
+
119
+
120
+
121
+
122
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
123
+
124
+ **Note:** Version bump only for package @ui5/webcomponents-tools
125
+
126
+
127
+
128
+
129
+
130
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
131
+
132
+ **Note:** Version bump only for package @ui5/webcomponents-tools
133
+
134
+
135
+
136
+
137
+
138
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
139
+
140
+ **Note:** Version bump only for package @ui5/webcomponents-tools
141
+
142
+
143
+
144
+
145
+
146
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
147
+
148
+
149
+ ### Bug Fixes
150
+
151
+ * **ui5-illustrated-message:** fix imports filter ([#12271](https://github.com/UI5/webcomponents/issues/12271)) ([f62d703](https://github.com/UI5/webcomponents/commit/f62d703b58aa4460dbc5a293c277290b48ca851f))
152
+
153
+
154
+
155
+
156
+
157
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
158
+
159
+ **Note:** Version bump only for package @ui5/webcomponents-tools
160
+
161
+
162
+
163
+
164
+
165
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
166
+
167
+ **Note:** Version bump only for package @ui5/webcomponents-tools
168
+
169
+
170
+
171
+
172
+
173
+ # [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)
174
+
175
+ **Note:** Version bump only for package @ui5/webcomponents-tools
176
+
177
+
178
+
179
+
180
+
181
+ # [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)
182
+
183
+ **Note:** Version bump only for package @ui5/webcomponents-tools
184
+
185
+
186
+
187
+
188
+
189
+ # [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)
190
+
191
+ **Note:** Version bump only for package @ui5/webcomponents-tools
192
+
193
+
194
+
195
+
196
+
197
+ # [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)
198
+
199
+ **Note:** Version bump only for package @ui5/webcomponents-tools
200
+
201
+
202
+
203
+
204
+
205
+ # [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)
206
+
207
+
208
+ ### Bug Fixes
209
+
210
+ * **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))
211
+
212
+
213
+
214
+
215
+
216
+ # [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)
217
+
218
+
219
+ ### Bug Fixes
220
+
221
+ * **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))
222
+
223
+
224
+
225
+
226
+
227
+ # [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)
228
+
229
+ **Note:** Version bump only for package @ui5/webcomponents-tools
230
+
231
+
232
+
233
+
234
+
235
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
236
+
237
+ **Note:** Version bump only for package @ui5/webcomponents-tools
238
+
239
+
240
+
241
+
242
+
243
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
244
+
245
+ **Note:** Version bump only for package @ui5/webcomponents-tools
246
+
247
+
248
+
249
+
250
+
251
+ # [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)
252
+
253
+ **Note:** Version bump only for package @ui5/webcomponents-tools
254
+
255
+
256
+
257
+
258
+
259
+ # [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)
260
+
261
+ **Note:** Version bump only for package @ui5/webcomponents-tools
262
+
263
+
264
+
265
+
266
+
267
+ # [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)
268
+
269
+ **Note:** Version bump only for package @ui5/webcomponents-tools
270
+
271
+
272
+
273
+
274
+
275
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
276
+
277
+ **Note:** Version bump only for package @ui5/webcomponents-tools
278
+
279
+
280
+
281
+
282
+
283
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
284
+
285
+ **Note:** Version bump only for package @ui5/webcomponents-tools
286
+
287
+
288
+
289
+
290
+
291
+ # [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)
292
+
293
+ **Note:** Version bump only for package @ui5/webcomponents-tools
294
+
295
+
296
+
297
+
298
+
299
+ # [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)
300
+
301
+ **Note:** Version bump only for package @ui5/webcomponents-tools
302
+
303
+
304
+
305
+
306
+
307
+ # [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)
308
+
309
+ **Note:** Version bump only for package @ui5/webcomponents-tools
310
+
311
+
312
+
313
+
314
+
315
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
316
+
317
+ **Note:** Version bump only for package @ui5/webcomponents-tools
318
+
319
+
320
+
321
+
322
+
323
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
324
+
325
+ **Note:** Version bump only for package @ui5/webcomponents-tools
326
+
327
+
328
+
329
+
330
+
331
+ # [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)
332
+
333
+
334
+ ### Features
335
+
336
+ * **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))
337
+
338
+
339
+
340
+
341
+
342
+ # [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)
343
+
344
+
345
+ ### Features
346
+
347
+ * 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))
348
+
349
+
350
+
351
+
352
+
353
+ # [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)
354
+
355
+ **Note:** Version bump only for package @ui5/webcomponents-tools
356
+
357
+
358
+
359
+
360
+
361
+ # [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)
362
+
363
+ **Note:** Version bump only for package @ui5/webcomponents-tools
364
+
365
+
366
+
367
+
368
+
369
+ # [2.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0...v2.11.0-rc.0) (2025-05-08)
370
+
371
+ **Note:** Version bump only for package @ui5/webcomponents-tools
372
+
373
+
374
+
375
+
376
+
377
+ # [2.10.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.3...v2.10.0) (2025-05-07)
378
+
379
+ **Note:** Version bump only for package @ui5/webcomponents-tools
380
+
381
+
382
+
383
+
384
+
385
+ # [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)
386
+
387
+
388
+ ### Bug Fixes
389
+
390
+ * 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))
391
+
392
+
393
+ ### Features
394
+
395
+ * **ui5-button:** make click button preventable ([#11318](https://github.com/SAP/ui5-webcomponents/issues/11318)) ([1f4aa92](https://github.com/SAP/ui5-webcomponents/commit/1f4aa927d2841e0c51f665ab2bdb851b1d030c35))
396
+
397
+
398
+
399
+
400
+
401
+ # [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)
402
+
403
+ **Note:** Version bump only for package @ui5/webcomponents-tools
404
+
405
+
406
+
407
+
408
+
409
+ # [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)
410
+
411
+ **Note:** Version bump only for package @ui5/webcomponents-tools
412
+
413
+
414
+
415
+
416
+
417
+ # [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)
418
+
419
+ **Note:** Version bump only for package @ui5/webcomponents-tools
420
+
421
+
422
+
423
+
424
+
425
+ ## [2.9.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0...v2.9.1-rc.0) (2025-04-10)
426
+
427
+ **Note:** Version bump only for package @ui5/webcomponents-tools
428
+
429
+
430
+
431
+
432
+
433
+ # [2.9.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.3...v2.9.0) (2025-04-04)
434
+
435
+ **Note:** Version bump only for package @ui5/webcomponents-tools
436
+
437
+
438
+
439
+
440
+
441
+ # [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)
442
+
443
+
444
+ ### Bug Fixes
445
+
446
+ * **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)
447
+
448
+
449
+
450
+
451
+
452
+ # [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)
453
+
454
+ **Note:** Version bump only for package @ui5/webcomponents-tools
455
+
456
+
457
+
458
+
459
+
460
+ # [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)
461
+
462
+
463
+ ### Bug Fixes
464
+
465
+ * **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))
466
+
467
+
468
+
469
+
470
+
471
+ # [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)
472
+
473
+ **Note:** Version bump only for package @ui5/webcomponents-tools
474
+
475
+
476
+
477
+
478
+
479
+ ## [2.8.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0...v2.8.1-rc.0) (2025-03-06)
480
+
481
+ **Note:** Version bump only for package @ui5/webcomponents-tools
482
+
483
+
484
+
485
+
486
+
487
+ # [2.8.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.3...v2.8.0) (2025-03-04)
488
+
489
+ **Note:** Version bump only for package @ui5/webcomponents-tools
490
+
491
+
492
+
493
+
494
+
495
+ # [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)
496
+
497
+ **Note:** Version bump only for package @ui5/webcomponents-tools
498
+
499
+
500
+
501
+
502
+
503
+ # [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)
504
+
505
+ **Note:** Version bump only for package @ui5/webcomponents-tools
506
+
507
+
508
+
509
+
510
+
511
+ # [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)
512
+
513
+ **Note:** Version bump only for package @ui5/webcomponents-tools
514
+
515
+
516
+
517
+
518
+
519
+ # [2.8.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.8.0-rc.0) (2025-02-06)
520
+
521
+ **Note:** Version bump only for package @ui5/webcomponents-tools
522
+
523
+
524
+
525
+
526
+
527
+ # [2.7.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.2...v2.7.0) (2025-02-03)
528
+
529
+ **Note:** Version bump only for package @ui5/webcomponents-tools
530
+
531
+
532
+
533
+
534
+
535
+ # [2.7.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.1...v2.7.0-rc.2) (2025-01-30)
536
+
537
+ **Note:** Version bump only for package @ui5/webcomponents-tools
538
+
539
+
540
+
541
+
542
+
543
+ # [2.7.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.0...v2.7.0-rc.1) (2025-01-23)
544
+
545
+ **Note:** Version bump only for package @ui5/webcomponents-tools
546
+
547
+
548
+
549
+
550
+
551
+ # [2.7.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.7.0-rc.0) (2025-01-16)
552
+
553
+ **Note:** Version bump only for package @ui5/webcomponents-tools
554
+
555
+
556
+
557
+
558
+
559
+ ## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
560
+
561
+ **Note:** Version bump only for package @ui5/webcomponents-tools
562
+
563
+
564
+
565
+
566
+
567
+ ## [2.6.2-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.1...v2.6.2-rc.0) (2025-01-09)
568
+
569
+ **Note:** Version bump only for package @ui5/webcomponents-tools
570
+
571
+
572
+
573
+
574
+
575
+ ## [2.6.1](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0...v2.6.1) (2025-01-08)
576
+
577
+ **Note:** Version bump only for package @ui5/webcomponents-tools
578
+
579
+
580
+
581
+
582
+
583
+ # [2.6.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.5...v2.6.0) (2025-01-07)
584
+
585
+ **Note:** Version bump only for package @ui5/webcomponents-tools
586
+
587
+
588
+
589
+
590
+
591
+ # [2.6.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.4...v2.6.0-rc.5) (2025-01-07)
592
+
593
+ **Note:** Version bump only for package @ui5/webcomponents-tools
594
+
595
+
596
+
597
+
598
+
599
+ # [2.6.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.3...v2.6.0-rc.4) (2025-01-02)
600
+
601
+ **Note:** Version bump only for package @ui5/webcomponents-tools
602
+
603
+
604
+
605
+
606
+
607
+ # [2.6.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.2...v2.6.0-rc.3) (2024-12-26)
608
+
609
+ **Note:** Version bump only for package @ui5/webcomponents-tools
610
+
611
+
612
+
613
+
614
+
615
+ # [2.6.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.1...v2.6.0-rc.2) (2024-12-19)
616
+
617
+
618
+ ### Bug Fixes
619
+
620
+ * **build:** generation of custom-elements.json ([#10403](https://github.com/SAP/ui5-webcomponents/issues/10403)) ([c4eb55c](https://github.com/SAP/ui5-webcomponents/commit/c4eb55cba3e45677c464df1f8cf2a17e6855f2a0))
621
+
622
+
623
+
624
+
625
+
626
+ # [2.6.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.0...v2.6.0-rc.1) (2024-12-16)
627
+
628
+ **Note:** Version bump only for package @ui5/webcomponents-tools
629
+
630
+
631
+
632
+
633
+
634
+ # [2.6.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0...v2.6.0-rc.0) (2024-12-12)
635
+
636
+
637
+ ### Features
638
+
639
+ * **framework:** add JSX template support with TypeScript ([#10046](https://github.com/SAP/ui5-webcomponents/issues/10046)) ([f42e7c1](https://github.com/SAP/ui5-webcomponents/commit/f42e7c18c846f923df4fec6ae02f1b4c20c006fa))
640
+
641
+
642
+
643
+
644
+
645
+ # [2.5.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.3...v2.5.0) (2024-12-05)
646
+
647
+ **Note:** Version bump only for package @ui5/webcomponents-tools
648
+
649
+
650
+
651
+
652
+
653
+ # [2.5.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.2...v2.5.0-rc.3) (2024-12-05)
654
+
655
+
656
+ ### Features
657
+
658
+ * **framework:** add strict event type checking ([#10235](https://github.com/SAP/ui5-webcomponents/issues/10235)) ([4ff8ab7](https://github.com/SAP/ui5-webcomponents/commit/4ff8ab7c34db5058b92511767be1b96c69a91cb5))
659
+
660
+
661
+
662
+
663
+
664
+ # [2.5.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.1...v2.5.0-rc.2) (2024-11-28)
665
+
666
+ **Note:** Version bump only for package @ui5/webcomponents-tools
667
+
668
+
669
+
670
+
671
+
672
+ # [2.5.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.0...v2.5.0-rc.1) (2024-11-21)
673
+
674
+ **Note:** Version bump only for package @ui5/webcomponents-tools
675
+
676
+
677
+
678
+
679
+
680
+ # [2.5.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.1-rc.0...v2.5.0-rc.0) (2024-11-14)
681
+
682
+ **Note:** Version bump only for package @ui5/webcomponents-tools
683
+
684
+
685
+
686
+
687
+
688
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
689
+
690
+ **Note:** Version bump only for package @ui5/webcomponents-tools
691
+
692
+
693
+
694
+
695
+
696
+ # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
697
+
698
+ **Note:** Version bump only for package @ui5/webcomponents-tools
699
+
700
+
701
+
702
+
703
+
704
+ # [2.4.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.3...v2.4.0-rc.4) (2024-10-31)
705
+
706
+ **Note:** Version bump only for package @ui5/webcomponents-tools
707
+
708
+
709
+
710
+
711
+
712
+ # [2.4.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.2...v2.4.0-rc.3) (2024-10-28)
713
+
714
+
715
+ ### Bug Fixes
716
+
717
+ * dev-server correctly imports yargs ([#10048](https://github.com/SAP/ui5-webcomponents/issues/10048)) ([7b5aa5e](https://github.com/SAP/ui5-webcomponents/commit/7b5aa5ebdddbbc0493f4699c1a74db497e22368b))
718
+
719
+
720
+
721
+
722
+
723
+ # [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)
724
+
725
+ **Note:** Version bump only for package @ui5/webcomponents-tools
726
+
727
+
728
+
729
+
730
+
731
+ # [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)
732
+
733
+
734
+ ### Bug Fixes
735
+
736
+ * scoping issues and document how scoping is used correctly ([#10023](https://github.com/SAP/ui5-webcomponents/issues/10023)) ([ee808c3](https://github.com/SAP/ui5-webcomponents/commit/ee808c309f316fe145b05d292c92328396c655ab))
737
+ * **tools:** revert tsconfig moduleResolution to node ([#10014](https://github.com/SAP/ui5-webcomponents/issues/10014)) ([0724b92](https://github.com/SAP/ui5-webcomponents/commit/0724b9289ad04f88972d4978ed37e76f13abca13))
738
+
739
+
740
+
741
+
742
+
6
743
  # [2.4.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.1-rc.0...v2.4.0-rc.0) (2024-10-10)
7
744
 
8
745