@ui5/webcomponents-tools 0.0.0-a7032d86e → 0.0.0-a8a75c830

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 (129) hide show
  1. package/CHANGELOG.md +2188 -0
  2. package/LICENSE.txt +201 -0
  3. package/README.md +7 -9
  4. package/assets-meta.js +12 -11
  5. package/bin/dev.js +10 -4
  6. package/bin/ui5nps.js +301 -0
  7. package/components-package/eslint.js +51 -15
  8. package/components-package/nps.js +123 -80
  9. package/components-package/postcss.components.js +1 -21
  10. package/components-package/postcss.themes.js +1 -26
  11. package/components-package/vite.config.js +7 -10
  12. package/components-package/wdio.js +43 -15
  13. package/icons-collection/nps.js +32 -19
  14. package/lib/amd-to-es6/index.js +109 -0
  15. package/lib/amd-to-es6/no-remaining-require.js +33 -0
  16. package/lib/cem/cem.js +16 -0
  17. package/lib/cem/custom-elements-manifest.config.mjs +575 -0
  18. package/lib/cem/event.mjs +168 -0
  19. package/lib/cem/patch/@custom-elements-manifest/analyzer/cli.js +128 -0
  20. package/lib/cem/patch/@custom-elements-manifest/analyzer/package.json +59 -0
  21. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/browser-entrypoint.js +23 -0
  22. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/create.js +117 -0
  23. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/arrow-function.js +26 -0
  24. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/class-jsdoc.js +157 -0
  25. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/classes.js +20 -0
  26. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createArrowFunction.js +17 -0
  27. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createAttribute.js +24 -0
  28. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClass.js +301 -0
  29. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createClassField.js +26 -0
  30. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createFunctionLike.js +73 -0
  31. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createMixin.js +33 -0
  32. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/createVariable.js +22 -0
  33. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/creators/handlers.js +338 -0
  34. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/custom-elements-define-calls.js +90 -0
  35. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/exports.js +156 -0
  36. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/function-like.js +24 -0
  37. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/mixins.js +29 -0
  38. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/reexported-wrapped-mixin-exports.js +84 -0
  39. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/analyse-phase/variables.js +34 -0
  40. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/collect-phase/collect-imports.js +101 -0
  41. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/catalyst.js +11 -0
  42. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst/controller.js +34 -0
  43. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/catalyst.js +11 -0
  44. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/catalyst-major-2/controller.js +34 -0
  45. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/attr.js +53 -0
  46. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/decorators/custom-element-decorator.js +36 -0
  47. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/fast/fast.js +7 -0
  48. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/lit.js +13 -0
  49. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/member-denylist.js +21 -0
  50. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/method-denylist.js +20 -0
  51. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/property-decorator.js +94 -0
  52. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/static-properties.js +121 -0
  53. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/lit/utils.js +66 -0
  54. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/framework-plugins/stencil/stencil.js +129 -0
  55. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/index.js +80 -0
  56. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/cleanup-classes.js +25 -0
  57. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/field-denylist.js +22 -0
  58. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/link-phase/method-denylist.js +25 -0
  59. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/apply-inheritance.js +78 -0
  60. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/is-custom-element.js +34 -0
  61. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/link-class-to-tagname.js +27 -0
  62. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/remove-unexported-declarations.js +23 -0
  63. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/features/post-processing/resolve-initializers.js +52 -0
  64. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/ast-helpers.js +186 -0
  65. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/cli-helpers.js +164 -0
  66. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/exports.js +44 -0
  67. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/find-external-manifests.js +67 -0
  68. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/imports.js +25 -0
  69. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/index.js +71 -0
  70. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/jsdoc.js +19 -0
  71. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/manifest-helpers.js +194 -0
  72. package/lib/cem/patch/@custom-elements-manifest/analyzer/src/utils/mixins.js +112 -0
  73. package/lib/cem/schema-internal.json +1422 -0
  74. package/lib/cem/schema.json +1098 -0
  75. package/lib/cem/types-internal.d.ts +808 -0
  76. package/lib/cem/types.d.ts +736 -0
  77. package/lib/cem/utils.mjs +429 -0
  78. package/lib/cem/validate.js +81 -0
  79. package/lib/chokidar/chokidar.js +28 -0
  80. package/lib/copy-and-watch/index.js +110 -97
  81. package/lib/copy-list/index.js +18 -10
  82. package/lib/create-icons/index.js +57 -27
  83. package/lib/create-illustrations/index.js +94 -45
  84. package/lib/create-new-component/Component.js +74 -0
  85. package/lib/create-new-component/ComponentTemplate.js +12 -0
  86. package/lib/create-new-component/index.js +62 -101
  87. package/lib/css-processors/css-processor-components.mjs +103 -0
  88. package/lib/css-processors/css-processor-themes.mjs +122 -0
  89. package/lib/css-processors/postcss-plugin.mjs +153 -0
  90. package/lib/css-processors/scope-variables.mjs +74 -0
  91. package/lib/css-processors/shared.mjs +47 -0
  92. package/lib/dev-server/custom-hot-update-plugin.js +39 -0
  93. package/lib/dev-server/{dev-server.js → dev-server.mjs} +26 -14
  94. package/lib/dev-server/virtual-index-html-plugin.js +24 -21
  95. package/lib/eslint/eslint.js +44 -0
  96. package/lib/generate-js-imports/illustrations.js +79 -64
  97. package/lib/generate-json-imports/i18n.js +63 -68
  98. package/lib/generate-json-imports/themes.js +38 -43
  99. package/lib/hbs2lit/src/compiler.js +9 -6
  100. package/lib/hbs2lit/src/litVisitor2.js +42 -17
  101. package/lib/hbs2lit/src/svgProcessor.js +12 -5
  102. package/lib/hbs2ui5/RenderTemplates/LitRenderer.js +39 -6
  103. package/lib/hbs2ui5/index.js +23 -6
  104. package/lib/i18n/defaults.js +24 -9
  105. package/lib/i18n/toJSON.js +41 -13
  106. package/lib/icons-hash/icons-hash.mjs +149 -0
  107. package/lib/postcss-combine-duplicated-selectors/index.js +12 -5
  108. package/lib/remove-dev-mode/remove-dev-mode.mjs +51 -0
  109. package/lib/rimraf/rimraf.js +31 -0
  110. package/lib/scoping/get-all-tags.js +10 -3
  111. package/lib/scoping/lint-src.js +8 -7
  112. package/lib/scoping/scope-test-pages.js +2 -1
  113. package/lib/test-runner/test-runner.js +59 -43
  114. package/lib/vite-bundler/vite-bundler.mjs +35 -0
  115. package/package.json +36 -25
  116. package/tsconfig.json +18 -0
  117. package/components-package/wdio.sync.js +0 -360
  118. package/lib/esm-abs-to-rel/index.js +0 -58
  119. package/lib/generate-custom-elements-manifest/index.js +0 -373
  120. package/lib/jsdoc/config.json +0 -29
  121. package/lib/jsdoc/configTypescript.json +0 -29
  122. package/lib/jsdoc/plugin.js +0 -2468
  123. package/lib/jsdoc/preprocess.js +0 -146
  124. package/lib/jsdoc/template/publish.js +0 -4120
  125. package/lib/postcss-css-to-esm/index.js +0 -57
  126. package/lib/postcss-css-to-json/index.js +0 -47
  127. package/lib/postcss-new-files/index.js +0 -36
  128. package/lib/postcss-p/postcss-p.mjs +0 -14
  129. package/lib/replace-global-core/index.js +0 -25
package/CHANGELOG.md CHANGED
@@ -3,6 +3,2194 @@
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-a8a75c830](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.2...v0.0.0-a8a75c830) (2026-02-26)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-tools
9
+
10
+
11
+
12
+
13
+
14
+ # [2.20.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.1...v2.20.0-rc.2) (2026-02-26)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * CSS variables scoping to depend VersionInfo ([#13091](https://github.com/UI5/webcomponents/issues/13091)) ([d2e43ed](https://github.com/UI5/webcomponents/commit/d2e43ed692c63a0a36a9b14da59de354e2e7d0b0))
20
+
21
+
22
+
23
+
24
+
25
+ # [2.20.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.20.0-rc.0...v2.20.0-rc.1) (2026-02-19)
26
+
27
+ **Note:** Version bump only for package @ui5/webcomponents-tools
28
+
29
+
30
+
31
+
32
+
33
+ # [2.20.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.19.0...v2.20.0-rc.0) (2026-02-12)
34
+
35
+ **Note:** Version bump only for package @ui5/webcomponents-tools
36
+
37
+
38
+
39
+
40
+
41
+ # [2.19.0](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.3...v2.19.0) (2026-02-05)
42
+
43
+ **Note:** Version bump only for package @ui5/webcomponents-tools
44
+
45
+
46
+
47
+
48
+
49
+ # [2.19.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.2...v2.19.0-rc.3) (2026-02-05)
50
+
51
+ **Note:** Version bump only for package @ui5/webcomponents-tools
52
+
53
+
54
+
55
+
56
+
57
+ # [2.19.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.1...v2.19.0-rc.2) (2026-01-22)
58
+
59
+ **Note:** Version bump only for package @ui5/webcomponents-tools
60
+
61
+
62
+
63
+
64
+
65
+ # [2.19.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.19.0-rc.0...v2.19.0-rc.1) (2026-01-15)
66
+
67
+ **Note:** Version bump only for package @ui5/webcomponents-tools
68
+
69
+
70
+
71
+
72
+
73
+ # [2.19.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.18.0...v2.19.0-rc.0) (2026-01-08)
74
+
75
+
76
+ ### Bug Fixes
77
+
78
+ * **i18n:** handle utf-8 escape sequences in message bundle properties files ([#12784](https://github.com/UI5/webcomponents/issues/12784)) ([54a3f15](https://github.com/UI5/webcomponents/commit/54a3f15a8d23de8683db5829c78255307ef3f8b5))
79
+
80
+
81
+
82
+
83
+
84
+ # [2.18.0](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.3...v2.18.0) (2026-01-05)
85
+
86
+ **Note:** Version bump only for package @ui5/webcomponents-tools
87
+
88
+
89
+
90
+
91
+
92
+ # [2.18.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.2...v2.18.0-rc.3) (2026-01-01)
93
+
94
+ **Note:** Version bump only for package @ui5/webcomponents-tools
95
+
96
+
97
+
98
+
99
+
100
+ # [2.18.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.1...v2.18.0-rc.2) (2025-12-25)
101
+
102
+ **Note:** Version bump only for package @ui5/webcomponents-tools
103
+
104
+
105
+
106
+
107
+
108
+ # [2.18.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.0...v2.18.0-rc.1) (2025-12-18)
109
+
110
+ **Note:** Version bump only for package @ui5/webcomponents-tools
111
+
112
+
113
+
114
+
115
+
116
+ # [2.18.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.17.0...v2.18.0-rc.0) (2025-12-11)
117
+
118
+ **Note:** Version bump only for package @ui5/webcomponents-tools
119
+
120
+
121
+
122
+
123
+
124
+ # [2.17.0](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.5...v2.17.0) (2025-12-05)
125
+
126
+
127
+ ### Reverts
128
+
129
+ * Revert "feat(framework): scope theming css variables with component packages (#12491)" (#12775) ([3385623](https://github.com/UI5/webcomponents/commit/33856235e357a3d4d0b9391eab2a83a5b3010556)), closes [#12491](https://github.com/UI5/webcomponents/issues/12491) [#12775](https://github.com/UI5/webcomponents/issues/12775)
130
+ * Revert "chore: scope theming variables used in illustrations (#12687)" (#12770) ([c9288ff](https://github.com/UI5/webcomponents/commit/c9288ff0f655fdd03262b71ac788e5688c904add)), closes [#12687](https://github.com/UI5/webcomponents/issues/12687) [#12770](https://github.com/UI5/webcomponents/issues/12770)
131
+ * Revert "feat(framework): introduce loadBaseThemingCSSVariables configuration (#12699)" (#12767) ([db375d3](https://github.com/UI5/webcomponents/commit/db375d30b9f4a7e07961fabbdcefdcdc78a93f46)), closes [#12699](https://github.com/UI5/webcomponents/issues/12699) [#12767](https://github.com/UI5/webcomponents/issues/12767)
132
+
133
+
134
+
135
+
136
+
137
+ # [2.17.0-rc.5](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.4...v2.17.0-rc.5) (2025-12-04)
138
+
139
+
140
+ ### Bug Fixes
141
+
142
+ * **tools:** dependencies usage ([#12716](https://github.com/UI5/webcomponents/issues/12716)) ([89bb0dd](https://github.com/UI5/webcomponents/commit/89bb0dd62322598bd1ea7ce984eaf0618546a6f2))
143
+
144
+
145
+ ### Features
146
+
147
+ * **framework:** introduce loadBaseThemingCSSVariables configuration ([#12699](https://github.com/UI5/webcomponents/issues/12699)) ([f01b2eb](https://github.com/UI5/webcomponents/commit/f01b2eb6256f2032bd802d0a60c4625b0d1af5fe))
148
+
149
+
150
+
151
+
152
+
153
+ # [2.17.0-rc.4](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v2.17.0-rc.4) (2025-11-27)
154
+
155
+
156
+ ### Bug Fixes
157
+
158
+ * **build:** fix issue with legacy dev setup ([#12706](https://github.com/UI5/webcomponents/issues/12706)) ([89fa5ca](https://github.com/UI5/webcomponents/commit/89fa5ca9f83551363e8c1d9980269cd58fa09d85))
159
+
160
+
161
+
162
+
163
+
164
+ # [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
165
+
166
+
167
+ ### Bug Fixes
168
+
169
+ * **cem:** alias references ([#12682](https://github.com/UI5/webcomponents/issues/12682)) ([4ce5617](https://github.com/UI5/webcomponents/commit/4ce5617ff580c869640996545fa618ff90447ba4))
170
+
171
+
172
+ ### Features
173
+
174
+ * **framework:** scope theming css variables with component packages ([#12491](https://github.com/UI5/webcomponents/issues/12491)) ([43ff5de](https://github.com/UI5/webcomponents/commit/43ff5defaf6e08bac848df3d2d34943de15bee83))
175
+
176
+
177
+
178
+
179
+
180
+ # [2.17.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v2.17.0-rc.2) (2025-11-13)
181
+
182
+
183
+ ### Bug Fixes
184
+
185
+ * **tools:** fix wc-dev test command ([#12662](https://github.com/UI5/webcomponents/issues/12662)) ([7dd11fb](https://github.com/UI5/webcomponents/commit/7dd11fbb88711a74d3602328a492a923552fd4ef))
186
+
187
+
188
+
189
+
190
+
191
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
192
+
193
+
194
+ ### Bug Fixes
195
+
196
+ * **tools:** dev-server for 3rd party packages ([#12631](https://github.com/UI5/webcomponents/issues/12631)) ([a4f4dd5](https://github.com/UI5/webcomponents/commit/a4f4dd5b0a68620ec063de32e724c064bd73af87))
197
+
198
+
199
+
200
+
201
+
202
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
203
+
204
+
205
+ ### Features
206
+
207
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
208
+
209
+
210
+
211
+
212
+
213
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
214
+
215
+ **Note:** Version bump only for package @ui5/webcomponents-tools
216
+
217
+
218
+
219
+
220
+
221
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
222
+
223
+ **Note:** Version bump only for package @ui5/webcomponents-tools
224
+
225
+
226
+
227
+
228
+
229
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
230
+
231
+
232
+ ### Bug Fixes
233
+
234
+ * dev server on windows ([#12565](https://github.com/UI5/webcomponents/issues/12565)) ([af96b2c](https://github.com/UI5/webcomponents/commit/af96b2ce2292e7624c6186c58e002c6337e13847))
235
+ * devServer exception ([#12547](https://github.com/UI5/webcomponents/issues/12547)) ([6b3e28e](https://github.com/UI5/webcomponents/commit/6b3e28ea2790868755d5679cabb8a5f5a22f93c5))
236
+
237
+
238
+
239
+
240
+
241
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
242
+
243
+ **Note:** Version bump only for package @ui5/webcomponents-tools
244
+
245
+
246
+
247
+
248
+
249
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
250
+
251
+
252
+ ### Bug Fixes
253
+
254
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
255
+
256
+
257
+
258
+
259
+
260
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
261
+
262
+ **Note:** Version bump only for package @ui5/webcomponents-tools
263
+
264
+
265
+
266
+
267
+
268
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
269
+
270
+ **Note:** Version bump only for package @ui5/webcomponents-tools
271
+
272
+
273
+
274
+
275
+
276
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
277
+
278
+ **Note:** Version bump only for package @ui5/webcomponents-tools
279
+
280
+
281
+
282
+
283
+
284
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
285
+
286
+ **Note:** Version bump only for package @ui5/webcomponents-tools
287
+
288
+
289
+
290
+
291
+
292
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
293
+
294
+
295
+ ### Bug Fixes
296
+
297
+ * **ui5-illustrated-message:** fix imports filter ([#12271](https://github.com/UI5/webcomponents/issues/12271)) ([f62d703](https://github.com/UI5/webcomponents/commit/f62d703b58aa4460dbc5a293c277290b48ca851f))
298
+
299
+
300
+
301
+
302
+
303
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
304
+
305
+ **Note:** Version bump only for package @ui5/webcomponents-tools
306
+
307
+
308
+
309
+
310
+
311
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
312
+
313
+ **Note:** Version bump only for package @ui5/webcomponents-tools
314
+
315
+
316
+
317
+
318
+
319
+ # [2.14.0-rc.7](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.6...v2.14.0-rc.7) (2025-09-04)
320
+
321
+ **Note:** Version bump only for package @ui5/webcomponents-tools
322
+
323
+
324
+
325
+
326
+
327
+ # [2.14.0-rc.6](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.5...v2.14.0-rc.6) (2025-08-29)
328
+
329
+ **Note:** Version bump only for package @ui5/webcomponents-tools
330
+
331
+
332
+
333
+
334
+
335
+ # [2.14.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.4...v2.14.0-rc.5) (2025-08-28)
336
+
337
+ **Note:** Version bump only for package @ui5/webcomponents-tools
338
+
339
+
340
+
341
+
342
+
343
+ # [2.14.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.3...v2.14.0-rc.4) (2025-08-25)
344
+
345
+ **Note:** Version bump only for package @ui5/webcomponents-tools
346
+
347
+
348
+
349
+
350
+
351
+ # [2.14.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.2...v2.14.0-rc.3) (2025-08-22)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * **tools:** correct strip unused theming base content ([#12133](https://github.com/SAP/ui5-webcomponents/issues/12133)) ([a97901d](https://github.com/SAP/ui5-webcomponents/commit/a97901da861836a5567cd4076a34bb07522ef7ba))
357
+
358
+
359
+
360
+
361
+
362
+ # [2.14.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.1...v2.14.0-rc.2) (2025-08-21)
363
+
364
+
365
+ ### Bug Fixes
366
+
367
+ * **framework:** use font-face declarations from theming-base-content ([#12144](https://github.com/SAP/ui5-webcomponents/issues/12144)) ([50deee9](https://github.com/SAP/ui5-webcomponents/commit/50deee9b9f512d3bd506de1648d3dc8f145a7d88))
368
+
369
+
370
+
371
+
372
+
373
+ # [2.14.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.0...v2.14.0-rc.1) (2025-08-14)
374
+
375
+ **Note:** Version bump only for package @ui5/webcomponents-tools
376
+
377
+
378
+
379
+
380
+
381
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
382
+
383
+ **Note:** Version bump only for package @ui5/webcomponents-tools
384
+
385
+
386
+
387
+
388
+
389
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
390
+
391
+ **Note:** Version bump only for package @ui5/webcomponents-tools
392
+
393
+
394
+
395
+
396
+
397
+ # [2.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.2...v2.13.0-rc.3) (2025-07-31)
398
+
399
+ **Note:** Version bump only for package @ui5/webcomponents-tools
400
+
401
+
402
+
403
+
404
+
405
+ # [2.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.1...v2.13.0-rc.2) (2025-07-24)
406
+
407
+ **Note:** Version bump only for package @ui5/webcomponents-tools
408
+
409
+
410
+
411
+
412
+
413
+ # [2.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.0...v2.13.0-rc.1) (2025-07-17)
414
+
415
+ **Note:** Version bump only for package @ui5/webcomponents-tools
416
+
417
+
418
+
419
+
420
+
421
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
422
+
423
+ **Note:** Version bump only for package @ui5/webcomponents-tools
424
+
425
+
426
+
427
+
428
+
429
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
430
+
431
+ **Note:** Version bump only for package @ui5/webcomponents-tools
432
+
433
+
434
+
435
+
436
+
437
+ # [2.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.2...v2.12.0-rc.3) (2025-07-03)
438
+
439
+ **Note:** Version bump only for package @ui5/webcomponents-tools
440
+
441
+
442
+
443
+
444
+
445
+ # [2.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.1...v2.12.0-rc.2) (2025-06-26)
446
+
447
+ **Note:** Version bump only for package @ui5/webcomponents-tools
448
+
449
+
450
+
451
+
452
+
453
+ # [2.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.0...v2.12.0-rc.1) (2025-06-19)
454
+
455
+ **Note:** Version bump only for package @ui5/webcomponents-tools
456
+
457
+
458
+
459
+
460
+
461
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
462
+
463
+ **Note:** Version bump only for package @ui5/webcomponents-tools
464
+
465
+
466
+
467
+
468
+
469
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
470
+
471
+ **Note:** Version bump only for package @ui5/webcomponents-tools
472
+
473
+
474
+
475
+
476
+
477
+ # [2.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.3...v2.11.0-rc.4) (2025-06-05)
478
+
479
+
480
+ ### Features
481
+
482
+ * **ui5-illustrated-message:** added new illustration types ([#11560](https://github.com/SAP/ui5-webcomponents/issues/11560)) ([5517e2c](https://github.com/SAP/ui5-webcomponents/commit/5517e2c84add4d88077e8dda7c82641eb672d7ee))
483
+
484
+
485
+
486
+
487
+
488
+ # [2.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.2...v2.11.0-rc.3) (2025-05-29)
489
+
490
+
491
+ ### Features
492
+
493
+ * add `Assets-node` module for node/ssr env ([#11522](https://github.com/SAP/ui5-webcomponents/issues/11522)) ([4a874cc](https://github.com/SAP/ui5-webcomponents/commit/4a874cc1f88e440f8bce4f9f0757df1af2a04314))
494
+
495
+
496
+
497
+
498
+
499
+ # [2.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.1...v2.11.0-rc.2) (2025-05-22)
500
+
501
+ **Note:** Version bump only for package @ui5/webcomponents-tools
502
+
503
+
504
+
505
+
506
+
507
+ # [2.11.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.0...v2.11.0-rc.1) (2025-05-15)
508
+
509
+ **Note:** Version bump only for package @ui5/webcomponents-tools
510
+
511
+
512
+
513
+
514
+
515
+ # [2.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0...v2.11.0-rc.0) (2025-05-08)
516
+
517
+ **Note:** Version bump only for package @ui5/webcomponents-tools
518
+
519
+
520
+
521
+
522
+
523
+ # [2.10.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.3...v2.10.0) (2025-05-07)
524
+
525
+ **Note:** Version bump only for package @ui5/webcomponents-tools
526
+
527
+
528
+
529
+
530
+
531
+ # [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)
532
+
533
+
534
+ ### Bug Fixes
535
+
536
+ * 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))
537
+
538
+
539
+ ### Features
540
+
541
+ * **ui5-button:** make click button preventable ([#11318](https://github.com/SAP/ui5-webcomponents/issues/11318)) ([1f4aa92](https://github.com/SAP/ui5-webcomponents/commit/1f4aa927d2841e0c51f665ab2bdb851b1d030c35))
542
+
543
+
544
+
545
+
546
+
547
+ # [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)
548
+
549
+ **Note:** Version bump only for package @ui5/webcomponents-tools
550
+
551
+
552
+
553
+
554
+
555
+ # [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)
556
+
557
+ **Note:** Version bump only for package @ui5/webcomponents-tools
558
+
559
+
560
+
561
+
562
+
563
+ # [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)
564
+
565
+ **Note:** Version bump only for package @ui5/webcomponents-tools
566
+
567
+
568
+
569
+
570
+
571
+ ## [2.9.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0...v2.9.1-rc.0) (2025-04-10)
572
+
573
+ **Note:** Version bump only for package @ui5/webcomponents-tools
574
+
575
+
576
+
577
+
578
+
579
+ # [2.9.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.3...v2.9.0) (2025-04-04)
580
+
581
+ **Note:** Version bump only for package @ui5/webcomponents-tools
582
+
583
+
584
+
585
+
586
+
587
+ # [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)
588
+
589
+
590
+ ### Bug Fixes
591
+
592
+ * **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)
593
+
594
+
595
+
596
+
597
+
598
+ # [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)
599
+
600
+ **Note:** Version bump only for package @ui5/webcomponents-tools
601
+
602
+
603
+
604
+
605
+
606
+ # [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)
607
+
608
+
609
+ ### Bug Fixes
610
+
611
+ * **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))
612
+
613
+
614
+
615
+
616
+
617
+ # [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)
618
+
619
+ **Note:** Version bump only for package @ui5/webcomponents-tools
620
+
621
+
622
+
623
+
624
+
625
+ ## [2.8.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0...v2.8.1-rc.0) (2025-03-06)
626
+
627
+ **Note:** Version bump only for package @ui5/webcomponents-tools
628
+
629
+
630
+
631
+
632
+
633
+ # [2.8.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.3...v2.8.0) (2025-03-04)
634
+
635
+ **Note:** Version bump only for package @ui5/webcomponents-tools
636
+
637
+
638
+
639
+
640
+
641
+ # [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)
642
+
643
+ **Note:** Version bump only for package @ui5/webcomponents-tools
644
+
645
+
646
+
647
+
648
+
649
+ # [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)
650
+
651
+ **Note:** Version bump only for package @ui5/webcomponents-tools
652
+
653
+
654
+
655
+
656
+
657
+ # [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)
658
+
659
+ **Note:** Version bump only for package @ui5/webcomponents-tools
660
+
661
+
662
+
663
+
664
+
665
+ # [2.8.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.8.0-rc.0) (2025-02-06)
666
+
667
+ **Note:** Version bump only for package @ui5/webcomponents-tools
668
+
669
+
670
+
671
+
672
+
673
+ # [2.7.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.2...v2.7.0) (2025-02-03)
674
+
675
+ **Note:** Version bump only for package @ui5/webcomponents-tools
676
+
677
+
678
+
679
+
680
+
681
+ # [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)
682
+
683
+ **Note:** Version bump only for package @ui5/webcomponents-tools
684
+
685
+
686
+
687
+
688
+
689
+ # [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)
690
+
691
+ **Note:** Version bump only for package @ui5/webcomponents-tools
692
+
693
+
694
+
695
+
696
+
697
+ # [2.7.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.7.0-rc.0) (2025-01-16)
698
+
699
+ **Note:** Version bump only for package @ui5/webcomponents-tools
700
+
701
+
702
+
703
+
704
+
705
+ ## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
706
+
707
+ **Note:** Version bump only for package @ui5/webcomponents-tools
708
+
709
+
710
+
711
+
712
+
713
+ ## [2.6.2-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.1...v2.6.2-rc.0) (2025-01-09)
714
+
715
+ **Note:** Version bump only for package @ui5/webcomponents-tools
716
+
717
+
718
+
719
+
720
+
721
+ ## [2.6.1](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0...v2.6.1) (2025-01-08)
722
+
723
+ **Note:** Version bump only for package @ui5/webcomponents-tools
724
+
725
+
726
+
727
+
728
+
729
+ # [2.6.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.5...v2.6.0) (2025-01-07)
730
+
731
+ **Note:** Version bump only for package @ui5/webcomponents-tools
732
+
733
+
734
+
735
+
736
+
737
+ # [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)
738
+
739
+ **Note:** Version bump only for package @ui5/webcomponents-tools
740
+
741
+
742
+
743
+
744
+
745
+ # [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)
746
+
747
+ **Note:** Version bump only for package @ui5/webcomponents-tools
748
+
749
+
750
+
751
+
752
+
753
+ # [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)
754
+
755
+ **Note:** Version bump only for package @ui5/webcomponents-tools
756
+
757
+
758
+
759
+
760
+
761
+ # [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)
762
+
763
+
764
+ ### Bug Fixes
765
+
766
+ * **build:** generation of custom-elements.json ([#10403](https://github.com/SAP/ui5-webcomponents/issues/10403)) ([c4eb55c](https://github.com/SAP/ui5-webcomponents/commit/c4eb55cba3e45677c464df1f8cf2a17e6855f2a0))
767
+
768
+
769
+
770
+
771
+
772
+ # [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)
773
+
774
+ **Note:** Version bump only for package @ui5/webcomponents-tools
775
+
776
+
777
+
778
+
779
+
780
+ # [2.6.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0...v2.6.0-rc.0) (2024-12-12)
781
+
782
+
783
+ ### Features
784
+
785
+ * **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))
786
+
787
+
788
+
789
+
790
+
791
+ # [2.5.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.3...v2.5.0) (2024-12-05)
792
+
793
+ **Note:** Version bump only for package @ui5/webcomponents-tools
794
+
795
+
796
+
797
+
798
+
799
+ # [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)
800
+
801
+
802
+ ### Features
803
+
804
+ * **framework:** add strict event type checking ([#10235](https://github.com/SAP/ui5-webcomponents/issues/10235)) ([4ff8ab7](https://github.com/SAP/ui5-webcomponents/commit/4ff8ab7c34db5058b92511767be1b96c69a91cb5))
805
+
806
+
807
+
808
+
809
+
810
+ # [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)
811
+
812
+ **Note:** Version bump only for package @ui5/webcomponents-tools
813
+
814
+
815
+
816
+
817
+
818
+ # [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)
819
+
820
+ **Note:** Version bump only for package @ui5/webcomponents-tools
821
+
822
+
823
+
824
+
825
+
826
+ # [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)
827
+
828
+ **Note:** Version bump only for package @ui5/webcomponents-tools
829
+
830
+
831
+
832
+
833
+
834
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
835
+
836
+ **Note:** Version bump only for package @ui5/webcomponents-tools
837
+
838
+
839
+
840
+
841
+
842
+ # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
843
+
844
+ **Note:** Version bump only for package @ui5/webcomponents-tools
845
+
846
+
847
+
848
+
849
+
850
+ # [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)
851
+
852
+ **Note:** Version bump only for package @ui5/webcomponents-tools
853
+
854
+
855
+
856
+
857
+
858
+ # [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)
859
+
860
+
861
+ ### Bug Fixes
862
+
863
+ * dev-server correctly imports yargs ([#10048](https://github.com/SAP/ui5-webcomponents/issues/10048)) ([7b5aa5e](https://github.com/SAP/ui5-webcomponents/commit/7b5aa5ebdddbbc0493f4699c1a74db497e22368b))
864
+
865
+
866
+
867
+
868
+
869
+ # [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)
870
+
871
+ **Note:** Version bump only for package @ui5/webcomponents-tools
872
+
873
+
874
+
875
+
876
+
877
+ # [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)
878
+
879
+
880
+ ### Bug Fixes
881
+
882
+ * 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))
883
+ * **tools:** revert tsconfig moduleResolution to node ([#10014](https://github.com/SAP/ui5-webcomponents/issues/10014)) ([0724b92](https://github.com/SAP/ui5-webcomponents/commit/0724b9289ad04f88972d4978ed37e76f13abca13))
884
+
885
+
886
+
887
+
888
+
889
+ # [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)
890
+
891
+
892
+ ### Bug Fixes
893
+
894
+ * 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))
895
+
896
+
897
+ ### Features
898
+
899
+ * 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))
900
+
901
+
902
+
903
+
904
+
905
+ ## [2.3.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0...v2.3.1-rc.0) (2024-10-03)
906
+
907
+ **Note:** Version bump only for package @ui5/webcomponents-tools
908
+
909
+
910
+
911
+
912
+
913
+ # [2.3.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.3...v2.3.0) (2024-10-02)
914
+
915
+ **Note:** Version bump only for package @ui5/webcomponents-tools
916
+
917
+
918
+
919
+
920
+
921
+ # [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)
922
+
923
+
924
+ ### Bug Fixes
925
+
926
+ * 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))
927
+
928
+
929
+
930
+
931
+
932
+ # [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)
933
+
934
+ **Note:** Version bump only for package @ui5/webcomponents-tools
935
+
936
+
937
+
938
+
939
+
940
+ # [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)
941
+
942
+ **Note:** Version bump only for package @ui5/webcomponents-tools
943
+
944
+
945
+
946
+
947
+
948
+ # [2.3.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0...v2.3.0-rc.0) (2024-09-05)
949
+
950
+ **Note:** Version bump only for package @ui5/webcomponents-tools
951
+
952
+
953
+
954
+
955
+
956
+ # [2.2.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.3...v2.2.0) (2024-09-03)
957
+
958
+ **Note:** Version bump only for package @ui5/webcomponents-tools
959
+
960
+
961
+
962
+
963
+
964
+ # [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)
965
+
966
+ **Note:** Version bump only for package @ui5/webcomponents-tools
967
+
968
+
969
+
970
+
971
+
972
+ # [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)
973
+
974
+ **Note:** Version bump only for package @ui5/webcomponents-tools
975
+
976
+
977
+
978
+
979
+
980
+ # [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)
981
+
982
+ **Note:** Version bump only for package @ui5/webcomponents-tools
983
+
984
+
985
+
986
+
987
+
988
+ # [2.2.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.1...v2.2.0-rc.0) (2024-08-08)
989
+
990
+
991
+ ### Features
992
+
993
+ * **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))
994
+
995
+
996
+
997
+
998
+
999
+ ## [2.1.1](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0...v2.1.1) (2024-08-02)
1000
+
1001
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+ # [2.1.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.3...v2.1.0) (2024-08-02)
1008
+
1009
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+ # [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)
1016
+
1017
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+ # [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)
1024
+
1025
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+ # [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)
1032
+
1033
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+ # [2.1.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.1...v2.1.0-rc.0) (2024-07-11)
1040
+
1041
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1042
+
1043
+
1044
+
1045
+
1046
+
1047
+ ## [2.0.1](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0...v2.0.1) (2024-07-05)
1048
+
1049
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1050
+
1051
+
1052
+
1053
+
1054
+
1055
+ # [2.0.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.6...v2.0.0) (2024-07-03)
1056
+
1057
+
1058
+ ### Bug Fixes
1059
+
1060
+ * template result comparison ([#9279](https://github.com/SAP/ui5-webcomponents/issues/9279)) ([3a02e3e](https://github.com/SAP/ui5-webcomponents/commit/3a02e3ec51ade59a9bdd27784a7be5a1229ef24f))
1061
+
1062
+
1063
+ ### Features
1064
+
1065
+ * add property initializers ([#8846](https://github.com/SAP/ui5-webcomponents/issues/8846)) ([eef0cc9](https://github.com/SAP/ui5-webcomponents/commit/eef0cc9b663fda6268b98e516ed46439435fa2b0))
1066
+
1067
+
1068
+ ### BREAKING CHANGES
1069
+
1070
+ * @property decorator must be adapted according to new type parameter
1071
+
1072
+
1073
+
1074
+
1075
+
1076
+ # [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)
1077
+
1078
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+ # [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)
1085
+
1086
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+ # [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)
1093
+
1094
+
1095
+ ### Features
1096
+
1097
+ * **ui5-input:** allow custom icon styling ([#8881](https://github.com/SAP/ui5-webcomponents/issues/8881)) ([cf9f1c2](https://github.com/SAP/ui5-webcomponents/commit/cf9f1c28c93b9fa6c8663ce24d3c5e6d1ff4cc4e)), closes [#8182](https://github.com/SAP/ui5-webcomponents/issues/8182) [#6132](https://github.com/SAP/ui5-webcomponents/issues/6132)
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+ # [2.0.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.2...v2.0.0-rc.3) (2024-05-10)
1104
+
1105
+
1106
+ ### chore
1107
+
1108
+ * **Icons:** make pathData async ([#8785](https://github.com/SAP/ui5-webcomponents/issues/8785)) ([0549dc9](https://github.com/SAP/ui5-webcomponents/commit/0549dc95edae139f7a4f9efbbc7170922b3ab6cb))
1109
+
1110
+
1111
+ ### Code Refactoring
1112
+
1113
+ * **theming:** remove Belize theme ([#8519](https://github.com/SAP/ui5-webcomponents/issues/8519)) ([990313f](https://github.com/SAP/ui5-webcomponents/commit/990313fc8e429a491f4d6e67306d3df2703e54fe)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
1114
+
1115
+
1116
+ ### BREAKING CHANGES
1117
+
1118
+ * **theming:** Remove SAP Belize theme
1119
+ * **Icons:** UI5 Web Components Icons now export `getPathData` (function) instead of `pathData` (string)
1120
+
1121
+ If you used icons like this:
1122
+
1123
+ ```js
1124
+ import "@ui5/webcomponents-icons/dist/accept.js";
1125
+ ```
1126
+
1127
+ or like this:
1128
+
1129
+ ```js
1130
+ import accept from "@ui5/webcomponents-icons/dist/accept.js";
1131
+ ```
1132
+
1133
+ **there is no change and no adaptations are required**.
1134
+
1135
+ In the rare case you imported `pathData` from icons, for example:
1136
+
1137
+ ```js
1138
+ import { pathData, ltr, accData } from "@ui5/webcomponents-icons/dist/accept.js";
1139
+ console.log(pathData); // String containing the SVG path
1140
+ ```
1141
+
1142
+ you must change your code to, for example:
1143
+
1144
+ ```js
1145
+ import { getPathData, ltr, accData } from "@ui5/webcomponents-icons/dist/accept.js";
1146
+ getPathData().then(pathData => {
1147
+ console.log(pathData); // String containing the SVG path
1148
+ });
1149
+ ```
1150
+
1151
+
1152
+
1153
+
1154
+
1155
+ # [2.0.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.1...v2.0.0-rc.2) (2024-04-18)
1156
+
1157
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1158
+
1159
+
1160
+
1161
+
1162
+
1163
+ # [2.0.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.0...v2.0.0-rc.1) (2024-04-11)
1164
+
1165
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1166
+
1167
+
1168
+
1169
+
1170
+
1171
+ # [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0...v2.0.0-rc.0) (2024-04-09)
1172
+
1173
+
1174
+ ### chore
1175
+
1176
+ * bring release-2.0 to main ([#8651](https://github.com/SAP/ui5-webcomponents/issues/8651)) ([69271c9](https://github.com/SAP/ui5-webcomponents/commit/69271c9468c7dd54f90710fc4613ae0a79f85cef)), closes [#8494](https://github.com/SAP/ui5-webcomponents/issues/8494) [#8496](https://github.com/SAP/ui5-webcomponents/issues/8496) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8497](https://github.com/SAP/ui5-webcomponents/issues/8497) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8504](https://github.com/SAP/ui5-webcomponents/issues/8504) [#8509](https://github.com/SAP/ui5-webcomponents/issues/8509) [#8507](https://github.com/SAP/ui5-webcomponents/issues/8507) [#8511](https://github.com/SAP/ui5-webcomponents/issues/8511) [#8501](https://github.com/SAP/ui5-webcomponents/issues/8501) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8503](https://github.com/SAP/ui5-webcomponents/issues/8503) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8506](https://github.com/SAP/ui5-webcomponents/issues/8506) [#8502](https://github.com/SAP/ui5-webcomponents/issues/8502) [#8524](https://github.com/SAP/ui5-webcomponents/issues/8524) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8525](https://github.com/SAP/ui5-webcomponents/issues/8525) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8518](https://github.com/SAP/ui5-webcomponents/issues/8518) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8526](https://github.com/SAP/ui5-webcomponents/issues/8526) [#8529](https://github.com/SAP/ui5-webcomponents/issues/8529) [#8528](https://github.com/SAP/ui5-webcomponents/issues/8528) [#8531](https://github.com/SAP/ui5-webcomponents/issues/8531) [#8532](https://github.com/SAP/ui5-webcomponents/issues/8532) [#8534](https://github.com/SAP/ui5-webcomponents/issues/8534) [#8163](https://github.com/SAP/ui5-webcomponents/issues/8163) [#8527](https://github.com/SAP/ui5-webcomponents/issues/8527) [#8538](https://github.com/SAP/ui5-webcomponents/issues/8538) [#8521](https://github.com/SAP/ui5-webcomponents/issues/8521) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8542](https://github.com/SAP/ui5-webcomponents/issues/8542) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#8548](https://github.com/SAP/ui5-webcomponents/issues/8548) [#8555](https://github.com/SAP/ui5-webcomponents/issues/8555) [#8559](https://github.com/SAP/ui5-webcomponents/issues/8559) [#8565](https://github.com/SAP/ui5-webcomponents/issues/8565) [#8570](https://github.com/SAP/ui5-webcomponents/issues/8570) [#8558](https://github.com/SAP/ui5-webcomponents/issues/8558) [#8568](https://github.com/SAP/ui5-webcomponents/issues/8568) [#8596](https://github.com/SAP/ui5-webcomponents/issues/8596) [#8192](https://github.com/SAP/ui5-webcomponents/issues/8192) [#8606](https://github.com/SAP/ui5-webcomponents/issues/8606) [#8605](https://github.com/SAP/ui5-webcomponents/issues/8605) [#8600](https://github.com/SAP/ui5-webcomponents/issues/8600) [#8602](https://github.com/SAP/ui5-webcomponents/issues/8602) [#8593](https://github.com/SAP/ui5-webcomponents/issues/8593)
1177
+
1178
+
1179
+ ### BREAKING CHANGES
1180
+
1181
+ * "Device#isIE" method has been removed and no longer available
1182
+
1183
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1184
+ * Removed the `CSP.js` module and the creation of `<style>` and `<link>` tags, as all browsers now support adoptedStyleSheets. The following APIs are not available any more and should not be used:
1185
+ ```ts
1186
+ import { setUseLinks } from "@ui5/webcomponents-base/dist/CSP.js"
1187
+ import { setPackageCSSRoot } from "@ui5/webcomponents-base/dist/CSP.js"
1188
+ import { setPreloadLinks } from "@ui5/webcomponents-base/dist/CSP.js"
1189
+ ```
1190
+ * Removed the `ICardHeader` interface. If you previously used the interface
1191
+ ```ts
1192
+ import type { ICardHeader } from "@ui5/webcomponents-base/dist/Card.js"
1193
+ ```
1194
+ Use the CardHeader type instead:
1195
+ ```ts
1196
+ import type CardHeader from "@ui5/webcomponents-base/dist/CardHeader.js"
1197
+ ```
1198
+ * Removed the `IUploadCollectionItem` interface. If you previously used the interface:
1199
+ ```js
1200
+ import type { IUploadCollectionItem} from "@ui5/webcomponents-fiori/dist/UploadCollection.js"
1201
+ ```
1202
+ Use the `UploadCollectionItem` type instead:
1203
+ ```js
1204
+ import type UploadCollectionItem from "@ui5/webcomponents-fiori/dist/UploadCollectionItem.js"
1205
+ ```
1206
+
1207
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1208
+ * The `size` property now accepts different values. If you previously used it like:
1209
+ ```html
1210
+ <ui5-busy-indicator size="Small"></ui5-busy-indicator>
1211
+ ```
1212
+ Now use the new values instead:
1213
+ ```html
1214
+ <ui5-busy-indicator size="S"></ui5-busy-indicator>
1215
+ ```
1216
+
1217
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1218
+ * The `status` property and its shadow part have been renamed. If you previously used them:
1219
+ ```html
1220
+ <style>
1221
+ .cardHeader::part(status) { ... }
1222
+ </style>
1223
+ <ui5-card-header status="3 of 10"></ui5-popover>
1224
+ ```
1225
+ Now use `additionalText` instead:
1226
+ ```html
1227
+ <style>
1228
+ .cardHeader::part(additional-text) { ... }
1229
+ </style>
1230
+ <ui5-card-header class="cardHeader" additional-text="3 of 10"></ui5-card-header>
1231
+ ```
1232
+
1233
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1234
+ * The `pageIndicatorStyle` no longer exists. If you previously used it like:
1235
+ ```html
1236
+ <ui5-carousel page-indicator-style="Numeric"></ui5-carousel>
1237
+ ```
1238
+ Now you should use `pageIndicatorType` instead:
1239
+ ```html
1240
+ <ui5-carousel page-indicator-type="Numeric"></ui5-carousel>
1241
+ ```
1242
+
1243
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1244
+ * Removed `UI5Element#render` method in favour of `UI5Element#renderer`. If you previously used "render"
1245
+ ```js
1246
+ class MyClass extends UI5Element {
1247
+ static get render() {
1248
+ return litRenderer;
1249
+ }
1250
+ }
1251
+ ```
1252
+ start using "renderer"
1253
+ ```ts
1254
+ class MyClass extends UI5Element {
1255
+ static get renderer() {
1256
+ return litRenderer;
1257
+ }
1258
+ }
1259
+ ```
1260
+ * Remove JavaScript template option from @ui5/create-webcomponents-package
1261
+ Previously `npm init @ui5/webcomponents-package` used to create JS-based project, however now it will be TypeScript-based project.
1262
+ If you previously used `npm init @ui5/webcomponents-package --enable-typescript` to create TypeScript-based project, now it's by default, e.g `npm init @ui5/webcomponents-package` and `--enable-typescript` is removed.
1263
+ * The `Left` and `Right` options option have been renamed. If you previously used them to set the placement or the alignment of the popover:
1264
+ ```html
1265
+ <ui5-popover horizontal-align="Left" placement-type="Left"></ui5-popover>
1266
+ ```
1267
+ Now use `Start` or `End` instead:
1268
+ ```html
1269
+ <ui5-popover horizontal-align="Start" placement-type="Start"></ui5-popover>
1270
+ ```
1271
+
1272
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1273
+
1274
+ * docs: deploy v2 preview
1275
+ * Remove `soccor` icon. Use `soccer` instead.
1276
+ * Remove `add-polygone` icon. Use `add-polygon` instead.
1277
+ * The JSDoc plugin has been removed, and the generation of api.json has stopped. If you previously relied on the `ui5-package/dist/api.json file`, you can now use `ui5-package/dist/custom-elements.json`
1278
+ * All Assets-static.js modules are removed. If you previously imported any Assets-static.js module from any package:
1279
+ ```ts
1280
+ import "@ui5/webcomponents/dist/Assets-static.js";
1281
+ import "@ui5/webcomponents-icons/dist/Assets-static.js"
1282
+ ```
1283
+ use the dynamic equivalent of it:
1284
+ ```ts
1285
+ import "@ui5/webcomponents/dist/Assets.js";
1286
+ import "@ui5/webcomponents-icons/dist/Assets.js"
1287
+ ```
1288
+
1289
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1290
+ * The event `selected-dates-change ` is renamed to `selection-change`. In addition the event details
1291
+ `values` and `dates` are renamed to `selectedValues` and `selectedDateValues`. If you previously used the Calendar event as follows:
1292
+ ```ts
1293
+ myCalendar.addEventListener("selected-dates-change", () => {
1294
+ const values = e.detail.values;
1295
+ const dates = e.detail.dates;
1296
+ })
1297
+ ```
1298
+ Now you have to use the new event name and details:
1299
+ ```ts
1300
+ myCalendar.addEventListener("selection-change", () => {
1301
+ const values = event.detail.selectedValues;
1302
+ const dates = event.detail.selectedDateValues;
1303
+ })
1304
+ ```
1305
+
1306
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1307
+ * The property `color` is renamed to `value`. If you previously used the change event of the ColorPicker as follows:
1308
+ ```html
1309
+ <ui5-color-picker color="red"></ui5-color-picker>
1310
+ ```
1311
+ Now you have to use it like this:
1312
+ ```html
1313
+ <ui5-color-picker value="red"></ui5-color-picker>
1314
+ ```
1315
+
1316
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1317
+ * JavaScript projects may not function properly with the tools package.
1318
+ * The `openPopover` and `showAt` methods are removed in favor of `open` and `opener` properties. If you previously used the imperative API:
1319
+ ```js
1320
+ button.addEventListener("click", function(event) {
1321
+ colorPalettePopover.showAt(this);
1322
+ });
1323
+ ```
1324
+ Now the declarative API should be used instead:
1325
+ ```html
1326
+ <ui5-button id="opener">Open</ui5-button>
1327
+ <ui5-color-palette-popover opener="opener">
1328
+ ```
1329
+ ```js
1330
+ button.addEventListener("click", function(event) {
1331
+ colorPalettePopover.open = !colorPalettePopover.open;
1332
+ });
1333
+ ```
1334
+ * The `ui5-bar` component is now in `main` library. If you previously imported the `ui5-bar` from `fiori`:
1335
+ ```ts
1336
+ import "@ui5/webcomponents-fiori/dist/Bar.js;
1337
+ ```
1338
+ Now, import the `ui5-bar` from `main`:
1339
+ ```ts
1340
+ import "@ui5/webcomponents/dist/Bar.js";
1341
+ ```
1342
+
1343
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1344
+ * If you have previously used:
1345
+ ```html
1346
+ <ui5-tab id="nestedTab" slot="subTabs"></ui5-tab>
1347
+ ```
1348
+ Now use:
1349
+ ```html
1350
+ <ui5-tab id="nestedTab" slot="items"></ui5-tab>
1351
+ ```
1352
+
1353
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
1354
+ * If you have previously used:
1355
+ ```html
1356
+ <ui5-tabcontainer tabs-overflow-mode="StartAndEnd"></ui5-tabcontainer>
1357
+ ```
1358
+ Now use:
1359
+ ```html
1360
+ <ui5-tabcontainer overflow-mode="StartAndEnd"></ui5-tabcontainer>
1361
+ ```
1362
+
1363
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
1364
+ * If you previously imported `TabContainerBackgroundDesign`, use `BackgroundDesign` instead.
1365
+
1366
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
1367
+ * The showOverflow property is removed. If previously you have used:
1368
+ ```html
1369
+ <ui5-tabcontainer show-overflow></ui5-tabcontainer>
1370
+ ```
1371
+ now use the overflowButton slot:
1372
+ ```html
1373
+ <ui5-tabcontainer>
1374
+ <ui5-button slot="startOverflowButton" id="startOverflowButton">Start</ui5-button>
1375
+ <ui5-button slot="overflowButton" id="endOverflowButton">End</ui5-button>
1376
+ </ui5-tabcontainer>
1377
+ ```
1378
+
1379
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
1380
+ * The `placementType` property and the `PopoverPlacementType` enum have been renamed.
1381
+ If you have previously used the `placementType` property and the `PopoverPlacementType`
1382
+ ```html
1383
+ <ui5-popover placement-type="Bottom"></ui5-popover>
1384
+ ```
1385
+ ```js
1386
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacementType.js";
1387
+ ```
1388
+ Now use `placement` instead:
1389
+ ```html
1390
+ <ui5-placement="Bottom"></ui5-popover>
1391
+ ```
1392
+ ```js
1393
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacement.js";
1394
+ ```
1395
+
1396
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1397
+ * The `size` property of the `ui5--illustrated-message` is renamed to `design`.
1398
+ If you have previously used the `size` property:
1399
+ ```html
1400
+ <ui5-illustrated-message size="Dialog">
1401
+ ```
1402
+ Now use `design` instead:
1403
+ ```html
1404
+ <ui5-illustrated-message design="Dialog">
1405
+
1406
+ ```
1407
+
1408
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
1409
+ * The `separator-style` property is renamed to `separators` and the `BreadcrumbsSeparatorStyle` enum is renamed to `BreadcrumbsSeparator`.
1410
+ If you have previously used the `separator-style` property:
1411
+ ```html
1412
+ <ui5-breadcrumbs separator-style="Slash">
1413
+ ```
1414
+ Now use `separators` instead:
1415
+ ```html
1416
+ <ui5-breadcrumbs separators="Slash">
1417
+ ```
1418
+
1419
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
1420
+ * The `disabled` property of the `ui5-option` is removed.
1421
+ If you have previously used the `disabled` property:
1422
+ ```html
1423
+ <ui5-option disabled>Option</ui5-option>
1424
+ ```
1425
+ it will no longer work for the component.
1426
+
1427
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
1428
+ * You can no longer import and implement the `ITab` interface. TabContainer is designed to work only with Tab and TabSeparator classes, so the interface was obsolete.
1429
+
1430
+
1431
+
1432
+
1433
+
1434
+ # [1.24.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.4...v1.24.0) (2024-04-04)
1435
+
1436
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1437
+
1438
+
1439
+
1440
+
1441
+
1442
+ # [1.24.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.3...v1.24.0-rc.4) (2024-04-04)
1443
+
1444
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1445
+
1446
+
1447
+
1448
+
1449
+
1450
+ # [1.24.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.2...v1.24.0-rc.3) (2024-03-28)
1451
+
1452
+
1453
+ ### Features
1454
+
1455
+ * **framework:** support sr, mk, cnr locales ([#8534](https://github.com/SAP/ui5-webcomponents/issues/8534)) ([5b410d6](https://github.com/SAP/ui5-webcomponents/commit/5b410d65267e79d4420b1a6d6788db6495abc962)), closes [#8163](https://github.com/SAP/ui5-webcomponents/issues/8163)
1456
+
1457
+
1458
+
1459
+
1460
+
1461
+ # [1.24.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.1...v1.24.0-rc.2) (2024-03-21)
1462
+
1463
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1464
+
1465
+
1466
+
1467
+
1468
+
1469
+ # [1.24.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.0...v1.24.0-rc.1) (2024-03-15)
1470
+
1471
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1472
+
1473
+
1474
+
1475
+
1476
+
1477
+ # [1.24.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1...v1.24.0-rc.0) (2024-03-14)
1478
+
1479
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+ ## [1.23.1](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1-rc.0...v1.23.1) (2024-03-08)
1486
+
1487
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1488
+
1489
+
1490
+
1491
+
1492
+
1493
+ ## [1.23.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0...v1.23.1-rc.0) (2024-03-07)
1494
+
1495
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1496
+
1497
+
1498
+
1499
+
1500
+
1501
+ # [1.23.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.5...v1.23.0) (2024-03-06)
1502
+
1503
+
1504
+ ### Features
1505
+
1506
+ * **ui5-illustrated-message:** introduced "Dot" size ([#8343](https://github.com/SAP/ui5-webcomponents/issues/8343)) ([9c88f36](https://github.com/SAP/ui5-webcomponents/commit/9c88f36112888c1a766875611eb2a0aecbbc6f23)), closes [#8328](https://github.com/SAP/ui5-webcomponents/issues/8328)
1507
+
1508
+
1509
+
1510
+
1511
+
1512
+ # [1.23.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.4...v1.23.0-rc.5) (2024-02-29)
1513
+
1514
+
1515
+ ### Bug Fixes
1516
+
1517
+ * remove sap.ui.require call from unused openui5 module ([#8359](https://github.com/SAP/ui5-webcomponents/issues/8359)) ([50219ac](https://github.com/SAP/ui5-webcomponents/commit/50219ac23add7b86fe26d8ca51e2181f01404992))
1518
+
1519
+
1520
+
1521
+
1522
+
1523
+ # [1.23.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.3...v1.23.0-rc.4) (2024-02-26)
1524
+
1525
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1526
+
1527
+
1528
+
1529
+
1530
+
1531
+ # [1.23.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.2...v1.23.0-rc.3) (2024-02-22)
1532
+
1533
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1534
+
1535
+
1536
+
1537
+
1538
+
1539
+ # [1.23.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.1...v1.23.0-rc.2) (2024-02-20)
1540
+
1541
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1542
+
1543
+
1544
+
1545
+
1546
+
1547
+ # [1.23.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.0...v1.23.0-rc.1) (2024-02-19)
1548
+
1549
+
1550
+ ### Bug Fixes
1551
+
1552
+ * **tools:** fix usage of require in mjs ([#8258](https://github.com/SAP/ui5-webcomponents/issues/8258)) ([cbca059](https://github.com/SAP/ui5-webcomponents/commit/cbca059b926a8a5473d1f13690b6670239aafb8e))
1553
+
1554
+
1555
+
1556
+
1557
+
1558
+ # [1.23.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.1-rc.0...v1.23.0-rc.0) (2024-02-15)
1559
+
1560
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1561
+
1562
+
1563
+
1564
+
1565
+
1566
+ ## [1.22.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0...v1.22.1-rc.0) (2024-02-08)
1567
+
1568
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1569
+
1570
+
1571
+
1572
+
1573
+
1574
+ # [1.22.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.3...v1.22.0) (2024-02-05)
1575
+
1576
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1577
+
1578
+
1579
+
1580
+
1581
+
1582
+ # [1.22.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.2...v1.22.0-rc.3) (2024-02-01)
1583
+
1584
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1585
+
1586
+
1587
+
1588
+
1589
+
1590
+ # [1.22.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.1...v1.22.0-rc.2) (2024-01-25)
1591
+
1592
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+ # [1.22.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.0...v1.22.0-rc.1) (2024-01-18)
1599
+
1600
+
1601
+ ### Features
1602
+
1603
+ * **illustration:** use illustration name as default module export ([#8074](https://github.com/SAP/ui5-webcomponents/issues/8074)) ([a9c0705](https://github.com/SAP/ui5-webcomponents/commit/a9c07055d4e06e4d1f69b7a2a48b36eb77fae4aa))
1604
+
1605
+
1606
+
1607
+
1608
+
1609
+ # [1.22.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0...v1.22.0-rc.0) (2024-01-11)
1610
+
1611
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1612
+
1613
+
1614
+
1615
+
1616
+
1617
+ # [1.21.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.5...v1.21.0) (2024-01-05)
1618
+
1619
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1620
+
1621
+
1622
+
1623
+
1624
+
1625
+ # [1.21.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.4...v1.21.0-rc.5) (2024-01-04)
1626
+
1627
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1628
+
1629
+
1630
+
1631
+
1632
+
1633
+ # [1.21.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.3...v1.21.0-rc.4) (2023-12-28)
1634
+
1635
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1636
+
1637
+
1638
+
1639
+
1640
+
1641
+ # [1.21.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.2...v1.21.0-rc.3) (2023-12-21)
1642
+
1643
+
1644
+ ### Bug Fixes
1645
+
1646
+ * declare webpackChunkName in more generated dynamic imports ([#8029](https://github.com/SAP/ui5-webcomponents/issues/8029)) ([c85fa23](https://github.com/SAP/ui5-webcomponents/commit/c85fa23bd32574434f537df95c7507a7f1a48b5e))
1647
+
1648
+
1649
+ ### Features
1650
+
1651
+ * **tools:** Optimize build by switching css processing to esbuild ([#8008](https://github.com/SAP/ui5-webcomponents/issues/8008)) ([b4d411f](https://github.com/SAP/ui5-webcomponents/commit/b4d411f00f8d74ccecb2d02254126243faf53dfd))
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+ # [1.21.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.1...v1.21.0-rc.2) (2023-12-14)
1658
+
1659
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1660
+
1661
+
1662
+
1663
+
1664
+
1665
+ # [1.21.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.0...v1.21.0-rc.1) (2023-12-08)
1666
+
1667
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1668
+
1669
+
1670
+
1671
+
1672
+
1673
+ # [1.21.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0...v1.21.0-rc.0) (2023-12-07)
1674
+
1675
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1676
+
1677
+
1678
+
1679
+
1680
+
1681
+ # [1.20.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.3...v1.20.0) (2023-12-04)
1682
+
1683
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1684
+
1685
+
1686
+
1687
+
1688
+
1689
+ # [1.20.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.2...v1.20.0-rc.3) (2023-11-30)
1690
+
1691
+
1692
+ ### Features
1693
+
1694
+ * register custom theme properties ([#7750](https://github.com/SAP/ui5-webcomponents/issues/7750)) ([c6c04c6](https://github.com/SAP/ui5-webcomponents/commit/c6c04c609d82a7442bdf79ef5bba46a406859a27))
1695
+
1696
+
1697
+
1698
+
1699
+
1700
+ # [1.20.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.1...v1.20.0-rc.2) (2023-11-23)
1701
+
1702
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1703
+
1704
+
1705
+
1706
+
1707
+
1708
+ # [1.20.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.0...v1.20.0-rc.1) (2023-11-16)
1709
+
1710
+
1711
+ ### Bug Fixes
1712
+
1713
+ * declare webpackChunkName in generated dynamic imports for readable runtime bundle names ([#7835](https://github.com/SAP/ui5-webcomponents/issues/7835)) ([592a10b](https://github.com/SAP/ui5-webcomponents/commit/592a10b25a14da89885874c40c5c7a192b8b4d85))
1714
+
1715
+
1716
+
1717
+
1718
+
1719
+ # [1.20.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0...v1.20.0-rc.0) (2023-11-09)
1720
+
1721
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1722
+
1723
+
1724
+
1725
+
1726
+
1727
+ # [1.19.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.3...v1.19.0) (2023-11-02)
1728
+
1729
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1730
+
1731
+
1732
+
1733
+
1734
+
1735
+ # [1.19.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.2...v1.19.0-rc.3) (2023-11-02)
1736
+
1737
+
1738
+ ### Features
1739
+
1740
+ * **framework:** switch default theme from Quartz Light to Morning Ho… ([#7749](https://github.com/SAP/ui5-webcomponents/issues/7749)) ([10dadd7](https://github.com/SAP/ui5-webcomponents/commit/10dadd79e3a93daf29baaed3a5bcebd8c66a0940))
1741
+
1742
+
1743
+
1744
+
1745
+
1746
+ # [1.19.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.1...v1.19.0-rc.2) (2023-10-26)
1747
+
1748
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1749
+
1750
+
1751
+
1752
+
1753
+
1754
+ # [1.19.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.0...v1.19.0-rc.1) (2023-10-19)
1755
+
1756
+
1757
+ ### Bug Fixes
1758
+
1759
+ * escape special characters when scoping CSS vars ([#7704](https://github.com/SAP/ui5-webcomponents/issues/7704)) ([8888751](https://github.com/SAP/ui5-webcomponents/commit/888875121b56fa0c7216674acc580620d8e0d720))
1760
+
1761
+
1762
+
1763
+
1764
+
1765
+ # [1.19.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.1-rc.0...v1.19.0-rc.0) (2023-10-12)
1766
+
1767
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1768
+
1769
+
1770
+
1771
+
1772
+
1773
+ ## [1.18.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0...v1.18.1-rc.0) (2023-10-05)
1774
+
1775
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1776
+
1777
+
1778
+
1779
+
1780
+
1781
+ # [1.18.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0-rc.2...v1.18.0) (2023-10-02)
1782
+
1783
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1784
+
1785
+
1786
+
1787
+
1788
+
1789
+ # [1.18.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0-rc.1...v1.18.0-rc.2) (2023-09-28)
1790
+
1791
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1792
+
1793
+
1794
+
1795
+
1796
+
1797
+ # [1.18.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0-rc.0...v1.18.0-rc.1) (2023-09-21)
1798
+
1799
+
1800
+ ### Reverts
1801
+
1802
+ * Revert "build: fix dev server page refresh" ([105db9f](https://github.com/SAP/ui5-webcomponents/commit/105db9f3c42e7434c2dc9b0eb967fb45cac9620d))
1803
+
1804
+
1805
+
1806
+
1807
+
1808
+ # [1.18.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0...v1.18.0-rc.0) (2023-09-07)
1809
+
1810
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1811
+
1812
+
1813
+
1814
+
1815
+
1816
+ # [1.17.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0-rc.2...v1.17.0) (2023-09-01)
1817
+
1818
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1819
+
1820
+
1821
+
1822
+
1823
+
1824
+ # [1.17.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0-rc.1...v1.17.0-rc.2) (2023-08-24)
1825
+
1826
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1827
+
1828
+
1829
+
1830
+
1831
+
1832
+ # [1.17.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0-rc.0...v1.17.0-rc.1) (2023-08-17)
1833
+
1834
+
1835
+ ### Features
1836
+
1837
+ * **framework:** scope css variables per runtime and version ([#7449](https://github.com/SAP/ui5-webcomponents/issues/7449)) ([d3f6c2e](https://github.com/SAP/ui5-webcomponents/commit/d3f6c2efba9cfda389ea4d700a375f75b3e2996b))
1838
+
1839
+
1840
+
1841
+
1842
+
1843
+ # [1.17.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0...v1.17.0-rc.0) (2023-08-10)
1844
+
1845
+
1846
+ ### Bug Fixes
1847
+
1848
+ * **ui5-illustrated-message:** support collection based illustration loading ([#7318](https://github.com/SAP/ui5-webcomponents/issues/7318)) ([6b52dbd](https://github.com/SAP/ui5-webcomponents/commit/6b52dbd157a3c8198e41c84157e3d9ae89e3386e))
1849
+
1850
+
1851
+
1852
+
1853
+
1854
+ # [1.16.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.4...v1.16.0) (2023-08-03)
1855
+
1856
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1857
+
1858
+
1859
+
1860
+
1861
+
1862
+ # [1.16.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.3...v1.16.0-rc.4) (2023-08-03)
1863
+
1864
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1865
+
1866
+
1867
+
1868
+
1869
+
1870
+ # [1.16.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.2...v1.16.0-rc.3) (2023-07-27)
1871
+
1872
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1873
+
1874
+
1875
+
1876
+
1877
+
1878
+ # [1.16.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.1...v1.16.0-rc.2) (2023-07-20)
1879
+
1880
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1881
+
1882
+
1883
+
1884
+
1885
+
1886
+ # [1.16.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.0...v1.16.0-rc.1) (2023-07-13)
1887
+
1888
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1889
+
1890
+
1891
+
1892
+
1893
+
1894
+ # [1.16.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.1...v1.16.0-rc.0) (2023-07-06)
1895
+
1896
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1897
+
1898
+
1899
+
1900
+
1901
+
1902
+ # [1.15.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.0-rc.2...v1.15.0) (2023-06-30)
1903
+
1904
+
1905
+ ### Bug Fixes
1906
+
1907
+ * **framework:** missing CSS variables in compact mode / rtl mode ([#7189](https://github.com/SAP/ui5-webcomponents/issues/7189)) ([9b39b9c](https://github.com/SAP/ui5-webcomponents/commit/9b39b9ce5c3720dbb106c5638f858754e11a735f))
1908
+
1909
+
1910
+
1911
+
1912
+
1913
+ # [1.15.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.15.0-rc.1...v1.15.0-rc.2) (2023-06-22)
1914
+
1915
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1916
+
1917
+
1918
+
1919
+
1920
+
1921
+ # [1.15.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.15.0-rc.0...v1.15.0-rc.1) (2023-06-15)
1922
+
1923
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1924
+
1925
+
1926
+
1927
+
1928
+
1929
+
1930
+
1931
+
1932
+
1933
+ # [1.15.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0...v1.15.0-rc.0) (2023-06-08)
1934
+
1935
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1936
+
1937
+
1938
+
1939
+
1940
+
1941
+ # [1.14.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.2...v1.14.0) (2023-06-01)
1942
+
1943
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1944
+
1945
+
1946
+
1947
+
1948
+
1949
+ # [1.14.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.1...v1.14.0-rc.2) (2023-06-01)
1950
+
1951
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1952
+
1953
+
1954
+
1955
+
1956
+
1957
+ # [1.14.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.0...v1.14.0-rc.1) (2023-05-25)
1958
+
1959
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1960
+
1961
+
1962
+
1963
+
1964
+
1965
+ # [1.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.13.2...v1.14.0-rc.0) (2023-05-18)
1966
+
1967
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1968
+
1969
+
1970
+
1971
+
1972
+
1973
+ ## [1.13.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.5...v1.13.1) (2023-05-11)
1974
+
1975
+ **Note:** Version bump only for package @ui5/webcomponents-tools
1976
+
1977
+
1978
+
1979
+
1980
+
1981
+ # [1.13.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.4...v1.13.0-rc.5) (2023-05-11)
1982
+
1983
+
1984
+ ### Bug Fixes
1985
+
1986
+ * **create-webcomponents-package:** fix package creation issues with test and lint ([#6976](https://github.com/SAP/ui5-webcomponents/issues/6976)) ([dd70f3a](https://github.com/SAP/ui5-webcomponents/commit/dd70f3aa8ef70b592f1d4e0f3f9894c6280fb1bf))
1987
+
1988
+
1989
+
1990
+
1991
+
1992
+ # [1.13.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.3...v1.13.0-rc.4) (2023-05-04)
1993
+
1994
+
1995
+ ### Features
1996
+
1997
+ * generate TS from HBS templates ([#6558](https://github.com/SAP/ui5-webcomponents/issues/6558)) ([02611b2](https://github.com/SAP/ui5-webcomponents/commit/02611b2e24b2c2a06129b8e60a8bc680d9501e39))
1998
+
1999
+
2000
+
2001
+
2002
+
2003
+ # [1.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.2...v1.13.0-rc.3) (2023-04-27)
2004
+
2005
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2006
+
2007
+
2008
+
2009
+
2010
+
2011
+ # [1.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.1...v1.13.0-rc.2) (2023-04-20)
2012
+
2013
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2014
+
2015
+
2016
+
2017
+
2018
+
2019
+ # [1.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.0...v1.13.0-rc.1) (2023-04-13)
2020
+
2021
+
2022
+ ### Bug Fixes
2023
+
2024
+ * **framework:** correct fileName in component CSS import ([#6900](https://github.com/SAP/ui5-webcomponents/issues/6900)) ([4d950c5](https://github.com/SAP/ui5-webcomponents/commit/4d950c5ea3bee0e3b629e5797693ecf41a2cdfd3))
2025
+
2026
+
2027
+
2028
+
2029
+
2030
+ # [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
2031
+
2032
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2033
+
2034
+
2035
+
2036
+
2037
+
2038
+ # [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
2039
+
2040
+
2041
+ ### Bug Fixes
2042
+
2043
+ * **theming:** fix icons version display for custom themes (built via the ThemeDesigner) ([#6815](https://github.com/SAP/ui5-webcomponents/issues/6815)) ([63ff800](https://github.com/SAP/ui5-webcomponents/commit/63ff8007889a66efae074fc6b4dbcb1b7ea36713)), closes [#6758](https://github.com/SAP/ui5-webcomponents/issues/6758)
2044
+
2045
+
2046
+
2047
+
2048
+
2049
+ # [1.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.2...v1.12.0-rc.3) (2023-03-30)
2050
+
2051
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2052
+
2053
+
2054
+
2055
+
2056
+
2057
+ # [1.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.1...v1.12.0-rc.2) (2023-03-23)
2058
+
2059
+
2060
+ ### Bug Fixes
2061
+
2062
+ * fix eslint for JS 3rd party projects ([#6725](https://github.com/SAP/ui5-webcomponents/issues/6725)) ([215a888](https://github.com/SAP/ui5-webcomponents/commit/215a888b006e46d431edd6324812b9d39249aef4))
2063
+
2064
+
2065
+
2066
+
2067
+
2068
+ # [1.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.0...v1.12.0-rc.1) (2023-03-16)
2069
+
2070
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2071
+
2072
+
2073
+
2074
+
2075
+
2076
+ # [1.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0...v1.12.0-rc.0) (2023-03-09)
2077
+
2078
+
2079
+ ### Features
2080
+
2081
+ * enhance create-ui5-element command to create component in TS ([#6609](https://github.com/SAP/ui5-webcomponents/issues/6609)) ([d870065](https://github.com/SAP/ui5-webcomponents/commit/d8700650a4e5991862e2076cc2c93482011c4c90))
2082
+
2083
+
2084
+
2085
+
2086
+
2087
+ # [1.11.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.4...v1.11.0) (2023-03-06)
2088
+
2089
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2090
+
2091
+
2092
+
2093
+
2094
+
2095
+ # [1.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.3...v1.11.0-rc.4) (2023-03-02)
2096
+
2097
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2098
+
2099
+
2100
+
2101
+
2102
+
2103
+ # [1.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.2...v1.11.0-rc.3) (2023-02-23)
2104
+
2105
+
2106
+ ### Features
2107
+
2108
+ * **playground:** next playground with storybook ([#5831](https://github.com/SAP/ui5-webcomponents/issues/5831)) ([79274c8](https://github.com/SAP/ui5-webcomponents/commit/79274c8e442cf5854a7fe6327f25aaed04312103)), closes [#5898](https://github.com/SAP/ui5-webcomponents/issues/5898)
2109
+
2110
+
2111
+
2112
+
2113
+
2114
+ # [1.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.1...v1.11.0-rc.2) (2023-02-16)
2115
+
2116
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2117
+
2118
+
2119
+
2120
+
2121
+
2122
+ # [1.11.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.0...v1.11.0-rc.1) (2023-02-09)
2123
+
2124
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2125
+
2126
+
2127
+
2128
+
2129
+
2130
+ # [1.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.10.4-rc.0...v1.11.0-rc.0) (2023-02-02)
2131
+
2132
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2133
+
2134
+
2135
+
2136
+
2137
+
2138
+ ## [1.10.4-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.10.3...v1.10.4-rc.0) (2023-01-26)
2139
+
2140
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2141
+
2142
+
2143
+
2144
+
2145
+
2146
+ ## [1.10.3](https://github.com/SAP/ui5-webcomponents/compare/v1.10.2...v1.10.3) (2023-01-25)
2147
+
2148
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2149
+
2150
+
2151
+
2152
+
2153
+
2154
+ ## [1.10.2](https://github.com/SAP/ui5-webcomponents/compare/v1.10.1...v1.10.2) (2023-01-25)
2155
+
2156
+ **Note:** Version bump only for package ui5-webcomponents
2157
+
2158
+ ## [1.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.0.0-7b49a7ff1...v1.10.1) (2023-01-24)
2159
+
2160
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2161
+
2162
+
2163
+
2164
+
2165
+
2166
+ # [1.10.0](https://github.com/SAP/ui5-webcomponents/compare/v1.9.3...v1.10.0) (2023-01-20)
2167
+
2168
+
2169
+ ### Bug Fixes
2170
+
2171
+ * **infra:** set Content-Type header on testsuite ([#6108](https://github.com/SAP/ui5-webcomponents/issues/6108)) ([fae3f91](https://github.com/SAP/ui5-webcomponents/commit/fae3f91975ab1dad7135bea2227f61986eff403f))
2172
+
2173
+
2174
+ ### Features
2175
+
2176
+ * enable TS in main, fiori ([#6064](https://github.com/SAP/ui5-webcomponents/issues/6064)) ([0b56130](https://github.com/SAP/ui5-webcomponents/commit/0b561307b93b8af465dc5bee67650069ee138f7f))
2177
+ * migrate illustrated-message component to TS, small refactor ([#6195](https://github.com/SAP/ui5-webcomponents/issues/6195)) ([046c779](https://github.com/SAP/ui5-webcomponents/commit/046c779f654648172619dd720c0d90342ec78fb9))
2178
+ * support decorators for custom elements metadata ([#6072](https://github.com/SAP/ui5-webcomponents/issues/6072)) ([fc9ee6e](https://github.com/SAP/ui5-webcomponents/commit/fc9ee6e2af10b4315fde072a50ab37efa180c809))
2179
+ * **ui5-button, ui5-date-picker, ui5-calendar:** migrate to TS ([#6173](https://github.com/SAP/ui5-webcomponents/issues/6173)) ([7232ca0](https://github.com/SAP/ui5-webcomponents/commit/7232ca08f286c5dde10080373fb62247f1acf7b7)), closes [#6080](https://github.com/SAP/ui5-webcomponents/issues/6080)
2180
+ * use Typescript for the `base` package ([#5982](https://github.com/SAP/ui5-webcomponents/issues/5982)) ([bd184d8](https://github.com/SAP/ui5-webcomponents/commit/bd184d81a4218328bc7bf04baf2bc1f69a361679))
2181
+
2182
+
2183
+
2184
+
2185
+
2186
+ ## [1.9.3](https://github.com/SAP/ui5-webcomponents/compare/v1.9.2...v1.9.3) (2022-12-16)
2187
+
2188
+ **Note:** Version bump only for package @ui5/webcomponents-tools
2189
+
2190
+
2191
+
2192
+
2193
+
6
2194
  ## [1.9.1](https://github.com/SAP/ui5-webcomponents/compare/v1.9.0...v1.9.1) (2022-11-10)
7
2195
 
8
2196