@ui5/webcomponents-tools 0.0.0-bf8366eb6 → 0.0.0-c143e338b

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 (100) hide show
  1. package/CHANGELOG.md +909 -0
  2. package/LICENSE.txt +201 -0
  3. package/README.md +7 -10
  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 +59 -31
  8. package/components-package/nps.js +96 -65
  9. package/components-package/vite.config.js +7 -11
  10. package/components-package/wdio.js +12 -5
  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 +74 -45
  15. package/lib/cem/event.mjs +69 -32
  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 +65 -0
  71. package/lib/cem/types-internal.d.ts +14 -2
  72. package/lib/cem/utils.mjs +69 -30
  73. package/lib/cem/validate.js +61 -55
  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 +49 -27
  78. package/lib/create-new-component/{tsFileContentTemplate.js → Component.js} +12 -9
  79. package/lib/create-new-component/ComponentTemplate.js +12 -0
  80. package/lib/create-new-component/index.js +13 -12
  81. package/lib/css-processors/css-processor-components.mjs +74 -59
  82. package/lib/css-processors/css-processor-themes.mjs +85 -62
  83. package/lib/css-processors/shared.mjs +5 -35
  84. package/lib/dev-server/{dev-server.js → dev-server.mjs} +26 -14
  85. package/lib/dev-server/virtual-index-html-plugin.js +24 -20
  86. package/lib/generate-js-imports/illustrations.js +53 -54
  87. package/lib/generate-json-imports/i18n.js +56 -36
  88. package/lib/generate-json-imports/themes.js +27 -14
  89. package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +12 -7
  90. package/lib/hbs2ui5/index.js +3 -3
  91. package/lib/i18n/defaults.js +15 -9
  92. package/lib/i18n/toJSON.js +14 -10
  93. package/lib/icons-hash/icons-hash.mjs +149 -0
  94. package/lib/remove-dev-mode/remove-dev-mode.mjs +38 -24
  95. package/lib/rimraf/rimraf.js +31 -0
  96. package/lib/scoping/get-all-tags.js +9 -2
  97. package/package.json +22 -17
  98. package/tsconfig.json +18 -0
  99. package/lib/css-processors/css-processor-component-styles.mjs +0 -48
  100. package/lib/dev-server/ssr-dom-shim-loader.js +0 -26
package/CHANGELOG.md CHANGED
@@ -3,6 +3,915 @@
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-c143e338b](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v0.0.0-c143e338b) (2025-11-07)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **tools:** dev-server for 3rd party packages ([#12631](https://github.com/UI5/webcomponents/issues/12631)) ([a4f4dd5](https://github.com/UI5/webcomponents/commit/a4f4dd5b0a68620ec063de32e724c064bd73af87))
20
+
21
+
22
+
23
+
24
+
25
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
26
+
27
+
28
+ ### Features
29
+
30
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
31
+
32
+
33
+
34
+
35
+
36
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
37
+
38
+ **Note:** Version bump only for package @ui5/webcomponents-tools
39
+
40
+
41
+
42
+
43
+
44
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
45
+
46
+ **Note:** Version bump only for package @ui5/webcomponents-tools
47
+
48
+
49
+
50
+
51
+
52
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
53
+
54
+
55
+ ### Bug Fixes
56
+
57
+ * dev server on windows ([#12565](https://github.com/UI5/webcomponents/issues/12565)) ([af96b2c](https://github.com/UI5/webcomponents/commit/af96b2ce2292e7624c6186c58e002c6337e13847))
58
+ * devServer exception ([#12547](https://github.com/UI5/webcomponents/issues/12547)) ([6b3e28e](https://github.com/UI5/webcomponents/commit/6b3e28ea2790868755d5679cabb8a5f5a22f93c5))
59
+
60
+
61
+
62
+
63
+
64
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
65
+
66
+ **Note:** Version bump only for package @ui5/webcomponents-tools
67
+
68
+
69
+
70
+
71
+
72
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
73
+
74
+
75
+ ### Bug Fixes
76
+
77
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
78
+
79
+
80
+
81
+
82
+
83
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
84
+
85
+ **Note:** Version bump only for package @ui5/webcomponents-tools
86
+
87
+
88
+
89
+
90
+
91
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
92
+
93
+ **Note:** Version bump only for package @ui5/webcomponents-tools
94
+
95
+
96
+
97
+
98
+
99
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
100
+
101
+ **Note:** Version bump only for package @ui5/webcomponents-tools
102
+
103
+
104
+
105
+
106
+
107
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
108
+
109
+ **Note:** Version bump only for package @ui5/webcomponents-tools
110
+
111
+
112
+
113
+
114
+
115
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
116
+
117
+
118
+ ### Bug Fixes
119
+
120
+ * **ui5-illustrated-message:** fix imports filter ([#12271](https://github.com/UI5/webcomponents/issues/12271)) ([f62d703](https://github.com/UI5/webcomponents/commit/f62d703b58aa4460dbc5a293c277290b48ca851f))
121
+
122
+
123
+
124
+
125
+
126
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
127
+
128
+ **Note:** Version bump only for package @ui5/webcomponents-tools
129
+
130
+
131
+
132
+
133
+
134
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
135
+
136
+ **Note:** Version bump only for package @ui5/webcomponents-tools
137
+
138
+
139
+
140
+
141
+
142
+ # [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)
143
+
144
+ **Note:** Version bump only for package @ui5/webcomponents-tools
145
+
146
+
147
+
148
+
149
+
150
+ # [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)
151
+
152
+ **Note:** Version bump only for package @ui5/webcomponents-tools
153
+
154
+
155
+
156
+
157
+
158
+ # [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)
159
+
160
+ **Note:** Version bump only for package @ui5/webcomponents-tools
161
+
162
+
163
+
164
+
165
+
166
+ # [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)
167
+
168
+ **Note:** Version bump only for package @ui5/webcomponents-tools
169
+
170
+
171
+
172
+
173
+
174
+ # [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)
175
+
176
+
177
+ ### Bug Fixes
178
+
179
+ * **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))
180
+
181
+
182
+
183
+
184
+
185
+ # [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)
186
+
187
+
188
+ ### Bug Fixes
189
+
190
+ * **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))
191
+
192
+
193
+
194
+
195
+
196
+ # [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)
197
+
198
+ **Note:** Version bump only for package @ui5/webcomponents-tools
199
+
200
+
201
+
202
+
203
+
204
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
205
+
206
+ **Note:** Version bump only for package @ui5/webcomponents-tools
207
+
208
+
209
+
210
+
211
+
212
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
213
+
214
+ **Note:** Version bump only for package @ui5/webcomponents-tools
215
+
216
+
217
+
218
+
219
+
220
+ # [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)
221
+
222
+ **Note:** Version bump only for package @ui5/webcomponents-tools
223
+
224
+
225
+
226
+
227
+
228
+ # [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)
229
+
230
+ **Note:** Version bump only for package @ui5/webcomponents-tools
231
+
232
+
233
+
234
+
235
+
236
+ # [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)
237
+
238
+ **Note:** Version bump only for package @ui5/webcomponents-tools
239
+
240
+
241
+
242
+
243
+
244
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
245
+
246
+ **Note:** Version bump only for package @ui5/webcomponents-tools
247
+
248
+
249
+
250
+
251
+
252
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
253
+
254
+ **Note:** Version bump only for package @ui5/webcomponents-tools
255
+
256
+
257
+
258
+
259
+
260
+ # [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)
261
+
262
+ **Note:** Version bump only for package @ui5/webcomponents-tools
263
+
264
+
265
+
266
+
267
+
268
+ # [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)
269
+
270
+ **Note:** Version bump only for package @ui5/webcomponents-tools
271
+
272
+
273
+
274
+
275
+
276
+ # [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)
277
+
278
+ **Note:** Version bump only for package @ui5/webcomponents-tools
279
+
280
+
281
+
282
+
283
+
284
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
285
+
286
+ **Note:** Version bump only for package @ui5/webcomponents-tools
287
+
288
+
289
+
290
+
291
+
292
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
293
+
294
+ **Note:** Version bump only for package @ui5/webcomponents-tools
295
+
296
+
297
+
298
+
299
+
300
+ # [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)
301
+
302
+
303
+ ### Features
304
+
305
+ * **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))
306
+
307
+
308
+
309
+
310
+
311
+ # [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)
312
+
313
+
314
+ ### Features
315
+
316
+ * 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))
317
+
318
+
319
+
320
+
321
+
322
+ # [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)
323
+
324
+ **Note:** Version bump only for package @ui5/webcomponents-tools
325
+
326
+
327
+
328
+
329
+
330
+ # [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)
331
+
332
+ **Note:** Version bump only for package @ui5/webcomponents-tools
333
+
334
+
335
+
336
+
337
+
338
+ # [2.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0...v2.11.0-rc.0) (2025-05-08)
339
+
340
+ **Note:** Version bump only for package @ui5/webcomponents-tools
341
+
342
+
343
+
344
+
345
+
346
+ # [2.10.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.3...v2.10.0) (2025-05-07)
347
+
348
+ **Note:** Version bump only for package @ui5/webcomponents-tools
349
+
350
+
351
+
352
+
353
+
354
+ # [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)
355
+
356
+
357
+ ### Bug Fixes
358
+
359
+ * 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))
360
+
361
+
362
+ ### Features
363
+
364
+ * **ui5-button:** make click button preventable ([#11318](https://github.com/SAP/ui5-webcomponents/issues/11318)) ([1f4aa92](https://github.com/SAP/ui5-webcomponents/commit/1f4aa927d2841e0c51f665ab2bdb851b1d030c35))
365
+
366
+
367
+
368
+
369
+
370
+ # [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)
371
+
372
+ **Note:** Version bump only for package @ui5/webcomponents-tools
373
+
374
+
375
+
376
+
377
+
378
+ # [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)
379
+
380
+ **Note:** Version bump only for package @ui5/webcomponents-tools
381
+
382
+
383
+
384
+
385
+
386
+ # [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)
387
+
388
+ **Note:** Version bump only for package @ui5/webcomponents-tools
389
+
390
+
391
+
392
+
393
+
394
+ ## [2.9.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0...v2.9.1-rc.0) (2025-04-10)
395
+
396
+ **Note:** Version bump only for package @ui5/webcomponents-tools
397
+
398
+
399
+
400
+
401
+
402
+ # [2.9.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.3...v2.9.0) (2025-04-04)
403
+
404
+ **Note:** Version bump only for package @ui5/webcomponents-tools
405
+
406
+
407
+
408
+
409
+
410
+ # [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)
411
+
412
+
413
+ ### Bug Fixes
414
+
415
+ * **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)
416
+
417
+
418
+
419
+
420
+
421
+ # [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)
422
+
423
+ **Note:** Version bump only for package @ui5/webcomponents-tools
424
+
425
+
426
+
427
+
428
+
429
+ # [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)
430
+
431
+
432
+ ### Bug Fixes
433
+
434
+ * **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))
435
+
436
+
437
+
438
+
439
+
440
+ # [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)
441
+
442
+ **Note:** Version bump only for package @ui5/webcomponents-tools
443
+
444
+
445
+
446
+
447
+
448
+ ## [2.8.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0...v2.8.1-rc.0) (2025-03-06)
449
+
450
+ **Note:** Version bump only for package @ui5/webcomponents-tools
451
+
452
+
453
+
454
+
455
+
456
+ # [2.8.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.3...v2.8.0) (2025-03-04)
457
+
458
+ **Note:** Version bump only for package @ui5/webcomponents-tools
459
+
460
+
461
+
462
+
463
+
464
+ # [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)
465
+
466
+ **Note:** Version bump only for package @ui5/webcomponents-tools
467
+
468
+
469
+
470
+
471
+
472
+ # [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)
473
+
474
+ **Note:** Version bump only for package @ui5/webcomponents-tools
475
+
476
+
477
+
478
+
479
+
480
+ # [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)
481
+
482
+ **Note:** Version bump only for package @ui5/webcomponents-tools
483
+
484
+
485
+
486
+
487
+
488
+ # [2.8.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.8.0-rc.0) (2025-02-06)
489
+
490
+ **Note:** Version bump only for package @ui5/webcomponents-tools
491
+
492
+
493
+
494
+
495
+
496
+ # [2.7.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.2...v2.7.0) (2025-02-03)
497
+
498
+ **Note:** Version bump only for package @ui5/webcomponents-tools
499
+
500
+
501
+
502
+
503
+
504
+ # [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)
505
+
506
+ **Note:** Version bump only for package @ui5/webcomponents-tools
507
+
508
+
509
+
510
+
511
+
512
+ # [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)
513
+
514
+ **Note:** Version bump only for package @ui5/webcomponents-tools
515
+
516
+
517
+
518
+
519
+
520
+ # [2.7.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.7.0-rc.0) (2025-01-16)
521
+
522
+ **Note:** Version bump only for package @ui5/webcomponents-tools
523
+
524
+
525
+
526
+
527
+
528
+ ## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
529
+
530
+ **Note:** Version bump only for package @ui5/webcomponents-tools
531
+
532
+
533
+
534
+
535
+
536
+ ## [2.6.2-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.1...v2.6.2-rc.0) (2025-01-09)
537
+
538
+ **Note:** Version bump only for package @ui5/webcomponents-tools
539
+
540
+
541
+
542
+
543
+
544
+ ## [2.6.1](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0...v2.6.1) (2025-01-08)
545
+
546
+ **Note:** Version bump only for package @ui5/webcomponents-tools
547
+
548
+
549
+
550
+
551
+
552
+ # [2.6.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.5...v2.6.0) (2025-01-07)
553
+
554
+ **Note:** Version bump only for package @ui5/webcomponents-tools
555
+
556
+
557
+
558
+
559
+
560
+ # [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)
561
+
562
+ **Note:** Version bump only for package @ui5/webcomponents-tools
563
+
564
+
565
+
566
+
567
+
568
+ # [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)
569
+
570
+ **Note:** Version bump only for package @ui5/webcomponents-tools
571
+
572
+
573
+
574
+
575
+
576
+ # [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)
577
+
578
+ **Note:** Version bump only for package @ui5/webcomponents-tools
579
+
580
+
581
+
582
+
583
+
584
+ # [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)
585
+
586
+
587
+ ### Bug Fixes
588
+
589
+ * **build:** generation of custom-elements.json ([#10403](https://github.com/SAP/ui5-webcomponents/issues/10403)) ([c4eb55c](https://github.com/SAP/ui5-webcomponents/commit/c4eb55cba3e45677c464df1f8cf2a17e6855f2a0))
590
+
591
+
592
+
593
+
594
+
595
+ # [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)
596
+
597
+ **Note:** Version bump only for package @ui5/webcomponents-tools
598
+
599
+
600
+
601
+
602
+
603
+ # [2.6.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0...v2.6.0-rc.0) (2024-12-12)
604
+
605
+
606
+ ### Features
607
+
608
+ * **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))
609
+
610
+
611
+
612
+
613
+
614
+ # [2.5.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.3...v2.5.0) (2024-12-05)
615
+
616
+ **Note:** Version bump only for package @ui5/webcomponents-tools
617
+
618
+
619
+
620
+
621
+
622
+ # [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)
623
+
624
+
625
+ ### Features
626
+
627
+ * **framework:** add strict event type checking ([#10235](https://github.com/SAP/ui5-webcomponents/issues/10235)) ([4ff8ab7](https://github.com/SAP/ui5-webcomponents/commit/4ff8ab7c34db5058b92511767be1b96c69a91cb5))
628
+
629
+
630
+
631
+
632
+
633
+ # [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)
634
+
635
+ **Note:** Version bump only for package @ui5/webcomponents-tools
636
+
637
+
638
+
639
+
640
+
641
+ # [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)
642
+
643
+ **Note:** Version bump only for package @ui5/webcomponents-tools
644
+
645
+
646
+
647
+
648
+
649
+ # [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)
650
+
651
+ **Note:** Version bump only for package @ui5/webcomponents-tools
652
+
653
+
654
+
655
+
656
+
657
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
658
+
659
+ **Note:** Version bump only for package @ui5/webcomponents-tools
660
+
661
+
662
+
663
+
664
+
665
+ # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
666
+
667
+ **Note:** Version bump only for package @ui5/webcomponents-tools
668
+
669
+
670
+
671
+
672
+
673
+ # [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)
674
+
675
+ **Note:** Version bump only for package @ui5/webcomponents-tools
676
+
677
+
678
+
679
+
680
+
681
+ # [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)
682
+
683
+
684
+ ### Bug Fixes
685
+
686
+ * dev-server correctly imports yargs ([#10048](https://github.com/SAP/ui5-webcomponents/issues/10048)) ([7b5aa5e](https://github.com/SAP/ui5-webcomponents/commit/7b5aa5ebdddbbc0493f4699c1a74db497e22368b))
687
+
688
+
689
+
690
+
691
+
692
+ # [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)
693
+
694
+ **Note:** Version bump only for package @ui5/webcomponents-tools
695
+
696
+
697
+
698
+
699
+
700
+ # [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)
701
+
702
+
703
+ ### Bug Fixes
704
+
705
+ * 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))
706
+ * **tools:** revert tsconfig moduleResolution to node ([#10014](https://github.com/SAP/ui5-webcomponents/issues/10014)) ([0724b92](https://github.com/SAP/ui5-webcomponents/commit/0724b9289ad04f88972d4978ed37e76f13abca13))
707
+
708
+
709
+
710
+
711
+
712
+ # [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)
713
+
714
+
715
+ ### Bug Fixes
716
+
717
+ * require handlebar file names processed by hbs2ui5 tool to end with the '.hbs' extension ([#9992](https://github.com/SAP/ui5-webcomponents/issues/9992)) ([1b23f3d](https://github.com/SAP/ui5-webcomponents/commit/1b23f3d2b02829844cb8c0cd4a4adefd628b7f4f))
718
+
719
+
720
+ ### Features
721
+
722
+ * enhance `[@event](https://github.com/event)` decorator ([#9944](https://github.com/SAP/ui5-webcomponents/issues/9944)) ([fe1d816](https://github.com/SAP/ui5-webcomponents/commit/fe1d816f512400b839fd4ce1b9af1506d0cb4c9a))
723
+
724
+
725
+
726
+
727
+
728
+ ## [2.3.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0...v2.3.1-rc.0) (2024-10-03)
729
+
730
+ **Note:** Version bump only for package @ui5/webcomponents-tools
731
+
732
+
733
+
734
+
735
+
736
+ # [2.3.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.3...v2.3.0) (2024-10-02)
737
+
738
+ **Note:** Version bump only for package @ui5/webcomponents-tools
739
+
740
+
741
+
742
+
743
+
744
+ # [2.3.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.2...v2.3.0-rc.3) (2024-09-26)
745
+
746
+
747
+ ### Bug Fixes
748
+
749
+ * nps.js works with the JS flow ([#9942](https://github.com/SAP/ui5-webcomponents/issues/9942)) ([b42ef95](https://github.com/SAP/ui5-webcomponents/commit/b42ef9567bcbd187a5f8d183e7d5014492ee845a))
750
+
751
+
752
+
753
+
754
+
755
+ # [2.3.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.1...v2.3.0-rc.2) (2024-09-19)
756
+
757
+ **Note:** Version bump only for package @ui5/webcomponents-tools
758
+
759
+
760
+
761
+
762
+
763
+ # [2.3.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.0...v2.3.0-rc.1) (2024-09-12)
764
+
765
+ **Note:** Version bump only for package @ui5/webcomponents-tools
766
+
767
+
768
+
769
+
770
+
771
+ # [2.3.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0...v2.3.0-rc.0) (2024-09-05)
772
+
773
+ **Note:** Version bump only for package @ui5/webcomponents-tools
774
+
775
+
776
+
777
+
778
+
779
+ # [2.2.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.3...v2.2.0) (2024-09-03)
780
+
781
+ **Note:** Version bump only for package @ui5/webcomponents-tools
782
+
783
+
784
+
785
+
786
+
787
+ # [2.2.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.2...v2.2.0-rc.3) (2024-08-29)
788
+
789
+ **Note:** Version bump only for package @ui5/webcomponents-tools
790
+
791
+
792
+
793
+
794
+
795
+ # [2.2.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.1...v2.2.0-rc.2) (2024-08-22)
796
+
797
+ **Note:** Version bump only for package @ui5/webcomponents-tools
798
+
799
+
800
+
801
+
802
+
803
+ # [2.2.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.0...v2.2.0-rc.1) (2024-08-15)
804
+
805
+ **Note:** Version bump only for package @ui5/webcomponents-tools
806
+
807
+
808
+
809
+
810
+
811
+ # [2.2.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.1...v2.2.0-rc.0) (2024-08-08)
812
+
813
+
814
+ ### Features
815
+
816
+ * **core:** add asset files with fetch URLs ([#9591](https://github.com/SAP/ui5-webcomponents/issues/9591)) ([f039cf6](https://github.com/SAP/ui5-webcomponents/commit/f039cf6e96e43fbc45e55e53871c91c9ee8e4179))
817
+
818
+
819
+
820
+
821
+
822
+ ## [2.1.1](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0...v2.1.1) (2024-08-02)
823
+
824
+ **Note:** Version bump only for package @ui5/webcomponents-tools
825
+
826
+
827
+
828
+
829
+
830
+ # [2.1.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.3...v2.1.0) (2024-08-02)
831
+
832
+ **Note:** Version bump only for package @ui5/webcomponents-tools
833
+
834
+
835
+
836
+
837
+
838
+ # [2.1.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.2...v2.1.0-rc.3) (2024-08-01)
839
+
840
+ **Note:** Version bump only for package @ui5/webcomponents-tools
841
+
842
+
843
+
844
+
845
+
846
+ # [2.1.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.1...v2.1.0-rc.2) (2024-07-25)
847
+
848
+ **Note:** Version bump only for package @ui5/webcomponents-tools
849
+
850
+
851
+
852
+
853
+
854
+ # [2.1.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.0...v2.1.0-rc.1) (2024-07-18)
855
+
856
+ **Note:** Version bump only for package @ui5/webcomponents-tools
857
+
858
+
859
+
860
+
861
+
862
+ # [2.1.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.1...v2.1.0-rc.0) (2024-07-11)
863
+
864
+ **Note:** Version bump only for package @ui5/webcomponents-tools
865
+
866
+
867
+
868
+
869
+
870
+ ## [2.0.1](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0...v2.0.1) (2024-07-05)
871
+
872
+ **Note:** Version bump only for package @ui5/webcomponents-tools
873
+
874
+
875
+
876
+
877
+
878
+ # [2.0.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.6...v2.0.0) (2024-07-03)
879
+
880
+
881
+ ### Bug Fixes
882
+
883
+ * template result comparison ([#9279](https://github.com/SAP/ui5-webcomponents/issues/9279)) ([3a02e3e](https://github.com/SAP/ui5-webcomponents/commit/3a02e3ec51ade59a9bdd27784a7be5a1229ef24f))
884
+
885
+
886
+ ### Features
887
+
888
+ * add property initializers ([#8846](https://github.com/SAP/ui5-webcomponents/issues/8846)) ([eef0cc9](https://github.com/SAP/ui5-webcomponents/commit/eef0cc9b663fda6268b98e516ed46439435fa2b0))
889
+
890
+
891
+ ### BREAKING CHANGES
892
+
893
+ * @property decorator must be adapted according to new type parameter
894
+
895
+
896
+
897
+
898
+
899
+ # [2.0.0-rc.6](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.5...v2.0.0-rc.6) (2024-06-17)
900
+
901
+ **Note:** Version bump only for package @ui5/webcomponents-tools
902
+
903
+
904
+
905
+
906
+
907
+ # [2.0.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.4...v2.0.0-rc.5) (2024-06-06)
908
+
909
+ **Note:** Version bump only for package @ui5/webcomponents-tools
910
+
911
+
912
+
913
+
914
+
6
915
  # [2.0.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.3...v2.0.0-rc.4) (2024-05-29)
7
916
 
8
917