@ui5/webcomponents-base 0.0.0-4b9b0ab7c → 0.0.0-4e88b8243

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 (634) hide show
  1. package/.npsrc.json +3 -0
  2. package/CHANGELOG.md +1672 -0
  3. package/README.md +6 -12
  4. package/cypress/specs/Accessor.cy.ts +79 -0
  5. package/cypress/specs/Boot.cy.ts +19 -0
  6. package/cypress/specs/ConfigurationChange.cy.ts +41 -0
  7. package/cypress/specs/ConfigurationScript.cy.ts +116 -0
  8. package/cypress/specs/ConfigurationURL.cy.ts +182 -0
  9. package/cypress/specs/CustomMount.cy.ts +34 -0
  10. package/cypress/specs/CustomTheme.cy.ts +36 -0
  11. package/cypress/specs/EventProvider.cy.ts +59 -0
  12. package/cypress/specs/SystemDOMElements.cy.ts +8 -0
  13. package/cypress/specs/Theming.cy.ts +74 -0
  14. package/cypress/specs/UI5ElementInvalidation.cy.ts +207 -0
  15. package/cypress/specs/UI5ElementLifecycle.cy.ts +82 -0
  16. package/cypress/specs/UI5ElementListenForChildPropChanges.cy.ts +62 -0
  17. package/cypress/specs/UI5ElementMetadataExt.cy.ts +42 -0
  18. package/cypress/specs/UI5ElementPropertyValidation.cy.ts +16 -0
  19. package/cypress/specs/UI5ElementPropsAndAttrs.cy.ts +113 -0
  20. package/cypress/specs/UI5ElementShadowDOM.cy.ts +30 -0
  21. package/cypress/specs/UI5ElementSlots.cy.ts +116 -0
  22. package/cypress/specs/WithComplexTemplate.cy.ts +32 -0
  23. package/cypress/tsconfig.json +20 -0
  24. package/cypress.config.js +3 -0
  25. package/dist/.tsbuildinfobuild +1 -0
  26. package/dist/AssetRegistry.d.ts +2 -2
  27. package/dist/AssetRegistry.js +2 -2
  28. package/dist/AssetRegistry.js.map +1 -1
  29. package/dist/Boot.d.ts +3 -2
  30. package/dist/Boot.js +22 -12
  31. package/dist/Boot.js.map +1 -1
  32. package/dist/CustomElementsRegistry.js +1 -1
  33. package/dist/CustomElementsRegistry.js.map +1 -1
  34. package/dist/CustomElementsScope.d.ts +4 -4
  35. package/dist/CustomElementsScope.js +2 -2
  36. package/dist/CustomElementsScope.js.map +1 -1
  37. package/dist/CustomElementsScopeUtils.d.ts +8 -1
  38. package/dist/CustomElementsScopeUtils.js +13 -1
  39. package/dist/CustomElementsScopeUtils.js.map +1 -1
  40. package/dist/DOMObserver.js.map +1 -1
  41. package/dist/Device.d.ts +17 -2
  42. package/dist/Device.js +19 -14
  43. package/dist/Device.js.map +1 -1
  44. package/dist/EventProvider.js +1 -1
  45. package/dist/EventProvider.js.map +1 -1
  46. package/dist/FeaturesRegistry.d.ts +16 -1
  47. package/dist/FeaturesRegistry.js +37 -1
  48. package/dist/FeaturesRegistry.js.map +1 -1
  49. package/dist/FontFace.js +6 -1
  50. package/dist/FontFace.js.map +1 -1
  51. package/dist/IgnoreCustomElements.d.ts +25 -0
  52. package/dist/IgnoreCustomElements.js +37 -0
  53. package/dist/IgnoreCustomElements.js.map +1 -0
  54. package/dist/InitialConfiguration.d.ts +15 -3
  55. package/dist/InitialConfiguration.js +41 -9
  56. package/dist/InitialConfiguration.js.map +1 -1
  57. package/dist/Keys.d.ts +8 -1
  58. package/dist/Keys.js +114 -106
  59. package/dist/Keys.js.map +1 -1
  60. package/dist/Location.d.ts +11 -0
  61. package/dist/Location.js +49 -0
  62. package/dist/Location.js.map +1 -0
  63. package/dist/ManagedStyles.d.ts +5 -6
  64. package/dist/ManagedStyles.js +45 -53
  65. package/dist/ManagedStyles.js.map +1 -1
  66. package/dist/MediaRange.d.ts +6 -12
  67. package/dist/MediaRange.js +21 -31
  68. package/dist/MediaRange.js.map +1 -1
  69. package/dist/PropertiesFileFormat.js.map +1 -1
  70. package/dist/Render.js.map +1 -1
  71. package/dist/RenderQueue.js.map +1 -1
  72. package/dist/Runtimes.js +11 -0
  73. package/dist/Runtimes.js.map +1 -1
  74. package/dist/SystemCSSVars.js.map +1 -1
  75. package/dist/Theming.js.map +1 -1
  76. package/dist/UI5Element.d.ts +111 -75
  77. package/dist/UI5Element.js +394 -229
  78. package/dist/UI5Element.js.map +1 -1
  79. package/dist/UI5ElementMetadata.d.ts +41 -27
  80. package/dist/UI5ElementMetadata.js +34 -72
  81. package/dist/UI5ElementMetadata.js.map +1 -1
  82. package/dist/animations/AnimationQueue.js.map +1 -1
  83. package/dist/animations/animate.js.map +1 -1
  84. package/dist/animations/scroll.js.map +1 -1
  85. package/dist/animations/slideDown.js.map +1 -1
  86. package/dist/animations/slideUp.js.map +1 -1
  87. package/dist/asset-registries/Icons.d.ts +21 -12
  88. package/dist/asset-registries/Icons.js +51 -19
  89. package/dist/asset-registries/Icons.js.map +1 -1
  90. package/dist/asset-registries/Illustrations.d.ts +2 -0
  91. package/dist/asset-registries/Illustrations.js +51 -20
  92. package/dist/asset-registries/Illustrations.js.map +1 -1
  93. package/dist/asset-registries/LocaleData.js +1 -1
  94. package/dist/asset-registries/LocaleData.js.map +1 -1
  95. package/dist/asset-registries/Themes.d.ts +5 -7
  96. package/dist/asset-registries/Themes.js +28 -13
  97. package/dist/asset-registries/Themes.js.map +1 -1
  98. package/dist/asset-registries/i18n.d.ts +2 -2
  99. package/dist/asset-registries/i18n.js +12 -5
  100. package/dist/asset-registries/i18n.js.map +1 -1
  101. package/dist/{assets-meta → asset-registries/util}/IconCollectionsAlias.d.ts +1 -2
  102. package/dist/{assets-meta → asset-registries/util}/IconCollectionsAlias.js +1 -2
  103. package/dist/asset-registries/util/IconCollectionsAlias.js.map +1 -0
  104. package/dist/asset-registries/util/IconCollectionsByTheme.d.ts +20 -0
  105. package/dist/asset-registries/util/IconCollectionsByTheme.js +42 -0
  106. package/dist/asset-registries/util/IconCollectionsByTheme.js.map +1 -0
  107. package/dist/asset-registries/util/getIconCollectionByTheme.d.ts +13 -0
  108. package/dist/asset-registries/util/getIconCollectionByTheme.js +29 -0
  109. package/dist/asset-registries/util/getIconCollectionByTheme.js.map +1 -0
  110. package/dist/config/AnimationMode.d.ts +2 -2
  111. package/dist/config/AnimationMode.js +6 -1
  112. package/dist/config/AnimationMode.js.map +1 -1
  113. package/dist/config/CalendarType.d.ts +8 -1
  114. package/dist/config/CalendarType.js +23 -2
  115. package/dist/config/CalendarType.js.map +1 -1
  116. package/dist/config/ConfigurationReset.d.ts +4 -0
  117. package/dist/config/ConfigurationReset.js +11 -0
  118. package/dist/config/ConfigurationReset.js.map +1 -0
  119. package/dist/config/Fonts.d.ts +16 -0
  120. package/dist/config/Fonts.js +30 -0
  121. package/dist/config/Fonts.js.map +1 -0
  122. package/dist/config/FormatSettings.js +4 -0
  123. package/dist/config/FormatSettings.js.map +1 -1
  124. package/dist/config/Icons.d.ts +9 -24
  125. package/dist/config/Icons.js +8 -67
  126. package/dist/config/Icons.js.map +1 -1
  127. package/dist/config/Language.d.ts +11 -2
  128. package/dist/config/Language.js +24 -4
  129. package/dist/config/Language.js.map +1 -1
  130. package/dist/config/NoConflict.js +5 -0
  131. package/dist/config/NoConflict.js.map +1 -1
  132. package/dist/config/Theme.d.ts +16 -5
  133. package/dist/config/Theme.js +39 -9
  134. package/dist/config/Theme.js.map +1 -1
  135. package/dist/config/ThemeRoot.d.ts +27 -0
  136. package/dist/config/ThemeRoot.js +61 -0
  137. package/dist/config/ThemeRoot.js.map +1 -0
  138. package/dist/config/Timezone.d.ts +17 -0
  139. package/dist/config/Timezone.js +34 -0
  140. package/dist/config/Timezone.js.map +1 -0
  141. package/dist/config/Tooltips.d.ts +19 -0
  142. package/dist/config/Tooltips.js +29 -0
  143. package/dist/config/Tooltips.js.map +1 -0
  144. package/dist/connectToComponent.d.ts +9 -0
  145. package/dist/connectToComponent.js +59 -0
  146. package/dist/connectToComponent.js.map +1 -0
  147. package/dist/converters/DOMReference.d.ts +5 -0
  148. package/dist/converters/DOMReference.js +13 -0
  149. package/dist/converters/DOMReference.js.map +1 -0
  150. package/dist/css/FontFace.css +47 -17
  151. package/dist/css/SystemCSSVars.css +0 -8
  152. package/dist/decorators/bound.d.ts +1 -0
  153. package/dist/decorators/bound.js +34 -0
  154. package/dist/decorators/bound.js.map +1 -0
  155. package/dist/decorators/customElement.d.ts +42 -3
  156. package/dist/decorators/customElement.js +26 -9
  157. package/dist/decorators/customElement.js.map +1 -1
  158. package/dist/decorators/event-strict.d.ts +15 -0
  159. package/dist/decorators/event-strict.js +26 -0
  160. package/dist/decorators/event-strict.js.map +1 -0
  161. package/dist/decorators/event.d.ts +8 -2
  162. package/dist/decorators/event.js +3 -0
  163. package/dist/decorators/event.js.map +1 -1
  164. package/dist/decorators/i18n.d.ts +17 -0
  165. package/dist/decorators/i18n.js +26 -0
  166. package/dist/decorators/i18n.js.map +1 -0
  167. package/dist/decorators/property.d.ts +1 -1
  168. package/dist/decorators/property.js +1 -1
  169. package/dist/decorators/property.js.map +1 -1
  170. package/dist/decorators/query.d.ts +25 -0
  171. package/dist/decorators/query.js +32 -0
  172. package/dist/decorators/query.js.map +1 -0
  173. package/dist/decorators/queryAll.d.ts +27 -0
  174. package/dist/decorators/queryAll.js +34 -0
  175. package/dist/decorators/queryAll.js.map +1 -0
  176. package/dist/decorators/slot.d.ts +1 -1
  177. package/dist/decorators/slot.js +2 -2
  178. package/dist/decorators/slot.js.map +1 -1
  179. package/dist/decorators.d.ts +8 -0
  180. package/dist/decorators.js +9 -0
  181. package/dist/decorators.js.map +1 -0
  182. package/dist/delegate/ItemNavigation.d.ts +9 -8
  183. package/dist/delegate/ItemNavigation.js +13 -14
  184. package/dist/delegate/ItemNavigation.js.map +1 -1
  185. package/dist/delegate/ResizeHandler.d.ts +4 -6
  186. package/dist/delegate/ResizeHandler.js +11 -11
  187. package/dist/delegate/ResizeHandler.js.map +1 -1
  188. package/dist/delegate/ScrollEnablement.js +2 -2
  189. package/dist/delegate/ScrollEnablement.js.map +1 -1
  190. package/dist/features/F6Navigation.d.ts +3 -3
  191. package/dist/features/F6Navigation.js +27 -8
  192. package/dist/features/F6Navigation.js.map +1 -1
  193. package/dist/features/InputElementsFormSupport.d.ts +15 -0
  194. package/dist/features/InputElementsFormSupport.js +39 -0
  195. package/dist/features/InputElementsFormSupport.js.map +1 -0
  196. package/dist/features/LegacyDateFormats.js.map +1 -1
  197. package/dist/features/OpenUI5Element.js.map +1 -1
  198. package/dist/features/OpenUI5Enablement.d.ts +3 -3
  199. package/dist/features/OpenUI5Enablement.js.map +1 -1
  200. package/dist/features/OpenUI5Support.d.ts +15 -6
  201. package/dist/features/OpenUI5Support.js +91 -46
  202. package/dist/features/OpenUI5Support.js.map +1 -1
  203. package/dist/features/patchPatcher.d.ts +11 -0
  204. package/dist/features/patchPatcher.js +11 -0
  205. package/dist/features/patchPatcher.js.map +1 -0
  206. package/dist/features/patchPopup.d.ts +15 -0
  207. package/dist/features/patchPopup.js +61 -0
  208. package/dist/features/patchPopup.js.map +1 -0
  209. package/dist/generated/AssetParameters.d.ts +6 -0
  210. package/dist/generated/AssetParameters.js +4 -9
  211. package/dist/generated/AssetParameters.js.map +1 -0
  212. package/dist/generated/VersionInfo.d.ts +10 -0
  213. package/dist/generated/VersionInfo.js +9 -8
  214. package/dist/generated/VersionInfo.js.map +1 -0
  215. package/dist/generated/css/BusyIndicator.css.d.ts +2 -3
  216. package/dist/generated/css/BusyIndicator.css.js +1 -6
  217. package/dist/generated/css/BusyIndicator.css.js.map +1 -1
  218. package/dist/generated/css/FontFace.css.d.ts +2 -3
  219. package/dist/generated/css/FontFace.css.js +1 -6
  220. package/dist/generated/css/FontFace.css.js.map +1 -1
  221. package/dist/generated/css/OverrideFontFace.css.d.ts +2 -3
  222. package/dist/generated/css/OverrideFontFace.css.js +1 -6
  223. package/dist/generated/css/OverrideFontFace.css.js.map +1 -1
  224. package/dist/generated/css/SystemCSSVars.css.d.ts +2 -3
  225. package/dist/generated/css/SystemCSSVars.css.js +1 -6
  226. package/dist/generated/css/SystemCSSVars.css.js.map +1 -1
  227. package/dist/getSharedResource.d.ts +1 -1
  228. package/dist/getSharedResource.js +8 -2
  229. package/dist/getSharedResource.js.map +1 -1
  230. package/dist/global.d.ts +2 -0
  231. package/dist/i18nBundle.d.ts +2 -4
  232. package/dist/i18nBundle.js +3 -5
  233. package/dist/i18nBundle.js.map +1 -1
  234. package/dist/index.d.ts +8 -0
  235. package/dist/jsx-dev-runtime.d.ts +4 -0
  236. package/dist/jsx-dev-runtime.js +43 -0
  237. package/dist/jsx-dev-runtime.js.map +1 -0
  238. package/dist/jsx-runtime.d.ts +50 -0
  239. package/dist/jsx-runtime.js +27 -0
  240. package/dist/jsx-runtime.js.map +1 -0
  241. package/dist/jsx-utils.d.ts +3 -0
  242. package/dist/jsx-utils.js +39 -0
  243. package/dist/jsx-utils.js.map +1 -0
  244. package/dist/locale/Locale.js.map +1 -1
  245. package/dist/locale/RTLAwareRegistry.d.ts +1 -1
  246. package/dist/locale/RTLAwareRegistry.js.map +1 -1
  247. package/dist/locale/applyDirection.d.ts +3 -2
  248. package/dist/locale/applyDirection.js +3 -2
  249. package/dist/locale/applyDirection.js.map +1 -1
  250. package/dist/locale/directionChange.js.map +1 -1
  251. package/dist/locale/getEffectiveDir.d.ts +1 -1
  252. package/dist/locale/getEffectiveDir.js +3 -19
  253. package/dist/locale/getEffectiveDir.js.map +1 -1
  254. package/dist/locale/getLocale.js.map +1 -1
  255. package/dist/locale/languageChange.js.map +1 -1
  256. package/dist/locale/nextFallbackLocale.js.map +1 -1
  257. package/dist/locale/normalizeLocale.js.map +1 -1
  258. package/dist/renderer/JsxRenderer.d.ts +3 -0
  259. package/dist/renderer/JsxRenderer.js +16 -0
  260. package/dist/renderer/JsxRenderer.js.map +1 -0
  261. package/dist/renderer/LitRenderer.d.ts +3 -3
  262. package/dist/renderer/LitRenderer.js +5 -10
  263. package/dist/renderer/LitRenderer.js.map +1 -1
  264. package/dist/renderer/directives/style-map.d.ts +13 -0
  265. package/dist/renderer/directives/style-map.js +59 -59
  266. package/dist/renderer/directives/style-map.js.map +1 -0
  267. package/dist/renderer/executeTemplate.d.ts +3 -4
  268. package/dist/renderer/executeTemplate.js +1 -19
  269. package/dist/renderer/executeTemplate.js.map +1 -1
  270. package/dist/sap/base/Log.js +698 -188
  271. package/dist/sap/base/assert.js +28 -1
  272. package/dist/sap/base/config/MemoryConfigurationProvider.js +20 -0
  273. package/dist/sap/base/security/URLListValidator.js +253 -6
  274. package/dist/sap/base/security/encodeCSS.js +34 -8
  275. package/dist/sap/base/security/encodeXML.js +47 -17
  276. package/dist/sap/base/security/sanitizeHTML.js +35 -13
  277. package/dist/sap/base/strings/toHex.js +27 -2
  278. package/dist/sap/base/util/now.js +24 -3
  279. package/dist/sap/base/util/uid.js +27 -0
  280. package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +113 -98
  281. package/dist/ssr-dom-shim.d.ts +1 -0
  282. package/dist/ssr-dom-shim.js +12 -0
  283. package/dist/ssr-dom-shim.js.map +1 -0
  284. package/dist/ssr-dom.d.ts +1 -0
  285. package/dist/ssr-dom.js +3 -0
  286. package/dist/ssr-dom.js.map +1 -0
  287. package/dist/theming/CustomStyle.js.map +1 -1
  288. package/dist/theming/ThemeLoaded.js.map +1 -1
  289. package/dist/theming/ThemeRegistered.d.ts +1 -2
  290. package/dist/theming/ThemeRegistered.js +1 -4
  291. package/dist/theming/ThemeRegistered.js.map +1 -1
  292. package/dist/theming/applyTheme.js +9 -9
  293. package/dist/theming/applyTheme.js.map +1 -1
  294. package/dist/theming/getConstructableStyle.d.ts +2 -2
  295. package/dist/theming/getConstructableStyle.js +3 -3
  296. package/dist/theming/getConstructableStyle.js.map +1 -1
  297. package/dist/theming/getEffectiveStyle.d.ts +1 -1
  298. package/dist/theming/getEffectiveStyle.js +5 -12
  299. package/dist/theming/getEffectiveStyle.js.map +1 -1
  300. package/dist/theming/getStylesString.js +2 -4
  301. package/dist/theming/getStylesString.js.map +1 -1
  302. package/dist/theming/getThemeDesignerTheme.js +2 -1
  303. package/dist/theming/getThemeDesignerTheme.js.map +1 -1
  304. package/dist/thirdparty/_merge.js.map +1 -1
  305. package/dist/thirdparty/isPlainObject.js.map +1 -1
  306. package/dist/thirdparty/merge.js.map +1 -1
  307. package/dist/thirdparty/preact/jsx.d.ts +2616 -0
  308. package/dist/thirdparty/preact/jsxRuntime.module.d.ts +62 -0
  309. package/dist/thirdparty/preact/jsxRuntime.module.js +2 -0
  310. package/dist/thirdparty/preact/preact.module.d.ts +398 -0
  311. package/dist/thirdparty/preact/preact.module.js +2 -0
  312. package/dist/types/AnimationMode.d.ts +0 -8
  313. package/dist/types/AnimationMode.js +0 -8
  314. package/dist/types/AnimationMode.js.map +1 -1
  315. package/dist/types/CalendarType.d.ts +0 -9
  316. package/dist/types/CalendarType.js +0 -9
  317. package/dist/types/CalendarType.js.map +1 -1
  318. package/dist/types/InvisibleMessageMode.d.ts +5 -10
  319. package/dist/types/InvisibleMessageMode.js +4 -11
  320. package/dist/types/InvisibleMessageMode.js.map +1 -1
  321. package/dist/types/ItemNavigationBehavior.d.ts +0 -6
  322. package/dist/types/ItemNavigationBehavior.js +0 -6
  323. package/dist/types/ItemNavigationBehavior.js.map +1 -1
  324. package/dist/types/MovePlacement.d.ts +20 -0
  325. package/dist/types/MovePlacement.js +22 -0
  326. package/dist/types/MovePlacement.js.map +1 -0
  327. package/dist/types/NavigationMode.d.ts +0 -8
  328. package/dist/types/NavigationMode.js +0 -8
  329. package/dist/types/NavigationMode.js.map +1 -1
  330. package/dist/types/Orientation.d.ts +16 -0
  331. package/dist/types/Orientation.js +18 -0
  332. package/dist/types/Orientation.js.map +1 -0
  333. package/dist/types/ValueState.d.ts +3 -17
  334. package/dist/types/ValueState.js +3 -17
  335. package/dist/types/ValueState.js.map +1 -1
  336. package/dist/types.d.ts +37 -14
  337. package/dist/types.js.map +1 -1
  338. package/dist/updateShadowRoot.d.ts +1 -2
  339. package/dist/updateShadowRoot.js +4 -25
  340. package/dist/updateShadowRoot.js.map +1 -1
  341. package/dist/util/{AriaLabelHelper.d.ts → AccessibilityTextsHelper.d.ts} +4 -2
  342. package/dist/util/{AriaLabelHelper.js → AccessibilityTextsHelper.js} +36 -8
  343. package/dist/util/AccessibilityTextsHelper.js.map +1 -0
  344. package/dist/util/Caret.js.map +1 -1
  345. package/dist/util/ColorConversion.d.ts +2 -1
  346. package/dist/util/ColorConversion.js +212 -197
  347. package/dist/util/ColorConversion.js.map +1 -1
  348. package/dist/util/FetchHelper.js.map +1 -1
  349. package/dist/util/FocusableElements.js +18 -15
  350. package/dist/util/FocusableElements.js.map +1 -1
  351. package/dist/util/HTMLSanitizer.js.map +1 -1
  352. package/dist/util/InvisibleMessage.js +2 -2
  353. package/dist/util/InvisibleMessage.js.map +1 -1
  354. package/dist/util/PopupUtils.d.ts +1 -3
  355. package/dist/util/PopupUtils.js +1 -15
  356. package/dist/util/PopupUtils.js.map +1 -1
  357. package/dist/util/SelectionAssistant.d.ts +12 -0
  358. package/dist/util/SelectionAssistant.js +79 -0
  359. package/dist/util/SelectionAssistant.js.map +1 -0
  360. package/dist/util/SlotsHelper.js.map +1 -1
  361. package/dist/util/StringHelper.d.ts +3 -1
  362. package/dist/util/StringHelper.js +15 -1
  363. package/dist/util/StringHelper.js.map +1 -1
  364. package/dist/util/TabbableElements.js +3 -10
  365. package/dist/util/TabbableElements.js.map +1 -1
  366. package/dist/util/arraysAreEqual.js.map +1 -1
  367. package/dist/util/clamp.js +2 -1
  368. package/dist/util/clamp.js.map +1 -1
  369. package/dist/util/createLinkInHead.d.ts +1 -1
  370. package/dist/util/createLinkInHead.js +1 -1
  371. package/dist/util/createLinkInHead.js.map +1 -1
  372. package/dist/util/debounce.js.map +1 -1
  373. package/dist/util/detectNavigatorLanguage.d.ts +2 -2
  374. package/dist/util/detectNavigatorLanguage.js +6 -1
  375. package/dist/util/detectNavigatorLanguage.js.map +1 -1
  376. package/dist/util/dragAndDrop/DragRegistry.d.ts +33 -0
  377. package/dist/util/dragAndDrop/DragRegistry.js +66 -0
  378. package/dist/util/dragAndDrop/DragRegistry.js.map +1 -0
  379. package/dist/util/dragAndDrop/findClosestPosition.d.ts +11 -0
  380. package/dist/util/dragAndDrop/findClosestPosition.js +102 -0
  381. package/dist/util/dragAndDrop/findClosestPosition.js.map +1 -0
  382. package/dist/util/dragAndDrop/handleDragOver.d.ts +16 -0
  383. package/dist/util/dragAndDrop/handleDragOver.js +42 -0
  384. package/dist/util/dragAndDrop/handleDragOver.js.map +1 -0
  385. package/dist/util/dragAndDrop/handleDrop.d.ts +5 -0
  386. package/dist/util/dragAndDrop/handleDrop.js +22 -0
  387. package/dist/util/dragAndDrop/handleDrop.js.map +1 -0
  388. package/dist/util/dragAndDrop/longDragOverHandler.d.ts +2 -0
  389. package/dist/util/dragAndDrop/longDragOverHandler.js +25 -0
  390. package/dist/util/dragAndDrop/longDragOverHandler.js.map +1 -0
  391. package/dist/util/escapeRegex.js.map +1 -1
  392. package/dist/util/fixSafariActiveState.d.ts +2 -0
  393. package/dist/util/fixSafariActiveState.js +11 -0
  394. package/dist/util/fixSafariActiveState.js.map +1 -0
  395. package/dist/util/formatMessage.js.map +1 -1
  396. package/dist/util/generateHighlightedMarkup.js.map +1 -1
  397. package/dist/util/getActiveElement.js.map +1 -1
  398. package/dist/util/getClassCopy.d.ts +142 -102
  399. package/dist/util/getClassCopy.js.map +1 -1
  400. package/dist/util/getDesigntimePropertyAsArray.d.ts +2 -2
  401. package/dist/util/getDesigntimePropertyAsArray.js +2 -1
  402. package/dist/util/getDesigntimePropertyAsArray.js.map +1 -1
  403. package/dist/util/getEffectiveContentDensity.js.map +1 -1
  404. package/dist/util/getEffectiveScrollbarStyle.d.ts +1 -1
  405. package/dist/util/getEffectiveScrollbarStyle.js +31 -1
  406. package/dist/util/getEffectiveScrollbarStyle.js.map +1 -1
  407. package/dist/util/getFastNavigationGroups.js.map +1 -1
  408. package/dist/util/getFileExtension.js.map +1 -1
  409. package/dist/util/getNormalizedTarget.js.map +1 -1
  410. package/dist/util/getSingletonElementInstance.d.ts +10 -1
  411. package/dist/util/getSingletonElementInstance.js +11 -2
  412. package/dist/util/getSingletonElementInstance.js.map +1 -1
  413. package/dist/util/hash2str.d.ts +1 -0
  414. package/dist/util/hash2str.js +14 -0
  415. package/dist/util/hash2str.js.map +1 -0
  416. package/dist/util/isElementClickable.js.map +1 -1
  417. package/dist/util/isElementHidden.js.map +1 -1
  418. package/dist/util/isElementInView.js.map +1 -1
  419. package/dist/util/isElementTabbable.js +2 -2
  420. package/dist/util/isElementTabbable.js.map +1 -1
  421. package/dist/util/isValidPropertyName.js.map +1 -1
  422. package/dist/util/toLowercaseEnumValue.d.ts +3 -0
  423. package/dist/util/toLowercaseEnumValue.js +4 -0
  424. package/dist/util/toLowercaseEnumValue.js.map +1 -0
  425. package/dist/util/whenDOMReady.js.map +1 -1
  426. package/dist/util/willShowContent.js.map +1 -1
  427. package/dist/validateThemeRoot.js +15 -13
  428. package/dist/validateThemeRoot.js.map +1 -1
  429. package/index.js +205 -1
  430. package/package-scripts.cjs +74 -0
  431. package/package.json +31 -9
  432. package/src/css/FontFace.css +47 -17
  433. package/src/css/SystemCSSVars.css +0 -8
  434. package/src/thirdparty/preact/jsxRuntime.module.js +2 -0
  435. package/src/thirdparty/preact/preact.module.js +2 -0
  436. package/src/thirdparty/preact/version.txt +1 -0
  437. package/tsconfig.json +19 -12
  438. package/.eslintignore +0 -16
  439. package/bundle.esm.js +0 -62
  440. package/config/wdio.conf.js +0 -1
  441. package/dist/CSP.d.ts +0 -30
  442. package/dist/CSP.js +0 -51
  443. package/dist/CSP.js.map +0 -1
  444. package/dist/MarkedEvents.d.ts +0 -9
  445. package/dist/MarkedEvents.js +0 -15
  446. package/dist/MarkedEvents.js.map +0 -1
  447. package/dist/StaticArea.d.ts +0 -0
  448. package/dist/StaticArea.js +0 -6
  449. package/dist/StaticArea.js.map +0 -1
  450. package/dist/StaticAreaItem.d.ts +0 -36
  451. package/dist/StaticAreaItem.js +0 -99
  452. package/dist/StaticAreaItem.js.map +0 -1
  453. package/dist/api.json +0 -1
  454. package/dist/assets/Boot.6335ce08.css +0 -1
  455. package/dist/assets/Boot.e74b2a49.js +0 -9
  456. package/dist/assets/bundle.esm.abaf0306.js +0 -52
  457. package/dist/assets-meta/IconCollectionsAlias.js.map +0 -1
  458. package/dist/config/RTL.d.ts +0 -7
  459. package/dist/config/RTL.js +0 -37
  460. package/dist/config/RTL.js.map +0 -1
  461. package/dist/config/ThemeRoots.d.ts +0 -4
  462. package/dist/config/ThemeRoots.js +0 -28
  463. package/dist/config/ThemeRoots.js.map +0 -1
  464. package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.js +0 -11
  465. package/dist/theming/getEffectiveLinksHrefs.d.ts +0 -3
  466. package/dist/theming/getEffectiveLinksHrefs.js +0 -17
  467. package/dist/theming/getEffectiveLinksHrefs.js.map +0 -1
  468. package/dist/theming/preloadLinks.d.ts +0 -3
  469. package/dist/theming/preloadLinks.js +0 -19
  470. package/dist/theming/preloadLinks.js.map +0 -1
  471. package/dist/types/CSSColor.d.ts +0 -15
  472. package/dist/types/CSSColor.js +0 -18
  473. package/dist/types/CSSColor.js.map +0 -1
  474. package/dist/types/DOMReference.d.ts +0 -17
  475. package/dist/types/DOMReference.js +0 -25
  476. package/dist/types/DOMReference.js.map +0 -1
  477. package/dist/types/DataType.d.ts +0 -25
  478. package/dist/types/DataType.js +0 -44
  479. package/dist/types/DataType.js.map +0 -1
  480. package/dist/types/Float.d.ts +0 -17
  481. package/dist/types/Float.js +0 -21
  482. package/dist/types/Float.js.map +0 -1
  483. package/dist/types/Integer.d.ts +0 -17
  484. package/dist/types/Integer.js +0 -21
  485. package/dist/types/Integer.js.map +0 -1
  486. package/dist/util/AriaLabelHelper.js.map +0 -1
  487. package/dist/util/createStyleInHead.d.ts +0 -8
  488. package/dist/util/createStyleInHead.js +0 -18
  489. package/dist/util/createStyleInHead.js.map +0 -1
  490. package/lib/generate-asset-parameters/index.js +0 -25
  491. package/lib/generate-styles/index.js +0 -31
  492. package/lib/generate-version-info/index.js +0 -32
  493. package/package-scripts.js +0 -71
  494. package/src/AssetRegistry.ts +0 -11
  495. package/src/Boot.ts +0 -85
  496. package/src/CSP.ts +0 -66
  497. package/src/CustomElementsRegistry.ts +0 -98
  498. package/src/CustomElementsScope.ts +0 -33
  499. package/src/CustomElementsScopeUtils.ts +0 -115
  500. package/src/DOMObserver.ts +0 -28
  501. package/src/Device.ts +0 -203
  502. package/src/EventProvider.ts +0 -87
  503. package/src/FeaturesRegistry.ts +0 -14
  504. package/src/FontFace.ts +0 -31
  505. package/src/InitialConfiguration.ts +0 -207
  506. package/src/Keys.ts +0 -295
  507. package/src/ManagedStyles.ts +0 -92
  508. package/src/MarkedEvents.ts +0 -20
  509. package/src/MediaRange.ts +0 -110
  510. package/src/PropertiesFileFormat.ts +0 -95
  511. package/src/Render.ts +0 -180
  512. package/src/RenderQueue.ts +0 -71
  513. package/src/Runtimes.ts +0 -114
  514. package/src/StaticArea.ts +0 -3
  515. package/src/StaticAreaItem.ts +0 -113
  516. package/src/SystemCSSVars.ts +0 -10
  517. package/src/Theming.ts +0 -4
  518. package/src/UI5Element.ts +0 -1159
  519. package/src/UI5ElementMetadata.ts +0 -389
  520. package/src/animations/AnimationQueue.ts +0 -43
  521. package/src/animations/animate.ts +0 -64
  522. package/src/animations/scroll.ts +0 -21
  523. package/src/animations/slideDown.ts +0 -72
  524. package/src/animations/slideUp.ts +0 -67
  525. package/src/asset-registries/Icons.ts +0 -161
  526. package/src/asset-registries/Illustrations.ts +0 -75
  527. package/src/asset-registries/LocaleData.ts +0 -172
  528. package/src/asset-registries/Themes.ts +0 -74
  529. package/src/asset-registries/i18n.ts +0 -118
  530. package/src/assets-meta/IconCollectionsAlias.ts +0 -41
  531. package/src/config/AnimationMode.ts +0 -33
  532. package/src/config/CalendarType.ts +0 -23
  533. package/src/config/FormatSettings.ts +0 -35
  534. package/src/config/Icons.ts +0 -126
  535. package/src/config/Language.ts +0 -72
  536. package/src/config/NoConflict.ts +0 -67
  537. package/src/config/RTL.ts +0 -45
  538. package/src/config/Theme.ts +0 -64
  539. package/src/config/ThemeRoots.ts +0 -41
  540. package/src/decorators/customElement.ts +0 -57
  541. package/src/decorators/event.ts +0 -28
  542. package/src/decorators/property.ts +0 -30
  543. package/src/decorators/slot.ts +0 -49
  544. package/src/delegate/ItemNavigation.ts +0 -393
  545. package/src/delegate/ResizeHandler.ts +0 -100
  546. package/src/delegate/ScrollEnablement.ts +0 -224
  547. package/src/features/F6Navigation.ts +0 -195
  548. package/src/features/LegacyDateFormats.ts +0 -40
  549. package/src/features/OpenUI5Element.ts +0 -11
  550. package/src/features/OpenUI5Enablement.ts +0 -117
  551. package/src/features/OpenUI5Support.ts +0 -153
  552. package/src/generated/css/BusyIndicator.css.ts +0 -9
  553. package/src/generated/css/FontFace.css.ts +0 -9
  554. package/src/generated/css/OverrideFontFace.css.ts +0 -9
  555. package/src/generated/css/SystemCSSVars.css.ts +0 -9
  556. package/src/getSharedResource.ts +0 -39
  557. package/src/global.d.ts +0 -38
  558. package/src/i18nBundle.ts +0 -108
  559. package/src/locale/Locale.ts +0 -101
  560. package/src/locale/RTLAwareRegistry.ts +0 -16
  561. package/src/locale/applyDirection.ts +0 -18
  562. package/src/locale/directionChange.ts +0 -34
  563. package/src/locale/getEffectiveDir.ts +0 -28
  564. package/src/locale/getLocale.ts +0 -46
  565. package/src/locale/languageChange.ts +0 -24
  566. package/src/locale/nextFallbackLocale.ts +0 -28
  567. package/src/locale/normalizeLocale.ts +0 -56
  568. package/src/renderer/LitRenderer.ts +0 -60
  569. package/src/renderer/directives/style-map.js +0 -72
  570. package/src/renderer/executeTemplate.ts +0 -40
  571. package/src/theming/CustomStyle.ts +0 -64
  572. package/src/theming/ThemeLoaded.ts +0 -24
  573. package/src/theming/ThemeRegistered.ts +0 -24
  574. package/src/theming/applyTheme.ts +0 -92
  575. package/src/theming/getConstructableStyle.ts +0 -31
  576. package/src/theming/getEffectiveLinksHrefs.ts +0 -26
  577. package/src/theming/getEffectiveStyle.ts +0 -41
  578. package/src/theming/getStylesString.ts +0 -15
  579. package/src/theming/getThemeDesignerTheme.ts +0 -101
  580. package/src/theming/preloadLinks.ts +0 -24
  581. package/src/thirdparty/_merge.ts +0 -32
  582. package/src/thirdparty/isPlainObject.ts +0 -18
  583. package/src/thirdparty/merge.ts +0 -5
  584. package/src/types/AnimationMode.ts +0 -33
  585. package/src/types/CSSColor.ts +0 -19
  586. package/src/types/CalendarType.ts +0 -38
  587. package/src/types/DOMReference.ts +0 -28
  588. package/src/types/DataType.ts +0 -51
  589. package/src/types/Float.ts +0 -24
  590. package/src/types/Integer.ts +0 -24
  591. package/src/types/InvisibleMessageMode.ts +0 -27
  592. package/src/types/ItemNavigationBehavior.ts +0 -26
  593. package/src/types/NavigationMode.ts +0 -33
  594. package/src/types/ValueState.ts +0 -47
  595. package/src/types.ts +0 -30
  596. package/src/updateShadowRoot.ts +0 -42
  597. package/src/util/AriaLabelHelper.ts +0 -218
  598. package/src/util/Caret.ts +0 -28
  599. package/src/util/ColorConversion.ts +0 -399
  600. package/src/util/FetchHelper.ts +0 -31
  601. package/src/util/FocusableElements.ts +0 -92
  602. package/src/util/HTMLSanitizer.ts +0 -9
  603. package/src/util/InvisibleMessage.ts +0 -69
  604. package/src/util/PopupUtils.ts +0 -112
  605. package/src/util/SlotsHelper.ts +0 -39
  606. package/src/util/StringHelper.ts +0 -26
  607. package/src/util/TabbableElements.ts +0 -70
  608. package/src/util/arraysAreEqual.ts +0 -15
  609. package/src/util/clamp.ts +0 -12
  610. package/src/util/createLinkInHead.ts +0 -25
  611. package/src/util/createStyleInHead.ts +0 -20
  612. package/src/util/debounce.ts +0 -18
  613. package/src/util/detectNavigatorLanguage.ts +0 -13
  614. package/src/util/escapeRegex.ts +0 -11
  615. package/src/util/formatMessage.ts +0 -24
  616. package/src/util/generateHighlightedMarkup.ts +0 -43
  617. package/src/util/getActiveElement.ts +0 -11
  618. package/src/util/getClassCopy.ts +0 -12
  619. package/src/util/getDesigntimePropertyAsArray.ts +0 -4
  620. package/src/util/getEffectiveContentDensity.ts +0 -5
  621. package/src/util/getEffectiveScrollbarStyle.ts +0 -5
  622. package/src/util/getFastNavigationGroups.ts +0 -63
  623. package/src/util/getFileExtension.ts +0 -21
  624. package/src/util/getNormalizedTarget.ts +0 -16
  625. package/src/util/getSingletonElementInstance.ts +0 -13
  626. package/src/util/isElementClickable.ts +0 -19
  627. package/src/util/isElementHidden.ts +0 -9
  628. package/src/util/isElementInView.ts +0 -15
  629. package/src/util/isElementTabbable.ts +0 -37
  630. package/src/util/isValidPropertyName.ts +0 -29
  631. package/src/util/whenDOMReady.ts +0 -13
  632. package/src/util/willShowContent.ts +0 -7
  633. package/src/validateThemeRoot.ts +0 -58
  634. package/used-modules.txt +0 -10
package/CHANGELOG.md CHANGED
@@ -3,6 +3,1678 @@
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
+ # [2.6.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.5...v2.6.0) (2025-01-07)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-base
9
+
10
+
11
+
12
+
13
+
14
+ # [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)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **f6navigation:** skip hidden elements ([#10325](https://github.com/SAP/ui5-webcomponents/issues/10325)) ([374d4d8](https://github.com/SAP/ui5-webcomponents/commit/374d4d82239f1309231c8516c20be8c160e81e40)), closes [#10236](https://github.com/SAP/ui5-webcomponents/issues/10236)
20
+ * **framework:** getComponentFeature can return undefined ([#10456](https://github.com/SAP/ui5-webcomponents/issues/10456)) ([7da765c](https://github.com/SAP/ui5-webcomponents/commit/7da765c8c7f3831e25bffa557dd059e819be30ba))
21
+ * remove dependencies for TSX components and fix features ([#10449](https://github.com/SAP/ui5-webcomponents/issues/10449)) ([a2b5f6f](https://github.com/SAP/ui5-webcomponents/commit/a2b5f6fb768499a8b757a9b7abad5f19033a33a7))
22
+
23
+
24
+
25
+
26
+
27
+ # [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)
28
+
29
+ **Note:** Version bump only for package @ui5/webcomponents-base
30
+
31
+
32
+
33
+
34
+
35
+ # [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)
36
+
37
+
38
+ ### Bug Fixes
39
+
40
+ * custom theme detection ([#10410](https://github.com/SAP/ui5-webcomponents/issues/10410)) ([303344b](https://github.com/SAP/ui5-webcomponents/commit/303344bc22dbe5a461b77d752b11016cbbe137b1))
41
+
42
+
43
+
44
+
45
+
46
+ # [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)
47
+
48
+
49
+ ### Features
50
+
51
+ * **ui5-color-palette:** set selected color to inner color picker ([#10276](https://github.com/SAP/ui5-webcomponents/issues/10276)) ([7a152a1](https://github.com/SAP/ui5-webcomponents/commit/7a152a1dc0defcb031d859012f4310ca5c52bee4)), closes [#8772](https://github.com/SAP/ui5-webcomponents/issues/8772)
52
+
53
+
54
+
55
+
56
+
57
+ # [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)
58
+
59
+ **Note:** Version bump only for package @ui5/webcomponents-base
60
+
61
+
62
+
63
+
64
+
65
+ # [2.6.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0...v2.6.0-rc.0) (2024-12-12)
66
+
67
+
68
+ ### Features
69
+
70
+ * **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))
71
+ * **ui5-table:** implement drag and drop ([#9955](https://github.com/SAP/ui5-webcomponents/issues/9955)) ([9f27a51](https://github.com/SAP/ui5-webcomponents/commit/9f27a512255f6e168d783cfed8b60d578030b581)), closes [#7240](https://github.com/SAP/ui5-webcomponents/issues/7240)
72
+
73
+
74
+
75
+
76
+
77
+ # [2.5.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.3...v2.5.0) (2024-12-05)
78
+
79
+ **Note:** Version bump only for package @ui5/webcomponents-base
80
+
81
+
82
+
83
+
84
+
85
+ # [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)
86
+
87
+
88
+ ### Features
89
+
90
+ * **framework:** add strict event type checking ([#10235](https://github.com/SAP/ui5-webcomponents/issues/10235)) ([4ff8ab7](https://github.com/SAP/ui5-webcomponents/commit/4ff8ab7c34db5058b92511767be1b96c69a91cb5))
91
+
92
+
93
+
94
+
95
+
96
+ # [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)
97
+
98
+ **Note:** Version bump only for package @ui5/webcomponents-base
99
+
100
+
101
+
102
+
103
+
104
+ # [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)
105
+
106
+ **Note:** Version bump only for package @ui5/webcomponents-base
107
+
108
+
109
+
110
+
111
+
112
+ # [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)
113
+
114
+
115
+ ### Features
116
+
117
+ * **ui5-form:** update to latest accessibility spec ([#10152](https://github.com/SAP/ui5-webcomponents/issues/10152)) ([4382d4e](https://github.com/SAP/ui5-webcomponents/commit/4382d4e280ffcf01a924163b9b719887c17f529a)), closes [#9952](https://github.com/SAP/ui5-webcomponents/issues/9952)
118
+ * **ui5-list, ui5-tree:** support accessible description ([#10131](https://github.com/SAP/ui5-webcomponents/issues/10131)) ([45f0ffe](https://github.com/SAP/ui5-webcomponents/commit/45f0ffeafb2da0ffcaf425649c7440b604e359a3)), closes [#6445](https://github.com/SAP/ui5-webcomponents/issues/6445)
119
+
120
+
121
+
122
+
123
+
124
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
125
+
126
+ **Note:** Version bump only for package @ui5/webcomponents-base
127
+
128
+
129
+
130
+
131
+
132
+ # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
133
+
134
+ **Note:** Version bump only for package @ui5/webcomponents-base
135
+
136
+
137
+
138
+
139
+
140
+ # [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)
141
+
142
+ **Note:** Version bump only for package @ui5/webcomponents-base
143
+
144
+
145
+
146
+
147
+
148
+ # [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)
149
+
150
+ **Note:** Version bump only for package @ui5/webcomponents-base
151
+
152
+
153
+
154
+
155
+
156
+ # [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)
157
+
158
+
159
+ ### Bug Fixes
160
+
161
+ * boot sequence ([#10042](https://github.com/SAP/ui5-webcomponents/issues/10042)) ([106373d](https://github.com/SAP/ui5-webcomponents/commit/106373d4585dd2c5fa458ffccd513596289a2f79))
162
+
163
+
164
+
165
+
166
+
167
+ # [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)
168
+
169
+
170
+ ### Bug Fixes
171
+
172
+ * **framework:** always fire languageChange regardless of boot status ([#10029](https://github.com/SAP/ui5-webcomponents/issues/10029)) ([9261ac9](https://github.com/SAP/ui5-webcomponents/commit/9261ac93211ac431b9c1d95d255a6bb8bc3ff815))
173
+ * **tools:** revert tsconfig moduleResolution to node ([#10014](https://github.com/SAP/ui5-webcomponents/issues/10014)) ([0724b92](https://github.com/SAP/ui5-webcomponents/commit/0724b9289ad04f88972d4978ed37e76f13abca13))
174
+
175
+
176
+
177
+
178
+
179
+ # [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)
180
+
181
+
182
+ ### Features
183
+
184
+ * 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))
185
+
186
+
187
+
188
+
189
+
190
+ ## [2.3.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0...v2.3.1-rc.0) (2024-10-03)
191
+
192
+ **Note:** Version bump only for package @ui5/webcomponents-base
193
+
194
+
195
+
196
+
197
+
198
+ # [2.3.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.3...v2.3.0) (2024-10-02)
199
+
200
+
201
+ ### Bug Fixes
202
+
203
+ * patchPopup now assumes that content may be null ([#9950](https://github.com/SAP/ui5-webcomponents/issues/9950)) ([3330f01](https://github.com/SAP/ui5-webcomponents/commit/3330f01297b8842a3fb8fc5547982d4d682075ad))
204
+
205
+
206
+ ### Features
207
+
208
+ * **framework:** introduce the `i18n` decorator and the `cldr` option ([#9897](https://github.com/SAP/ui5-webcomponents/issues/9897)) ([1f29d23](https://github.com/SAP/ui5-webcomponents/commit/1f29d231fe892a850871e7f73afca93c730ecffd))
209
+
210
+
211
+
212
+
213
+
214
+ # [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)
215
+
216
+
217
+ ### Bug Fixes
218
+
219
+ * patchPopup now correctly handles getContent ([#9913](https://github.com/SAP/ui5-webcomponents/issues/9913)) ([84f4cfa](https://github.com/SAP/ui5-webcomponents/commit/84f4cfa98d7486d9a462677a2833a74270848338))
220
+ * **ui5-color-picker:** add missing hex value to RGBtoHEX method ([#9906](https://github.com/SAP/ui5-webcomponents/issues/9906)) ([90acd68](https://github.com/SAP/ui5-webcomponents/commit/90acd68d5a143f31bb28ca0b0d795a9108e8e93f))
221
+
222
+
223
+
224
+
225
+
226
+ # [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)
227
+
228
+
229
+ ### Features
230
+
231
+ * **selectionAssistant:** introduce SelectionAssistant ([#9797](https://github.com/SAP/ui5-webcomponents/issues/9797)) ([de59eac](https://github.com/SAP/ui5-webcomponents/commit/de59eac1df149caa7541a3bbd3ddad5ae2c298a6))
232
+
233
+
234
+
235
+
236
+
237
+ # [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)
238
+
239
+
240
+ ### Bug Fixes
241
+
242
+ * **f6 navigation:** work properly when multiple runtimes ([#9810](https://github.com/SAP/ui5-webcomponents/issues/9810)) ([1ebf7db](https://github.com/SAP/ui5-webcomponents/commit/1ebf7db3faa8a2be1d35347407a365f5cf3004de))
243
+ * **ui5-tabcontainer:** fix drag and drop issue with home key and fixеd tabs ([#9812](https://github.com/SAP/ui5-webcomponents/issues/9812)) ([485fd0d](https://github.com/SAP/ui5-webcomponents/commit/485fd0dd1205543e50e7db011d6c5a7bedbe5c68))
244
+
245
+
246
+
247
+
248
+
249
+ # [2.3.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0...v2.3.0-rc.0) (2024-09-05)
250
+
251
+
252
+ ### Features
253
+
254
+ * **ui5-tabcontainer:** implement tabs reordering with the keyboard ([#9585](https://github.com/SAP/ui5-webcomponents/issues/9585)) ([936f2fc](https://github.com/SAP/ui5-webcomponents/commit/936f2fc9145217ae5cd4e790c64e3fe75afbfdee))
255
+
256
+
257
+
258
+
259
+
260
+ # [2.2.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.3...v2.2.0) (2024-09-03)
261
+
262
+
263
+ ### Bug Fixes
264
+
265
+ * **ui5-*:** make ui5-content-native-scrollbar to take effect ([#9751](https://github.com/SAP/ui5-webcomponents/issues/9751)) ([a4b4028](https://github.com/SAP/ui5-webcomponents/commit/a4b4028e344fb9546687cec0efbed065dde47b29)), closes [#9720](https://github.com/SAP/ui5-webcomponents/issues/9720) [#9695](https://github.com/SAP/ui5-webcomponents/issues/9695)
266
+
267
+
268
+
269
+
270
+
271
+ # [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)
272
+
273
+
274
+ ### Bug Fixes
275
+
276
+ * **ui5-breadcrumbs:** current link aria-current ([#9668](https://github.com/SAP/ui5-webcomponents/issues/9668)) ([87732a1](https://github.com/SAP/ui5-webcomponents/commit/87732a151562d6e387dcf85baefca23b265774ac))
277
+
278
+
279
+
280
+
281
+
282
+ # [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)
283
+
284
+
285
+ ### Bug Fixes
286
+
287
+ * **framework:** attach element internals only once ([#9714](https://github.com/SAP/ui5-webcomponents/issues/9714)) ([fce5d11](https://github.com/SAP/ui5-webcomponents/commit/fce5d117639e8ea7a042713a712452c451b4cb9b)), closes [#9713](https://github.com/SAP/ui5-webcomponents/issues/9713)
288
+
289
+
290
+
291
+
292
+
293
+ # [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)
294
+
295
+ **Note:** Version bump only for package @ui5/webcomponents-base
296
+
297
+
298
+
299
+
300
+
301
+ # [2.2.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.1...v2.2.0-rc.0) (2024-08-08)
302
+
303
+
304
+ ### Bug Fixes
305
+
306
+ * **core:** invalidation no longer leaves component broken after error in onBeforeRendering ([#9635](https://github.com/SAP/ui5-webcomponents/issues/9635)) ([136bd5a](https://github.com/SAP/ui5-webcomponents/commit/136bd5acef5dcf25bb3ec9f46b66e33aa819f49a))
307
+ * stop attribute change calling property setter when coming from a setter ([#9592](https://github.com/SAP/ui5-webcomponents/issues/9592)) ([95e61dd](https://github.com/SAP/ui5-webcomponents/commit/95e61ddc097658c49509889c8454901a8a8ef0b4))
308
+
309
+
310
+ ### Features
311
+
312
+ * add `enableDefaultTooltips ` config option ([#9559](https://github.com/SAP/ui5-webcomponents/issues/9559)) ([a672788](https://github.com/SAP/ui5-webcomponents/commit/a6727880e9fc648a8999643a2d2dac4eaff5c58c)), closes [#9494](https://github.com/SAP/ui5-webcomponents/issues/9494)
313
+ * **framework:** add `[@query](https://github.com/query)(All)` decorators ([#9567](https://github.com/SAP/ui5-webcomponents/issues/9567)) ([242024c](https://github.com/SAP/ui5-webcomponents/commit/242024c38a0703809840cd0c9ef9e38a4b2613c8)), closes [#6743](https://github.com/SAP/ui5-webcomponents/issues/6743)
314
+
315
+
316
+
317
+
318
+
319
+ ## [2.1.1](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0...v2.1.1) (2024-08-02)
320
+
321
+ **Note:** Version bump only for package @ui5/webcomponents-base
322
+
323
+
324
+
325
+
326
+
327
+ # [2.1.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.3...v2.1.0) (2024-08-02)
328
+
329
+
330
+ ### Features
331
+
332
+ * **core:** fire PascalCase events for easier react usage ([#9608](https://github.com/SAP/ui5-webcomponents/issues/9608)) ([43e28fa](https://github.com/SAP/ui5-webcomponents/commit/43e28fa5da370bde06cc23d78a3508321673ca54))
333
+
334
+
335
+
336
+
337
+
338
+ # [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)
339
+
340
+
341
+ ### Features
342
+
343
+ * enhance feature initialization ([#9479](https://github.com/SAP/ui5-webcomponents/issues/9479)) ([d55eba8](https://github.com/SAP/ui5-webcomponents/commit/d55eba85ff4860bacaff1988c5e1aa56eaa4a225)), closes [#8175](https://github.com/SAP/ui5-webcomponents/issues/8175)
344
+
345
+
346
+
347
+
348
+
349
+ # [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)
350
+
351
+
352
+ ### Features
353
+
354
+ * **framework:** add configuration to prevent font loading ([#9483](https://github.com/SAP/ui5-webcomponents/issues/9483)) ([d188638](https://github.com/SAP/ui5-webcomponents/commit/d18863868dafc6d96193b11a410ab295a783bc16))
355
+
356
+
357
+
358
+
359
+
360
+ # [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)
361
+
362
+ **Note:** Version bump only for package @ui5/webcomponents-base
363
+
364
+
365
+
366
+
367
+
368
+ # [2.1.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.1...v2.1.0-rc.0) (2024-07-11)
369
+
370
+
371
+ ### Features
372
+
373
+ * **ui5-menu-item:** add accessibility attributes ([#9333](https://github.com/SAP/ui5-webcomponents/issues/9333)) ([74782e6](https://github.com/SAP/ui5-webcomponents/commit/74782e63e36ee71483617a5d5e204cb30cd589bc))
374
+
375
+
376
+
377
+
378
+
379
+ ## [2.0.1](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0...v2.0.1) (2024-07-05)
380
+
381
+ **Note:** Version bump only for package @ui5/webcomponents-base
382
+
383
+
384
+
385
+
386
+
387
+ # [2.0.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.6...v2.0.0) (2024-07-03)
388
+
389
+
390
+ ### Bug Fixes
391
+
392
+ * **UI5Element:** component invalidated when children change slots ([#9104](https://github.com/SAP/ui5-webcomponents/issues/9104)) ([a882721](https://github.com/SAP/ui5-webcomponents/commit/a8827219d52c67158e29aa616454bceadaa7128a))
393
+
394
+
395
+ ### Features
396
+
397
+ * add property initializers ([#8846](https://github.com/SAP/ui5-webcomponents/issues/8846)) ([eef0cc9](https://github.com/SAP/ui5-webcomponents/commit/eef0cc9b663fda6268b98e516ed46439435fa2b0))
398
+ * **UI5Element:** better support for kebab-case slots ([#9106](https://github.com/SAP/ui5-webcomponents/issues/9106)) ([e1dd34c](https://github.com/SAP/ui5-webcomponents/commit/e1dd34c39dd7a97fac4fde6bdb342c7874c48d9c))
399
+
400
+
401
+ ### BREAKING CHANGES
402
+
403
+ * @property decorator must be adapted according to new type parameter
404
+
405
+
406
+
407
+
408
+
409
+ # [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)
410
+
411
+
412
+ ### Bug Fixes
413
+
414
+ * **framework:** set dataTransfer.effectAllowed only for UI5 elements ([#9136](https://github.com/SAP/ui5-webcomponents/issues/9136)) ([28f6a2d](https://github.com/SAP/ui5-webcomponents/commit/28f6a2d25c2d0c49ace86a0be4fdfb9026f94be2))
415
+ * **ui5-dialog:** fix focusing when dialog is open from OpenUI5 dialog ([#9183](https://github.com/SAP/ui5-webcomponents/issues/9183)) ([d067e13](https://github.com/SAP/ui5-webcomponents/commit/d067e139d8674413369a3e8b078ce6ca67415e90))
416
+
417
+
418
+ ### Features
419
+
420
+ * **ui5-grid:** implementing new grid component ([#8362](https://github.com/SAP/ui5-webcomponents/issues/8362)) ([04d291d](https://github.com/SAP/ui5-webcomponents/commit/04d291dc368b884d9001e875441c54cf56e21d1a))
421
+
422
+
423
+
424
+
425
+
426
+ # [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)
427
+
428
+ **Note:** Version bump only for package @ui5/webcomponents-base
429
+
430
+
431
+
432
+
433
+
434
+ # [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)
435
+
436
+
437
+ ### Bug Fixes
438
+
439
+ * register runtime in SSR usage ([#9013](https://github.com/SAP/ui5-webcomponents/issues/9013)) ([54db283](https://github.com/SAP/ui5-webcomponents/commit/54db283ac71c8aec34f7ce0fe7ac787838aab021))
440
+ * **ui5-*:** Make setAnimationMode() properly change modes ([#8965](https://github.com/SAP/ui5-webcomponents/issues/8965)) ([9f5d276](https://github.com/SAP/ui5-webcomponents/commit/9f5d2760a8cfa95ce3212480e28e7b7a6ea2d8a9)), closes [#8964](https://github.com/SAP/ui5-webcomponents/issues/8964)
441
+
442
+
443
+ ### Features
444
+
445
+ * **ui5-*:** integrate element internals in input components ([#8685](https://github.com/SAP/ui5-webcomponents/issues/8685)) ([c8e68d5](https://github.com/SAP/ui5-webcomponents/commit/c8e68d59e51c6ab56328062ac8bce7889b30062d)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
446
+ * **ui5-li-notification:** implement new design ([#8426](https://github.com/SAP/ui5-webcomponents/issues/8426)) ([e451cdc](https://github.com/SAP/ui5-webcomponents/commit/e451cdc3709553dcb780f637463dc1b29e8f2971))
447
+ * **UI5Element:** invalidateOnChildChange works for slots ([#9021](https://github.com/SAP/ui5-webcomponents/issues/9021)) ([ec3ead7](https://github.com/SAP/ui5-webcomponents/commit/ec3ead7743993aaad6cb70faff9edf4bae4ef0f9))
448
+
449
+
450
+ ### BREAKING CHANGES
451
+
452
+ * **ui5-*:** The `features/InputElementsFormSupport.js` feature has been deleted and now, form elements works natively in form elements.
453
+
454
+
455
+
456
+
457
+
458
+ # [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)
459
+
460
+
461
+ ### chore
462
+
463
+ * **Icons:** make pathData async ([#8785](https://github.com/SAP/ui5-webcomponents/issues/8785)) ([0549dc9](https://github.com/SAP/ui5-webcomponents/commit/0549dc95edae139f7a4f9efbbc7170922b3ab6cb))
464
+
465
+
466
+ ### Code Refactoring
467
+
468
+ * rename ValueState values ([#8864](https://github.com/SAP/ui5-webcomponents/issues/8864)) ([ef9304d](https://github.com/SAP/ui5-webcomponents/commit/ef9304da4b1446178b1b2bfa737d9867461cc4bc))
469
+ * **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)
470
+ * **ui5-*:** use unified API to define a11y attributes via `accessibilityAttributes` ([#8810](https://github.com/SAP/ui5-webcomponents/issues/8810)) ([49d587c](https://github.com/SAP/ui5-webcomponents/commit/49d587c73120a5511a34e61be949018605f49acd))
471
+
472
+
473
+ ### BREAKING CHANGES
474
+
475
+ * **ui5-*:** FlexibleLayout's `accessibilityTexts` and `accessibilityRoles` properties are removed. If you have previously used the `accessibilityTexts` or `accessibilityRoles` properties:
476
+ ```js
477
+ fcl.accessibilityTexts = {
478
+ startColumnAccessibleName: "Products list",
479
+ midColumnAccessibleName: "Product information",
480
+ endColumnAccessibleName: "Product detailed information",
481
+ startArrowLeftText: "Collapse products list",
482
+ startArrowRightText: "Expand products list",
483
+ endArrowLeftText: "Expand product detailed information",
484
+ endArrowRightText: "Collapse product detailed information",
485
+ startArrowContainerAccessibleName: "Start Arrow Container",
486
+ endArrowContainerAccessibleName: "End Arrow Container",
487
+ }
488
+
489
+ fcl.accessibilityRoles = {
490
+ startColumnRole: "complementary",
491
+ startArrowContainerRole: "navigation",
492
+ midColumnRole: "main",
493
+ endArrowContainerRole: "navigation",
494
+ endColumnRole: "complementary".
495
+ }
496
+ ```
497
+ Now use `accessibilityAttributes` instead:
498
+ ```js
499
+ fcl.accessibilityAttributes = {
500
+ startColumn: {
501
+ role: "complementary",
502
+ name: "Products list",
503
+ },
504
+ midColumn: {
505
+ role: "main",
506
+ name: "Product information",
507
+ },
508
+ endColumn: {
509
+ role: "complementary",
510
+ name: "Product detailed information",
511
+ },
512
+ startArrowLeft: {
513
+ name: "Collapse products list",
514
+ },
515
+ startArrowRight: {
516
+ name: "Expand products list",
517
+ },
518
+ endArrowLeft: {
519
+ name: "Expand product detailed information",
520
+ },
521
+ endArrowRight: {
522
+ name: "Collapse product detailed information",
523
+ },
524
+ startArrowContainer: {
525
+ role: "navigation",
526
+ name: "Start Arrow Container",
527
+ },
528
+ endArrowContainer: {
529
+ role: "navigation",
530
+ name: "End Arrow Container",
531
+ },
532
+ };
533
+ ```
534
+
535
+ ShellBar's `accessibilityTexts` and `accessibilityRoles` properties are removed. If you have previously used the `accessibilityTexts` or `accessibilityRoles` properties:
536
+ ```js
537
+ shellbar.accessibilityTexts = {
538
+ profileButtonTitle: "John Dow",
539
+ logoTitle: "Custom logo title",
540
+ }
541
+
542
+ shellbar.accessibilityRoles = {
543
+ logoRole: "link"
544
+ };
545
+ ```
546
+ Now use `accessibilityAttributes` instead:
547
+ ```js
548
+ shellbar.accessibilityAttributes = {
549
+ profile: {
550
+ name: "John Dow",
551
+ },
552
+ logo: {
553
+ role: "link"
554
+ name: "Custom logo title"
555
+ },
556
+ };
557
+ ```
558
+
559
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
560
+
561
+
562
+ * If you previously used ValueState.Warning, ValueState.Error or ValueState.Success, start using ValueState.Critical, ValueState.Negative and ValueState.Positive respectively.
563
+ All components with valueState property are also affected. For example:
564
+ ```html
565
+ <ui5-input value-state="Success"></ui5-input>
566
+ <ui5-input value-state="Warning"></ui5-input>
567
+ <ui5-input value-state="Error"></ui5-input>
568
+ ```
569
+ ```html
570
+ <ui5-input value-state="Positive"></ui5-input>
571
+ <ui5-input value-state="Critical"></ui5-input>
572
+ <ui5-input value-state="Negative"></ui5-input>
573
+ ```
574
+
575
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
576
+ * **theming:** Remove SAP Belize theme
577
+ * **Icons:** UI5 Web Components Icons now export `getPathData` (function) instead of `pathData` (string)
578
+
579
+ If you used icons like this:
580
+
581
+ ```js
582
+ import "@ui5/webcomponents-icons/dist/accept.js";
583
+ ```
584
+
585
+ or like this:
586
+
587
+ ```js
588
+ import accept from "@ui5/webcomponents-icons/dist/accept.js";
589
+ ```
590
+
591
+ **there is no change and no adaptations are required**.
592
+
593
+ In the rare case you imported `pathData` from icons, for example:
594
+
595
+ ```js
596
+ import { pathData, ltr, accData } from "@ui5/webcomponents-icons/dist/accept.js";
597
+ console.log(pathData); // String containing the SVG path
598
+ ```
599
+
600
+ you must change your code to, for example:
601
+
602
+ ```js
603
+ import { getPathData, ltr, accData } from "@ui5/webcomponents-icons/dist/accept.js";
604
+ getPathData().then(pathData => {
605
+ console.log(pathData); // String containing the SVG path
606
+ });
607
+ ```
608
+
609
+
610
+
611
+
612
+
613
+ # [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)
614
+
615
+
616
+ ### Bug Fixes
617
+
618
+ * **u5-dialog:** soft keyboard is correctly opened on iOS devices ([#8583](https://github.com/SAP/ui5-webcomponents/issues/8583)) ([6cf1d74](https://github.com/SAP/ui5-webcomponents/commit/6cf1d746e59352430d0d086cf0814dc7ce7fdb9c))
619
+ * **ui5-popover:** fix popover going out of the viewport ([#8735](https://github.com/SAP/ui5-webcomponents/issues/8735)) ([bca8f2a](https://github.com/SAP/ui5-webcomponents/commit/bca8f2a3ff15d002ce778bf85e1d2dd8da789059))
620
+
621
+
622
+ ### Features
623
+
624
+ * **ui5-li:** add support for F2 key ([#8619](https://github.com/SAP/ui5-webcomponents/issues/8619)) ([24c3807](https://github.com/SAP/ui5-webcomponents/commit/24c380758f88b3f66dce46e2f57297634b42a85a)), closes [#7736](https://github.com/SAP/ui5-webcomponents/issues/7736)
625
+
626
+
627
+
628
+
629
+
630
+ # [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)
631
+
632
+
633
+ ### Bug Fixes
634
+
635
+ * decorators stop searching for accessors when reaching HTMLElement ([#8718](https://github.com/SAP/ui5-webcomponents/issues/8718)) ([dbc48cd](https://github.com/SAP/ui5-webcomponents/commit/dbc48cd14d01681a8ec53c268eca3187056aa2b4))
636
+
637
+
638
+ ### Features
639
+
640
+ * add shadowRootOptions for [@custom](https://github.com/custom)Element decorator ([#8703](https://github.com/SAP/ui5-webcomponents/issues/8703)) ([7168dc2](https://github.com/SAP/ui5-webcomponents/commit/7168dc297f411d9b5d64127a47e2361f17442439))
641
+
642
+
643
+
644
+
645
+
646
+ # [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0...v2.0.0-rc.0) (2024-04-09)
647
+
648
+
649
+ ### chore
650
+
651
+ * 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)
652
+
653
+
654
+ ### BREAKING CHANGES
655
+
656
+ * "Device#isIE" method has been removed and no longer available
657
+
658
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
659
+ * 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:
660
+ ```ts
661
+ import { setUseLinks } from "@ui5/webcomponents-base/dist/CSP.js"
662
+ import { setPackageCSSRoot } from "@ui5/webcomponents-base/dist/CSP.js"
663
+ import { setPreloadLinks } from "@ui5/webcomponents-base/dist/CSP.js"
664
+ ```
665
+ * Removed the `ICardHeader` interface. If you previously used the interface
666
+ ```ts
667
+ import type { ICardHeader } from "@ui5/webcomponents-base/dist/Card.js"
668
+ ```
669
+ Use the CardHeader type instead:
670
+ ```ts
671
+ import type CardHeader from "@ui5/webcomponents-base/dist/CardHeader.js"
672
+ ```
673
+ * Removed the `IUploadCollectionItem` interface. If you previously used the interface:
674
+ ```js
675
+ import type { IUploadCollectionItem} from "@ui5/webcomponents-fiori/dist/UploadCollection.js"
676
+ ```
677
+ Use the `UploadCollectionItem` type instead:
678
+ ```js
679
+ import type UploadCollectionItem from "@ui5/webcomponents-fiori/dist/UploadCollectionItem.js"
680
+ ```
681
+
682
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
683
+ * The `size` property now accepts different values. If you previously used it like:
684
+ ```html
685
+ <ui5-busy-indicator size="Small"></ui5-busy-indicator>
686
+ ```
687
+ Now use the new values instead:
688
+ ```html
689
+ <ui5-busy-indicator size="S"></ui5-busy-indicator>
690
+ ```
691
+
692
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
693
+ * The `status` property and its shadow part have been renamed. If you previously used them:
694
+ ```html
695
+ <style>
696
+ .cardHeader::part(status) { ... }
697
+ </style>
698
+ <ui5-card-header status="3 of 10"></ui5-popover>
699
+ ```
700
+ Now use `additionalText` instead:
701
+ ```html
702
+ <style>
703
+ .cardHeader::part(additional-text) { ... }
704
+ </style>
705
+ <ui5-card-header class="cardHeader" additional-text="3 of 10"></ui5-card-header>
706
+ ```
707
+
708
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
709
+ * The `pageIndicatorStyle` no longer exists. If you previously used it like:
710
+ ```html
711
+ <ui5-carousel page-indicator-style="Numeric"></ui5-carousel>
712
+ ```
713
+ Now you should use `pageIndicatorType` instead:
714
+ ```html
715
+ <ui5-carousel page-indicator-type="Numeric"></ui5-carousel>
716
+ ```
717
+
718
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
719
+ * Removed `UI5Element#render` method in favour of `UI5Element#renderer`. If you previously used "render"
720
+ ```js
721
+ class MyClass extends UI5Element {
722
+ static get render() {
723
+ return litRenderer;
724
+ }
725
+ }
726
+ ```
727
+ start using "renderer"
728
+ ```ts
729
+ class MyClass extends UI5Element {
730
+ static get renderer() {
731
+ return litRenderer;
732
+ }
733
+ }
734
+ ```
735
+ * Remove JavaScript template option from @ui5/create-webcomponents-package
736
+ Previously `npm init @ui5/webcomponents-package` used to create JS-based project, however now it will be TypeScript-based project.
737
+ 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.
738
+ * The `Left` and `Right` options option have been renamed. If you previously used them to set the placement or the alignment of the popover:
739
+ ```html
740
+ <ui5-popover horizontal-align="Left" placement-type="Left"></ui5-popover>
741
+ ```
742
+ Now use `Start` or `End` instead:
743
+ ```html
744
+ <ui5-popover horizontal-align="Start" placement-type="Start"></ui5-popover>
745
+ ```
746
+
747
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
748
+
749
+ * docs: deploy v2 preview
750
+ * Remove `soccor` icon. Use `soccer` instead.
751
+ * Remove `add-polygone` icon. Use `add-polygon` instead.
752
+ * 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`
753
+ * All Assets-static.js modules are removed. If you previously imported any Assets-static.js module from any package:
754
+ ```ts
755
+ import "@ui5/webcomponents/dist/Assets-static.js";
756
+ import "@ui5/webcomponents-icons/dist/Assets-static.js"
757
+ ```
758
+ use the dynamic equivalent of it:
759
+ ```ts
760
+ import "@ui5/webcomponents/dist/Assets.js";
761
+ import "@ui5/webcomponents-icons/dist/Assets.js"
762
+ ```
763
+
764
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
765
+ * The event `selected-dates-change ` is renamed to `selection-change`. In addition the event details
766
+ `values` and `dates` are renamed to `selectedValues` and `selectedDateValues`. If you previously used the Calendar event as follows:
767
+ ```ts
768
+ myCalendar.addEventListener("selected-dates-change", () => {
769
+ const values = e.detail.values;
770
+ const dates = e.detail.dates;
771
+ })
772
+ ```
773
+ Now you have to use the new event name and details:
774
+ ```ts
775
+ myCalendar.addEventListener("selection-change", () => {
776
+ const values = event.detail.selectedValues;
777
+ const dates = event.detail.selectedDateValues;
778
+ })
779
+ ```
780
+
781
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
782
+ * The property `color` is renamed to `value`. If you previously used the change event of the ColorPicker as follows:
783
+ ```html
784
+ <ui5-color-picker color="red"></ui5-color-picker>
785
+ ```
786
+ Now you have to use it like this:
787
+ ```html
788
+ <ui5-color-picker value="red"></ui5-color-picker>
789
+ ```
790
+
791
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
792
+ * JavaScript projects may not function properly with the tools package.
793
+ * The `openPopover` and `showAt` methods are removed in favor of `open` and `opener` properties. If you previously used the imperative API:
794
+ ```js
795
+ button.addEventListener("click", function(event) {
796
+ colorPalettePopover.showAt(this);
797
+ });
798
+ ```
799
+ Now the declarative API should be used instead:
800
+ ```html
801
+ <ui5-button id="opener">Open</ui5-button>
802
+ <ui5-color-palette-popover opener="opener">
803
+ ```
804
+ ```js
805
+ button.addEventListener("click", function(event) {
806
+ colorPalettePopover.open = !colorPalettePopover.open;
807
+ });
808
+ ```
809
+ * The `ui5-bar` component is now in `main` library. If you previously imported the `ui5-bar` from `fiori`:
810
+ ```ts
811
+ import "@ui5/webcomponents-fiori/dist/Bar.js;
812
+ ```
813
+ Now, import the `ui5-bar` from `main`:
814
+ ```ts
815
+ import "@ui5/webcomponents/dist/Bar.js";
816
+ ```
817
+
818
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
819
+ * If you have previously used:
820
+ ```html
821
+ <ui5-tab id="nestedTab" slot="subTabs"></ui5-tab>
822
+ ```
823
+ Now use:
824
+ ```html
825
+ <ui5-tab id="nestedTab" slot="items"></ui5-tab>
826
+ ```
827
+
828
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
829
+ * If you have previously used:
830
+ ```html
831
+ <ui5-tabcontainer tabs-overflow-mode="StartAndEnd"></ui5-tabcontainer>
832
+ ```
833
+ Now use:
834
+ ```html
835
+ <ui5-tabcontainer overflow-mode="StartAndEnd"></ui5-tabcontainer>
836
+ ```
837
+
838
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
839
+ * If you previously imported `TabContainerBackgroundDesign`, use `BackgroundDesign` instead.
840
+
841
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
842
+ * The showOverflow property is removed. If previously you have used:
843
+ ```html
844
+ <ui5-tabcontainer show-overflow></ui5-tabcontainer>
845
+ ```
846
+ now use the overflowButton slot:
847
+ ```html
848
+ <ui5-tabcontainer>
849
+ <ui5-button slot="startOverflowButton" id="startOverflowButton">Start</ui5-button>
850
+ <ui5-button slot="overflowButton" id="endOverflowButton">End</ui5-button>
851
+ </ui5-tabcontainer>
852
+ ```
853
+
854
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
855
+ * The `placementType` property and the `PopoverPlacementType` enum have been renamed.
856
+ If you have previously used the `placementType` property and the `PopoverPlacementType`
857
+ ```html
858
+ <ui5-popover placement-type="Bottom"></ui5-popover>
859
+ ```
860
+ ```js
861
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacementType.js";
862
+ ```
863
+ Now use `placement` instead:
864
+ ```html
865
+ <ui5-placement="Bottom"></ui5-popover>
866
+ ```
867
+ ```js
868
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacement.js";
869
+ ```
870
+
871
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
872
+ * The `size` property of the `ui5--illustrated-message` is renamed to `design`.
873
+ If you have previously used the `size` property:
874
+ ```html
875
+ <ui5-illustrated-message size="Dialog">
876
+ ```
877
+ Now use `design` instead:
878
+ ```html
879
+ <ui5-illustrated-message design="Dialog">
880
+
881
+ ```
882
+
883
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
884
+ * The `separator-style` property is renamed to `separators` and the `BreadcrumbsSeparatorStyle` enum is renamed to `BreadcrumbsSeparator`.
885
+ If you have previously used the `separator-style` property:
886
+ ```html
887
+ <ui5-breadcrumbs separator-style="Slash">
888
+ ```
889
+ Now use `separators` instead:
890
+ ```html
891
+ <ui5-breadcrumbs separators="Slash">
892
+ ```
893
+
894
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
895
+ * The `disabled` property of the `ui5-option` is removed.
896
+ If you have previously used the `disabled` property:
897
+ ```html
898
+ <ui5-option disabled>Option</ui5-option>
899
+ ```
900
+ it will no longer work for the component.
901
+
902
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
903
+ * 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.
904
+
905
+
906
+
907
+
908
+
909
+ # [1.24.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.4...v1.24.0) (2024-04-04)
910
+
911
+ **Note:** Version bump only for package @ui5/webcomponents-base
912
+
913
+
914
+
915
+
916
+
917
+ # [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)
918
+
919
+
920
+ ### Features
921
+
922
+ * enable property decorator for property accessors ([#8587](https://github.com/SAP/ui5-webcomponents/issues/8587)) ([12b6f1a](https://github.com/SAP/ui5-webcomponents/commit/12b6f1a7611bba909dd54ab5ee4549fde2173e6a))
923
+
924
+
925
+
926
+
927
+
928
+ # [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)
929
+
930
+
931
+ ### Features
932
+
933
+ * **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)
934
+
935
+
936
+
937
+
938
+
939
+ # [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)
940
+
941
+
942
+ ### Bug Fixes
943
+
944
+ * wrong import in base package module index ([#8464](https://github.com/SAP/ui5-webcomponents/issues/8464)) ([2dff60f](https://github.com/SAP/ui5-webcomponents/commit/2dff60fdb131802d532defc210c121ac04e8110d))
945
+
946
+
947
+
948
+
949
+
950
+ # [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)
951
+
952
+
953
+ ### Features
954
+
955
+ * **ui5-tabcontainer, ui5-list:** add events for reordering items by mouse ([#8265](https://github.com/SAP/ui5-webcomponents/issues/8265)) ([c4383ea](https://github.com/SAP/ui5-webcomponents/commit/c4383eaaa3b5588658f13a9c468d778e9c6abf57))
956
+
957
+
958
+
959
+
960
+
961
+ # [1.24.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1...v1.24.0-rc.0) (2024-03-14)
962
+
963
+ **Note:** Version bump only for package @ui5/webcomponents-base
964
+
965
+
966
+
967
+
968
+
969
+ ## [1.23.1](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1-rc.0...v1.23.1) (2024-03-08)
970
+
971
+ **Note:** Version bump only for package @ui5/webcomponents-base
972
+
973
+
974
+
975
+
976
+
977
+ ## [1.23.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0...v1.23.1-rc.0) (2024-03-07)
978
+
979
+ **Note:** Version bump only for package @ui5/webcomponents-base
980
+
981
+
982
+
983
+
984
+
985
+ # [1.23.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.5...v1.23.0) (2024-03-06)
986
+
987
+
988
+ ### Features
989
+
990
+ * **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)
991
+
992
+
993
+
994
+
995
+
996
+ # [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)
997
+
998
+
999
+ ### Bug Fixes
1000
+
1001
+ * 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))
1002
+
1003
+
1004
+
1005
+
1006
+
1007
+ # [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)
1008
+
1009
+ **Note:** Version bump only for package @ui5/webcomponents-base
1010
+
1011
+
1012
+
1013
+
1014
+
1015
+ # [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)
1016
+
1017
+ **Note:** Version bump only for package @ui5/webcomponents-base
1018
+
1019
+
1020
+
1021
+
1022
+
1023
+ # [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)
1024
+
1025
+ **Note:** Version bump only for package @ui5/webcomponents-base
1026
+
1027
+
1028
+
1029
+
1030
+
1031
+ # [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)
1032
+
1033
+ **Note:** Version bump only for package @ui5/webcomponents-base
1034
+
1035
+
1036
+
1037
+
1038
+
1039
+ # [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)
1040
+
1041
+
1042
+ ### Bug Fixes
1043
+
1044
+ * setting configuration before boot ([#8246](https://github.com/SAP/ui5-webcomponents/issues/8246)) ([d73834b](https://github.com/SAP/ui5-webcomponents/commit/d73834bd06516d5f663f14ecb516e92624191300))
1045
+
1046
+
1047
+
1048
+
1049
+
1050
+ ## [1.22.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0...v1.22.1-rc.0) (2024-02-08)
1051
+
1052
+ **Note:** Version bump only for package @ui5/webcomponents-base
1053
+
1054
+
1055
+
1056
+
1057
+
1058
+ # [1.22.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.3...v1.22.0) (2024-02-05)
1059
+
1060
+ **Note:** Version bump only for package @ui5/webcomponents-base
1061
+
1062
+
1063
+
1064
+
1065
+
1066
+ # [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)
1067
+
1068
+
1069
+ ### Bug Fixes
1070
+
1071
+ * build ([#8191](https://github.com/SAP/ui5-webcomponents/issues/8191)) ([5af9560](https://github.com/SAP/ui5-webcomponents/commit/5af956088195cd4de81f9c1ec82f1b937b3498aa))
1072
+ * **framework:** property with empty object as default value ([#8215](https://github.com/SAP/ui5-webcomponents/issues/8215)) ([b4e1eba](https://github.com/SAP/ui5-webcomponents/commit/b4e1ebae03a5ea87567ffc07516bb76a36d6734a))
1073
+ * release build ([#8222](https://github.com/SAP/ui5-webcomponents/issues/8222)) ([27042ac](https://github.com/SAP/ui5-webcomponents/commit/27042ac90443dea8d5900d1c5bfa5bc93d365da0))
1074
+
1075
+
1076
+ ### Features
1077
+
1078
+ * add dom shim so importing components in SSR works ([#8184](https://github.com/SAP/ui5-webcomponents/issues/8184)) ([ca49674](https://github.com/SAP/ui5-webcomponents/commit/ca49674e046bd74842100245db2cea61d53e2df0))
1079
+
1080
+
1081
+
1082
+
1083
+
1084
+ # [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)
1085
+
1086
+ **Note:** Version bump only for package @ui5/webcomponents-base
1087
+
1088
+
1089
+
1090
+
1091
+
1092
+ # [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)
1093
+
1094
+
1095
+ ### Features
1096
+
1097
+ * **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))
1098
+
1099
+
1100
+
1101
+
1102
+
1103
+ # [1.22.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0...v1.22.0-rc.0) (2024-01-11)
1104
+
1105
+ **Note:** Version bump only for package @ui5/webcomponents-base
1106
+
1107
+
1108
+
1109
+
1110
+
1111
+ # [1.21.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.5...v1.21.0) (2024-01-05)
1112
+
1113
+ **Note:** Version bump only for package @ui5/webcomponents-base
1114
+
1115
+
1116
+
1117
+
1118
+
1119
+ # [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)
1120
+
1121
+ **Note:** Version bump only for package @ui5/webcomponents-base
1122
+
1123
+
1124
+
1125
+
1126
+
1127
+ # [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)
1128
+
1129
+ **Note:** Version bump only for package @ui5/webcomponents-base
1130
+
1131
+
1132
+
1133
+
1134
+
1135
+ # [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)
1136
+
1137
+ **Note:** Version bump only for package @ui5/webcomponents-base
1138
+
1139
+
1140
+
1141
+
1142
+
1143
+ # [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)
1144
+
1145
+
1146
+ ### Bug Fixes
1147
+
1148
+ * **ui5-popover:** fix "containing block" issue on safari ([#7985](https://github.com/SAP/ui5-webcomponents/issues/7985)) ([4f5dd9b](https://github.com/SAP/ui5-webcomponents/commit/4f5dd9b39e3ea62a4a6156dbb4d94cf678a0cbfc)), closes [#7983](https://github.com/SAP/ui5-webcomponents/issues/7983)
1149
+
1150
+
1151
+
1152
+
1153
+
1154
+ # [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)
1155
+
1156
+
1157
+ ### Bug Fixes
1158
+
1159
+ * **infra:** release commands ([#7978](https://github.com/SAP/ui5-webcomponents/issues/7978)) ([b0e653c](https://github.com/SAP/ui5-webcomponents/commit/b0e653cf911cc0ffe5fb5dcbd50a7c238f20f33d))
1160
+
1161
+
1162
+
1163
+
1164
+
1165
+ # [1.21.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0...v1.21.0-rc.0) (2023-12-07)
1166
+
1167
+
1168
+ ### Bug Fixes
1169
+
1170
+ * **base:** add local variant for language loading ([#7968](https://github.com/SAP/ui5-webcomponents/issues/7968)) ([440cf48](https://github.com/SAP/ui5-webcomponents/commit/440cf4876dcf54cda86074fdb4dfe5ab0a19d4c5))
1171
+
1172
+
1173
+
1174
+
1175
+
1176
+ # [1.20.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.3...v1.20.0) (2023-12-04)
1177
+
1178
+
1179
+ ### Bug Fixes
1180
+
1181
+ * **framework:** fix font72 for special characters ([#7949](https://github.com/SAP/ui5-webcomponents/issues/7949)) ([55665b0](https://github.com/SAP/ui5-webcomponents/commit/55665b0ac02cd9060de1368fb427bb338338c5aa)), closes [#7948](https://github.com/SAP/ui5-webcomponents/issues/7948)
1182
+
1183
+
1184
+
1185
+
1186
+
1187
+ # [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)
1188
+
1189
+
1190
+ ### Bug Fixes
1191
+
1192
+ * **framework:** enable `72Blackfull` font-family ([#7918](https://github.com/SAP/ui5-webcomponents/issues/7918)) ([214780f](https://github.com/SAP/ui5-webcomponents/commit/214780ffde6c99a395472e5714370788668ed71e)), closes [#7800](https://github.com/SAP/ui5-webcomponents/issues/7800)
1193
+
1194
+
1195
+ ### Features
1196
+
1197
+ * cloned property to the slot decorator ([#7882](https://github.com/SAP/ui5-webcomponents/issues/7882)) ([2f3742b](https://github.com/SAP/ui5-webcomponents/commit/2f3742bae6a73796ccb0f59b48d35d0f794fba63)), closes [#7681](https://github.com/SAP/ui5-webcomponents/issues/7681)
1198
+ * register custom theme properties ([#7750](https://github.com/SAP/ui5-webcomponents/issues/7750)) ([c6c04c6](https://github.com/SAP/ui5-webcomponents/commit/c6c04c609d82a7442bdf79ef5bba46a406859a27))
1199
+
1200
+
1201
+
1202
+
1203
+
1204
+ # [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)
1205
+
1206
+
1207
+ ### Bug Fixes
1208
+
1209
+ * **framework:** redundant fonts loading ([#7868](https://github.com/SAP/ui5-webcomponents/issues/7868)) ([87535f1](https://github.com/SAP/ui5-webcomponents/commit/87535f1ba30b85d3c1c718451a89f0121e441338))
1210
+ * openui5 support crashes with 1.121-snapshot ([#7872](https://github.com/SAP/ui5-webcomponents/issues/7872)) ([334ed68](https://github.com/SAP/ui5-webcomponents/commit/334ed6821433b0364ee65a2db2d3ab44cad0612d))
1211
+
1212
+
1213
+
1214
+
1215
+
1216
+ # [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)
1217
+
1218
+ **Note:** Version bump only for package @ui5/webcomponents-base
1219
+
1220
+
1221
+
1222
+
1223
+
1224
+ # [1.20.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0...v1.20.0-rc.0) (2023-11-09)
1225
+
1226
+
1227
+ ### Bug Fixes
1228
+
1229
+ * **ItemNavigation:** more than 1 ItemNavigation per component allowed ([#7798](https://github.com/SAP/ui5-webcomponents/issues/7798)) ([b1019af](https://github.com/SAP/ui5-webcomponents/commit/b1019aff6c4aced61458c1b718ffe0a3a7802ae2))
1230
+
1231
+
1232
+ ### Features
1233
+
1234
+ * **ui5-side-navigation:** added href and target properties ([#7682](https://github.com/SAP/ui5-webcomponents/issues/7682)) ([7530f00](https://github.com/SAP/ui5-webcomponents/commit/7530f00b589d0b95dcbee49f6ed980e9d36ba58b))
1235
+
1236
+
1237
+
1238
+
1239
+
1240
+ # [1.19.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.3...v1.19.0) (2023-11-02)
1241
+
1242
+ **Note:** Version bump only for package @ui5/webcomponents-base
1243
+
1244
+
1245
+
1246
+
1247
+
1248
+ # [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)
1249
+
1250
+
1251
+ ### Bug Fixes
1252
+
1253
+ * **framework:** use correct customElements registry ([#7760](https://github.com/SAP/ui5-webcomponents/issues/7760)) ([288f6d4](https://github.com/SAP/ui5-webcomponents/commit/288f6d4d6cee9dccf1c64fa12b3ead2920c6c08a))
1254
+
1255
+
1256
+ ### Features
1257
+
1258
+ * **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))
1259
+
1260
+
1261
+
1262
+
1263
+
1264
+ # [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)
1265
+
1266
+
1267
+ ### Bug Fixes
1268
+
1269
+ * **ui5-color-picker:** fix hsl to rgb color conversion ([#7723](https://github.com/SAP/ui5-webcomponents/issues/7723)) ([4e95272](https://github.com/SAP/ui5-webcomponents/commit/4e9527225be27c957ea71f17a4cacb3bc065d6b7)), closes [#7660](https://github.com/SAP/ui5-webcomponents/issues/7660)
1270
+
1271
+
1272
+
1273
+
1274
+
1275
+ # [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)
1276
+
1277
+
1278
+ ### Features
1279
+
1280
+ * do not override CSS Vars by newer runtimes ([#7703](https://github.com/SAP/ui5-webcomponents/issues/7703)) ([8379071](https://github.com/SAP/ui5-webcomponents/commit/8379071846f5f76b7f7257594269dc9e7e814478))
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+ # [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)
1287
+
1288
+ **Note:** Version bump only for package @ui5/webcomponents-base
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ ## [1.18.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0...v1.18.1-rc.0) (2023-10-05)
1295
+
1296
+
1297
+ ### Bug Fixes
1298
+
1299
+ * **framework:** stop bubbling of camel case events ([#7658](https://github.com/SAP/ui5-webcomponents/issues/7658)) ([6ce57f7](https://github.com/SAP/ui5-webcomponents/commit/6ce57f75684620021319edebb2d1f81f17ef2e57))
1300
+
1301
+
1302
+
1303
+
1304
+
1305
+ # [1.18.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0-rc.2...v1.18.0) (2023-10-02)
1306
+
1307
+ **Note:** Version bump only for package @ui5/webcomponents-base
1308
+
1309
+
1310
+
1311
+
1312
+
1313
+ # [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)
1314
+
1315
+ **Note:** Version bump only for package @ui5/webcomponents-base
1316
+
1317
+
1318
+
1319
+
1320
+
1321
+ # [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)
1322
+
1323
+
1324
+ ### Features
1325
+
1326
+ * add `secondaryCalendarType` global config ([#7547](https://github.com/SAP/ui5-webcomponents/issues/7547)) ([c9111a3](https://github.com/SAP/ui5-webcomponents/commit/c9111a38fc2a6cc54bb696dbdcec66100e304906))
1327
+
1328
+
1329
+
1330
+
1331
+
1332
+ # [1.18.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0...v1.18.0-rc.0) (2023-09-07)
1333
+
1334
+ **Note:** Version bump only for package @ui5/webcomponents-base
1335
+
1336
+
1337
+
1338
+
1339
+
1340
+ # [1.17.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0-rc.2...v1.17.0) (2023-09-01)
1341
+
1342
+
1343
+ ### Bug Fixes
1344
+
1345
+ * fix import in base/index.js ([#7496](https://github.com/SAP/ui5-webcomponents/issues/7496)) ([b0b542a](https://github.com/SAP/ui5-webcomponents/commit/b0b542a33e4685267731536114ff5d5f12c13210)), closes [#7493](https://github.com/SAP/ui5-webcomponents/issues/7493)
1346
+ * **framework:** fix OpenUI5Support usage in applyTheme ([#7485](https://github.com/SAP/ui5-webcomponents/issues/7485)) ([174f4b4](https://github.com/SAP/ui5-webcomponents/commit/174f4b462de254fd3eaab41a06d26c016c360d5d))
1347
+
1348
+
1349
+ ### Features
1350
+
1351
+ * introduce SelectMenu(Option) components ([#7447](https://github.com/SAP/ui5-webcomponents/issues/7447)) ([b21db20](https://github.com/SAP/ui5-webcomponents/commit/b21db20cdedacd97de5d4372add6171f16f00316))
1352
+
1353
+
1354
+
1355
+
1356
+
1357
+ # [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)
1358
+
1359
+ **Note:** Version bump only for package @ui5/webcomponents-base
1360
+
1361
+
1362
+
1363
+
1364
+
1365
+ # [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)
1366
+
1367
+
1368
+ ### Features
1369
+
1370
+ * **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))
1371
+
1372
+
1373
+
1374
+
1375
+
1376
+ # [1.17.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0...v1.17.0-rc.0) (2023-08-10)
1377
+
1378
+
1379
+ ### Bug Fixes
1380
+
1381
+ * **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))
1382
+
1383
+
1384
+
1385
+
1386
+
1387
+ # [1.16.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.4...v1.16.0) (2023-08-03)
1388
+
1389
+ **Note:** Version bump only for package @ui5/webcomponents-base
1390
+
1391
+
1392
+
1393
+
1394
+
1395
+ # [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)
1396
+
1397
+
1398
+ ### Features
1399
+
1400
+ * **framework:** support theme dependent custom icon collections ([#7341](https://github.com/SAP/ui5-webcomponents/issues/7341)) ([33967dd](https://github.com/SAP/ui5-webcomponents/commit/33967dd12e31e17828986c7b40a5471c2936f0b7))
1401
+
1402
+
1403
+
1404
+
1405
+
1406
+ # [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)
1407
+
1408
+ **Note:** Version bump only for package @ui5/webcomponents-base
1409
+
1410
+
1411
+
1412
+
1413
+
1414
+ # [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)
1415
+
1416
+
1417
+ ### Bug Fixes
1418
+
1419
+ * **framework:** fix I18Bundle#getText params TypeScript types ([#7310](https://github.com/SAP/ui5-webcomponents/issues/7310)) ([2f88dc8](https://github.com/SAP/ui5-webcomponents/commit/2f88dc814dd393748a7482c7f6566d244368c970)), closes [#7300](https://github.com/SAP/ui5-webcomponents/issues/7300)
1420
+ * **ui5:** change "focus-visible" pseudo selector to "focus" ([#7338](https://github.com/SAP/ui5-webcomponents/issues/7338)) ([37505c3](https://github.com/SAP/ui5-webcomponents/commit/37505c3f4e5dfe1c23fba7b5ee675312752f7ef5))
1421
+
1422
+
1423
+
1424
+
1425
+
1426
+ # [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)
1427
+
1428
+
1429
+ ### Bug Fixes
1430
+
1431
+ * **framework:** missing 72-Semibold font ([#7298](https://github.com/SAP/ui5-webcomponents/issues/7298)) ([9547d1c](https://github.com/SAP/ui5-webcomponents/commit/9547d1cf75edce8739c3dc54a1f64b2f44d7c18c))
1432
+
1433
+
1434
+
1435
+
1436
+
1437
+ # [1.16.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.1...v1.16.0-rc.0) (2023-07-06)
1438
+
1439
+ **Note:** Version bump only for package @ui5/webcomponents-base
1440
+
1441
+
1442
+
1443
+
1444
+
1445
+ # [1.15.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.0-rc.2...v1.15.0) (2023-06-30)
1446
+
1447
+
1448
+ ### Bug Fixes
1449
+
1450
+ * **framework:** fix OpenUI5Support feature usage ([#7265](https://github.com/SAP/ui5-webcomponents/issues/7265)) ([109b6ee](https://github.com/SAP/ui5-webcomponents/commit/109b6eecb3b56f07c085ed59442c2a73f31644a8)), closes [#7175](https://github.com/SAP/ui5-webcomponents/issues/7175)
1451
+
1452
+
1453
+
1454
+
1455
+
1456
+ # [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)
1457
+
1458
+
1459
+ ### Bug Fixes
1460
+
1461
+ * **framework:** support older OpenUI5 getThemeRoot API ([#7202](https://github.com/SAP/ui5-webcomponents/issues/7202)) ([54e615c](https://github.com/SAP/ui5-webcomponents/commit/54e615cffc047b8e1e72861a5be7d50bfcc2d6bf)), closes [#7199](https://github.com/SAP/ui5-webcomponents/issues/7199)
1462
+
1463
+
1464
+
1465
+
1466
+
1467
+ # [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)
1468
+
1469
+
1470
+ ### Bug Fixes
1471
+
1472
+ * **framework:** prioritize external fonts over locally installed ([#7184](https://github.com/SAP/ui5-webcomponents/issues/7184)) ([c527c70](https://github.com/SAP/ui5-webcomponents/commit/c527c70e47be84b663b6c40107737c25f91c9034)), closes [/github.com/SAP/openui5/blob/master/src/themelib_sap_horizon/src/sap/ui/core/themes/sap_horizon/shared.less#L259](https://github.com//github.com/SAP/openui5/blob/master/src/themelib_sap_horizon/src/sap/ui/core/themes/sap_horizon/shared.less/issues/L259) [#7177](https://github.com/SAP/ui5-webcomponents/issues/7177)
1473
+ * **ui5-static-area-item:** element additional properties ([#7166](https://github.com/SAP/ui5-webcomponents/issues/7166)) ([361ff95](https://github.com/SAP/ui5-webcomponents/commit/361ff9537dd6ed887e61d8fe2927e3eee0c952f8))
1474
+
1475
+
1476
+ ### Features
1477
+
1478
+ * **ui5-time-picker:** Redesign the Time Picker component according to the new design ([#6818](https://github.com/SAP/ui5-webcomponents/issues/6818)) ([1d910cf](https://github.com/SAP/ui5-webcomponents/commit/1d910cf47290fcd9986b0b9ced45c9c06e29d657))
1479
+
1480
+
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+
1487
+
1488
+
1489
+ # [1.15.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0...v1.15.0-rc.0) (2023-06-08)
1490
+
1491
+ **Note:** Version bump only for package @ui5/webcomponents-base
1492
+
1493
+
1494
+
1495
+
1496
+
1497
+ # [1.14.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.2...v1.14.0) (2023-06-01)
1498
+
1499
+ **Note:** Version bump only for package @ui5/webcomponents-base
1500
+
1501
+
1502
+
1503
+
1504
+
1505
+ # [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)
1506
+
1507
+ **Note:** Version bump only for package @ui5/webcomponents-base
1508
+
1509
+
1510
+
1511
+
1512
+
1513
+ # [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)
1514
+
1515
+
1516
+ ### Bug Fixes
1517
+
1518
+ * **framework:** store shared resources as `meta` tag within the `head` ([#7051](https://github.com/SAP/ui5-webcomponents/issues/7051)) ([90722da](https://github.com/SAP/ui5-webcomponents/commit/90722da24600e28f31864e9f2006d18e97c1e596))
1519
+
1520
+
1521
+ ### Features
1522
+
1523
+ * **framework:** add `setThemeRoot` public API ([#6970](https://github.com/SAP/ui5-webcomponents/issues/6970)) ([a0ad904](https://github.com/SAP/ui5-webcomponents/commit/a0ad904ea21578ada97dc0c990ec04dbb5072990))
1524
+
1525
+
1526
+
1527
+
1528
+
1529
+ # [1.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.13.2...v1.14.0-rc.0) (2023-05-18)
1530
+
1531
+
1532
+ ### Features
1533
+
1534
+ * **framework:** add `ignoreCustomElements` public API ([#7027](https://github.com/SAP/ui5-webcomponents/issues/7027)) ([776f905](https://github.com/SAP/ui5-webcomponents/commit/776f9058de5b4e37489dd3ef388863edc2627eb3))
1535
+ * **framework:** use `template literal notation` for enum types ([#6856](https://github.com/SAP/ui5-webcomponents/issues/6856)) ([0de21e8](https://github.com/SAP/ui5-webcomponents/commit/0de21e8ba37c6a75fd3d2a29a16cc82661619cb1)), closes [#6636](https://github.com/SAP/ui5-webcomponents/issues/6636)
1536
+
1537
+
1538
+
1539
+
1540
+
1541
+ ## [1.13.2](https://github.com/SAP/ui5-webcomponents/compare/v1.13.1...v1.13.2) (2023-05-15)
1542
+
1543
+ **Note:** Version bump only for package @ui5/webcomponents-base
1544
+
1545
+
1546
+
1547
+
1548
+
1549
+ ## [1.13.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.5...v1.13.1) (2023-05-11)
1550
+
1551
+ **Note:** Version bump only for package @ui5/webcomponents-base
1552
+
1553
+
1554
+
1555
+
1556
+
1557
+ # [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)
1558
+
1559
+ **Note:** Version bump only for package @ui5/webcomponents-base
1560
+
1561
+
1562
+
1563
+
1564
+
1565
+ # [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)
1566
+
1567
+
1568
+ ### Features
1569
+
1570
+ * generate TS from HBS templates ([#6558](https://github.com/SAP/ui5-webcomponents/issues/6558)) ([02611b2](https://github.com/SAP/ui5-webcomponents/commit/02611b2e24b2c2a06129b8e60a8bc680d9501e39))
1571
+
1572
+
1573
+
1574
+
1575
+
1576
+ # [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)
1577
+
1578
+
1579
+ ### Bug Fixes
1580
+
1581
+ * **framework:** avoid ResizeObserver loop limit exceeded error ([#6934](https://github.com/SAP/ui5-webcomponents/issues/6934)) ([3b7f6d2](https://github.com/SAP/ui5-webcomponents/commit/3b7f6d2c4165c70bf7411425dd0cb3dd58ef953a)), closes [#6924](https://github.com/SAP/ui5-webcomponents/issues/6924)
1582
+
1583
+
1584
+
1585
+
1586
+
1587
+ # [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)
1588
+
1589
+
1590
+ ### Bug Fixes
1591
+
1592
+ * **framework:** export StaticArea class ([#6917](https://github.com/SAP/ui5-webcomponents/issues/6917)) ([f4fb815](https://github.com/SAP/ui5-webcomponents/commit/f4fb81530b4c1a271cca52cd393b824dccb891cd)), closes [#6916](https://github.com/SAP/ui5-webcomponents/issues/6916)
1593
+
1594
+
1595
+
1596
+
1597
+
1598
+ # [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)
1599
+
1600
+
1601
+ ### Bug Fixes
1602
+
1603
+ * getIconAccessibleName now handles empty strings ([#6891](https://github.com/SAP/ui5-webcomponents/issues/6891)) ([7b80914](https://github.com/SAP/ui5-webcomponents/commit/7b8091477c97ef36e1399aa960b0d692de29993a))
1604
+
1605
+
1606
+ ### Features
1607
+
1608
+ * **localization:** add `timezone` support [experimental] ([#6857](https://github.com/SAP/ui5-webcomponents/issues/6857)) ([aa91fd1](https://github.com/SAP/ui5-webcomponents/commit/aa91fd136f8bff757d476b83444f963d4299d562))
1609
+
1610
+
1611
+
1612
+
1613
+
1614
+ # [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
1615
+
1616
+
1617
+ ### Bug Fixes
1618
+
1619
+ * fix components metadata calculation ([#6865](https://github.com/SAP/ui5-webcomponents/issues/6865)) ([0089891](https://github.com/SAP/ui5-webcomponents/commit/0089891fae58f1271873f1fff0109bbc9b908b19))
1620
+ * **framework:** remove invalid element from head ([#6848](https://github.com/SAP/ui5-webcomponents/issues/6848)) ([bb52a7b](https://github.com/SAP/ui5-webcomponents/commit/bb52a7bcfcb2b48f2cc7efe810ca119d09456245)), closes [#6748](https://github.com/SAP/ui5-webcomponents/issues/6748)
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+ # [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
1627
+
1628
+
1629
+ ### Bug Fixes
1630
+
1631
+ * **framework:** relative paths for external themes ([#6799](https://github.com/SAP/ui5-webcomponents/issues/6799)) ([df1ddfc](https://github.com/SAP/ui5-webcomponents/commit/df1ddfc955ef3bb46d3b1e4694e7b931655a3079))
1632
+ * **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)
1633
+
1634
+
1635
+ ### Features
1636
+
1637
+ * **framework:** re-export all public imports from index.js ([#6823](https://github.com/SAP/ui5-webcomponents/issues/6823)) ([a08d464](https://github.com/SAP/ui5-webcomponents/commit/a08d4645aeaae6e6f5eb8c55d8cb8bfaf4aa58b6))
1638
+
1639
+
1640
+
1641
+
1642
+
1643
+ # [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)
1644
+
1645
+ **Note:** Version bump only for package @ui5/webcomponents-base
1646
+
1647
+
1648
+
1649
+
1650
+
1651
+ # [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)
1652
+
1653
+
1654
+ ### Bug Fixes
1655
+
1656
+ * 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))
1657
+ * **framework:** apply theme after every theme props registration ([#6718](https://github.com/SAP/ui5-webcomponents/issues/6718)) ([9b6c414](https://github.com/SAP/ui5-webcomponents/commit/9b6c414e7ae625d835a7d14c3761d2c235b750ff)), closes [#6666](https://github.com/SAP/ui5-webcomponents/issues/6666)
1658
+ * **i18n:** use correct i18n text bundle ([#6720](https://github.com/SAP/ui5-webcomponents/issues/6720)) ([9636000](https://github.com/SAP/ui5-webcomponents/commit/963600046d1847133512f8a2a7a8f9087bfcd3f2))
1659
+ * inline sources in the .map file so the src folder is not mandatory ([#6732](https://github.com/SAP/ui5-webcomponents/issues/6732)) ([16771a6](https://github.com/SAP/ui5-webcomponents/commit/16771a64d7b13f418af9afa1a03b224fe3762775))
1660
+
1661
+
1662
+ ### Features
1663
+
1664
+ * **framework:** add default values for language/theme ([#6738](https://github.com/SAP/ui5-webcomponents/issues/6738)) ([36d3636](https://github.com/SAP/ui5-webcomponents/commit/36d3636be27b785ccfe7210d1da65c628623c28d))
1665
+
1666
+
1667
+
1668
+
1669
+
1670
+ # [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)
1671
+
1672
+ **Note:** Version bump only for package @ui5/webcomponents-base
1673
+
1674
+
1675
+
1676
+
1677
+
6
1678
  # [1.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0...v1.12.0-rc.0) (2023-03-09)
7
1679
 
8
1680
  **Note:** Version bump only for package @ui5/webcomponents-base