@ui5/webcomponents-fiori 0.0.0-dff5837d7 → 0.0.0-e03cd01f3

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 (3179) hide show
  1. package/.env.production +1 -0
  2. package/.env.testing +4 -0
  3. package/.npsrc.json +3 -0
  4. package/CHANGELOG.md +3924 -0
  5. package/LICENSE.txt +201 -0
  6. package/README.md +63 -19
  7. package/cypress.config.js +3 -0
  8. package/dist/.tsbuildinfo +1 -0
  9. package/dist/Assets-fetch.d.ts +3 -0
  10. package/dist/Assets-fetch.js +6 -0
  11. package/dist/Assets-fetch.js.map +1 -0
  12. package/dist/Assets-node.d.ts +14 -0
  13. package/dist/Assets-node.js +17 -0
  14. package/dist/Assets-node.js.map +1 -0
  15. package/dist/Assets.d.ts +3 -0
  16. package/dist/Assets.js +2 -2
  17. package/dist/Assets.js.map +1 -0
  18. package/dist/BarcodeScannerDialog.d.ts +136 -0
  19. package/dist/BarcodeScannerDialog.js +366 -0
  20. package/dist/BarcodeScannerDialog.js.map +1 -0
  21. package/dist/BarcodeScannerDialogTemplate.d.ts +2 -0
  22. package/dist/BarcodeScannerDialogTemplate.js +8 -0
  23. package/dist/BarcodeScannerDialogTemplate.js.map +1 -0
  24. package/dist/DynamicPage.d.ts +164 -0
  25. package/dist/DynamicPage.js +398 -0
  26. package/dist/DynamicPage.js.map +1 -0
  27. package/dist/DynamicPageHeader.d.ts +56 -0
  28. package/dist/DynamicPageHeader.js +93 -0
  29. package/dist/DynamicPageHeader.js.map +1 -0
  30. package/dist/DynamicPageHeaderActions.d.ts +77 -0
  31. package/dist/DynamicPageHeaderActions.js +181 -0
  32. package/dist/DynamicPageHeaderActions.js.map +1 -0
  33. package/dist/DynamicPageHeaderActionsTemplate.d.ts +2 -0
  34. package/dist/DynamicPageHeaderActionsTemplate.js +8 -0
  35. package/dist/DynamicPageHeaderActionsTemplate.js.map +1 -0
  36. package/dist/DynamicPageHeaderTemplate.d.ts +2 -0
  37. package/dist/DynamicPageHeaderTemplate.js +5 -0
  38. package/dist/DynamicPageHeaderTemplate.js.map +1 -0
  39. package/dist/DynamicPageTemplate.d.ts +2 -0
  40. package/dist/DynamicPageTemplate.js +14 -0
  41. package/dist/DynamicPageTemplate.js.map +1 -0
  42. package/dist/DynamicPageTitle.d.ts +171 -0
  43. package/dist/DynamicPageTitle.js +246 -0
  44. package/dist/DynamicPageTitle.js.map +1 -0
  45. package/dist/DynamicPageTitleTemplate.d.ts +2 -0
  46. package/dist/DynamicPageTitleTemplate.js +16 -0
  47. package/dist/DynamicPageTitleTemplate.js.map +1 -0
  48. package/dist/DynamicSideContent.d.ts +233 -0
  49. package/dist/DynamicSideContent.js +413 -0
  50. package/dist/DynamicSideContent.js.map +1 -0
  51. package/dist/DynamicSideContentTemplate.d.ts +2 -0
  52. package/dist/DynamicSideContentTemplate.js +14 -0
  53. package/dist/DynamicSideContentTemplate.js.map +1 -0
  54. package/dist/FilterItem.d.ts +44 -0
  55. package/dist/FilterItem.js +48 -0
  56. package/dist/FilterItem.js.map +1 -0
  57. package/dist/FilterItemOption.d.ts +38 -0
  58. package/dist/FilterItemOption.js +54 -0
  59. package/dist/FilterItemOption.js.map +1 -0
  60. package/dist/FlexibleColumnLayout.d.ts +431 -0
  61. package/dist/FlexibleColumnLayout.js +1177 -0
  62. package/dist/FlexibleColumnLayout.js.map +1 -0
  63. package/dist/FlexibleColumnLayoutTemplate.d.ts +2 -0
  64. package/dist/FlexibleColumnLayoutTemplate.js +40 -0
  65. package/dist/FlexibleColumnLayoutTemplate.js.map +1 -0
  66. package/dist/GroupItem.d.ts +38 -0
  67. package/dist/GroupItem.js +54 -0
  68. package/dist/GroupItem.js.map +1 -0
  69. package/dist/IllustratedMessage.d.ts +251 -0
  70. package/dist/IllustratedMessage.js +426 -0
  71. package/dist/IllustratedMessage.js.map +1 -0
  72. package/dist/IllustratedMessageTemplate.d.ts +2 -0
  73. package/dist/IllustratedMessageTemplate.js +27 -0
  74. package/dist/IllustratedMessageTemplate.js.map +1 -0
  75. package/dist/MediaGallery.d.ts +177 -0
  76. package/dist/MediaGallery.js +441 -0
  77. package/dist/MediaGallery.js.map +1 -0
  78. package/dist/MediaGalleryItem.d.ts +116 -0
  79. package/dist/MediaGalleryItem.js +238 -0
  80. package/dist/MediaGalleryItem.js.map +1 -0
  81. package/dist/MediaGalleryItemTemplate.d.ts +2 -0
  82. package/dist/MediaGalleryItemTemplate.js +7 -0
  83. package/dist/MediaGalleryItemTemplate.js.map +1 -0
  84. package/dist/MediaGalleryTemplate.d.ts +2 -0
  85. package/dist/MediaGalleryTemplate.js +10 -0
  86. package/dist/MediaGalleryTemplate.js.map +1 -0
  87. package/dist/NavigationLayout.d.ts +78 -0
  88. package/dist/NavigationLayout.js +137 -0
  89. package/dist/NavigationLayout.js.map +1 -0
  90. package/dist/NavigationLayoutTemplate.d.ts +2 -0
  91. package/dist/NavigationLayoutTemplate.js +5 -0
  92. package/dist/NavigationLayoutTemplate.js.map +1 -0
  93. package/dist/NavigationMenu.d.ts +36 -0
  94. package/dist/NavigationMenu.js +68 -0
  95. package/dist/NavigationMenu.js.map +1 -0
  96. package/dist/NavigationMenuItem.d.ts +86 -0
  97. package/dist/NavigationMenuItem.js +159 -0
  98. package/dist/NavigationMenuItem.js.map +1 -0
  99. package/dist/NavigationMenuItemTemplate.d.ts +3 -0
  100. package/dist/NavigationMenuItemTemplate.js +34 -0
  101. package/dist/NavigationMenuItemTemplate.js.map +1 -0
  102. package/dist/NavigationMenuTemplate.d.ts +2 -0
  103. package/dist/NavigationMenuTemplate.js +15 -0
  104. package/dist/NavigationMenuTemplate.js.map +1 -0
  105. package/dist/NotificationList.d.ts +72 -0
  106. package/dist/NotificationList.js +135 -0
  107. package/dist/NotificationList.js.map +1 -0
  108. package/dist/NotificationListGroupItem.d.ts +92 -0
  109. package/dist/NotificationListGroupItem.js +204 -199
  110. package/dist/NotificationListGroupItem.js.map +1 -0
  111. package/dist/NotificationListGroupItemTemplate.d.ts +2 -0
  112. package/dist/NotificationListGroupItemTemplate.js +10 -0
  113. package/dist/NotificationListGroupItemTemplate.js.map +1 -0
  114. package/dist/NotificationListGroupList.d.ts +23 -0
  115. package/dist/NotificationListGroupList.js +52 -0
  116. package/dist/NotificationListGroupList.js.map +1 -0
  117. package/dist/NotificationListInternal.d.ts +21 -0
  118. package/dist/NotificationListInternal.js +161 -0
  119. package/dist/NotificationListInternal.js.map +1 -0
  120. package/dist/NotificationListItem.d.ts +199 -0
  121. package/dist/NotificationListItem.js +429 -405
  122. package/dist/NotificationListItem.js.map +1 -0
  123. package/dist/NotificationListItemBase.d.ts +52 -0
  124. package/dist/NotificationListItemBase.js +91 -229
  125. package/dist/NotificationListItemBase.js.map +1 -0
  126. package/dist/NotificationListItemTemplate.d.ts +2 -0
  127. package/dist/NotificationListItemTemplate.js +19 -0
  128. package/dist/NotificationListItemTemplate.js.map +1 -0
  129. package/dist/NotificationListTemplate.d.ts +2 -0
  130. package/dist/NotificationListTemplate.js +6 -0
  131. package/dist/NotificationListTemplate.js.map +1 -0
  132. package/dist/Page.d.ts +83 -0
  133. package/dist/Page.js +128 -0
  134. package/dist/Page.js.map +1 -0
  135. package/dist/PageTemplate.d.ts +2 -0
  136. package/dist/PageTemplate.js +11 -0
  137. package/dist/PageTemplate.js.map +1 -0
  138. package/dist/ProductSwitch.d.ts +78 -0
  139. package/dist/ProductSwitch.js +126 -114
  140. package/dist/ProductSwitch.js.map +1 -0
  141. package/dist/ProductSwitchItem.d.ts +116 -0
  142. package/dist/ProductSwitchItem.js +144 -213
  143. package/dist/ProductSwitchItem.js.map +1 -0
  144. package/dist/ProductSwitchItemTemplate.d.ts +2 -0
  145. package/dist/ProductSwitchItemTemplate.js +15 -0
  146. package/dist/ProductSwitchItemTemplate.js.map +1 -0
  147. package/dist/ProductSwitchTemplate.d.ts +2 -0
  148. package/dist/ProductSwitchTemplate.js +5 -0
  149. package/dist/ProductSwitchTemplate.js.map +1 -0
  150. package/dist/Search.d.ts +185 -0
  151. package/dist/Search.js +446 -0
  152. package/dist/Search.js.map +1 -0
  153. package/dist/SearchField.d.ts +147 -0
  154. package/dist/SearchField.js +223 -0
  155. package/dist/SearchField.js.map +1 -0
  156. package/dist/SearchFieldTemplate.d.ts +8 -0
  157. package/dist/SearchFieldTemplate.js +16 -0
  158. package/dist/SearchFieldTemplate.js.map +1 -0
  159. package/dist/SearchItem.d.ts +98 -0
  160. package/dist/SearchItem.js +216 -0
  161. package/dist/SearchItem.js.map +1 -0
  162. package/dist/SearchItemGroup.d.ts +15 -0
  163. package/dist/SearchItemGroup.js +38 -0
  164. package/dist/SearchItemGroup.js.map +1 -0
  165. package/dist/SearchItemShowMore.d.ts +49 -0
  166. package/dist/SearchItemShowMore.js +112 -0
  167. package/dist/SearchItemShowMore.js.map +1 -0
  168. package/dist/SearchItemShowMoreTemplate.d.ts +2 -0
  169. package/dist/SearchItemShowMoreTemplate.js +5 -0
  170. package/dist/SearchItemShowMoreTemplate.js.map +1 -0
  171. package/dist/SearchItemTemplate.d.ts +2 -0
  172. package/dist/SearchItemTemplate.js +16 -0
  173. package/dist/SearchItemTemplate.js.map +1 -0
  174. package/dist/SearchMessageArea.d.ts +27 -0
  175. package/dist/SearchMessageArea.js +41 -0
  176. package/dist/SearchMessageArea.js.map +1 -0
  177. package/dist/SearchMessageAreaTemplate.d.ts +2 -0
  178. package/dist/SearchMessageAreaTemplate.js +8 -0
  179. package/dist/SearchMessageAreaTemplate.js.map +1 -0
  180. package/dist/SearchPopoverTemplate.d.ts +3 -0
  181. package/dist/SearchPopoverTemplate.js +25 -0
  182. package/dist/SearchPopoverTemplate.js.map +1 -0
  183. package/dist/SearchScope.d.ts +30 -0
  184. package/dist/SearchScope.js +37 -0
  185. package/dist/SearchScope.js.map +1 -0
  186. package/dist/SearchTemplate.d.ts +2 -0
  187. package/dist/SearchTemplate.js +7 -0
  188. package/dist/SearchTemplate.js.map +1 -0
  189. package/dist/ShellBar.d.ts +555 -0
  190. package/dist/ShellBar.js +1373 -1019
  191. package/dist/ShellBar.js.map +1 -0
  192. package/dist/ShellBarBranding.d.ts +78 -0
  193. package/dist/ShellBarBranding.js +116 -0
  194. package/dist/ShellBarBranding.js.map +1 -0
  195. package/dist/ShellBarBrandingTemplate.d.ts +2 -0
  196. package/dist/ShellBarBrandingTemplate.js +5 -0
  197. package/dist/ShellBarBrandingTemplate.js.map +1 -0
  198. package/dist/ShellBarItem.d.ts +75 -0
  199. package/dist/ShellBarItem.js +77 -80
  200. package/dist/ShellBarItem.js.map +1 -0
  201. package/dist/ShellBarPopoverTemplate.d.ts +2 -0
  202. package/dist/ShellBarPopoverTemplate.js +9 -0
  203. package/dist/ShellBarPopoverTemplate.js.map +1 -0
  204. package/dist/ShellBarSearch.d.ts +26 -0
  205. package/dist/ShellBarSearch.js +97 -0
  206. package/dist/ShellBarSearch.js.map +1 -0
  207. package/dist/ShellBarSearchPopoverTemplate.d.ts +2 -0
  208. package/dist/ShellBarSearchPopoverTemplate.js +12 -0
  209. package/dist/ShellBarSearchPopoverTemplate.js.map +1 -0
  210. package/dist/ShellBarSearchTemplate.d.ts +2 -0
  211. package/dist/ShellBarSearchTemplate.js +7 -0
  212. package/dist/ShellBarSearchTemplate.js.map +1 -0
  213. package/dist/ShellBarSpacer.d.ts +17 -0
  214. package/dist/ShellBarSpacer.js +38 -0
  215. package/dist/ShellBarSpacer.js.map +1 -0
  216. package/dist/ShellBarTemplate.d.ts +2 -0
  217. package/dist/ShellBarTemplate.js +62 -0
  218. package/dist/ShellBarTemplate.js.map +1 -0
  219. package/dist/SideNavigation.d.ts +186 -0
  220. package/dist/SideNavigation.js +550 -0
  221. package/dist/SideNavigation.js.map +1 -0
  222. package/dist/SideNavigationGroup.d.ts +56 -0
  223. package/dist/SideNavigationGroup.js +168 -0
  224. package/dist/SideNavigationGroup.js.map +1 -0
  225. package/dist/SideNavigationGroupTemplate.d.ts +2 -0
  226. package/dist/SideNavigationGroupTemplate.js +16 -0
  227. package/dist/SideNavigationGroupTemplate.js.map +1 -0
  228. package/dist/SideNavigationItem.d.ts +77 -0
  229. package/dist/SideNavigationItem.js +280 -0
  230. package/dist/SideNavigationItem.js.map +1 -0
  231. package/dist/SideNavigationItemBase.d.ts +82 -0
  232. package/dist/SideNavigationItemBase.js +124 -0
  233. package/dist/SideNavigationItemBase.js.map +1 -0
  234. package/dist/SideNavigationItemTemplate.d.ts +2 -0
  235. package/dist/SideNavigationItemTemplate.js +26 -0
  236. package/dist/SideNavigationItemTemplate.js.map +1 -0
  237. package/dist/SideNavigationPopoverTemplate.d.ts +2 -0
  238. package/dist/SideNavigationPopoverTemplate.js +13 -0
  239. package/dist/SideNavigationPopoverTemplate.js.map +1 -0
  240. package/dist/SideNavigationSelectableItemBase.d.ts +149 -0
  241. package/dist/SideNavigationSelectableItemBase.js +258 -0
  242. package/dist/SideNavigationSelectableItemBase.js.map +1 -0
  243. package/dist/SideNavigationSubItem.d.ts +26 -0
  244. package/dist/SideNavigationSubItem.js +64 -0
  245. package/dist/SideNavigationSubItem.js.map +1 -0
  246. package/dist/SideNavigationSubItemTemplate.d.ts +2 -0
  247. package/dist/SideNavigationSubItemTemplate.js +10 -0
  248. package/dist/SideNavigationSubItemTemplate.js.map +1 -0
  249. package/dist/SideNavigationTemplate.d.ts +2 -0
  250. package/dist/SideNavigationTemplate.js +20 -0
  251. package/dist/SideNavigationTemplate.js.map +1 -0
  252. package/dist/SortItem.d.ts +38 -0
  253. package/dist/SortItem.js +54 -0
  254. package/dist/SortItem.js.map +1 -0
  255. package/dist/Timeline.d.ts +144 -0
  256. package/dist/Timeline.js +377 -0
  257. package/dist/Timeline.js.map +1 -0
  258. package/dist/TimelineGroupItem.d.ts +70 -0
  259. package/dist/TimelineGroupItem.js +164 -0
  260. package/dist/TimelineGroupItem.js.map +1 -0
  261. package/dist/TimelineGroupItemTemplate.d.ts +2 -0
  262. package/dist/TimelineGroupItemTemplate.js +17 -0
  263. package/dist/TimelineGroupItemTemplate.js.map +1 -0
  264. package/dist/TimelineItem.d.ts +122 -0
  265. package/dist/TimelineItem.js +194 -0
  266. package/dist/TimelineItem.js.map +1 -0
  267. package/dist/TimelineItemTemplate.d.ts +2 -0
  268. package/dist/TimelineItemTemplate.js +29 -0
  269. package/dist/TimelineItemTemplate.js.map +1 -0
  270. package/dist/TimelineTemplate.d.ts +2 -0
  271. package/dist/TimelineTemplate.js +18 -0
  272. package/dist/TimelineTemplate.js.map +1 -0
  273. package/dist/UploadCollection.d.ts +123 -0
  274. package/dist/UploadCollection.js +203 -306
  275. package/dist/UploadCollection.js.map +1 -0
  276. package/dist/UploadCollectionItem.d.ts +168 -0
  277. package/dist/UploadCollectionItem.js +382 -475
  278. package/dist/UploadCollectionItem.js.map +1 -0
  279. package/dist/UploadCollectionItemTemplate.d.ts +3 -0
  280. package/dist/UploadCollectionItemTemplate.js +22 -0
  281. package/dist/UploadCollectionItemTemplate.js.map +1 -0
  282. package/dist/UploadCollectionTemplate.d.ts +2 -0
  283. package/dist/UploadCollectionTemplate.js +24 -0
  284. package/dist/UploadCollectionTemplate.js.map +1 -0
  285. package/dist/UserMenu.d.ts +168 -0
  286. package/dist/UserMenu.js +366 -0
  287. package/dist/UserMenu.js.map +1 -0
  288. package/dist/UserMenuAccount.d.ts +61 -0
  289. package/dist/UserMenuAccount.js +121 -0
  290. package/dist/UserMenuAccount.js.map +1 -0
  291. package/dist/UserMenuItem.d.ts +35 -0
  292. package/dist/UserMenuItem.js +52 -0
  293. package/dist/UserMenuItem.js.map +1 -0
  294. package/dist/UserMenuItemGroup.d.ts +36 -0
  295. package/dist/UserMenuItemGroup.js +54 -0
  296. package/dist/UserMenuItemGroup.js.map +1 -0
  297. package/dist/UserMenuItemGroupTemplate.d.ts +2 -0
  298. package/dist/UserMenuItemGroupTemplate.js +5 -0
  299. package/dist/UserMenuItemGroupTemplate.js.map +1 -0
  300. package/dist/UserMenuItemTemplate.d.ts +2 -0
  301. package/dist/UserMenuItemTemplate.js +5 -0
  302. package/dist/UserMenuItemTemplate.js.map +1 -0
  303. package/dist/UserMenuTemplate.d.ts +2 -0
  304. package/dist/UserMenuTemplate.js +57 -0
  305. package/dist/UserMenuTemplate.js.map +1 -0
  306. package/dist/UserSettingsAccountView.d.ts +29 -0
  307. package/dist/UserSettingsAccountView.js +108 -0
  308. package/dist/UserSettingsAccountView.js.map +1 -0
  309. package/dist/UserSettingsAccountViewTemplate.d.ts +2 -0
  310. package/dist/UserSettingsAccountViewTemplate.js +18 -0
  311. package/dist/UserSettingsAccountViewTemplate.js.map +1 -0
  312. package/dist/UserSettingsAppearanceView.d.ts +28 -0
  313. package/dist/UserSettingsAppearanceView.js +108 -0
  314. package/dist/UserSettingsAppearanceView.js.map +1 -0
  315. package/dist/UserSettingsAppearanceViewGroup.d.ts +27 -0
  316. package/dist/UserSettingsAppearanceViewGroup.js +43 -0
  317. package/dist/UserSettingsAppearanceViewGroup.js.map +1 -0
  318. package/dist/UserSettingsAppearanceViewItem.d.ts +29 -0
  319. package/dist/UserSettingsAppearanceViewItem.js +103 -0
  320. package/dist/UserSettingsAppearanceViewItem.js.map +1 -0
  321. package/dist/UserSettingsAppearanceViewItemTemplate.d.ts +2 -0
  322. package/dist/UserSettingsAppearanceViewItemTemplate.js +13 -0
  323. package/dist/UserSettingsAppearanceViewItemTemplate.js.map +1 -0
  324. package/dist/UserSettingsAppearanceViewTemplate.d.ts +2 -0
  325. package/dist/UserSettingsAppearanceViewTemplate.js +6 -0
  326. package/dist/UserSettingsAppearanceViewTemplate.js.map +1 -0
  327. package/dist/UserSettingsDialog.d.ts +118 -0
  328. package/dist/UserSettingsDialog.js +262 -0
  329. package/dist/UserSettingsDialog.js.map +1 -0
  330. package/dist/UserSettingsDialogTemplate.d.ts +2 -0
  331. package/dist/UserSettingsDialogTemplate.js +23 -0
  332. package/dist/UserSettingsDialogTemplate.js.map +1 -0
  333. package/dist/UserSettingsItem.d.ts +136 -0
  334. package/dist/UserSettingsItem.js +215 -0
  335. package/dist/UserSettingsItem.js.map +1 -0
  336. package/dist/UserSettingsItemTemplate.d.ts +4 -0
  337. package/dist/UserSettingsItemTemplate.js +20 -0
  338. package/dist/UserSettingsItemTemplate.js.map +1 -0
  339. package/dist/UserSettingsView.d.ts +43 -0
  340. package/dist/UserSettingsView.js +68 -0
  341. package/dist/UserSettingsView.js.map +1 -0
  342. package/dist/UserSettingsViewTemplate.d.ts +2 -0
  343. package/dist/UserSettingsViewTemplate.js +5 -0
  344. package/dist/UserSettingsViewTemplate.js.map +1 -0
  345. package/dist/ViewSettingsDialog.d.ts +315 -0
  346. package/dist/ViewSettingsDialog.js +743 -0
  347. package/dist/ViewSettingsDialog.js.map +1 -0
  348. package/dist/ViewSettingsDialogTemplate.d.ts +2 -0
  349. package/dist/ViewSettingsDialogTemplate.js +53 -0
  350. package/dist/ViewSettingsDialogTemplate.js.map +1 -0
  351. package/dist/Wizard.d.ts +360 -0
  352. package/dist/Wizard.js +827 -0
  353. package/dist/Wizard.js.map +1 -0
  354. package/dist/WizardPopoverTemplate.d.ts +2 -0
  355. package/dist/WizardPopoverTemplate.js +12 -0
  356. package/dist/WizardPopoverTemplate.js.map +1 -0
  357. package/dist/WizardStep.d.ts +89 -0
  358. package/dist/WizardStep.js +92 -0
  359. package/dist/WizardStep.js.map +1 -0
  360. package/dist/WizardTab.d.ts +99 -0
  361. package/dist/WizardTab.js +162 -0
  362. package/dist/WizardTab.js.map +1 -0
  363. package/dist/WizardTabTemplate.d.ts +2 -0
  364. package/dist/WizardTabTemplate.js +7 -0
  365. package/dist/WizardTabTemplate.js.map +1 -0
  366. package/dist/WizardTemplate.d.ts +2 -0
  367. package/dist/WizardTemplate.js +11 -0
  368. package/dist/WizardTemplate.js.map +1 -0
  369. package/dist/bundle.esm.d.ts +4 -0
  370. package/dist/bundle.esm.js +67 -0
  371. package/dist/bundle.esm.js.map +1 -0
  372. package/dist/bundle.scoped.esm.d.ts +3 -0
  373. package/dist/bundle.scoped.esm.js +5 -0
  374. package/dist/bundle.scoped.esm.js.map +1 -0
  375. package/dist/css/themes/BarcodeScannerDialog.css +1 -0
  376. package/dist/css/themes/DynamicPage.css +1 -0
  377. package/dist/css/themes/DynamicPageHeader.css +1 -0
  378. package/dist/css/themes/DynamicPageHeaderActions.css +1 -0
  379. package/dist/css/themes/DynamicPageTitle.css +1 -0
  380. package/dist/css/themes/DynamicSideContent.css +1 -0
  381. package/dist/css/themes/FlexibleColumnLayout.css +1 -0
  382. package/dist/css/themes/IllustratedMessage.css +1 -0
  383. package/dist/css/themes/InvisibleTextStyles.css +1 -0
  384. package/dist/css/themes/MediaGallery.css +1 -0
  385. package/dist/css/themes/MediaGalleryItem.css +1 -0
  386. package/dist/css/themes/NavigationLayout.css +1 -0
  387. package/dist/css/themes/NavigationMenu.css +1 -0
  388. package/dist/css/themes/NavigationMenuItem.css +1 -0
  389. package/dist/css/themes/NotificationList.css +1 -0
  390. package/dist/css/themes/NotificationListGroupItem.css +1 -0
  391. package/dist/css/themes/NotificationListItem.css +1 -0
  392. package/dist/css/themes/NotificationListItemBase.css +1 -0
  393. package/dist/css/themes/NotificationStateIcon.css +1 -0
  394. package/dist/css/themes/Page.css +1 -0
  395. package/dist/css/themes/ProductSwitch.css +1 -0
  396. package/dist/css/themes/ProductSwitchItem.css +1 -0
  397. package/dist/css/themes/Search.css +1 -0
  398. package/dist/css/themes/SearchField.css +1 -0
  399. package/dist/css/themes/SearchItem.css +1 -0
  400. package/dist/css/themes/SearchItemGroup.css +1 -0
  401. package/dist/css/themes/SearchItemShowMore.css +1 -0
  402. package/dist/css/themes/SearchMessageArea.css +1 -0
  403. package/dist/css/themes/ShellBar.css +1 -0
  404. package/dist/css/themes/ShellBarBranding.css +1 -0
  405. package/dist/css/themes/ShellBarPopover.css +1 -0
  406. package/dist/css/themes/ShellBarSearch.css +1 -0
  407. package/dist/css/themes/SideNavigation.css +1 -0
  408. package/dist/css/themes/SideNavigationGroup.css +1 -0
  409. package/dist/css/themes/SideNavigationItem.css +1 -0
  410. package/dist/css/themes/SideNavigationItemBase.css +1 -0
  411. package/dist/css/themes/SideNavigationPopover.css +1 -0
  412. package/dist/css/themes/SideNavigationSubItem.css +1 -0
  413. package/dist/css/themes/Timeline.css +1 -0
  414. package/dist/css/themes/TimelineGroupItem.css +1 -0
  415. package/dist/css/themes/TimelineItem.css +1 -0
  416. package/dist/css/themes/UploadCollection.css +1 -0
  417. package/dist/css/themes/UploadCollectionItem.css +1 -0
  418. package/dist/css/themes/UserMenu.css +1 -0
  419. package/dist/css/themes/UserMenuItem.css +1 -0
  420. package/dist/css/themes/UserSettingsAccountView.css +1 -0
  421. package/dist/css/themes/UserSettingsAppearanceViewItem.css +1 -0
  422. package/dist/css/themes/UserSettingsDialog.css +1 -0
  423. package/dist/css/themes/UserSettingsItem.css +1 -0
  424. package/dist/css/themes/UserSettingsView.css +1 -0
  425. package/dist/css/themes/ViewSettingsDialog.css +1 -0
  426. package/dist/css/themes/Wizard.css +1 -0
  427. package/dist/css/themes/WizardPopover.css +1 -0
  428. package/dist/css/themes/WizardTab.css +1 -0
  429. package/dist/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
  430. package/dist/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
  431. package/dist/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
  432. package/dist/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
  433. package/dist/css/themes/sap_horizon/parameters-bundle.css +1 -0
  434. package/dist/css/themes/sap_horizon_dark/parameters-bundle.css +1 -0
  435. package/dist/css/themes/sap_horizon_dark_exp/parameters-bundle.css +1 -0
  436. package/dist/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
  437. package/dist/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -0
  438. package/dist/css/themes/sap_horizon_hcb_exp/parameters-bundle.css +1 -0
  439. package/dist/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -0
  440. package/dist/css/themes/sap_horizon_hcw_exp/parameters-bundle.css +1 -0
  441. package/dist/custom-elements-internal.json +13915 -0
  442. package/dist/custom-elements.json +9753 -0
  443. package/dist/fcl-utils/FCLLayout.d.ts +24 -0
  444. package/dist/fcl-utils/FCLLayout.js +271 -0
  445. package/dist/fcl-utils/FCLLayout.js.map +1 -0
  446. package/dist/generated/assets/i18n/messagebundle_ar.json +1 -1
  447. package/dist/generated/assets/i18n/messagebundle_bg.json +1 -1
  448. package/dist/generated/assets/i18n/messagebundle_ca.json +1 -1
  449. package/dist/generated/assets/i18n/messagebundle_cnr.json +1 -0
  450. package/dist/generated/assets/i18n/messagebundle_cs.json +1 -1
  451. package/dist/generated/assets/i18n/messagebundle_cy.json +1 -0
  452. package/dist/generated/assets/i18n/messagebundle_da.json +1 -1
  453. package/dist/generated/assets/i18n/messagebundle_de.json +1 -1
  454. package/dist/generated/assets/i18n/messagebundle_el.json +1 -1
  455. package/dist/generated/assets/i18n/messagebundle_en.json +1 -1
  456. package/dist/generated/assets/i18n/messagebundle_en_GB.json +1 -0
  457. package/dist/generated/assets/i18n/messagebundle_en_US_sappsd.json +1 -0
  458. package/dist/generated/assets/i18n/messagebundle_en_US_saprigi.json +1 -0
  459. package/dist/generated/assets/i18n/messagebundle_en_US_saptrc.json +1 -0
  460. package/dist/generated/assets/i18n/messagebundle_es.json +1 -1
  461. package/dist/generated/assets/i18n/messagebundle_es_MX.json +1 -0
  462. package/dist/generated/assets/i18n/messagebundle_et.json +1 -1
  463. package/dist/generated/assets/i18n/messagebundle_fi.json +1 -1
  464. package/dist/generated/assets/i18n/messagebundle_fr.json +1 -1
  465. package/dist/generated/assets/i18n/messagebundle_fr_CA.json +1 -0
  466. package/dist/generated/assets/i18n/messagebundle_hi.json +1 -1
  467. package/dist/generated/assets/i18n/messagebundle_hr.json +1 -1
  468. package/dist/generated/assets/i18n/messagebundle_hu.json +1 -1
  469. package/dist/generated/assets/i18n/messagebundle_id.json +1 -0
  470. package/dist/generated/assets/i18n/messagebundle_it.json +1 -1
  471. package/dist/generated/assets/i18n/messagebundle_iw.json +1 -1
  472. package/dist/generated/assets/i18n/messagebundle_ja.json +1 -1
  473. package/dist/generated/assets/i18n/messagebundle_kk.json +1 -1
  474. package/dist/generated/assets/i18n/messagebundle_ko.json +1 -1
  475. package/dist/generated/assets/i18n/messagebundle_lt.json +1 -1
  476. package/dist/generated/assets/i18n/messagebundle_lv.json +1 -1
  477. package/dist/generated/assets/i18n/messagebundle_mk.json +1 -0
  478. package/dist/generated/assets/i18n/messagebundle_ms.json +1 -1
  479. package/dist/generated/assets/i18n/messagebundle_nl.json +1 -1
  480. package/dist/generated/assets/i18n/messagebundle_no.json +1 -1
  481. package/dist/generated/assets/i18n/messagebundle_pl.json +1 -1
  482. package/dist/generated/assets/i18n/messagebundle_pt.json +1 -1
  483. package/dist/generated/assets/i18n/messagebundle_pt_PT.json +1 -0
  484. package/dist/generated/assets/i18n/messagebundle_ro.json +1 -1
  485. package/dist/generated/assets/i18n/messagebundle_ru.json +1 -1
  486. package/dist/generated/assets/i18n/messagebundle_sh.json +1 -1
  487. package/dist/generated/assets/i18n/messagebundle_sk.json +1 -1
  488. package/dist/generated/assets/i18n/messagebundle_sl.json +1 -1
  489. package/dist/generated/assets/i18n/messagebundle_sr.json +1 -0
  490. package/dist/generated/assets/i18n/messagebundle_sv.json +1 -1
  491. package/dist/generated/assets/i18n/messagebundle_th.json +1 -1
  492. package/dist/generated/assets/i18n/messagebundle_tr.json +1 -1
  493. package/dist/generated/assets/i18n/messagebundle_uk.json +1 -1
  494. package/dist/generated/assets/i18n/messagebundle_vi.json +1 -1
  495. package/dist/generated/assets/i18n/messagebundle_zh_CN.json +1 -1
  496. package/dist/generated/assets/i18n/messagebundle_zh_TW.json +1 -1
  497. package/dist/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json +1 -1
  498. package/dist/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json +1 -1
  499. package/dist/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json +1 -0
  500. package/dist/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json +1 -0
  501. package/dist/generated/assets/themes/sap_horizon/parameters-bundle.css.json +1 -0
  502. package/dist/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json +1 -0
  503. package/dist/generated/assets/themes/sap_horizon_dark_exp/parameters-bundle.css.json +1 -0
  504. package/dist/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json +1 -0
  505. package/dist/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json +1 -0
  506. package/dist/generated/assets/themes/sap_horizon_hcb_exp/parameters-bundle.css.json +1 -0
  507. package/dist/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json +1 -0
  508. package/dist/generated/assets/themes/sap_horizon_hcw_exp/parameters-bundle.css.json +1 -0
  509. package/dist/generated/i18n/i18n-defaults.d.ts +208 -0
  510. package/dist/generated/i18n/i18n-defaults.js +208 -2
  511. package/dist/generated/i18n/i18n-defaults.js.map +1 -0
  512. package/dist/generated/js-imports/Illustrations.d.ts +1 -0
  513. package/dist/generated/js-imports/Illustrations.js +88 -0
  514. package/dist/generated/js-imports/Illustrations.js.map +1 -0
  515. package/dist/generated/js-imports/IllustrationsTNT.d.ts +1 -0
  516. package/dist/generated/js-imports/IllustrationsTNT.js +62 -0
  517. package/dist/generated/js-imports/IllustrationsTNT.js.map +1 -0
  518. package/dist/generated/js-imports/IllustrationsV5TNT.d.ts +1 -0
  519. package/dist/generated/js-imports/IllustrationsV5TNT.js +59 -0
  520. package/dist/generated/js-imports/IllustrationsV5TNT.js.map +1 -0
  521. package/dist/generated/js-imports/IllustrationsV5TNTHC.d.ts +1 -0
  522. package/dist/generated/js-imports/IllustrationsV5TNTHC.js +60 -0
  523. package/dist/generated/js-imports/IllustrationsV5TNTHC.js.map +1 -0
  524. package/dist/generated/json-imports/Themes-fetch.d.ts +1 -0
  525. package/dist/generated/json-imports/Themes-fetch.js +25 -0
  526. package/dist/generated/json-imports/Themes-fetch.js.map +1 -0
  527. package/dist/generated/json-imports/Themes-node.d.ts +1 -0
  528. package/dist/generated/json-imports/Themes-node.js +25 -0
  529. package/dist/generated/json-imports/Themes-node.js.map +1 -0
  530. package/dist/generated/json-imports/Themes.d.ts +1 -0
  531. package/dist/generated/json-imports/Themes.js +25 -19
  532. package/dist/generated/json-imports/Themes.js.map +1 -0
  533. package/dist/generated/json-imports/i18n-fetch.d.ts +1 -0
  534. package/dist/generated/json-imports/i18n-fetch.js +120 -0
  535. package/dist/generated/json-imports/i18n-fetch.js.map +1 -0
  536. package/dist/generated/json-imports/i18n-node.d.ts +1 -0
  537. package/dist/generated/json-imports/i18n-node.js +120 -0
  538. package/dist/generated/json-imports/i18n-node.js.map +1 -0
  539. package/dist/generated/json-imports/i18n.d.ts +1 -0
  540. package/dist/generated/json-imports/i18n.js +119 -90
  541. package/dist/generated/json-imports/i18n.js.map +1 -0
  542. package/dist/generated/themes/BarcodeScannerDialog.css.d.ts +2 -0
  543. package/dist/generated/themes/BarcodeScannerDialog.css.js +8 -0
  544. package/dist/generated/themes/BarcodeScannerDialog.css.js.map +1 -0
  545. package/dist/generated/themes/DynamicPage.css.d.ts +2 -0
  546. package/dist/generated/themes/DynamicPage.css.js +8 -0
  547. package/dist/generated/themes/DynamicPage.css.js.map +1 -0
  548. package/dist/generated/themes/DynamicPageHeader.css.d.ts +2 -0
  549. package/dist/generated/themes/DynamicPageHeader.css.js +8 -0
  550. package/dist/generated/themes/DynamicPageHeader.css.js.map +1 -0
  551. package/dist/generated/themes/DynamicPageHeaderActions.css.d.ts +2 -0
  552. package/dist/generated/themes/DynamicPageHeaderActions.css.js +8 -0
  553. package/dist/generated/themes/DynamicPageHeaderActions.css.js.map +1 -0
  554. package/dist/generated/themes/DynamicPageTitle.css.d.ts +2 -0
  555. package/dist/generated/themes/DynamicPageTitle.css.js +8 -0
  556. package/dist/generated/themes/DynamicPageTitle.css.js.map +1 -0
  557. package/dist/generated/themes/DynamicSideContent.css.d.ts +2 -0
  558. package/dist/generated/themes/DynamicSideContent.css.js +8 -0
  559. package/dist/generated/themes/DynamicSideContent.css.js.map +1 -0
  560. package/dist/generated/themes/FlexibleColumnLayout.css.d.ts +2 -0
  561. package/dist/generated/themes/FlexibleColumnLayout.css.js +8 -0
  562. package/dist/generated/themes/FlexibleColumnLayout.css.js.map +1 -0
  563. package/dist/generated/themes/IllustratedMessage.css.d.ts +2 -0
  564. package/dist/generated/themes/IllustratedMessage.css.js +8 -0
  565. package/dist/generated/themes/IllustratedMessage.css.js.map +1 -0
  566. package/dist/generated/themes/InvisibleTextStyles.css.d.ts +2 -0
  567. package/dist/generated/themes/InvisibleTextStyles.css.js +8 -8
  568. package/dist/generated/themes/InvisibleTextStyles.css.js.map +1 -0
  569. package/dist/generated/themes/MediaGallery.css.d.ts +2 -0
  570. package/dist/generated/themes/MediaGallery.css.js +8 -0
  571. package/dist/generated/themes/MediaGallery.css.js.map +1 -0
  572. package/dist/generated/themes/MediaGalleryItem.css.d.ts +2 -0
  573. package/dist/generated/themes/MediaGalleryItem.css.js +8 -0
  574. package/dist/generated/themes/MediaGalleryItem.css.js.map +1 -0
  575. package/dist/generated/themes/NavigationLayout.css.d.ts +2 -0
  576. package/dist/generated/themes/NavigationLayout.css.js +8 -0
  577. package/dist/generated/themes/NavigationLayout.css.js.map +1 -0
  578. package/dist/generated/themes/NavigationMenu.css.d.ts +2 -0
  579. package/dist/generated/themes/NavigationMenu.css.js +8 -0
  580. package/dist/generated/themes/NavigationMenu.css.js.map +1 -0
  581. package/dist/generated/themes/NavigationMenuItem.css.d.ts +2 -0
  582. package/dist/generated/themes/NavigationMenuItem.css.js +8 -0
  583. package/dist/generated/themes/NavigationMenuItem.css.js.map +1 -0
  584. package/dist/generated/themes/NotificationList.css.d.ts +2 -0
  585. package/dist/generated/themes/NotificationList.css.js +8 -0
  586. package/dist/generated/themes/NotificationList.css.js.map +1 -0
  587. package/dist/generated/themes/NotificationListGroupItem.css.d.ts +2 -0
  588. package/dist/generated/themes/NotificationListGroupItem.css.js +8 -8
  589. package/dist/generated/themes/NotificationListGroupItem.css.js.map +1 -0
  590. package/dist/generated/themes/NotificationListItem.css.d.ts +2 -0
  591. package/dist/generated/themes/NotificationListItem.css.js +8 -8
  592. package/dist/generated/themes/NotificationListItem.css.js.map +1 -0
  593. package/dist/generated/themes/NotificationListItemBase.css.d.ts +2 -0
  594. package/dist/generated/themes/NotificationListItemBase.css.js +8 -8
  595. package/dist/generated/themes/NotificationListItemBase.css.js.map +1 -0
  596. package/dist/generated/themes/NotificationStateIcon.css.d.ts +2 -0
  597. package/dist/generated/themes/NotificationStateIcon.css.js +8 -0
  598. package/dist/generated/themes/NotificationStateIcon.css.js.map +1 -0
  599. package/dist/generated/themes/Page.css.d.ts +2 -0
  600. package/dist/generated/themes/Page.css.js +8 -0
  601. package/dist/generated/themes/Page.css.js.map +1 -0
  602. package/dist/generated/themes/ProductSwitch.css.d.ts +2 -0
  603. package/dist/generated/themes/ProductSwitch.css.js +8 -8
  604. package/dist/generated/themes/ProductSwitch.css.js.map +1 -0
  605. package/dist/generated/themes/ProductSwitchItem.css.d.ts +2 -0
  606. package/dist/generated/themes/ProductSwitchItem.css.js +8 -8
  607. package/dist/generated/themes/ProductSwitchItem.css.js.map +1 -0
  608. package/dist/generated/themes/Search.css.d.ts +2 -0
  609. package/dist/generated/themes/Search.css.js +8 -0
  610. package/dist/generated/themes/Search.css.js.map +1 -0
  611. package/dist/generated/themes/SearchField.css.d.ts +2 -0
  612. package/dist/generated/themes/SearchField.css.js +8 -0
  613. package/dist/generated/themes/SearchField.css.js.map +1 -0
  614. package/dist/generated/themes/SearchItem.css.d.ts +2 -0
  615. package/dist/generated/themes/SearchItem.css.js +8 -0
  616. package/dist/generated/themes/SearchItem.css.js.map +1 -0
  617. package/dist/generated/themes/SearchItemGroup.css.d.ts +2 -0
  618. package/dist/generated/themes/SearchItemGroup.css.js +8 -0
  619. package/dist/generated/themes/SearchItemGroup.css.js.map +1 -0
  620. package/dist/generated/themes/SearchItemShowMore.css.d.ts +2 -0
  621. package/dist/generated/themes/SearchItemShowMore.css.js +8 -0
  622. package/dist/generated/themes/SearchItemShowMore.css.js.map +1 -0
  623. package/dist/generated/themes/SearchMessageArea.css.d.ts +2 -0
  624. package/dist/generated/themes/SearchMessageArea.css.js +8 -0
  625. package/dist/generated/themes/SearchMessageArea.css.js.map +1 -0
  626. package/dist/generated/themes/ShellBar.css.d.ts +2 -0
  627. package/dist/generated/themes/ShellBar.css.js +8 -8
  628. package/dist/generated/themes/ShellBar.css.js.map +1 -0
  629. package/dist/generated/themes/ShellBarBranding.css.d.ts +2 -0
  630. package/dist/generated/themes/ShellBarBranding.css.js +8 -0
  631. package/dist/generated/themes/ShellBarBranding.css.js.map +1 -0
  632. package/dist/generated/themes/ShellBarPopover.css.d.ts +2 -0
  633. package/dist/generated/themes/ShellBarPopover.css.js +8 -0
  634. package/dist/generated/themes/ShellBarPopover.css.js.map +1 -0
  635. package/dist/generated/themes/ShellBarSearch.css.d.ts +2 -0
  636. package/dist/generated/themes/ShellBarSearch.css.js +8 -0
  637. package/dist/generated/themes/ShellBarSearch.css.js.map +1 -0
  638. package/dist/generated/themes/SideNavigation.css.d.ts +2 -0
  639. package/dist/generated/themes/SideNavigation.css.js +8 -0
  640. package/dist/generated/themes/SideNavigation.css.js.map +1 -0
  641. package/dist/generated/themes/SideNavigationGroup.css.d.ts +2 -0
  642. package/dist/generated/themes/SideNavigationGroup.css.js +8 -0
  643. package/dist/generated/themes/SideNavigationGroup.css.js.map +1 -0
  644. package/dist/generated/themes/SideNavigationItem.css.d.ts +2 -0
  645. package/dist/generated/themes/SideNavigationItem.css.js +8 -0
  646. package/dist/generated/themes/SideNavigationItem.css.js.map +1 -0
  647. package/dist/generated/themes/SideNavigationItemBase.css.d.ts +2 -0
  648. package/dist/generated/themes/SideNavigationItemBase.css.js +8 -0
  649. package/dist/generated/themes/SideNavigationItemBase.css.js.map +1 -0
  650. package/dist/generated/themes/SideNavigationPopover.css.d.ts +2 -0
  651. package/dist/generated/themes/SideNavigationPopover.css.js +8 -0
  652. package/dist/generated/themes/SideNavigationPopover.css.js.map +1 -0
  653. package/dist/generated/themes/SideNavigationSubItem.css.d.ts +2 -0
  654. package/dist/generated/themes/SideNavigationSubItem.css.js +8 -0
  655. package/dist/generated/themes/SideNavigationSubItem.css.js.map +1 -0
  656. package/dist/generated/themes/Timeline.css.d.ts +2 -0
  657. package/dist/generated/themes/Timeline.css.js +8 -0
  658. package/dist/generated/themes/Timeline.css.js.map +1 -0
  659. package/dist/generated/themes/TimelineGroupItem.css.d.ts +2 -0
  660. package/dist/generated/themes/TimelineGroupItem.css.js +8 -0
  661. package/dist/generated/themes/TimelineGroupItem.css.js.map +1 -0
  662. package/dist/generated/themes/TimelineItem.css.d.ts +2 -0
  663. package/dist/generated/themes/TimelineItem.css.js +8 -0
  664. package/dist/generated/themes/TimelineItem.css.js.map +1 -0
  665. package/dist/generated/themes/UploadCollection.css.d.ts +2 -0
  666. package/dist/generated/themes/UploadCollection.css.js +8 -8
  667. package/dist/generated/themes/UploadCollection.css.js.map +1 -0
  668. package/dist/generated/themes/UploadCollectionItem.css.d.ts +2 -0
  669. package/dist/generated/themes/UploadCollectionItem.css.js +8 -8
  670. package/dist/generated/themes/UploadCollectionItem.css.js.map +1 -0
  671. package/dist/generated/themes/UserMenu.css.d.ts +2 -0
  672. package/dist/generated/themes/UserMenu.css.js +8 -0
  673. package/dist/generated/themes/UserMenu.css.js.map +1 -0
  674. package/dist/generated/themes/UserMenuItem.css.d.ts +2 -0
  675. package/dist/generated/themes/UserMenuItem.css.js +8 -0
  676. package/dist/generated/themes/UserMenuItem.css.js.map +1 -0
  677. package/dist/generated/themes/UserSettingsAccountView.css.d.ts +2 -0
  678. package/dist/generated/themes/UserSettingsAccountView.css.js +8 -0
  679. package/dist/generated/themes/UserSettingsAccountView.css.js.map +1 -0
  680. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.d.ts +2 -0
  681. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.js +8 -0
  682. package/dist/generated/themes/UserSettingsAppearanceViewItem.css.js.map +1 -0
  683. package/dist/generated/themes/UserSettingsDialog.css.d.ts +2 -0
  684. package/dist/generated/themes/UserSettingsDialog.css.js +8 -0
  685. package/dist/generated/themes/UserSettingsDialog.css.js.map +1 -0
  686. package/dist/generated/themes/UserSettingsItem.css.d.ts +2 -0
  687. package/dist/generated/themes/UserSettingsItem.css.js +8 -0
  688. package/dist/generated/themes/UserSettingsItem.css.js.map +1 -0
  689. package/dist/generated/themes/UserSettingsView.css.d.ts +2 -0
  690. package/dist/generated/themes/UserSettingsView.css.js +8 -0
  691. package/dist/generated/themes/UserSettingsView.css.js.map +1 -0
  692. package/dist/generated/themes/ViewSettingsDialog.css.d.ts +2 -0
  693. package/dist/generated/themes/ViewSettingsDialog.css.js +8 -0
  694. package/dist/generated/themes/ViewSettingsDialog.css.js.map +1 -0
  695. package/dist/generated/themes/Wizard.css.d.ts +2 -0
  696. package/dist/generated/themes/Wizard.css.js +8 -0
  697. package/dist/generated/themes/Wizard.css.js.map +1 -0
  698. package/dist/generated/themes/WizardPopover.css.d.ts +2 -0
  699. package/dist/generated/themes/WizardPopover.css.js +8 -0
  700. package/dist/generated/themes/WizardPopover.css.js.map +1 -0
  701. package/dist/generated/themes/WizardTab.css.d.ts +2 -0
  702. package/dist/generated/themes/WizardTab.css.js +8 -0
  703. package/dist/generated/themes/WizardTab.css.js.map +1 -0
  704. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.d.ts +2 -0
  705. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -1
  706. package/dist/generated/themes/sap_fiori_3/parameters-bundle.css.js.map +1 -0
  707. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.d.ts +2 -0
  708. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -1
  709. package/dist/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js.map +1 -0
  710. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.d.ts +2 -0
  711. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -0
  712. package/dist/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js.map +1 -0
  713. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.d.ts +2 -0
  714. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -0
  715. package/dist/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js.map +1 -0
  716. package/dist/generated/themes/sap_horizon/parameters-bundle.css.d.ts +2 -0
  717. package/dist/generated/themes/sap_horizon/parameters-bundle.css.js +3 -0
  718. package/dist/generated/themes/sap_horizon/parameters-bundle.css.js.map +1 -0
  719. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.d.ts +2 -0
  720. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -0
  721. package/dist/generated/themes/sap_horizon_dark/parameters-bundle.css.js.map +1 -0
  722. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.d.ts +2 -0
  723. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js +3 -0
  724. package/dist/generated/themes/sap_horizon_dark_exp/parameters-bundle.css.js.map +1 -0
  725. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.d.ts +2 -0
  726. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -0
  727. package/dist/generated/themes/sap_horizon_exp/parameters-bundle.css.js.map +1 -0
  728. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.d.ts +2 -0
  729. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -0
  730. package/dist/generated/themes/sap_horizon_hcb/parameters-bundle.css.js.map +1 -0
  731. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.d.ts +2 -0
  732. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js +3 -0
  733. package/dist/generated/themes/sap_horizon_hcb_exp/parameters-bundle.css.js.map +1 -0
  734. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.d.ts +2 -0
  735. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -0
  736. package/dist/generated/themes/sap_horizon_hcw/parameters-bundle.css.js.map +1 -0
  737. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.d.ts +2 -0
  738. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js +3 -0
  739. package/dist/generated/themes/sap_horizon_hcw_exp/parameters-bundle.css.js.map +1 -0
  740. package/dist/illustrations/Achievement.d.ts +8 -0
  741. package/dist/illustrations/Achievement.js +33 -0
  742. package/dist/illustrations/AddColumn.d.ts +8 -0
  743. package/dist/illustrations/AddColumn.js +33 -0
  744. package/dist/illustrations/AddDimensions.d.ts +8 -0
  745. package/dist/illustrations/AddDimensions.js +33 -0
  746. package/dist/illustrations/AddPeople.d.ts +8 -0
  747. package/dist/illustrations/AddPeople.js +33 -0
  748. package/dist/illustrations/AddPeopleToCalendar.d.ts +8 -0
  749. package/dist/illustrations/AddPeopleToCalendar.js +33 -0
  750. package/dist/illustrations/AddingColumns.d.ts +8 -0
  751. package/dist/illustrations/AddingColumns.js +33 -0
  752. package/dist/illustrations/AllIllustrations.d.ts +4 -0
  753. package/dist/illustrations/AllIllustrations.js +5 -0
  754. package/dist/illustrations/AllIllustrations.js.map +1 -0
  755. package/dist/illustrations/BalloonSky.d.ts +8 -0
  756. package/dist/illustrations/BalloonSky.js +33 -0
  757. package/dist/illustrations/BeforeSearch.d.ts +8 -0
  758. package/dist/illustrations/BeforeSearch.js +33 -0
  759. package/dist/illustrations/Connection.d.ts +8 -0
  760. package/dist/illustrations/Connection.js +33 -0
  761. package/dist/illustrations/DragFilesToUpload.d.ts +8 -0
  762. package/dist/illustrations/DragFilesToUpload.js +33 -0
  763. package/dist/illustrations/EmptyCalendar.d.ts +8 -0
  764. package/dist/illustrations/EmptyCalendar.js +33 -0
  765. package/dist/illustrations/EmptyList.d.ts +8 -0
  766. package/dist/illustrations/EmptyList.js +33 -0
  767. package/dist/illustrations/EmptyPlanningCalendar.d.ts +8 -0
  768. package/dist/illustrations/EmptyPlanningCalendar.js +33 -0
  769. package/dist/illustrations/ErrorScreen.d.ts +8 -0
  770. package/dist/illustrations/ErrorScreen.js +33 -0
  771. package/dist/illustrations/FilterTable.d.ts +8 -0
  772. package/dist/illustrations/FilterTable.js +33 -0
  773. package/dist/illustrations/FilteringColumns.d.ts +8 -0
  774. package/dist/illustrations/FilteringColumns.js +33 -0
  775. package/dist/illustrations/GroupTable.d.ts +8 -0
  776. package/dist/illustrations/GroupTable.js +33 -0
  777. package/dist/illustrations/GroupingColumns.d.ts +8 -0
  778. package/dist/illustrations/GroupingColumns.js +33 -0
  779. package/dist/illustrations/KeyTask.d.ts +8 -0
  780. package/dist/illustrations/KeyTask.js +33 -0
  781. package/dist/illustrations/NewMail.d.ts +8 -0
  782. package/dist/illustrations/NewMail.js +33 -0
  783. package/dist/illustrations/NoActivities.d.ts +8 -0
  784. package/dist/illustrations/NoActivities.js +33 -0
  785. package/dist/illustrations/NoChartData.d.ts +8 -0
  786. package/dist/illustrations/NoChartData.js +33 -0
  787. package/dist/illustrations/NoColumnsSet.d.ts +8 -0
  788. package/dist/illustrations/NoColumnsSet.js +33 -0
  789. package/dist/illustrations/NoData.d.ts +8 -0
  790. package/dist/illustrations/NoData.js +33 -0
  791. package/dist/illustrations/NoDimensionsSet.d.ts +8 -0
  792. package/dist/illustrations/NoDimensionsSet.js +33 -0
  793. package/dist/illustrations/NoEntries.d.ts +8 -0
  794. package/dist/illustrations/NoEntries.js +33 -0
  795. package/dist/illustrations/NoFilterResults.d.ts +8 -0
  796. package/dist/illustrations/NoFilterResults.js +33 -0
  797. package/dist/illustrations/NoMail.d.ts +8 -0
  798. package/dist/illustrations/NoMail.js +33 -0
  799. package/dist/illustrations/NoMail_v1.d.ts +8 -0
  800. package/dist/illustrations/NoMail_v1.js +33 -0
  801. package/dist/illustrations/NoNotifications.d.ts +8 -0
  802. package/dist/illustrations/NoNotifications.js +33 -0
  803. package/dist/illustrations/NoSavedItems.d.ts +8 -0
  804. package/dist/illustrations/NoSavedItems.js +33 -0
  805. package/dist/illustrations/NoSavedItems_v1.d.ts +8 -0
  806. package/dist/illustrations/NoSavedItems_v1.js +33 -0
  807. package/dist/illustrations/NoSearchResults.d.ts +8 -0
  808. package/dist/illustrations/NoSearchResults.js +33 -0
  809. package/dist/illustrations/NoTasks.d.ts +8 -0
  810. package/dist/illustrations/NoTasks.js +33 -0
  811. package/dist/illustrations/NoTasks_v1.d.ts +8 -0
  812. package/dist/illustrations/NoTasks_v1.js +33 -0
  813. package/dist/illustrations/PageNotFound.d.ts +8 -0
  814. package/dist/illustrations/PageNotFound.js +33 -0
  815. package/dist/illustrations/ReceiveAppreciation.d.ts +8 -0
  816. package/dist/illustrations/ReceiveAppreciation.js +33 -0
  817. package/dist/illustrations/ReloadScreen.d.ts +8 -0
  818. package/dist/illustrations/ReloadScreen.js +33 -0
  819. package/dist/illustrations/ResizeColumn.d.ts +8 -0
  820. package/dist/illustrations/ResizeColumn.js +33 -0
  821. package/dist/illustrations/ResizingColumns.d.ts +8 -0
  822. package/dist/illustrations/ResizingColumns.js +33 -0
  823. package/dist/illustrations/SearchEarth.d.ts +8 -0
  824. package/dist/illustrations/SearchEarth.js +33 -0
  825. package/dist/illustrations/SearchFolder.d.ts +8 -0
  826. package/dist/illustrations/SearchFolder.js +33 -0
  827. package/dist/illustrations/SignOut.d.ts +8 -0
  828. package/dist/illustrations/SignOut.js +33 -0
  829. package/dist/illustrations/SimpleBalloon.d.ts +8 -0
  830. package/dist/illustrations/SimpleBalloon.js +33 -0
  831. package/dist/illustrations/SimpleBell.d.ts +8 -0
  832. package/dist/illustrations/SimpleBell.js +33 -0
  833. package/dist/illustrations/SimpleCalendar.d.ts +8 -0
  834. package/dist/illustrations/SimpleCalendar.js +33 -0
  835. package/dist/illustrations/SimpleCheckMark.d.ts +8 -0
  836. package/dist/illustrations/SimpleCheckMark.js +33 -0
  837. package/dist/illustrations/SimpleConnection.d.ts +8 -0
  838. package/dist/illustrations/SimpleConnection.js +33 -0
  839. package/dist/illustrations/SimpleEmptyDoc.d.ts +8 -0
  840. package/dist/illustrations/SimpleEmptyDoc.js +33 -0
  841. package/dist/illustrations/SimpleEmptyList.d.ts +8 -0
  842. package/dist/illustrations/SimpleEmptyList.js +33 -0
  843. package/dist/illustrations/SimpleError.d.ts +8 -0
  844. package/dist/illustrations/SimpleError.js +33 -0
  845. package/dist/illustrations/SimpleMagnifier.d.ts +8 -0
  846. package/dist/illustrations/SimpleMagnifier.js +33 -0
  847. package/dist/illustrations/SimpleMail.d.ts +8 -0
  848. package/dist/illustrations/SimpleMail.js +33 -0
  849. package/dist/illustrations/SimpleNoSavedItems.d.ts +8 -0
  850. package/dist/illustrations/SimpleNoSavedItems.js +33 -0
  851. package/dist/illustrations/SimpleNotFoundMagnifier.d.ts +8 -0
  852. package/dist/illustrations/SimpleNotFoundMagnifier.js +33 -0
  853. package/dist/illustrations/SimpleReload.d.ts +8 -0
  854. package/dist/illustrations/SimpleReload.js +33 -0
  855. package/dist/illustrations/SimpleTask.d.ts +8 -0
  856. package/dist/illustrations/SimpleTask.js +33 -0
  857. package/dist/illustrations/SleepingBell.d.ts +8 -0
  858. package/dist/illustrations/SleepingBell.js +33 -0
  859. package/dist/illustrations/SortColumn.d.ts +8 -0
  860. package/dist/illustrations/SortColumn.js +33 -0
  861. package/dist/illustrations/SortingColumns.d.ts +8 -0
  862. package/dist/illustrations/SortingColumns.js +33 -0
  863. package/dist/illustrations/SuccessBalloon.d.ts +8 -0
  864. package/dist/illustrations/SuccessBalloon.js +33 -0
  865. package/dist/illustrations/SuccessCheckMark.d.ts +8 -0
  866. package/dist/illustrations/SuccessCheckMark.js +33 -0
  867. package/dist/illustrations/SuccessHighFive.d.ts +8 -0
  868. package/dist/illustrations/SuccessHighFive.js +33 -0
  869. package/dist/illustrations/SuccessScreen.d.ts +8 -0
  870. package/dist/illustrations/SuccessScreen.js +33 -0
  871. package/dist/illustrations/Survey.d.ts +8 -0
  872. package/dist/illustrations/Survey.js +33 -0
  873. package/dist/illustrations/Tent.d.ts +8 -0
  874. package/dist/illustrations/Tent.js +33 -0
  875. package/dist/illustrations/UnableToLoad.d.ts +8 -0
  876. package/dist/illustrations/UnableToLoad.js +33 -0
  877. package/dist/illustrations/UnableToLoadImage.d.ts +8 -0
  878. package/dist/illustrations/UnableToLoadImage.js +33 -0
  879. package/dist/illustrations/UnableToUpload.d.ts +8 -0
  880. package/dist/illustrations/UnableToUpload.js +33 -0
  881. package/dist/illustrations/UploadCollection.d.ts +8 -0
  882. package/dist/illustrations/UploadCollection.js +33 -0
  883. package/dist/illustrations/UploadToCloud.d.ts +8 -0
  884. package/dist/illustrations/UploadToCloud.js +33 -0
  885. package/dist/illustrations/UserHasSignedUp.d.ts +8 -0
  886. package/dist/illustrations/UserHasSignedUp.js +33 -0
  887. package/dist/illustrations/sapIllus-Dialog-Achievement.js +29 -0
  888. package/dist/illustrations/sapIllus-Dialog-AddColumn.js +38 -0
  889. package/dist/illustrations/sapIllus-Dialog-AddDimensions.js +18 -0
  890. package/dist/illustrations/sapIllus-Dialog-AddPeople.js +32 -0
  891. package/dist/illustrations/sapIllus-Dialog-AddPeopleToCalendar.js +52 -0
  892. package/dist/illustrations/sapIllus-Dialog-AddingColumns.js +38 -0
  893. package/dist/illustrations/sapIllus-Dialog-BalloonSky.js +46 -0
  894. package/dist/illustrations/sapIllus-Dialog-BeforeSearch.js +42 -0
  895. package/dist/illustrations/sapIllus-Dialog-Connection.js +19 -0
  896. package/dist/illustrations/sapIllus-Dialog-DragFilesToUpload.js +20 -0
  897. package/dist/illustrations/sapIllus-Dialog-EmptyCalendar.js +78 -0
  898. package/dist/illustrations/sapIllus-Dialog-EmptyList.js +37 -0
  899. package/dist/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +19 -0
  900. package/dist/illustrations/sapIllus-Dialog-ErrorScreen.js +35 -0
  901. package/dist/illustrations/sapIllus-Dialog-FilterTable.js +66 -0
  902. package/dist/illustrations/sapIllus-Dialog-FilteringColumns.js +39 -0
  903. package/dist/illustrations/sapIllus-Dialog-GroupTable.js +68 -0
  904. package/dist/illustrations/sapIllus-Dialog-GroupingColumns.js +35 -0
  905. package/dist/illustrations/sapIllus-Dialog-KeyTask.js +120 -0
  906. package/dist/illustrations/sapIllus-Dialog-NewMail.js +38 -0
  907. package/dist/illustrations/sapIllus-Dialog-NoActivities.js +34 -0
  908. package/dist/illustrations/sapIllus-Dialog-NoChartData.js +45 -0
  909. package/dist/illustrations/sapIllus-Dialog-NoColumnsSet.js +29 -0
  910. package/dist/illustrations/sapIllus-Dialog-NoData.js +12 -0
  911. package/dist/illustrations/sapIllus-Dialog-NoDimensionsSet.js +40 -0
  912. package/dist/illustrations/sapIllus-Dialog-NoEntries.js +42 -0
  913. package/dist/illustrations/sapIllus-Dialog-NoFilterResults.js +20 -0
  914. package/dist/illustrations/sapIllus-Dialog-NoMail.js +16 -0
  915. package/dist/illustrations/sapIllus-Dialog-NoMail_v1.js +23 -0
  916. package/dist/illustrations/sapIllus-Dialog-NoNotifications.js +28 -0
  917. package/dist/illustrations/sapIllus-Dialog-NoSavedItems.js +54 -0
  918. package/dist/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +37 -0
  919. package/dist/illustrations/sapIllus-Dialog-NoSearchResults.js +73 -0
  920. package/dist/illustrations/sapIllus-Dialog-NoTasks.js +60 -0
  921. package/dist/illustrations/sapIllus-Dialog-NoTasks_v1.js +63 -0
  922. package/dist/illustrations/sapIllus-Dialog-PageNotFound.js +13 -0
  923. package/dist/illustrations/sapIllus-Dialog-ReceiveAppreciation.js +25 -0
  924. package/dist/illustrations/sapIllus-Dialog-ReloadScreen.js +49 -0
  925. package/dist/illustrations/sapIllus-Dialog-ResizeColumn.js +42 -0
  926. package/dist/illustrations/sapIllus-Dialog-ResizingColumns.js +55 -0
  927. package/dist/illustrations/sapIllus-Dialog-SearchEarth.js +19 -0
  928. package/dist/illustrations/sapIllus-Dialog-SearchFolder.js +38 -0
  929. package/dist/illustrations/sapIllus-Dialog-SignOut.js +21 -0
  930. package/dist/illustrations/sapIllus-Dialog-SimpleBalloon.js +18 -0
  931. package/dist/illustrations/sapIllus-Dialog-SimpleBell.js +14 -0
  932. package/dist/illustrations/sapIllus-Dialog-SimpleCalendar.js +49 -0
  933. package/dist/illustrations/sapIllus-Dialog-SimpleCheckMark.js +7 -0
  934. package/dist/illustrations/sapIllus-Dialog-SimpleConnection.js +19 -0
  935. package/dist/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +18 -0
  936. package/dist/illustrations/sapIllus-Dialog-SimpleEmptyList.js +11 -0
  937. package/dist/illustrations/sapIllus-Dialog-SimpleError.js +11 -0
  938. package/dist/illustrations/sapIllus-Dialog-SimpleMagnifier.js +11 -0
  939. package/dist/illustrations/sapIllus-Dialog-SimpleMail.js +14 -0
  940. package/dist/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +18 -0
  941. package/dist/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +22 -0
  942. package/dist/illustrations/sapIllus-Dialog-SimpleReload.js +12 -0
  943. package/dist/illustrations/sapIllus-Dialog-SimpleTask.js +24 -0
  944. package/dist/illustrations/sapIllus-Dialog-SleepingBell.js +31 -0
  945. package/dist/illustrations/sapIllus-Dialog-SortColumn.js +40 -0
  946. package/dist/illustrations/sapIllus-Dialog-SortingColumns.js +50 -0
  947. package/dist/illustrations/sapIllus-Dialog-SuccessBalloon.js +16 -0
  948. package/dist/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -0
  949. package/dist/illustrations/sapIllus-Dialog-SuccessHighFive.js +25 -0
  950. package/dist/illustrations/sapIllus-Dialog-SuccessScreen.js +48 -0
  951. package/dist/illustrations/sapIllus-Dialog-Survey.js +23 -0
  952. package/dist/illustrations/sapIllus-Dialog-Tent.js +32 -0
  953. package/dist/illustrations/sapIllus-Dialog-UnableToLoad.js +119 -0
  954. package/dist/illustrations/sapIllus-Dialog-UnableToLoadImage.js +28 -0
  955. package/dist/illustrations/sapIllus-Dialog-UnableToUpload.js +26 -0
  956. package/dist/illustrations/sapIllus-Dialog-UploadCollection.js +31 -0
  957. package/dist/illustrations/sapIllus-Dialog-UploadToCloud.js +21 -0
  958. package/dist/illustrations/sapIllus-Dialog-UserHasSignedUp.js +34 -0
  959. package/dist/illustrations/sapIllus-Dot-Achievement.js +19 -0
  960. package/dist/illustrations/sapIllus-Dot-AddColumn.js +27 -0
  961. package/dist/illustrations/sapIllus-Dot-AddDimensions.js +10 -0
  962. package/dist/illustrations/sapIllus-Dot-AddPeople.js +9 -0
  963. package/dist/illustrations/sapIllus-Dot-AddPeopleToCalendar.js +15 -0
  964. package/dist/illustrations/sapIllus-Dot-AddingColumns.js +14 -0
  965. package/dist/illustrations/sapIllus-Dot-BalloonSky.js +7 -0
  966. package/dist/illustrations/sapIllus-Dot-BeforeSearch.js +41 -0
  967. package/dist/illustrations/sapIllus-Dot-Connection.js +10 -0
  968. package/dist/illustrations/sapIllus-Dot-DragFilesToUpload.js +8 -0
  969. package/dist/illustrations/sapIllus-Dot-EmptyCalendar.js +37 -0
  970. package/dist/illustrations/sapIllus-Dot-EmptyList.js +7 -0
  971. package/dist/illustrations/sapIllus-Dot-EmptyPlanningCalendar.js +18 -0
  972. package/dist/illustrations/sapIllus-Dot-ErrorScreen.js +9 -0
  973. package/dist/illustrations/sapIllus-Dot-FilterTable.js +8 -0
  974. package/dist/illustrations/sapIllus-Dot-FilteringColumns.js +22 -0
  975. package/dist/illustrations/sapIllus-Dot-GroupTable.js +36 -0
  976. package/dist/illustrations/sapIllus-Dot-GroupingColumns.js +23 -0
  977. package/dist/illustrations/sapIllus-Dot-KeyTask.js +119 -0
  978. package/dist/illustrations/sapIllus-Dot-NewMail.js +11 -0
  979. package/dist/illustrations/sapIllus-Dot-NoActivities.js +11 -0
  980. package/dist/illustrations/sapIllus-Dot-NoChartData.js +35 -0
  981. package/dist/illustrations/sapIllus-Dot-NoColumnsSet.js +26 -0
  982. package/dist/illustrations/sapIllus-Dot-NoData.js +11 -0
  983. package/dist/illustrations/sapIllus-Dot-NoDimensionsSet.js +7 -0
  984. package/dist/illustrations/sapIllus-Dot-NoEntries.js +25 -0
  985. package/dist/illustrations/sapIllus-Dot-NoFilterResults.js +14 -0
  986. package/dist/illustrations/sapIllus-Dot-NoMail.js +14 -0
  987. package/dist/illustrations/sapIllus-Dot-NoMail_v1.js +10 -0
  988. package/dist/illustrations/sapIllus-Dot-NoNotifications.js +23 -0
  989. package/dist/illustrations/sapIllus-Dot-NoSavedItems.js +55 -0
  990. package/dist/illustrations/sapIllus-Dot-NoSavedItems_v1.js +13 -0
  991. package/dist/illustrations/sapIllus-Dot-NoSearchResults.js +35 -0
  992. package/dist/illustrations/sapIllus-Dot-NoTasks.js +22 -0
  993. package/dist/illustrations/sapIllus-Dot-NoTasks_v1.js +13 -0
  994. package/dist/illustrations/sapIllus-Dot-PageNotFound.js +14 -0
  995. package/dist/illustrations/sapIllus-Dot-ReceiveAppreciation.js +19 -0
  996. package/dist/illustrations/sapIllus-Dot-ReloadScreen.js +9 -0
  997. package/dist/illustrations/sapIllus-Dot-ResizeColumn.js +27 -0
  998. package/dist/illustrations/sapIllus-Dot-ResizingColumns.js +19 -0
  999. package/dist/illustrations/sapIllus-Dot-SearchEarth.js +7 -0
  1000. package/dist/illustrations/sapIllus-Dot-SearchFolder.js +11 -0
  1001. package/dist/illustrations/sapIllus-Dot-SignOut.js +11 -0
  1002. package/dist/illustrations/sapIllus-Dot-SimpleBalloon.js +7 -0
  1003. package/dist/illustrations/sapIllus-Dot-SimpleBell.js +8 -0
  1004. package/dist/illustrations/sapIllus-Dot-SimpleCalendar.js +37 -0
  1005. package/dist/illustrations/sapIllus-Dot-SimpleCheckMark.js +5 -0
  1006. package/dist/illustrations/sapIllus-Dot-SimpleConnection.js +10 -0
  1007. package/dist/illustrations/sapIllus-Dot-SimpleEmptyDoc.js +8 -0
  1008. package/dist/illustrations/sapIllus-Dot-SimpleEmptyList.js +7 -0
  1009. package/dist/illustrations/sapIllus-Dot-SimpleError.js +9 -0
  1010. package/dist/illustrations/sapIllus-Dot-SimpleMagnifier.js +7 -0
  1011. package/dist/illustrations/sapIllus-Dot-SimpleMail.js +10 -0
  1012. package/dist/illustrations/sapIllus-Dot-SimpleNoSavedItems.js +13 -0
  1013. package/dist/illustrations/sapIllus-Dot-SimpleNotFoundMagnifier.js +11 -0
  1014. package/dist/illustrations/sapIllus-Dot-SimpleReload.js +9 -0
  1015. package/dist/illustrations/sapIllus-Dot-SimpleTask.js +13 -0
  1016. package/dist/illustrations/sapIllus-Dot-SleepingBell.js +8 -0
  1017. package/dist/illustrations/sapIllus-Dot-SortColumn.js +29 -0
  1018. package/dist/illustrations/sapIllus-Dot-SortingColumns.js +15 -0
  1019. package/dist/illustrations/sapIllus-Dot-SuccessHighFive.js +7 -0
  1020. package/dist/illustrations/sapIllus-Dot-SuccessScreen.js +5 -0
  1021. package/dist/illustrations/sapIllus-Dot-Survey.js +8 -0
  1022. package/dist/illustrations/sapIllus-Dot-Tent.js +8 -0
  1023. package/dist/illustrations/sapIllus-Dot-UnableToLoad.js +118 -0
  1024. package/dist/illustrations/sapIllus-Dot-UnableToLoadImage.js +24 -0
  1025. package/dist/illustrations/sapIllus-Dot-UnableToUpload.js +10 -0
  1026. package/dist/illustrations/sapIllus-Dot-UploadCollection.js +7 -0
  1027. package/dist/illustrations/sapIllus-Dot-UploadToCloud.js +9 -0
  1028. package/dist/illustrations/sapIllus-Dot-UserHasSignedUp.js +8 -0
  1029. package/dist/illustrations/sapIllus-Scene-Achievement.js +29 -0
  1030. package/dist/illustrations/sapIllus-Scene-AddColumn.js +49 -0
  1031. package/dist/illustrations/sapIllus-Scene-AddDimensions.js +18 -0
  1032. package/dist/illustrations/sapIllus-Scene-AddPeople.js +31 -0
  1033. package/dist/illustrations/sapIllus-Scene-AddPeopleToCalendar.js +47 -0
  1034. package/dist/illustrations/sapIllus-Scene-AddingColumns.js +38 -0
  1035. package/dist/illustrations/sapIllus-Scene-BalloonSky.js +54 -0
  1036. package/dist/illustrations/sapIllus-Scene-BeforeSearch.js +42 -0
  1037. package/dist/illustrations/sapIllus-Scene-Connection.js +32 -0
  1038. package/dist/illustrations/sapIllus-Scene-DragFilesToUpload.js +20 -0
  1039. package/dist/illustrations/sapIllus-Scene-EmptyCalendar.js +91 -0
  1040. package/dist/illustrations/sapIllus-Scene-EmptyList.js +44 -0
  1041. package/dist/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +19 -0
  1042. package/dist/illustrations/sapIllus-Scene-ErrorScreen.js +79 -0
  1043. package/dist/illustrations/sapIllus-Scene-FilterTable.js +63 -0
  1044. package/dist/illustrations/sapIllus-Scene-FilteringColumns.js +39 -0
  1045. package/dist/illustrations/sapIllus-Scene-GroupTable.js +77 -0
  1046. package/dist/illustrations/sapIllus-Scene-GroupingColumns.js +40 -0
  1047. package/dist/illustrations/sapIllus-Scene-KeyTask.js +120 -0
  1048. package/dist/illustrations/sapIllus-Scene-NewMail.js +38 -0
  1049. package/dist/illustrations/sapIllus-Scene-NoActivities.js +34 -0
  1050. package/dist/illustrations/sapIllus-Scene-NoChartData.js +45 -0
  1051. package/dist/illustrations/sapIllus-Scene-NoColumnsSet.js +26 -0
  1052. package/dist/illustrations/sapIllus-Scene-NoData.js +12 -0
  1053. package/dist/illustrations/sapIllus-Scene-NoDimensionsSet.js +39 -0
  1054. package/dist/illustrations/sapIllus-Scene-NoEntries.js +42 -0
  1055. package/dist/illustrations/sapIllus-Scene-NoFilterResults.js +16 -0
  1056. package/dist/illustrations/sapIllus-Scene-NoMail.js +16 -0
  1057. package/dist/illustrations/sapIllus-Scene-NoMail_v1.js +56 -0
  1058. package/dist/illustrations/sapIllus-Scene-NoNotifications.js +28 -0
  1059. package/dist/illustrations/sapIllus-Scene-NoSavedItems.js +54 -0
  1060. package/dist/illustrations/sapIllus-Scene-NoSavedItems_v1.js +40 -0
  1061. package/dist/illustrations/sapIllus-Scene-NoSearchResults.js +73 -0
  1062. package/dist/illustrations/sapIllus-Scene-NoTasks.js +60 -0
  1063. package/dist/illustrations/sapIllus-Scene-NoTasks_v1.js +87 -0
  1064. package/dist/illustrations/sapIllus-Scene-PageNotFound.js +13 -0
  1065. package/dist/illustrations/sapIllus-Scene-ReceiveAppreciation.js +25 -0
  1066. package/dist/illustrations/sapIllus-Scene-ReloadScreen.js +63 -0
  1067. package/dist/illustrations/sapIllus-Scene-ResizeColumn.js +53 -0
  1068. package/dist/illustrations/sapIllus-Scene-ResizingColumns.js +57 -0
  1069. package/dist/illustrations/sapIllus-Scene-SearchEarth.js +31 -0
  1070. package/dist/illustrations/sapIllus-Scene-SearchFolder.js +45 -0
  1071. package/dist/illustrations/sapIllus-Scene-SignOut.js +21 -0
  1072. package/dist/illustrations/sapIllus-Scene-SimpleBalloon.js +21 -0
  1073. package/dist/illustrations/sapIllus-Scene-SimpleBell.js +17 -0
  1074. package/dist/illustrations/sapIllus-Scene-SimpleCalendar.js +45 -0
  1075. package/dist/illustrations/sapIllus-Scene-SimpleCheckMark.js +10 -0
  1076. package/dist/illustrations/sapIllus-Scene-SimpleConnection.js +23 -0
  1077. package/dist/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +21 -0
  1078. package/dist/illustrations/sapIllus-Scene-SimpleEmptyList.js +14 -0
  1079. package/dist/illustrations/sapIllus-Scene-SimpleError.js +14 -0
  1080. package/dist/illustrations/sapIllus-Scene-SimpleMagnifier.js +14 -0
  1081. package/dist/illustrations/sapIllus-Scene-SimpleMail.js +17 -0
  1082. package/dist/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +28 -0
  1083. package/dist/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +25 -0
  1084. package/dist/illustrations/sapIllus-Scene-SimpleReload.js +15 -0
  1085. package/dist/illustrations/sapIllus-Scene-SimpleTask.js +20 -0
  1086. package/dist/illustrations/sapIllus-Scene-SleepingBell.js +51 -0
  1087. package/dist/illustrations/sapIllus-Scene-SortColumn.js +51 -0
  1088. package/dist/illustrations/sapIllus-Scene-SortingColumns.js +50 -0
  1089. package/dist/illustrations/sapIllus-Scene-SuccessBalloon.js +34 -0
  1090. package/dist/illustrations/sapIllus-Scene-SuccessCheckMark.js +44 -0
  1091. package/dist/illustrations/sapIllus-Scene-SuccessHighFive.js +26 -0
  1092. package/dist/illustrations/sapIllus-Scene-SuccessScreen.js +62 -0
  1093. package/dist/illustrations/sapIllus-Scene-Survey.js +22 -0
  1094. package/dist/illustrations/sapIllus-Scene-Tent.js +60 -0
  1095. package/dist/illustrations/sapIllus-Scene-UnableToLoad.js +119 -0
  1096. package/dist/illustrations/sapIllus-Scene-UnableToLoadImage.js +28 -0
  1097. package/dist/illustrations/sapIllus-Scene-UnableToUpload.js +26 -0
  1098. package/dist/illustrations/sapIllus-Scene-UploadCollection.js +30 -0
  1099. package/dist/illustrations/sapIllus-Scene-UploadToCloud.js +22 -0
  1100. package/dist/illustrations/sapIllus-Scene-UserHasSignedUp.js +29 -0
  1101. package/dist/illustrations/sapIllus-Spot-Achievement.js +28 -0
  1102. package/dist/illustrations/sapIllus-Spot-AddColumn.js +38 -0
  1103. package/dist/illustrations/sapIllus-Spot-AddDimensions.js +17 -0
  1104. package/dist/illustrations/sapIllus-Spot-AddPeople.js +32 -0
  1105. package/dist/illustrations/sapIllus-Spot-AddPeopleToCalendar.js +43 -0
  1106. package/dist/illustrations/sapIllus-Spot-AddingColumns.js +38 -0
  1107. package/dist/illustrations/sapIllus-Spot-BalloonSky.js +44 -0
  1108. package/dist/illustrations/sapIllus-Spot-BeforeSearch.js +42 -0
  1109. package/dist/illustrations/sapIllus-Spot-Connection.js +23 -0
  1110. package/dist/illustrations/sapIllus-Spot-DragFilesToUpload.js +18 -0
  1111. package/dist/illustrations/sapIllus-Spot-EmptyCalendar.js +47 -0
  1112. package/dist/illustrations/sapIllus-Spot-EmptyList.js +30 -0
  1113. package/dist/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +19 -0
  1114. package/dist/illustrations/sapIllus-Spot-ErrorScreen.js +33 -0
  1115. package/dist/illustrations/sapIllus-Spot-FilterTable.js +61 -0
  1116. package/dist/illustrations/sapIllus-Spot-FilteringColumns.js +33 -0
  1117. package/dist/illustrations/sapIllus-Spot-GroupTable.js +87 -0
  1118. package/dist/illustrations/sapIllus-Spot-GroupingColumns.js +35 -0
  1119. package/dist/illustrations/sapIllus-Spot-KeyTask.js +120 -0
  1120. package/dist/illustrations/sapIllus-Spot-NewMail.js +34 -0
  1121. package/dist/illustrations/sapIllus-Spot-NoActivities.js +34 -0
  1122. package/dist/illustrations/sapIllus-Spot-NoChartData.js +42 -0
  1123. package/dist/illustrations/sapIllus-Spot-NoColumnsSet.js +29 -0
  1124. package/dist/illustrations/sapIllus-Spot-NoData.js +12 -0
  1125. package/dist/illustrations/sapIllus-Spot-NoDimensionsSet.js +43 -0
  1126. package/dist/illustrations/sapIllus-Spot-NoEntries.js +42 -0
  1127. package/dist/illustrations/sapIllus-Spot-NoFilterResults.js +16 -0
  1128. package/dist/illustrations/sapIllus-Spot-NoMail.js +15 -0
  1129. package/dist/illustrations/sapIllus-Spot-NoMail_v1.js +17 -0
  1130. package/dist/illustrations/sapIllus-Spot-NoNotifications.js +25 -0
  1131. package/dist/illustrations/sapIllus-Spot-NoSavedItems.js +51 -0
  1132. package/dist/illustrations/sapIllus-Spot-NoSavedItems_v1.js +34 -0
  1133. package/dist/illustrations/sapIllus-Spot-NoSearchResults.js +73 -0
  1134. package/dist/illustrations/sapIllus-Spot-NoTasks.js +32 -0
  1135. package/dist/illustrations/sapIllus-Spot-NoTasks_v1.js +23 -0
  1136. package/dist/illustrations/sapIllus-Spot-PageNotFound.js +10 -0
  1137. package/dist/illustrations/sapIllus-Spot-ReceiveAppreciation.js +20 -0
  1138. package/dist/illustrations/sapIllus-Spot-ReloadScreen.js +37 -0
  1139. package/dist/illustrations/sapIllus-Spot-ResizeColumn.js +50 -0
  1140. package/dist/illustrations/sapIllus-Spot-ResizingColumns.js +37 -0
  1141. package/dist/illustrations/sapIllus-Spot-SearchEarth.js +56 -0
  1142. package/dist/illustrations/sapIllus-Spot-SearchFolder.js +38 -0
  1143. package/dist/illustrations/sapIllus-Spot-SignOut.js +21 -0
  1144. package/dist/illustrations/sapIllus-Spot-SimpleBalloon.js +8 -0
  1145. package/dist/illustrations/sapIllus-Spot-SimpleBell.js +13 -0
  1146. package/dist/illustrations/sapIllus-Spot-SimpleCalendar.js +45 -0
  1147. package/dist/illustrations/sapIllus-Spot-SimpleCheckMark.js +6 -0
  1148. package/dist/illustrations/sapIllus-Spot-SimpleConnection.js +11 -0
  1149. package/dist/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +7 -0
  1150. package/dist/illustrations/sapIllus-Spot-SimpleEmptyList.js +7 -0
  1151. package/dist/illustrations/sapIllus-Spot-SimpleError.js +10 -0
  1152. package/dist/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -0
  1153. package/dist/illustrations/sapIllus-Spot-SimpleMail.js +13 -0
  1154. package/dist/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +24 -0
  1155. package/dist/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +11 -0
  1156. package/dist/illustrations/sapIllus-Spot-SimpleReload.js +8 -0
  1157. package/dist/illustrations/sapIllus-Spot-SimpleTask.js +23 -0
  1158. package/dist/illustrations/sapIllus-Spot-SleepingBell.js +39 -0
  1159. package/dist/illustrations/sapIllus-Spot-SortColumn.js +40 -0
  1160. package/dist/illustrations/sapIllus-Spot-SortingColumns.js +49 -0
  1161. package/dist/illustrations/sapIllus-Spot-SuccessBalloon.js +20 -0
  1162. package/dist/illustrations/sapIllus-Spot-SuccessCheckMark.js +8 -0
  1163. package/dist/illustrations/sapIllus-Spot-SuccessHighFive.js +25 -0
  1164. package/dist/illustrations/sapIllus-Spot-SuccessScreen.js +36 -0
  1165. package/dist/illustrations/sapIllus-Spot-Survey.js +33 -0
  1166. package/dist/illustrations/sapIllus-Spot-Tent.js +30 -0
  1167. package/dist/illustrations/sapIllus-Spot-UnableToLoad.js +119 -0
  1168. package/dist/illustrations/sapIllus-Spot-UnableToLoadImage.js +28 -0
  1169. package/dist/illustrations/sapIllus-Spot-UnableToUpload.js +28 -0
  1170. package/dist/illustrations/sapIllus-Spot-UploadCollection.js +34 -0
  1171. package/dist/illustrations/sapIllus-Spot-UploadToCloud.js +21 -0
  1172. package/dist/illustrations/sapIllus-Spot-UserHasSignedUp.js +34 -0
  1173. package/dist/illustrations/tnt/Avatar.d.ts +8 -0
  1174. package/dist/illustrations/tnt/Avatar.js +26 -0
  1175. package/dist/illustrations/tnt/Calculator.d.ts +8 -0
  1176. package/dist/illustrations/tnt/Calculator.js +26 -0
  1177. package/dist/illustrations/tnt/ChartArea.d.ts +8 -0
  1178. package/dist/illustrations/tnt/ChartArea.js +26 -0
  1179. package/dist/illustrations/tnt/ChartArea2.d.ts +8 -0
  1180. package/dist/illustrations/tnt/ChartArea2.js +26 -0
  1181. package/dist/illustrations/tnt/ChartBPMNFlow.d.ts +8 -0
  1182. package/dist/illustrations/tnt/ChartBPMNFlow.js +26 -0
  1183. package/dist/illustrations/tnt/ChartBar.d.ts +8 -0
  1184. package/dist/illustrations/tnt/ChartBar.js +26 -0
  1185. package/dist/illustrations/tnt/ChartBullet.d.ts +8 -0
  1186. package/dist/illustrations/tnt/ChartBullet.js +26 -0
  1187. package/dist/illustrations/tnt/ChartDoughnut.d.ts +8 -0
  1188. package/dist/illustrations/tnt/ChartDoughnut.js +26 -0
  1189. package/dist/illustrations/tnt/ChartFlow.d.ts +8 -0
  1190. package/dist/illustrations/tnt/ChartFlow.js +26 -0
  1191. package/dist/illustrations/tnt/ChartGantt.d.ts +8 -0
  1192. package/dist/illustrations/tnt/ChartGantt.js +26 -0
  1193. package/dist/illustrations/tnt/ChartOrg.d.ts +8 -0
  1194. package/dist/illustrations/tnt/ChartOrg.js +26 -0
  1195. package/dist/illustrations/tnt/ChartPie.d.ts +8 -0
  1196. package/dist/illustrations/tnt/ChartPie.js +26 -0
  1197. package/dist/illustrations/tnt/CodePlaceholder.d.ts +8 -0
  1198. package/dist/illustrations/tnt/CodePlaceholder.js +26 -0
  1199. package/dist/illustrations/tnt/Company.d.ts +8 -0
  1200. package/dist/illustrations/tnt/Company.js +26 -0
  1201. package/dist/illustrations/tnt/Compass.d.ts +8 -0
  1202. package/dist/illustrations/tnt/Compass.js +26 -0
  1203. package/dist/illustrations/tnt/Components.d.ts +8 -0
  1204. package/dist/illustrations/tnt/Components.js +26 -0
  1205. package/dist/illustrations/tnt/Dialog.d.ts +8 -0
  1206. package/dist/illustrations/tnt/Dialog.js +26 -0
  1207. package/dist/illustrations/tnt/EmptyContentPane.d.ts +8 -0
  1208. package/dist/illustrations/tnt/EmptyContentPane.js +26 -0
  1209. package/dist/illustrations/tnt/ExternalLink.d.ts +8 -0
  1210. package/dist/illustrations/tnt/ExternalLink.js +26 -0
  1211. package/dist/illustrations/tnt/FaceID.d.ts +8 -0
  1212. package/dist/illustrations/tnt/FaceID.js +26 -0
  1213. package/dist/illustrations/tnt/Fingerprint.d.ts +8 -0
  1214. package/dist/illustrations/tnt/Fingerprint.js +26 -0
  1215. package/dist/illustrations/tnt/Handshake.d.ts +8 -0
  1216. package/dist/illustrations/tnt/Handshake.js +26 -0
  1217. package/dist/illustrations/tnt/Help.d.ts +8 -0
  1218. package/dist/illustrations/tnt/Help.js +26 -0
  1219. package/dist/illustrations/tnt/Lock.d.ts +8 -0
  1220. package/dist/illustrations/tnt/Lock.js +26 -0
  1221. package/dist/illustrations/tnt/Mission.d.ts +8 -0
  1222. package/dist/illustrations/tnt/Mission.js +26 -0
  1223. package/dist/illustrations/tnt/MissionFailed.d.ts +8 -0
  1224. package/dist/illustrations/tnt/MissionFailed.js +26 -0
  1225. package/dist/illustrations/tnt/NoApplications.d.ts +8 -0
  1226. package/dist/illustrations/tnt/NoApplications.js +26 -0
  1227. package/dist/illustrations/tnt/NoFlows.d.ts +8 -0
  1228. package/dist/illustrations/tnt/NoFlows.js +26 -0
  1229. package/dist/illustrations/tnt/NoUsers.d.ts +8 -0
  1230. package/dist/illustrations/tnt/NoUsers.js +26 -0
  1231. package/dist/illustrations/tnt/Radar.d.ts +8 -0
  1232. package/dist/illustrations/tnt/Radar.js +26 -0
  1233. package/dist/illustrations/tnt/RoadMap.d.ts +8 -0
  1234. package/dist/illustrations/tnt/RoadMap.js +26 -0
  1235. package/dist/illustrations/tnt/Secrets.d.ts +8 -0
  1236. package/dist/illustrations/tnt/Secrets.js +26 -0
  1237. package/dist/illustrations/tnt/Services.d.ts +8 -0
  1238. package/dist/illustrations/tnt/Services.js +26 -0
  1239. package/dist/illustrations/tnt/SessionExpired.d.ts +8 -0
  1240. package/dist/illustrations/tnt/SessionExpired.js +26 -0
  1241. package/dist/illustrations/tnt/SessionExpiring.d.ts +8 -0
  1242. package/dist/illustrations/tnt/SessionExpiring.js +26 -0
  1243. package/dist/illustrations/tnt/Settings.d.ts +8 -0
  1244. package/dist/illustrations/tnt/Settings.js +26 -0
  1245. package/dist/illustrations/tnt/Success.d.ts +8 -0
  1246. package/dist/illustrations/tnt/Success.js +26 -0
  1247. package/dist/illustrations/tnt/SuccessfulAuth.d.ts +8 -0
  1248. package/dist/illustrations/tnt/SuccessfulAuth.js +26 -0
  1249. package/dist/illustrations/tnt/Systems.d.ts +8 -0
  1250. package/dist/illustrations/tnt/Systems.js +26 -0
  1251. package/dist/illustrations/tnt/Teams.d.ts +8 -0
  1252. package/dist/illustrations/tnt/Teams.js +26 -0
  1253. package/dist/illustrations/tnt/Tools.d.ts +8 -0
  1254. package/dist/illustrations/tnt/Tools.js +26 -0
  1255. package/dist/illustrations/tnt/Tutorials.d.ts +8 -0
  1256. package/dist/illustrations/tnt/Tutorials.js +26 -0
  1257. package/dist/illustrations/tnt/UnableToLoad.d.ts +8 -0
  1258. package/dist/illustrations/tnt/UnableToLoad.js +26 -0
  1259. package/dist/illustrations/tnt/Unlock.d.ts +8 -0
  1260. package/dist/illustrations/tnt/Unlock.js +26 -0
  1261. package/dist/illustrations/tnt/UnsuccessfulAuth.d.ts +8 -0
  1262. package/dist/illustrations/tnt/UnsuccessfulAuth.js +26 -0
  1263. package/dist/illustrations/tnt/User2.d.ts +8 -0
  1264. package/dist/illustrations/tnt/User2.js +26 -0
  1265. package/dist/illustrations/tnt/tnt-Dialog-Avatar.js +125 -0
  1266. package/dist/illustrations/tnt/tnt-Dialog-Calculator.js +81 -0
  1267. package/dist/illustrations/tnt/tnt-Dialog-ChartArea.js +14 -0
  1268. package/dist/illustrations/tnt/tnt-Dialog-ChartArea2.js +12 -0
  1269. package/dist/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +13 -0
  1270. package/dist/illustrations/tnt/tnt-Dialog-ChartBar.js +12 -0
  1271. package/dist/illustrations/tnt/tnt-Dialog-ChartBullet.js +14 -0
  1272. package/dist/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +13 -0
  1273. package/dist/illustrations/tnt/tnt-Dialog-ChartFlow.js +13 -0
  1274. package/dist/illustrations/tnt/tnt-Dialog-ChartGantt.js +17 -0
  1275. package/dist/illustrations/tnt/tnt-Dialog-ChartOrg.js +15 -0
  1276. package/dist/illustrations/tnt/tnt-Dialog-ChartPie.js +12 -0
  1277. package/dist/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +6 -0
  1278. package/dist/illustrations/tnt/tnt-Dialog-Company.js +13 -0
  1279. package/dist/illustrations/tnt/tnt-Dialog-Compass.js +35 -0
  1280. package/dist/illustrations/tnt/tnt-Dialog-Components.js +9 -0
  1281. package/dist/illustrations/tnt/tnt-Dialog-Dialog.js +33 -0
  1282. package/dist/illustrations/tnt/tnt-Dialog-EmptyContentPane.js +19 -0
  1283. package/dist/illustrations/tnt/tnt-Dialog-ExternalLink.js +11 -0
  1284. package/dist/illustrations/tnt/tnt-Dialog-FaceID.js +17 -0
  1285. package/dist/illustrations/tnt/tnt-Dialog-Fingerprint.js +16 -0
  1286. package/dist/illustrations/tnt/tnt-Dialog-Handshake.js +33 -0
  1287. package/dist/illustrations/tnt/tnt-Dialog-Help.js +28 -0
  1288. package/dist/illustrations/tnt/tnt-Dialog-Lock.js +12 -0
  1289. package/dist/illustrations/tnt/tnt-Dialog-Mission.js +18 -0
  1290. package/dist/illustrations/tnt/tnt-Dialog-MissionFailed.js +42 -0
  1291. package/dist/illustrations/tnt/tnt-Dialog-NoApplications.js +15 -0
  1292. package/dist/illustrations/tnt/tnt-Dialog-NoFlows.js +11 -0
  1293. package/dist/illustrations/tnt/tnt-Dialog-NoUsers.js +15 -0
  1294. package/dist/illustrations/tnt/tnt-Dialog-Radar.js +15 -0
  1295. package/dist/illustrations/tnt/tnt-Dialog-RoadMap.js +42 -0
  1296. package/dist/illustrations/tnt/tnt-Dialog-Secrets.js +12 -0
  1297. package/dist/illustrations/tnt/tnt-Dialog-Services.js +16 -0
  1298. package/dist/illustrations/tnt/tnt-Dialog-SessionExpired.js +11 -0
  1299. package/dist/illustrations/tnt/tnt-Dialog-SessionExpiring.js +10 -0
  1300. package/dist/illustrations/tnt/tnt-Dialog-Settings.js +38 -0
  1301. package/dist/illustrations/tnt/tnt-Dialog-Success.js +10 -0
  1302. package/dist/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +10 -0
  1303. package/dist/illustrations/tnt/tnt-Dialog-Systems.js +12 -0
  1304. package/dist/illustrations/tnt/tnt-Dialog-Teams.js +17 -0
  1305. package/dist/illustrations/tnt/tnt-Dialog-Tools.js +12 -0
  1306. package/dist/illustrations/tnt/tnt-Dialog-Tutorials.js +79 -0
  1307. package/dist/illustrations/tnt/tnt-Dialog-UnableToLoad.js +10 -0
  1308. package/dist/illustrations/tnt/tnt-Dialog-Unlock.js +12 -0
  1309. package/dist/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +11 -0
  1310. package/dist/illustrations/tnt/tnt-Dialog-User2.js +13 -0
  1311. package/dist/illustrations/tnt/tnt-Dot-Avatar.js +13 -0
  1312. package/dist/illustrations/tnt/tnt-Dot-Calculator.js +12 -0
  1313. package/dist/illustrations/tnt/tnt-Dot-Compass.js +10 -0
  1314. package/dist/illustrations/tnt/tnt-Dot-Dialog.js +20 -0
  1315. package/dist/illustrations/tnt/tnt-Dot-EmptyContentPane.js +16 -0
  1316. package/dist/illustrations/tnt/tnt-Dot-Handshake.js +19 -0
  1317. package/dist/illustrations/tnt/tnt-Dot-Help.js +9 -0
  1318. package/dist/illustrations/tnt/tnt-Dot-MissionFailed.js +10 -0
  1319. package/dist/illustrations/tnt/tnt-Dot-RoadMap.js +6 -0
  1320. package/dist/illustrations/tnt/tnt-Dot-Settings.js +7 -0
  1321. package/dist/illustrations/tnt/tnt-Dot-Tutorials.js +8 -0
  1322. package/dist/illustrations/tnt/tnt-Scene-Avatar.js +131 -0
  1323. package/dist/illustrations/tnt/tnt-Scene-Calculator.js +84 -0
  1324. package/dist/illustrations/tnt/tnt-Scene-ChartArea.js +22 -0
  1325. package/dist/illustrations/tnt/tnt-Scene-ChartArea2.js +19 -0
  1326. package/dist/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +21 -0
  1327. package/dist/illustrations/tnt/tnt-Scene-ChartBar.js +19 -0
  1328. package/dist/illustrations/tnt/tnt-Scene-ChartBullet.js +20 -0
  1329. package/dist/illustrations/tnt/tnt-Scene-ChartDoughnut.js +19 -0
  1330. package/dist/illustrations/tnt/tnt-Scene-ChartFlow.js +20 -0
  1331. package/dist/illustrations/tnt/tnt-Scene-ChartGantt.js +26 -0
  1332. package/dist/illustrations/tnt/tnt-Scene-ChartOrg.js +27 -0
  1333. package/dist/illustrations/tnt/tnt-Scene-ChartPie.js +18 -0
  1334. package/dist/illustrations/tnt/tnt-Scene-CodePlaceholder.js +9 -0
  1335. package/dist/illustrations/tnt/tnt-Scene-Company.js +30 -0
  1336. package/dist/illustrations/tnt/tnt-Scene-Compass.js +35 -0
  1337. package/dist/illustrations/tnt/tnt-Scene-Components.js +16 -0
  1338. package/dist/illustrations/tnt/tnt-Scene-Dialog.js +36 -0
  1339. package/dist/illustrations/tnt/tnt-Scene-EmptyContentPane.js +16 -0
  1340. package/dist/illustrations/tnt/tnt-Scene-ExternalLink.js +14 -0
  1341. package/dist/illustrations/tnt/tnt-Scene-FaceID.js +21 -0
  1342. package/dist/illustrations/tnt/tnt-Scene-Fingerprint.js +35 -0
  1343. package/dist/illustrations/tnt/tnt-Scene-Handshake.js +33 -0
  1344. package/dist/illustrations/tnt/tnt-Scene-Help.js +30 -0
  1345. package/dist/illustrations/tnt/tnt-Scene-Lock.js +22 -0
  1346. package/dist/illustrations/tnt/tnt-Scene-Mission.js +19 -0
  1347. package/dist/illustrations/tnt/tnt-Scene-MissionFailed.js +50 -0
  1348. package/dist/illustrations/tnt/tnt-Scene-NoApplications.js +18 -0
  1349. package/dist/illustrations/tnt/tnt-Scene-NoFlows.js +20 -0
  1350. package/dist/illustrations/tnt/tnt-Scene-NoUsers.js +16 -0
  1351. package/dist/illustrations/tnt/tnt-Scene-Radar.js +20 -0
  1352. package/dist/illustrations/tnt/tnt-Scene-RoadMap.js +46 -0
  1353. package/dist/illustrations/tnt/tnt-Scene-Secrets.js +15 -0
  1354. package/dist/illustrations/tnt/tnt-Scene-Services.js +17 -0
  1355. package/dist/illustrations/tnt/tnt-Scene-SessionExpired.js +18 -0
  1356. package/dist/illustrations/tnt/tnt-Scene-SessionExpiring.js +17 -0
  1357. package/dist/illustrations/tnt/tnt-Scene-Settings.js +39 -0
  1358. package/dist/illustrations/tnt/tnt-Scene-Success.js +18 -0
  1359. package/dist/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +20 -0
  1360. package/dist/illustrations/tnt/tnt-Scene-Systems.js +13 -0
  1361. package/dist/illustrations/tnt/tnt-Scene-Teams.js +20 -0
  1362. package/dist/illustrations/tnt/tnt-Scene-Tools.js +19 -0
  1363. package/dist/illustrations/tnt/tnt-Scene-Tutorials.js +85 -0
  1364. package/dist/illustrations/tnt/tnt-Scene-UnableToLoad.js +21 -0
  1365. package/dist/illustrations/tnt/tnt-Scene-Unlock.js +15 -0
  1366. package/dist/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +22 -0
  1367. package/dist/illustrations/tnt/tnt-Scene-User2.js +22 -0
  1368. package/dist/illustrations/tnt/tnt-Spot-Avatar.js +106 -0
  1369. package/dist/illustrations/tnt/tnt-Spot-Calculator.js +131 -0
  1370. package/dist/illustrations/tnt/tnt-Spot-ChartArea.js +13 -0
  1371. package/dist/illustrations/tnt/tnt-Spot-ChartArea2.js +7 -0
  1372. package/dist/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +9 -0
  1373. package/dist/illustrations/tnt/tnt-Spot-ChartBar.js +8 -0
  1374. package/dist/illustrations/tnt/tnt-Spot-ChartBullet.js +10 -0
  1375. package/dist/illustrations/tnt/tnt-Spot-ChartDoughnut.js +9 -0
  1376. package/dist/illustrations/tnt/tnt-Spot-ChartFlow.js +8 -0
  1377. package/dist/illustrations/tnt/tnt-Spot-ChartGantt.js +12 -0
  1378. package/dist/illustrations/tnt/tnt-Spot-ChartOrg.js +6 -0
  1379. package/dist/illustrations/tnt/tnt-Spot-ChartPie.js +8 -0
  1380. package/dist/illustrations/tnt/tnt-Spot-CodePlaceholder.js +6 -0
  1381. package/dist/illustrations/tnt/tnt-Spot-Company.js +13 -0
  1382. package/dist/illustrations/tnt/tnt-Spot-Compass.js +35 -0
  1383. package/dist/illustrations/tnt/tnt-Spot-Components.js +5 -0
  1384. package/dist/illustrations/tnt/tnt-Spot-Dialog.js +33 -0
  1385. package/dist/illustrations/tnt/tnt-Spot-EmptyContentPane.js +17 -0
  1386. package/dist/illustrations/tnt/tnt-Spot-ExternalLink.js +9 -0
  1387. package/dist/illustrations/tnt/tnt-Spot-FaceID.js +16 -0
  1388. package/dist/illustrations/tnt/tnt-Spot-Fingerprint.js +10 -0
  1389. package/dist/illustrations/tnt/tnt-Spot-Handshake.js +65 -0
  1390. package/dist/illustrations/tnt/tnt-Spot-Help.js +24 -0
  1391. package/dist/illustrations/tnt/tnt-Spot-Lock.js +13 -0
  1392. package/dist/illustrations/tnt/tnt-Spot-Mission.js +17 -0
  1393. package/dist/illustrations/tnt/tnt-Spot-MissionFailed.js +114 -0
  1394. package/dist/illustrations/tnt/tnt-Spot-NoApplications.js +11 -0
  1395. package/dist/illustrations/tnt/tnt-Spot-NoFlows.js +8 -0
  1396. package/dist/illustrations/tnt/tnt-Spot-NoUsers.js +11 -0
  1397. package/dist/illustrations/tnt/tnt-Spot-Radar.js +14 -0
  1398. package/dist/illustrations/tnt/tnt-Spot-RoadMap.js +166 -0
  1399. package/dist/illustrations/tnt/tnt-Spot-Secrets.js +9 -0
  1400. package/dist/illustrations/tnt/tnt-Spot-Services.js +14 -0
  1401. package/dist/illustrations/tnt/tnt-Spot-SessionExpired.js +9 -0
  1402. package/dist/illustrations/tnt/tnt-Spot-SessionExpiring.js +9 -0
  1403. package/dist/illustrations/tnt/tnt-Spot-Settings.js +37 -0
  1404. package/dist/illustrations/tnt/tnt-Spot-Success.js +9 -0
  1405. package/dist/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +9 -0
  1406. package/dist/illustrations/tnt/tnt-Spot-Systems.js +10 -0
  1407. package/dist/illustrations/tnt/tnt-Spot-Teams.js +13 -0
  1408. package/dist/illustrations/tnt/tnt-Spot-Tools.js +7 -0
  1409. package/dist/illustrations/tnt/tnt-Spot-Tutorials.js +92 -0
  1410. package/dist/illustrations/tnt/tnt-Spot-UnableToLoad.js +9 -0
  1411. package/dist/illustrations/tnt/tnt-Spot-Unlock.js +11 -0
  1412. package/dist/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +10 -0
  1413. package/dist/illustrations/tnt/tnt-Spot-User2.js +10 -0
  1414. package/dist/illustrations-v5/tnt/Avatar.d.ts +8 -0
  1415. package/dist/illustrations-v5/tnt/Avatar.js +26 -0
  1416. package/dist/illustrations-v5/tnt/Calculator.d.ts +8 -0
  1417. package/dist/illustrations-v5/tnt/Calculator.js +26 -0
  1418. package/dist/illustrations-v5/tnt/ChartArea.d.ts +8 -0
  1419. package/dist/illustrations-v5/tnt/ChartArea.js +26 -0
  1420. package/dist/illustrations-v5/tnt/ChartArea2.d.ts +8 -0
  1421. package/dist/illustrations-v5/tnt/ChartArea2.js +26 -0
  1422. package/dist/illustrations-v5/tnt/ChartBPMNFlow.d.ts +8 -0
  1423. package/dist/illustrations-v5/tnt/ChartBPMNFlow.js +26 -0
  1424. package/dist/illustrations-v5/tnt/ChartBar.d.ts +8 -0
  1425. package/dist/illustrations-v5/tnt/ChartBar.js +26 -0
  1426. package/dist/illustrations-v5/tnt/ChartBullet.d.ts +8 -0
  1427. package/dist/illustrations-v5/tnt/ChartBullet.js +26 -0
  1428. package/dist/illustrations-v5/tnt/ChartDoughnut.d.ts +8 -0
  1429. package/dist/illustrations-v5/tnt/ChartDoughnut.js +26 -0
  1430. package/dist/illustrations-v5/tnt/ChartFlow.d.ts +8 -0
  1431. package/dist/illustrations-v5/tnt/ChartFlow.js +26 -0
  1432. package/dist/illustrations-v5/tnt/ChartGantt.d.ts +8 -0
  1433. package/dist/illustrations-v5/tnt/ChartGantt.js +26 -0
  1434. package/dist/illustrations-v5/tnt/ChartOrg.d.ts +8 -0
  1435. package/dist/illustrations-v5/tnt/ChartOrg.js +26 -0
  1436. package/dist/illustrations-v5/tnt/ChartPie.d.ts +8 -0
  1437. package/dist/illustrations-v5/tnt/ChartPie.js +26 -0
  1438. package/dist/illustrations-v5/tnt/CodePlaceholder.d.ts +8 -0
  1439. package/dist/illustrations-v5/tnt/CodePlaceholder.js +26 -0
  1440. package/dist/illustrations-v5/tnt/Company.d.ts +8 -0
  1441. package/dist/illustrations-v5/tnt/Company.js +26 -0
  1442. package/dist/illustrations-v5/tnt/Compass.d.ts +8 -0
  1443. package/dist/illustrations-v5/tnt/Compass.js +26 -0
  1444. package/dist/illustrations-v5/tnt/Components.d.ts +8 -0
  1445. package/dist/illustrations-v5/tnt/Components.js +26 -0
  1446. package/dist/illustrations-v5/tnt/Dialog.d.ts +8 -0
  1447. package/dist/illustrations-v5/tnt/Dialog.js +26 -0
  1448. package/dist/illustrations-v5/tnt/ExternalLink.d.ts +8 -0
  1449. package/dist/illustrations-v5/tnt/ExternalLink.js +26 -0
  1450. package/dist/illustrations-v5/tnt/FaceID.d.ts +8 -0
  1451. package/dist/illustrations-v5/tnt/FaceID.js +26 -0
  1452. package/dist/illustrations-v5/tnt/Fingerprint.d.ts +8 -0
  1453. package/dist/illustrations-v5/tnt/Fingerprint.js +26 -0
  1454. package/dist/illustrations-v5/tnt/Handshake.d.ts +8 -0
  1455. package/dist/illustrations-v5/tnt/Handshake.js +26 -0
  1456. package/dist/illustrations-v5/tnt/Help.d.ts +8 -0
  1457. package/dist/illustrations-v5/tnt/Help.js +26 -0
  1458. package/dist/illustrations-v5/tnt/Lock.d.ts +8 -0
  1459. package/dist/illustrations-v5/tnt/Lock.js +26 -0
  1460. package/dist/illustrations-v5/tnt/Mission.d.ts +8 -0
  1461. package/dist/illustrations-v5/tnt/Mission.js +26 -0
  1462. package/dist/illustrations-v5/tnt/MissionFailed.d.ts +8 -0
  1463. package/dist/illustrations-v5/tnt/MissionFailed.js +26 -0
  1464. package/dist/illustrations-v5/tnt/NoApplications.d.ts +8 -0
  1465. package/dist/illustrations-v5/tnt/NoApplications.js +26 -0
  1466. package/dist/illustrations-v5/tnt/NoFlows.d.ts +8 -0
  1467. package/dist/illustrations-v5/tnt/NoFlows.js +26 -0
  1468. package/dist/illustrations-v5/tnt/NoUsers.d.ts +8 -0
  1469. package/dist/illustrations-v5/tnt/NoUsers.js +26 -0
  1470. package/dist/illustrations-v5/tnt/Radar.d.ts +8 -0
  1471. package/dist/illustrations-v5/tnt/Radar.js +26 -0
  1472. package/dist/illustrations-v5/tnt/RoadMap.d.ts +8 -0
  1473. package/dist/illustrations-v5/tnt/RoadMap.js +26 -0
  1474. package/dist/illustrations-v5/tnt/Secrets.d.ts +8 -0
  1475. package/dist/illustrations-v5/tnt/Secrets.js +26 -0
  1476. package/dist/illustrations-v5/tnt/Services.d.ts +8 -0
  1477. package/dist/illustrations-v5/tnt/Services.js +26 -0
  1478. package/dist/illustrations-v5/tnt/SessionExpired.d.ts +8 -0
  1479. package/dist/illustrations-v5/tnt/SessionExpired.js +26 -0
  1480. package/dist/illustrations-v5/tnt/SessionExpiring.d.ts +8 -0
  1481. package/dist/illustrations-v5/tnt/SessionExpiring.js +26 -0
  1482. package/dist/illustrations-v5/tnt/Settings.d.ts +8 -0
  1483. package/dist/illustrations-v5/tnt/Settings.js +26 -0
  1484. package/dist/illustrations-v5/tnt/Success.d.ts +8 -0
  1485. package/dist/illustrations-v5/tnt/Success.js +26 -0
  1486. package/dist/illustrations-v5/tnt/SuccessfulAuth.d.ts +8 -0
  1487. package/dist/illustrations-v5/tnt/SuccessfulAuth.js +26 -0
  1488. package/dist/illustrations-v5/tnt/Systems.d.ts +8 -0
  1489. package/dist/illustrations-v5/tnt/Systems.js +26 -0
  1490. package/dist/illustrations-v5/tnt/Teams.d.ts +8 -0
  1491. package/dist/illustrations-v5/tnt/Teams.js +26 -0
  1492. package/dist/illustrations-v5/tnt/Tools.d.ts +8 -0
  1493. package/dist/illustrations-v5/tnt/Tools.js +26 -0
  1494. package/dist/illustrations-v5/tnt/Tutorials.d.ts +8 -0
  1495. package/dist/illustrations-v5/tnt/Tutorials.js +26 -0
  1496. package/dist/illustrations-v5/tnt/Unlock.d.ts +8 -0
  1497. package/dist/illustrations-v5/tnt/Unlock.js +26 -0
  1498. package/dist/illustrations-v5/tnt/UnsuccessfulAuth.d.ts +8 -0
  1499. package/dist/illustrations-v5/tnt/UnsuccessfulAuth.js +26 -0
  1500. package/dist/illustrations-v5/tnt/hc/Avatar.d.ts +8 -0
  1501. package/dist/illustrations-v5/tnt/hc/Avatar.js +26 -0
  1502. package/dist/illustrations-v5/tnt/hc/Calculator.d.ts +8 -0
  1503. package/dist/illustrations-v5/tnt/hc/Calculator.js +26 -0
  1504. package/dist/illustrations-v5/tnt/hc/ChartArea.d.ts +8 -0
  1505. package/dist/illustrations-v5/tnt/hc/ChartArea.js +26 -0
  1506. package/dist/illustrations-v5/tnt/hc/ChartArea2.d.ts +8 -0
  1507. package/dist/illustrations-v5/tnt/hc/ChartArea2.js +26 -0
  1508. package/dist/illustrations-v5/tnt/hc/ChartBPMNFlow.d.ts +8 -0
  1509. package/dist/illustrations-v5/tnt/hc/ChartBPMNFlow.js +26 -0
  1510. package/dist/illustrations-v5/tnt/hc/ChartBar.d.ts +8 -0
  1511. package/dist/illustrations-v5/tnt/hc/ChartBar.js +26 -0
  1512. package/dist/illustrations-v5/tnt/hc/ChartBullet.d.ts +8 -0
  1513. package/dist/illustrations-v5/tnt/hc/ChartBullet.js +26 -0
  1514. package/dist/illustrations-v5/tnt/hc/ChartDoughnut.d.ts +8 -0
  1515. package/dist/illustrations-v5/tnt/hc/ChartDoughnut.js +26 -0
  1516. package/dist/illustrations-v5/tnt/hc/ChartFlow.d.ts +8 -0
  1517. package/dist/illustrations-v5/tnt/hc/ChartFlow.js +26 -0
  1518. package/dist/illustrations-v5/tnt/hc/ChartGantt.d.ts +8 -0
  1519. package/dist/illustrations-v5/tnt/hc/ChartGantt.js +26 -0
  1520. package/dist/illustrations-v5/tnt/hc/ChartOrg.d.ts +8 -0
  1521. package/dist/illustrations-v5/tnt/hc/ChartOrg.js +26 -0
  1522. package/dist/illustrations-v5/tnt/hc/ChartPie.d.ts +8 -0
  1523. package/dist/illustrations-v5/tnt/hc/ChartPie.js +26 -0
  1524. package/dist/illustrations-v5/tnt/hc/CodePlaceholder.d.ts +8 -0
  1525. package/dist/illustrations-v5/tnt/hc/CodePlaceholder.js +26 -0
  1526. package/dist/illustrations-v5/tnt/hc/Company.d.ts +8 -0
  1527. package/dist/illustrations-v5/tnt/hc/Company.js +26 -0
  1528. package/dist/illustrations-v5/tnt/hc/Compass.d.ts +8 -0
  1529. package/dist/illustrations-v5/tnt/hc/Compass.js +26 -0
  1530. package/dist/illustrations-v5/tnt/hc/Components.d.ts +8 -0
  1531. package/dist/illustrations-v5/tnt/hc/Components.js +26 -0
  1532. package/dist/illustrations-v5/tnt/hc/Dialog.d.ts +8 -0
  1533. package/dist/illustrations-v5/tnt/hc/Dialog.js +26 -0
  1534. package/dist/illustrations-v5/tnt/hc/EmptyContentPane.d.ts +8 -0
  1535. package/dist/illustrations-v5/tnt/hc/EmptyContentPane.js +26 -0
  1536. package/dist/illustrations-v5/tnt/hc/ExternalLink.d.ts +8 -0
  1537. package/dist/illustrations-v5/tnt/hc/ExternalLink.js +26 -0
  1538. package/dist/illustrations-v5/tnt/hc/FaceID.d.ts +8 -0
  1539. package/dist/illustrations-v5/tnt/hc/FaceID.js +26 -0
  1540. package/dist/illustrations-v5/tnt/hc/Fingerprint.d.ts +8 -0
  1541. package/dist/illustrations-v5/tnt/hc/Fingerprint.js +26 -0
  1542. package/dist/illustrations-v5/tnt/hc/Handshake.d.ts +8 -0
  1543. package/dist/illustrations-v5/tnt/hc/Handshake.js +26 -0
  1544. package/dist/illustrations-v5/tnt/hc/Help.d.ts +8 -0
  1545. package/dist/illustrations-v5/tnt/hc/Help.js +26 -0
  1546. package/dist/illustrations-v5/tnt/hc/Lock.d.ts +8 -0
  1547. package/dist/illustrations-v5/tnt/hc/Lock.js +26 -0
  1548. package/dist/illustrations-v5/tnt/hc/Mission.d.ts +8 -0
  1549. package/dist/illustrations-v5/tnt/hc/Mission.js +26 -0
  1550. package/dist/illustrations-v5/tnt/hc/MissionFailed.d.ts +8 -0
  1551. package/dist/illustrations-v5/tnt/hc/MissionFailed.js +26 -0
  1552. package/dist/illustrations-v5/tnt/hc/NoApplications.d.ts +8 -0
  1553. package/dist/illustrations-v5/tnt/hc/NoApplications.js +26 -0
  1554. package/dist/illustrations-v5/tnt/hc/NoFlows.d.ts +8 -0
  1555. package/dist/illustrations-v5/tnt/hc/NoFlows.js +26 -0
  1556. package/dist/illustrations-v5/tnt/hc/NoUsers.d.ts +8 -0
  1557. package/dist/illustrations-v5/tnt/hc/NoUsers.js +26 -0
  1558. package/dist/illustrations-v5/tnt/hc/Radar.d.ts +8 -0
  1559. package/dist/illustrations-v5/tnt/hc/Radar.js +26 -0
  1560. package/dist/illustrations-v5/tnt/hc/RoadMap.d.ts +8 -0
  1561. package/dist/illustrations-v5/tnt/hc/RoadMap.js +26 -0
  1562. package/dist/illustrations-v5/tnt/hc/Secrets.d.ts +8 -0
  1563. package/dist/illustrations-v5/tnt/hc/Secrets.js +26 -0
  1564. package/dist/illustrations-v5/tnt/hc/Services.d.ts +8 -0
  1565. package/dist/illustrations-v5/tnt/hc/Services.js +26 -0
  1566. package/dist/illustrations-v5/tnt/hc/SessionExpired.d.ts +8 -0
  1567. package/dist/illustrations-v5/tnt/hc/SessionExpired.js +26 -0
  1568. package/dist/illustrations-v5/tnt/hc/SessionExpiring.d.ts +8 -0
  1569. package/dist/illustrations-v5/tnt/hc/SessionExpiring.js +26 -0
  1570. package/dist/illustrations-v5/tnt/hc/Settings.d.ts +8 -0
  1571. package/dist/illustrations-v5/tnt/hc/Settings.js +26 -0
  1572. package/dist/illustrations-v5/tnt/hc/Success.d.ts +8 -0
  1573. package/dist/illustrations-v5/tnt/hc/Success.js +26 -0
  1574. package/dist/illustrations-v5/tnt/hc/SuccessfulAuth.d.ts +8 -0
  1575. package/dist/illustrations-v5/tnt/hc/SuccessfulAuth.js +26 -0
  1576. package/dist/illustrations-v5/tnt/hc/Systems.d.ts +8 -0
  1577. package/dist/illustrations-v5/tnt/hc/Systems.js +26 -0
  1578. package/dist/illustrations-v5/tnt/hc/Teams.d.ts +8 -0
  1579. package/dist/illustrations-v5/tnt/hc/Teams.js +26 -0
  1580. package/dist/illustrations-v5/tnt/hc/Tools.d.ts +8 -0
  1581. package/dist/illustrations-v5/tnt/hc/Tools.js +26 -0
  1582. package/dist/illustrations-v5/tnt/hc/Tutorials.d.ts +8 -0
  1583. package/dist/illustrations-v5/tnt/hc/Tutorials.js +26 -0
  1584. package/dist/illustrations-v5/tnt/hc/Unlock.d.ts +8 -0
  1585. package/dist/illustrations-v5/tnt/hc/Unlock.js +26 -0
  1586. package/dist/illustrations-v5/tnt/hc/UnsuccessfulAuth.d.ts +8 -0
  1587. package/dist/illustrations-v5/tnt/hc/UnsuccessfulAuth.js +26 -0
  1588. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Avatar.js +16 -0
  1589. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Calculator.js +24 -0
  1590. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea.js +15 -0
  1591. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea2.js +14 -0
  1592. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBPMNFlow.js +22 -0
  1593. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBar.js +14 -0
  1594. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartBullet.js +19 -0
  1595. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartDoughnut.js +18 -0
  1596. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartFlow.js +19 -0
  1597. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartGantt.js +19 -0
  1598. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartOrg.js +30 -0
  1599. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ChartPie.js +20 -0
  1600. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-CodePlaceholder.js +10 -0
  1601. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Company.js +23 -0
  1602. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Compass.js +17 -0
  1603. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Components.js +22 -0
  1604. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Dialog.js +23 -0
  1605. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-EmptyContentPane.js +23 -0
  1606. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-ExternalLink.js +18 -0
  1607. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-FaceID.js +17 -0
  1608. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Fingerprint.js +13 -0
  1609. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Handshake.js +22 -0
  1610. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Help.js +12 -0
  1611. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Lock.js +22 -0
  1612. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Mission.js +15 -0
  1613. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-MissionFailed.js +12 -0
  1614. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoApplications.js +19 -0
  1615. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoFlows.js +22 -0
  1616. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-NoUsers.js +19 -0
  1617. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Radar.js +14 -0
  1618. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-RoadMap.js +92 -0
  1619. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Secrets.js +13 -0
  1620. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Services.js +16 -0
  1621. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpired.js +14 -0
  1622. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpiring.js +12 -0
  1623. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Settings.js +9 -0
  1624. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Success.js +20 -0
  1625. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-SuccessfulAuth.js +27 -0
  1626. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Systems.js +25 -0
  1627. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Teams.js +27 -0
  1628. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Tools.js +22 -0
  1629. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Tutorials.js +18 -0
  1630. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-Unlock.js +18 -0
  1631. package/dist/illustrations-v5/tnt/hc/tnt-Dialog-UnsuccessfulAuth.js +27 -0
  1632. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Avatar.js +13 -0
  1633. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Calculator.js +13 -0
  1634. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartArea.js +8 -0
  1635. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartArea2.js +7 -0
  1636. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBPMNFlow.js +14 -0
  1637. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBar.js +7 -0
  1638. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartBullet.js +10 -0
  1639. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartDoughnut.js +8 -0
  1640. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartFlow.js +12 -0
  1641. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartGantt.js +11 -0
  1642. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartOrg.js +14 -0
  1643. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ChartPie.js +9 -0
  1644. package/dist/illustrations-v5/tnt/hc/tnt-Dot-CodePlaceholder.js +6 -0
  1645. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Company.js +11 -0
  1646. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Compass.js +10 -0
  1647. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Components.js +11 -0
  1648. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Dialog.js +23 -0
  1649. package/dist/illustrations-v5/tnt/hc/tnt-Dot-EmptyContentPane.js +11 -0
  1650. package/dist/illustrations-v5/tnt/hc/tnt-Dot-ExternalLink.js +10 -0
  1651. package/dist/illustrations-v5/tnt/hc/tnt-Dot-FaceID.js +19 -0
  1652. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Fingerprint.js +8 -0
  1653. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Handshake.js +19 -0
  1654. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Help.js +9 -0
  1655. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Lock.js +13 -0
  1656. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Mission.js +10 -0
  1657. package/dist/illustrations-v5/tnt/hc/tnt-Dot-MissionFailed.js +10 -0
  1658. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoApplications.js +15 -0
  1659. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoFlows.js +41 -0
  1660. package/dist/illustrations-v5/tnt/hc/tnt-Dot-NoUsers.js +12 -0
  1661. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Radar.js +12 -0
  1662. package/dist/illustrations-v5/tnt/hc/tnt-Dot-RoadMap.js +8 -0
  1663. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Secrets.js +6 -0
  1664. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Services.js +11 -0
  1665. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SessionExpired.js +8 -0
  1666. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SessionExpiring.js +9 -0
  1667. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Settings.js +7 -0
  1668. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Success.js +8 -0
  1669. package/dist/illustrations-v5/tnt/hc/tnt-Dot-SuccessfulAuth.js +12 -0
  1670. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Systems.js +15 -0
  1671. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Teams.js +16 -0
  1672. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Tools.js +18 -0
  1673. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Tutorials.js +8 -0
  1674. package/dist/illustrations-v5/tnt/hc/tnt-Dot-Unlock.js +20 -0
  1675. package/dist/illustrations-v5/tnt/hc/tnt-Dot-UnsuccessfulAuth.js +12 -0
  1676. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Avatar.js +23 -0
  1677. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Calculator.js +32 -0
  1678. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartArea.js +21 -0
  1679. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartArea2.js +20 -0
  1680. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBPMNFlow.js +28 -0
  1681. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBar.js +20 -0
  1682. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartBullet.js +25 -0
  1683. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartDoughnut.js +24 -0
  1684. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartFlow.js +25 -0
  1685. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartGantt.js +25 -0
  1686. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartOrg.js +36 -0
  1687. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ChartPie.js +25 -0
  1688. package/dist/illustrations-v5/tnt/hc/tnt-Scene-CodePlaceholder.js +14 -0
  1689. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Company.js +30 -0
  1690. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Compass.js +24 -0
  1691. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Components.js +26 -0
  1692. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Dialog.js +17 -0
  1693. package/dist/illustrations-v5/tnt/hc/tnt-Scene-EmptyContentPane.js +27 -0
  1694. package/dist/illustrations-v5/tnt/hc/tnt-Scene-ExternalLink.js +22 -0
  1695. package/dist/illustrations-v5/tnt/hc/tnt-Scene-FaceID.js +28 -0
  1696. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Fingerprint.js +17 -0
  1697. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Handshake.js +26 -0
  1698. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Help.js +21 -0
  1699. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Lock.js +26 -0
  1700. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Mission.js +21 -0
  1701. package/dist/illustrations-v5/tnt/hc/tnt-Scene-MissionFailed.js +18 -0
  1702. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoApplications.js +23 -0
  1703. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoFlows.js +26 -0
  1704. package/dist/illustrations-v5/tnt/hc/tnt-Scene-NoUsers.js +23 -0
  1705. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Radar.js +19 -0
  1706. package/dist/illustrations-v5/tnt/hc/tnt-Scene-RoadMap.js +30 -0
  1707. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Secrets.js +21 -0
  1708. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Services.js +20 -0
  1709. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SessionExpired.js +18 -0
  1710. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SessionExpiring.js +16 -0
  1711. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Settings.js +13 -0
  1712. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Success.js +27 -0
  1713. package/dist/illustrations-v5/tnt/hc/tnt-Scene-SuccessfulAuth.js +34 -0
  1714. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Systems.js +31 -0
  1715. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Teams.js +31 -0
  1716. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Tools.js +26 -0
  1717. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Tutorials.js +27 -0
  1718. package/dist/illustrations-v5/tnt/hc/tnt-Scene-Unlock.js +22 -0
  1719. package/dist/illustrations-v5/tnt/hc/tnt-Scene-UnsuccessfulAuth.js +34 -0
  1720. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Avatar.js +17 -0
  1721. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Calculator.js +24 -0
  1722. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartArea.js +15 -0
  1723. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartArea2.js +14 -0
  1724. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBPMNFlow.js +21 -0
  1725. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBar.js +14 -0
  1726. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartBullet.js +19 -0
  1727. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartDoughnut.js +18 -0
  1728. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartFlow.js +19 -0
  1729. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartGantt.js +19 -0
  1730. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartOrg.js +30 -0
  1731. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ChartPie.js +19 -0
  1732. package/dist/illustrations-v5/tnt/hc/tnt-Spot-CodePlaceholder.js +10 -0
  1733. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Company.js +23 -0
  1734. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Compass.js +17 -0
  1735. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Components.js +20 -0
  1736. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Dialog.js +23 -0
  1737. package/dist/illustrations-v5/tnt/hc/tnt-Spot-EmptyContentPane.js +23 -0
  1738. package/dist/illustrations-v5/tnt/hc/tnt-Spot-ExternalLink.js +18 -0
  1739. package/dist/illustrations-v5/tnt/hc/tnt-Spot-FaceID.js +17 -0
  1740. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Fingerprint.js +9 -0
  1741. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Handshake.js +27 -0
  1742. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Help.js +12 -0
  1743. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Lock.js +22 -0
  1744. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Mission.js +11 -0
  1745. package/dist/illustrations-v5/tnt/hc/tnt-Spot-MissionFailed.js +11 -0
  1746. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoApplications.js +19 -0
  1747. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoFlows.js +22 -0
  1748. package/dist/illustrations-v5/tnt/hc/tnt-Spot-NoUsers.js +19 -0
  1749. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Radar.js +12 -0
  1750. package/dist/illustrations-v5/tnt/hc/tnt-Spot-RoadMap.js +78 -0
  1751. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Secrets.js +13 -0
  1752. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Services.js +16 -0
  1753. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SessionExpired.js +14 -0
  1754. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SessionExpiring.js +12 -0
  1755. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Settings.js +9 -0
  1756. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Success.js +13 -0
  1757. package/dist/illustrations-v5/tnt/hc/tnt-Spot-SuccessfulAuth.js +27 -0
  1758. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Systems.js +25 -0
  1759. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Teams.js +27 -0
  1760. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Tools.js +22 -0
  1761. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Tutorials.js +18 -0
  1762. package/dist/illustrations-v5/tnt/hc/tnt-Spot-Unlock.js +18 -0
  1763. package/dist/illustrations-v5/tnt/hc/tnt-Spot-UnsuccessfulAuth.js +27 -0
  1764. package/dist/illustrations-v5/tnt/tnt-Dialog-Avatar.js +49 -0
  1765. package/dist/illustrations-v5/tnt/tnt-Dialog-Calculator.js +27 -0
  1766. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartArea.js +11 -0
  1767. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartArea2.js +12 -0
  1768. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBPMNFlow.js +18 -0
  1769. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBar.js +13 -0
  1770. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartBullet.js +14 -0
  1771. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartDoughnut.js +13 -0
  1772. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartFlow.js +17 -0
  1773. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartGantt.js +13 -0
  1774. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartOrg.js +20 -0
  1775. package/dist/illustrations-v5/tnt/tnt-Dialog-ChartPie.js +13 -0
  1776. package/dist/illustrations-v5/tnt/tnt-Dialog-CodePlaceholder.js +7 -0
  1777. package/dist/illustrations-v5/tnt/tnt-Dialog-Company.js +14 -0
  1778. package/dist/illustrations-v5/tnt/tnt-Dialog-Compass.js +19 -0
  1779. package/dist/illustrations-v5/tnt/tnt-Dialog-Components.js +17 -0
  1780. package/dist/illustrations-v5/tnt/tnt-Dialog-Dialog.js +11 -0
  1781. package/dist/illustrations-v5/tnt/tnt-Dialog-ExternalLink.js +15 -0
  1782. package/dist/illustrations-v5/tnt/tnt-Dialog-FaceID.js +23 -0
  1783. package/dist/illustrations-v5/tnt/tnt-Dialog-Fingerprint.js +32 -0
  1784. package/dist/illustrations-v5/tnt/tnt-Dialog-Handshake.js +39 -0
  1785. package/dist/illustrations-v5/tnt/tnt-Dialog-Help.js +11 -0
  1786. package/dist/illustrations-v5/tnt/tnt-Dialog-Lock.js +44 -0
  1787. package/dist/illustrations-v5/tnt/tnt-Dialog-Mission.js +26 -0
  1788. package/dist/illustrations-v5/tnt/tnt-Dialog-MissionFailed.js +24 -0
  1789. package/dist/illustrations-v5/tnt/tnt-Dialog-NoApplications.js +13 -0
  1790. package/dist/illustrations-v5/tnt/tnt-Dialog-NoFlows.js +13 -0
  1791. package/dist/illustrations-v5/tnt/tnt-Dialog-NoUsers.js +13 -0
  1792. package/dist/illustrations-v5/tnt/tnt-Dialog-Radar.js +28 -0
  1793. package/dist/illustrations-v5/tnt/tnt-Dialog-RoadMap.js +32 -0
  1794. package/dist/illustrations-v5/tnt/tnt-Dialog-Secrets.js +18 -0
  1795. package/dist/illustrations-v5/tnt/tnt-Dialog-Services.js +30 -0
  1796. package/dist/illustrations-v5/tnt/tnt-Dialog-SessionExpired.js +23 -0
  1797. package/dist/illustrations-v5/tnt/tnt-Dialog-SessionExpiring.js +22 -0
  1798. package/dist/illustrations-v5/tnt/tnt-Dialog-Settings.js +19 -0
  1799. package/dist/illustrations-v5/tnt/tnt-Dialog-Success.js +21 -0
  1800. package/dist/illustrations-v5/tnt/tnt-Dialog-SuccessfulAuth.js +14 -0
  1801. package/dist/illustrations-v5/tnt/tnt-Dialog-Systems.js +19 -0
  1802. package/dist/illustrations-v5/tnt/tnt-Dialog-Teams.js +79 -0
  1803. package/dist/illustrations-v5/tnt/tnt-Dialog-Tools.js +26 -0
  1804. package/dist/illustrations-v5/tnt/tnt-Dialog-Tutorials.js +18 -0
  1805. package/dist/illustrations-v5/tnt/tnt-Dialog-Unlock.js +45 -0
  1806. package/dist/illustrations-v5/tnt/tnt-Dialog-UnsuccessfulAuth.js +14 -0
  1807. package/dist/illustrations-v5/tnt/tnt-Dot-Avatar.js +21 -0
  1808. package/dist/illustrations-v5/tnt/tnt-Dot-Calculator.js +8 -0
  1809. package/dist/illustrations-v5/tnt/tnt-Dot-ChartArea.js +9 -0
  1810. package/dist/illustrations-v5/tnt/tnt-Dot-ChartArea2.js +17 -0
  1811. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBPMNFlow.js +17 -0
  1812. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBar.js +18 -0
  1813. package/dist/illustrations-v5/tnt/tnt-Dot-ChartBullet.js +21 -0
  1814. package/dist/illustrations-v5/tnt/tnt-Dot-ChartDoughnut.js +11 -0
  1815. package/dist/illustrations-v5/tnt/tnt-Dot-ChartFlow.js +15 -0
  1816. package/dist/illustrations-v5/tnt/tnt-Dot-ChartGantt.js +12 -0
  1817. package/dist/illustrations-v5/tnt/tnt-Dot-ChartOrg.js +25 -0
  1818. package/dist/illustrations-v5/tnt/tnt-Dot-ChartPie.js +11 -0
  1819. package/dist/illustrations-v5/tnt/tnt-Dot-CodePlaceholder.js +5 -0
  1820. package/dist/illustrations-v5/tnt/tnt-Dot-Company.js +15 -0
  1821. package/dist/illustrations-v5/tnt/tnt-Dot-Compass.js +18 -0
  1822. package/dist/illustrations-v5/tnt/tnt-Dot-Components.js +22 -0
  1823. package/dist/illustrations-v5/tnt/tnt-Dot-Dialog.js +9 -0
  1824. package/dist/illustrations-v5/tnt/tnt-Dot-ExternalLink.js +10 -0
  1825. package/dist/illustrations-v5/tnt/tnt-Dot-FaceID.js +21 -0
  1826. package/dist/illustrations-v5/tnt/tnt-Dot-Fingerprint.js +13 -0
  1827. package/dist/illustrations-v5/tnt/tnt-Dot-Handshake.js +36 -0
  1828. package/dist/illustrations-v5/tnt/tnt-Dot-Help.js +16 -0
  1829. package/dist/illustrations-v5/tnt/tnt-Dot-Lock.js +26 -0
  1830. package/dist/illustrations-v5/tnt/tnt-Dot-Mission.js +21 -0
  1831. package/dist/illustrations-v5/tnt/tnt-Dot-MissionFailed.js +20 -0
  1832. package/dist/illustrations-v5/tnt/tnt-Dot-NoApplications.js +11 -0
  1833. package/dist/illustrations-v5/tnt/tnt-Dot-NoFlows.js +11 -0
  1834. package/dist/illustrations-v5/tnt/tnt-Dot-NoUsers.js +18 -0
  1835. package/dist/illustrations-v5/tnt/tnt-Dot-Radar.js +28 -0
  1836. package/dist/illustrations-v5/tnt/tnt-Dot-RoadMap.js +11 -0
  1837. package/dist/illustrations-v5/tnt/tnt-Dot-Secrets.js +16 -0
  1838. package/dist/illustrations-v5/tnt/tnt-Dot-Services.js +14 -0
  1839. package/dist/illustrations-v5/tnt/tnt-Dot-SessionExpired.js +13 -0
  1840. package/dist/illustrations-v5/tnt/tnt-Dot-SessionExpiring.js +20 -0
  1841. package/dist/illustrations-v5/tnt/tnt-Dot-Settings.js +8 -0
  1842. package/dist/illustrations-v5/tnt/tnt-Dot-Success.js +15 -0
  1843. package/dist/illustrations-v5/tnt/tnt-Dot-SuccessfulAuth.js +10 -0
  1844. package/dist/illustrations-v5/tnt/tnt-Dot-Systems.js +15 -0
  1845. package/dist/illustrations-v5/tnt/tnt-Dot-Teams.js +32 -0
  1846. package/dist/illustrations-v5/tnt/tnt-Dot-Tools.js +26 -0
  1847. package/dist/illustrations-v5/tnt/tnt-Dot-Tutorials.js +16 -0
  1848. package/dist/illustrations-v5/tnt/tnt-Dot-Unlock.js +28 -0
  1849. package/dist/illustrations-v5/tnt/tnt-Dot-UnsuccessfulAuth.js +10 -0
  1850. package/dist/illustrations-v5/tnt/tnt-Scene-Avatar.js +49 -0
  1851. package/dist/illustrations-v5/tnt/tnt-Scene-Calculator.js +22 -0
  1852. package/dist/illustrations-v5/tnt/tnt-Scene-ChartArea.js +11 -0
  1853. package/dist/illustrations-v5/tnt/tnt-Scene-ChartArea2.js +12 -0
  1854. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBPMNFlow.js +18 -0
  1855. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBar.js +13 -0
  1856. package/dist/illustrations-v5/tnt/tnt-Scene-ChartBullet.js +18 -0
  1857. package/dist/illustrations-v5/tnt/tnt-Scene-ChartDoughnut.js +13 -0
  1858. package/dist/illustrations-v5/tnt/tnt-Scene-ChartFlow.js +17 -0
  1859. package/dist/illustrations-v5/tnt/tnt-Scene-ChartGantt.js +13 -0
  1860. package/dist/illustrations-v5/tnt/tnt-Scene-ChartOrg.js +19 -0
  1861. package/dist/illustrations-v5/tnt/tnt-Scene-ChartPie.js +13 -0
  1862. package/dist/illustrations-v5/tnt/tnt-Scene-CodePlaceholder.js +7 -0
  1863. package/dist/illustrations-v5/tnt/tnt-Scene-Company.js +14 -0
  1864. package/dist/illustrations-v5/tnt/tnt-Scene-Compass.js +19 -0
  1865. package/dist/illustrations-v5/tnt/tnt-Scene-Components.js +19 -0
  1866. package/dist/illustrations-v5/tnt/tnt-Scene-Dialog.js +11 -0
  1867. package/dist/illustrations-v5/tnt/tnt-Scene-ExternalLink.js +15 -0
  1868. package/dist/illustrations-v5/tnt/tnt-Scene-FaceID.js +22 -0
  1869. package/dist/illustrations-v5/tnt/tnt-Scene-Fingerprint.js +32 -0
  1870. package/dist/illustrations-v5/tnt/tnt-Scene-Handshake.js +39 -0
  1871. package/dist/illustrations-v5/tnt/tnt-Scene-Help.js +18 -0
  1872. package/dist/illustrations-v5/tnt/tnt-Scene-Lock.js +44 -0
  1873. package/dist/illustrations-v5/tnt/tnt-Scene-Mission.js +33 -0
  1874. package/dist/illustrations-v5/tnt/tnt-Scene-MissionFailed.js +24 -0
  1875. package/dist/illustrations-v5/tnt/tnt-Scene-NoApplications.js +13 -0
  1876. package/dist/illustrations-v5/tnt/tnt-Scene-NoFlows.js +13 -0
  1877. package/dist/illustrations-v5/tnt/tnt-Scene-NoUsers.js +20 -0
  1878. package/dist/illustrations-v5/tnt/tnt-Scene-Radar.js +30 -0
  1879. package/dist/illustrations-v5/tnt/tnt-Scene-RoadMap.js +32 -0
  1880. package/dist/illustrations-v5/tnt/tnt-Scene-Secrets.js +18 -0
  1881. package/dist/illustrations-v5/tnt/tnt-Scene-Services.js +30 -0
  1882. package/dist/illustrations-v5/tnt/tnt-Scene-SessionExpired.js +24 -0
  1883. package/dist/illustrations-v5/tnt/tnt-Scene-SessionExpiring.js +22 -0
  1884. package/dist/illustrations-v5/tnt/tnt-Scene-Settings.js +19 -0
  1885. package/dist/illustrations-v5/tnt/tnt-Scene-Success.js +21 -0
  1886. package/dist/illustrations-v5/tnt/tnt-Scene-SuccessfulAuth.js +19 -0
  1887. package/dist/illustrations-v5/tnt/tnt-Scene-Systems.js +28 -0
  1888. package/dist/illustrations-v5/tnt/tnt-Scene-Teams.js +85 -0
  1889. package/dist/illustrations-v5/tnt/tnt-Scene-Tools.js +47 -0
  1890. package/dist/illustrations-v5/tnt/tnt-Scene-Tutorials.js +18 -0
  1891. package/dist/illustrations-v5/tnt/tnt-Scene-Unlock.js +45 -0
  1892. package/dist/illustrations-v5/tnt/tnt-Scene-UnsuccessfulAuth.js +19 -0
  1893. package/dist/illustrations-v5/tnt/tnt-Spot-Avatar.js +49 -0
  1894. package/dist/illustrations-v5/tnt/tnt-Spot-Calculator.js +26 -0
  1895. package/dist/illustrations-v5/tnt/tnt-Spot-ChartArea.js +10 -0
  1896. package/dist/illustrations-v5/tnt/tnt-Spot-ChartArea2.js +11 -0
  1897. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBPMNFlow.js +18 -0
  1898. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBar.js +12 -0
  1899. package/dist/illustrations-v5/tnt/tnt-Spot-ChartBullet.js +13 -0
  1900. package/dist/illustrations-v5/tnt/tnt-Spot-ChartDoughnut.js +12 -0
  1901. package/dist/illustrations-v5/tnt/tnt-Spot-ChartFlow.js +14 -0
  1902. package/dist/illustrations-v5/tnt/tnt-Spot-ChartGantt.js +12 -0
  1903. package/dist/illustrations-v5/tnt/tnt-Spot-ChartOrg.js +19 -0
  1904. package/dist/illustrations-v5/tnt/tnt-Spot-ChartPie.js +12 -0
  1905. package/dist/illustrations-v5/tnt/tnt-Spot-CodePlaceholder.js +7 -0
  1906. package/dist/illustrations-v5/tnt/tnt-Spot-Company.js +14 -0
  1907. package/dist/illustrations-v5/tnt/tnt-Spot-Compass.js +19 -0
  1908. package/dist/illustrations-v5/tnt/tnt-Spot-Components.js +19 -0
  1909. package/dist/illustrations-v5/tnt/tnt-Spot-Dialog.js +11 -0
  1910. package/dist/illustrations-v5/tnt/tnt-Spot-ExternalLink.js +14 -0
  1911. package/dist/illustrations-v5/tnt/tnt-Spot-FaceID.js +22 -0
  1912. package/dist/illustrations-v5/tnt/tnt-Spot-Fingerprint.js +32 -0
  1913. package/dist/illustrations-v5/tnt/tnt-Spot-Handshake.js +39 -0
  1914. package/dist/illustrations-v5/tnt/tnt-Spot-Help.js +10 -0
  1915. package/dist/illustrations-v5/tnt/tnt-Spot-Lock.js +44 -0
  1916. package/dist/illustrations-v5/tnt/tnt-Spot-Mission.js +26 -0
  1917. package/dist/illustrations-v5/tnt/tnt-Spot-MissionFailed.js +24 -0
  1918. package/dist/illustrations-v5/tnt/tnt-Spot-NoApplications.js +12 -0
  1919. package/dist/illustrations-v5/tnt/tnt-Spot-NoFlows.js +12 -0
  1920. package/dist/illustrations-v5/tnt/tnt-Spot-NoUsers.js +13 -0
  1921. package/dist/illustrations-v5/tnt/tnt-Spot-Radar.js +28 -0
  1922. package/dist/illustrations-v5/tnt/tnt-Spot-RoadMap.js +32 -0
  1923. package/dist/illustrations-v5/tnt/tnt-Spot-Secrets.js +18 -0
  1924. package/dist/illustrations-v5/tnt/tnt-Spot-Services.js +30 -0
  1925. package/dist/illustrations-v5/tnt/tnt-Spot-SessionExpired.js +23 -0
  1926. package/dist/illustrations-v5/tnt/tnt-Spot-SessionExpiring.js +20 -0
  1927. package/dist/illustrations-v5/tnt/tnt-Spot-Settings.js +15 -0
  1928. package/dist/illustrations-v5/tnt/tnt-Spot-Success.js +21 -0
  1929. package/dist/illustrations-v5/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
  1930. package/dist/illustrations-v5/tnt/tnt-Spot-Systems.js +19 -0
  1931. package/dist/illustrations-v5/tnt/tnt-Spot-Teams.js +79 -0
  1932. package/dist/illustrations-v5/tnt/tnt-Spot-Tools.js +26 -0
  1933. package/dist/illustrations-v5/tnt/tnt-Spot-Tutorials.js +17 -0
  1934. package/dist/illustrations-v5/tnt/tnt-Spot-Unlock.js +45 -0
  1935. package/dist/illustrations-v5/tnt/tnt-Spot-UnsuccessfulAuth.js +15 -0
  1936. package/dist/ssr-zxing-shim.d.ts +2 -0
  1937. package/dist/ssr-zxing-shim.js +3 -0
  1938. package/dist/ssr-zxing-shim.js.map +1 -0
  1939. package/dist/ssr-zxing.d.ts +2 -0
  1940. package/dist/ssr-zxing.js +3 -0
  1941. package/dist/ssr-zxing.js.map +1 -0
  1942. package/dist/types/FCLLayout.d.ts +105 -0
  1943. package/dist/types/FCLLayout.js +107 -0
  1944. package/dist/types/FCLLayout.js.map +1 -0
  1945. package/dist/types/IllustrationMessageDesign.d.ts +69 -0
  1946. package/dist/types/IllustrationMessageDesign.js +71 -0
  1947. package/dist/types/IllustrationMessageDesign.js.map +1 -0
  1948. package/dist/types/IllustrationMessageType.d.ts +636 -0
  1949. package/dist/types/IllustrationMessageType.js +638 -0
  1950. package/dist/types/IllustrationMessageType.js.map +1 -0
  1951. package/dist/types/MediaGalleryItemLayout.d.ts +22 -0
  1952. package/dist/types/MediaGalleryItemLayout.js +24 -0
  1953. package/dist/types/MediaGalleryItemLayout.js.map +1 -0
  1954. package/dist/types/MediaGalleryLayout.d.ts +22 -0
  1955. package/dist/types/MediaGalleryLayout.js +24 -0
  1956. package/dist/types/MediaGalleryLayout.js.map +1 -0
  1957. package/dist/types/MediaGalleryMenuHorizontalAlign.d.ts +17 -0
  1958. package/dist/types/MediaGalleryMenuHorizontalAlign.js +19 -0
  1959. package/dist/types/MediaGalleryMenuHorizontalAlign.js.map +1 -0
  1960. package/dist/types/MediaGalleryMenuVerticalAlign.d.ts +17 -0
  1961. package/dist/types/MediaGalleryMenuVerticalAlign.js +19 -0
  1962. package/dist/types/MediaGalleryMenuVerticalAlign.js.map +1 -0
  1963. package/dist/types/NavigationLayoutMode.d.ts +23 -0
  1964. package/dist/types/NavigationLayoutMode.js +25 -0
  1965. package/dist/types/NavigationLayoutMode.js.map +1 -0
  1966. package/dist/types/NotificationListItemImportance.d.ts +16 -0
  1967. package/dist/types/NotificationListItemImportance.js +18 -0
  1968. package/dist/types/NotificationListItemImportance.js.map +1 -0
  1969. package/dist/types/PageBackgroundDesign.d.ts +22 -0
  1970. package/dist/types/PageBackgroundDesign.js +24 -0
  1971. package/dist/types/PageBackgroundDesign.js.map +1 -0
  1972. package/dist/types/SearchMode.d.ts +17 -0
  1973. package/dist/types/SearchMode.js +19 -0
  1974. package/dist/types/SearchMode.js.map +1 -0
  1975. package/dist/types/SideContentFallDown.d.ts +27 -0
  1976. package/dist/types/SideContentFallDown.js +29 -0
  1977. package/dist/types/SideContentFallDown.js.map +1 -0
  1978. package/dist/types/SideContentPosition.d.ts +19 -0
  1979. package/dist/types/SideContentPosition.js +21 -0
  1980. package/dist/types/SideContentPosition.js.map +1 -0
  1981. package/dist/types/SideContentVisibility.d.ts +32 -0
  1982. package/dist/types/SideContentVisibility.js +34 -0
  1983. package/dist/types/SideContentVisibility.js.map +1 -0
  1984. package/dist/types/SideNavigationItemDesign.d.ts +24 -0
  1985. package/dist/types/SideNavigationItemDesign.js +26 -0
  1986. package/dist/types/SideNavigationItemDesign.js.map +1 -0
  1987. package/dist/types/TimelineGrowingMode.d.ts +24 -0
  1988. package/dist/types/TimelineGrowingMode.js +26 -0
  1989. package/dist/types/TimelineGrowingMode.js.map +1 -0
  1990. package/dist/types/TimelineLayout.d.ts +18 -0
  1991. package/dist/types/TimelineLayout.js +20 -0
  1992. package/dist/types/TimelineLayout.js.map +1 -0
  1993. package/dist/types/UploadCollectionDnDMode.d.ts +22 -0
  1994. package/dist/types/UploadCollectionDnDMode.js +19 -44
  1995. package/dist/types/UploadCollectionDnDMode.js.map +1 -0
  1996. package/dist/types/UploadCollectionSelectionMode.d.ts +39 -0
  1997. package/dist/types/UploadCollectionSelectionMode.js +41 -0
  1998. package/dist/types/UploadCollectionSelectionMode.js.map +1 -0
  1999. package/dist/types/UploadState.d.ts +27 -0
  2000. package/dist/types/UploadState.js +24 -51
  2001. package/dist/types/UploadState.js.map +1 -0
  2002. package/dist/types/ViewSettingsDialogMode.d.ts +25 -0
  2003. package/dist/types/ViewSettingsDialogMode.js +27 -0
  2004. package/dist/types/ViewSettingsDialogMode.js.map +1 -0
  2005. package/dist/types/WizardContentLayout.d.ts +17 -0
  2006. package/dist/types/WizardContentLayout.js +19 -0
  2007. package/dist/types/WizardContentLayout.js.map +1 -0
  2008. package/dist/upload-utils/UploadCollectionBodyDnD.d.ts +15 -0
  2009. package/dist/upload-utils/UploadCollectionBodyDnD.js +42 -55
  2010. package/dist/upload-utils/UploadCollectionBodyDnD.js.map +1 -0
  2011. package/dist/vscode.html-custom-data.json +1700 -0
  2012. package/dist/web-types.json +4290 -0
  2013. package/global.d.ts +12 -0
  2014. package/package-scripts.cjs +84 -0
  2015. package/package.json +47 -13
  2016. package/src/BarcodeScannerDialogTemplate.tsx +38 -0
  2017. package/src/DynamicPageHeaderActionsTemplate.tsx +33 -0
  2018. package/src/DynamicPageHeaderTemplate.tsx +9 -0
  2019. package/src/DynamicPageTemplate.tsx +72 -0
  2020. package/src/DynamicPageTitleTemplate.tsx +77 -0
  2021. package/src/DynamicSideContentTemplate.tsx +48 -0
  2022. package/src/FlexibleColumnLayoutTemplate.tsx +134 -0
  2023. package/src/IllustratedMessageTemplate.tsx +92 -0
  2024. package/src/MediaGalleryItemTemplate.tsx +22 -0
  2025. package/src/MediaGalleryTemplate.tsx +50 -0
  2026. package/src/NavigationLayoutTemplate.tsx +19 -0
  2027. package/src/NavigationMenuItemTemplate.tsx +64 -0
  2028. package/src/NavigationMenuTemplate.tsx +67 -0
  2029. package/src/NotificationListGroupItemTemplate.tsx +66 -0
  2030. package/src/NotificationListItemTemplate.tsx +154 -0
  2031. package/src/NotificationListTemplate.tsx +17 -0
  2032. package/src/PageTemplate.tsx +30 -0
  2033. package/src/ProductSwitchItemTemplate.tsx +66 -0
  2034. package/src/ProductSwitchTemplate.tsx +16 -0
  2035. package/src/SearchFieldTemplate.tsx +102 -0
  2036. package/src/SearchItemShowMoreTemplate.tsx +19 -0
  2037. package/src/SearchItemTemplate.tsx +67 -0
  2038. package/src/SearchMessageAreaTemplate.tsx +15 -0
  2039. package/src/SearchPopoverTemplate.tsx +80 -0
  2040. package/src/SearchTemplate.tsx +12 -0
  2041. package/src/ShellBarBrandingTemplate.tsx +27 -0
  2042. package/src/ShellBarPopoverTemplate.tsx +50 -0
  2043. package/src/ShellBarSearchPopoverTemplate.tsx +24 -0
  2044. package/src/ShellBarSearchTemplate.tsx +12 -0
  2045. package/src/ShellBarTemplate.tsx +337 -0
  2046. package/src/SideNavigationGroupTemplate.tsx +58 -0
  2047. package/src/SideNavigationItemTemplate.tsx +86 -0
  2048. package/src/SideNavigationPopoverTemplate.tsx +103 -0
  2049. package/src/SideNavigationSubItemTemplate.tsx +39 -0
  2050. package/src/SideNavigationTemplate.tsx +75 -0
  2051. package/src/TimelineGroupItemTemplate.tsx +48 -0
  2052. package/src/TimelineItemTemplate.tsx +77 -0
  2053. package/src/TimelineTemplate.tsx +77 -0
  2054. package/src/UploadCollectionItemTemplate.tsx +146 -0
  2055. package/src/UploadCollectionTemplate.tsx +63 -0
  2056. package/src/UserMenuItemGroupTemplate.tsx +6 -0
  2057. package/src/UserMenuItemTemplate.tsx +6 -0
  2058. package/src/UserMenuTemplate.tsx +193 -0
  2059. package/src/UserSettingsAccountViewTemplate.tsx +46 -0
  2060. package/src/UserSettingsAppearanceViewItemTemplate.tsx +25 -0
  2061. package/src/UserSettingsAppearanceViewTemplate.tsx +15 -0
  2062. package/src/UserSettingsDialogTemplate.tsx +80 -0
  2063. package/src/UserSettingsItemTemplate.tsx +52 -0
  2064. package/src/UserSettingsViewTemplate.tsx +11 -0
  2065. package/src/ViewSettingsDialogTemplate.tsx +230 -0
  2066. package/src/WizardPopoverTemplate.tsx +42 -0
  2067. package/src/WizardTabTemplate.tsx +39 -0
  2068. package/src/WizardTemplate.tsx +75 -0
  2069. package/src/i18n/messagebundle.properties +533 -15
  2070. package/src/i18n/messagebundle_ar.properties +356 -9
  2071. package/src/i18n/messagebundle_bg.properties +356 -9
  2072. package/src/i18n/messagebundle_ca.properties +356 -9
  2073. package/src/i18n/messagebundle_cnr.properties +407 -0
  2074. package/src/i18n/messagebundle_cs.properties +356 -9
  2075. package/src/i18n/messagebundle_cy.properties +407 -0
  2076. package/src/i18n/messagebundle_da.properties +357 -10
  2077. package/src/i18n/messagebundle_de.properties +356 -9
  2078. package/src/i18n/messagebundle_el.properties +356 -9
  2079. package/src/i18n/messagebundle_en.properties +356 -9
  2080. package/src/i18n/messagebundle_en_GB.properties +407 -0
  2081. package/src/i18n/messagebundle_en_US_sappsd.properties +362 -15
  2082. package/src/i18n/messagebundle_en_US_saprigi.properties +407 -0
  2083. package/src/i18n/messagebundle_en_US_saptrc.properties +378 -31
  2084. package/src/i18n/messagebundle_es.properties +356 -9
  2085. package/src/i18n/messagebundle_es_MX.properties +407 -0
  2086. package/src/i18n/messagebundle_et.properties +356 -9
  2087. package/src/i18n/messagebundle_fi.properties +357 -10
  2088. package/src/i18n/messagebundle_fr.properties +356 -9
  2089. package/src/i18n/messagebundle_fr_CA.properties +407 -0
  2090. package/src/i18n/messagebundle_hi.properties +356 -9
  2091. package/src/i18n/messagebundle_hr.properties +359 -12
  2092. package/src/i18n/messagebundle_hu.properties +354 -7
  2093. package/src/i18n/messagebundle_id.properties +407 -0
  2094. package/src/i18n/messagebundle_it.properties +364 -17
  2095. package/src/i18n/messagebundle_iw.properties +357 -10
  2096. package/src/i18n/messagebundle_ja.properties +359 -12
  2097. package/src/i18n/messagebundle_kk.properties +357 -10
  2098. package/src/i18n/messagebundle_ko.properties +358 -11
  2099. package/src/i18n/messagebundle_lt.properties +356 -9
  2100. package/src/i18n/messagebundle_lv.properties +356 -9
  2101. package/src/i18n/messagebundle_mk.properties +407 -0
  2102. package/src/i18n/messagebundle_ms.properties +357 -10
  2103. package/src/i18n/messagebundle_nl.properties +356 -9
  2104. package/src/i18n/messagebundle_no.properties +356 -9
  2105. package/src/i18n/messagebundle_pl.properties +357 -10
  2106. package/src/i18n/messagebundle_pt.properties +356 -9
  2107. package/src/i18n/messagebundle_pt_PT.properties +407 -0
  2108. package/src/i18n/messagebundle_ro.properties +356 -9
  2109. package/src/i18n/messagebundle_ru.properties +356 -9
  2110. package/src/i18n/messagebundle_sh.properties +359 -12
  2111. package/src/i18n/messagebundle_sk.properties +356 -9
  2112. package/src/i18n/messagebundle_sl.properties +357 -10
  2113. package/src/i18n/messagebundle_sr.properties +407 -0
  2114. package/src/i18n/messagebundle_sv.properties +356 -9
  2115. package/src/i18n/messagebundle_th.properties +355 -8
  2116. package/src/i18n/messagebundle_tr.properties +357 -10
  2117. package/src/i18n/messagebundle_uk.properties +358 -11
  2118. package/src/i18n/messagebundle_vi.properties +356 -9
  2119. package/src/i18n/messagebundle_zh_CN.properties +356 -9
  2120. package/src/i18n/messagebundle_zh_TW.properties +357 -10
  2121. package/src/illustrations/sapIllus-Dialog-Achievement.svg +28 -0
  2122. package/src/illustrations/sapIllus-Dialog-AddColumn.svg +37 -0
  2123. package/src/illustrations/sapIllus-Dialog-AddDimensions.svg +17 -0
  2124. package/src/illustrations/sapIllus-Dialog-AddPeople.svg +31 -0
  2125. package/src/illustrations/sapIllus-Dialog-AddPeopleToCalendar.svg +51 -0
  2126. package/src/illustrations/sapIllus-Dialog-AddingColumns.svg +37 -0
  2127. package/src/illustrations/sapIllus-Dialog-BalloonSky.svg +45 -0
  2128. package/src/illustrations/sapIllus-Dialog-BeforeSearch.svg +41 -0
  2129. package/src/illustrations/sapIllus-Dialog-Connection.svg +18 -0
  2130. package/src/illustrations/sapIllus-Dialog-DragFilesToUpload.svg +20 -0
  2131. package/src/illustrations/sapIllus-Dialog-EmptyCalendar.svg +77 -0
  2132. package/src/illustrations/sapIllus-Dialog-EmptyList.svg +36 -0
  2133. package/src/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.svg +19 -0
  2134. package/src/illustrations/sapIllus-Dialog-ErrorScreen.svg +34 -0
  2135. package/src/illustrations/sapIllus-Dialog-FilterTable.svg +65 -0
  2136. package/src/illustrations/sapIllus-Dialog-FilteringColumns.svg +39 -0
  2137. package/src/illustrations/sapIllus-Dialog-GroupTable.svg +67 -0
  2138. package/src/illustrations/sapIllus-Dialog-GroupingColumns.svg +35 -0
  2139. package/src/illustrations/sapIllus-Dialog-KeyTask.svg +119 -0
  2140. package/src/illustrations/sapIllus-Dialog-NewMail.svg +38 -0
  2141. package/src/illustrations/sapIllus-Dialog-NoActivities.svg +34 -0
  2142. package/src/illustrations/sapIllus-Dialog-NoChartData.svg +45 -0
  2143. package/src/illustrations/sapIllus-Dialog-NoColumnsSet.svg +29 -0
  2144. package/src/illustrations/sapIllus-Dialog-NoData.svg +12 -0
  2145. package/src/illustrations/sapIllus-Dialog-NoDimensionsSet.svg +39 -0
  2146. package/src/illustrations/sapIllus-Dialog-NoEntries.svg +42 -0
  2147. package/src/illustrations/sapIllus-Dialog-NoFilterResults.svg +20 -0
  2148. package/src/illustrations/sapIllus-Dialog-NoMail.svg +16 -0
  2149. package/src/illustrations/sapIllus-Dialog-NoMail_v1.svg +22 -0
  2150. package/src/illustrations/sapIllus-Dialog-NoNotifications.svg +28 -0
  2151. package/src/illustrations/sapIllus-Dialog-NoSavedItems.svg +54 -0
  2152. package/src/illustrations/sapIllus-Dialog-NoSavedItems_v1.svg +36 -0
  2153. package/src/illustrations/sapIllus-Dialog-NoSearchResults.svg +73 -0
  2154. package/src/illustrations/sapIllus-Dialog-NoTasks.svg +60 -0
  2155. package/src/illustrations/sapIllus-Dialog-NoTasks_v1.svg +62 -0
  2156. package/src/illustrations/sapIllus-Dialog-PageNotFound.svg +13 -0
  2157. package/src/illustrations/sapIllus-Dialog-ReceiveAppreciation.svg +25 -0
  2158. package/src/illustrations/sapIllus-Dialog-ReloadScreen.svg +48 -0
  2159. package/src/illustrations/sapIllus-Dialog-ResizeColumn.svg +41 -0
  2160. package/src/illustrations/sapIllus-Dialog-ResizingColumns.svg +55 -0
  2161. package/src/illustrations/sapIllus-Dialog-SearchEarth.svg +18 -0
  2162. package/src/illustrations/sapIllus-Dialog-SearchFolder.svg +37 -0
  2163. package/src/illustrations/sapIllus-Dialog-SignOut.svg +21 -0
  2164. package/src/illustrations/sapIllus-Dialog-SimpleBalloon.svg +17 -0
  2165. package/src/illustrations/sapIllus-Dialog-SimpleBell.svg +13 -0
  2166. package/src/illustrations/sapIllus-Dialog-SimpleCalendar.svg +48 -0
  2167. package/src/illustrations/sapIllus-Dialog-SimpleCheckMark.svg +6 -0
  2168. package/src/illustrations/sapIllus-Dialog-SimpleConnection.svg +18 -0
  2169. package/src/illustrations/sapIllus-Dialog-SimpleEmptyDoc.svg +17 -0
  2170. package/src/illustrations/sapIllus-Dialog-SimpleEmptyList.svg +10 -0
  2171. package/src/illustrations/sapIllus-Dialog-SimpleError.svg +10 -0
  2172. package/src/illustrations/sapIllus-Dialog-SimpleMagnifier.svg +10 -0
  2173. package/src/illustrations/sapIllus-Dialog-SimpleMail.svg +13 -0
  2174. package/src/illustrations/sapIllus-Dialog-SimpleNoSavedItems.svg +17 -0
  2175. package/src/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.svg +21 -0
  2176. package/src/illustrations/sapIllus-Dialog-SimpleReload.svg +11 -0
  2177. package/src/illustrations/sapIllus-Dialog-SimpleTask.svg +23 -0
  2178. package/src/illustrations/sapIllus-Dialog-SleepingBell.svg +30 -0
  2179. package/src/illustrations/sapIllus-Dialog-SortColumn.svg +39 -0
  2180. package/src/illustrations/sapIllus-Dialog-SortingColumns.svg +50 -0
  2181. package/src/illustrations/sapIllus-Dialog-SuccessBalloon.svg +16 -0
  2182. package/src/illustrations/sapIllus-Dialog-SuccessCheckMark.svg +8 -0
  2183. package/src/illustrations/sapIllus-Dialog-SuccessHighFive.svg +24 -0
  2184. package/src/illustrations/sapIllus-Dialog-SuccessScreen.svg +47 -0
  2185. package/src/illustrations/sapIllus-Dialog-Survey.svg +22 -0
  2186. package/src/illustrations/sapIllus-Dialog-Tent.svg +31 -0
  2187. package/src/illustrations/sapIllus-Dialog-UnableToLoad.svg +119 -0
  2188. package/src/illustrations/sapIllus-Dialog-UnableToLoadImage.svg +28 -0
  2189. package/src/illustrations/sapIllus-Dialog-UnableToUpload.svg +26 -0
  2190. package/src/illustrations/sapIllus-Dialog-UploadCollection.svg +30 -0
  2191. package/src/illustrations/sapIllus-Dialog-UploadToCloud.svg +21 -0
  2192. package/src/illustrations/sapIllus-Dialog-UserHasSignedUp.svg +34 -0
  2193. package/src/illustrations/sapIllus-Dot-Achievement.svg +18 -0
  2194. package/src/illustrations/sapIllus-Dot-AddColumn.svg +26 -0
  2195. package/src/illustrations/sapIllus-Dot-AddDimensions.svg +9 -0
  2196. package/src/illustrations/sapIllus-Dot-AddPeople.svg +8 -0
  2197. package/src/illustrations/sapIllus-Dot-AddPeopleToCalendar.svg +14 -0
  2198. package/src/illustrations/sapIllus-Dot-AddingColumns.svg +13 -0
  2199. package/src/illustrations/sapIllus-Dot-BalloonSky.svg +6 -0
  2200. package/src/illustrations/sapIllus-Dot-BeforeSearch.svg +40 -0
  2201. package/src/illustrations/sapIllus-Dot-Connection.svg +9 -0
  2202. package/src/illustrations/sapIllus-Dot-DragFilesToUpload.svg +8 -0
  2203. package/src/illustrations/sapIllus-Dot-EmptyCalendar.svg +36 -0
  2204. package/src/illustrations/sapIllus-Dot-EmptyList.svg +6 -0
  2205. package/src/illustrations/sapIllus-Dot-EmptyPlanningCalendar.svg +18 -0
  2206. package/src/illustrations/sapIllus-Dot-ErrorScreen.svg +8 -0
  2207. package/src/illustrations/sapIllus-Dot-FilterTable.svg +7 -0
  2208. package/src/illustrations/sapIllus-Dot-FilteringColumns.svg +22 -0
  2209. package/src/illustrations/sapIllus-Dot-GroupTable.svg +35 -0
  2210. package/src/illustrations/sapIllus-Dot-GroupingColumns.svg +23 -0
  2211. package/src/illustrations/sapIllus-Dot-KeyTask.svg +118 -0
  2212. package/src/illustrations/sapIllus-Dot-NewMail.svg +11 -0
  2213. package/src/illustrations/sapIllus-Dot-NoActivities.svg +11 -0
  2214. package/src/illustrations/sapIllus-Dot-NoChartData.svg +35 -0
  2215. package/src/illustrations/sapIllus-Dot-NoColumnsSet.svg +26 -0
  2216. package/src/illustrations/sapIllus-Dot-NoData.svg +11 -0
  2217. package/src/illustrations/sapIllus-Dot-NoDimensionsSet.svg +6 -0
  2218. package/src/illustrations/sapIllus-Dot-NoEntries.svg +25 -0
  2219. package/src/illustrations/sapIllus-Dot-NoFilterResults.svg +14 -0
  2220. package/src/illustrations/sapIllus-Dot-NoMail.svg +14 -0
  2221. package/src/illustrations/sapIllus-Dot-NoMail_v1.svg +9 -0
  2222. package/src/illustrations/sapIllus-Dot-NoNotifications.svg +23 -0
  2223. package/src/illustrations/sapIllus-Dot-NoSavedItems.svg +55 -0
  2224. package/src/illustrations/sapIllus-Dot-NoSavedItems_v1.svg +12 -0
  2225. package/src/illustrations/sapIllus-Dot-NoSearchResults.svg +35 -0
  2226. package/src/illustrations/sapIllus-Dot-NoTasks.svg +22 -0
  2227. package/src/illustrations/sapIllus-Dot-NoTasks_v1.svg +12 -0
  2228. package/src/illustrations/sapIllus-Dot-PageNotFound.svg +14 -0
  2229. package/src/illustrations/sapIllus-Dot-ReceiveAppreciation.svg +19 -0
  2230. package/src/illustrations/sapIllus-Dot-ReloadScreen.svg +8 -0
  2231. package/src/illustrations/sapIllus-Dot-ResizeColumn.svg +26 -0
  2232. package/src/illustrations/sapIllus-Dot-ResizingColumns.svg +19 -0
  2233. package/src/illustrations/sapIllus-Dot-SearchEarth.svg +6 -0
  2234. package/src/illustrations/sapIllus-Dot-SearchFolder.svg +10 -0
  2235. package/src/illustrations/sapIllus-Dot-SignOut.svg +11 -0
  2236. package/src/illustrations/sapIllus-Dot-SimpleBalloon.svg +6 -0
  2237. package/src/illustrations/sapIllus-Dot-SimpleBell.svg +7 -0
  2238. package/src/illustrations/sapIllus-Dot-SimpleCalendar.svg +36 -0
  2239. package/src/illustrations/sapIllus-Dot-SimpleCheckMark.svg +4 -0
  2240. package/src/illustrations/sapIllus-Dot-SimpleConnection.svg +9 -0
  2241. package/src/illustrations/sapIllus-Dot-SimpleEmptyDoc.svg +7 -0
  2242. package/src/illustrations/sapIllus-Dot-SimpleEmptyList.svg +6 -0
  2243. package/src/illustrations/sapIllus-Dot-SimpleError.svg +8 -0
  2244. package/src/illustrations/sapIllus-Dot-SimpleMagnifier.svg +6 -0
  2245. package/src/illustrations/sapIllus-Dot-SimpleMail.svg +9 -0
  2246. package/src/illustrations/sapIllus-Dot-SimpleNoSavedItems.svg +12 -0
  2247. package/src/illustrations/sapIllus-Dot-SimpleNotFoundMagnifier.svg +10 -0
  2248. package/src/illustrations/sapIllus-Dot-SimpleReload.svg +8 -0
  2249. package/src/illustrations/sapIllus-Dot-SimpleTask.svg +12 -0
  2250. package/src/illustrations/sapIllus-Dot-SleepingBell.svg +7 -0
  2251. package/src/illustrations/sapIllus-Dot-SortColumn.svg +28 -0
  2252. package/src/illustrations/sapIllus-Dot-SortingColumns.svg +15 -0
  2253. package/src/illustrations/sapIllus-Dot-SuccessHighFive.svg +6 -0
  2254. package/src/illustrations/sapIllus-Dot-SuccessScreen.svg +4 -0
  2255. package/src/illustrations/sapIllus-Dot-Survey.svg +7 -0
  2256. package/src/illustrations/sapIllus-Dot-Tent.svg +7 -0
  2257. package/src/illustrations/sapIllus-Dot-UnableToLoad.svg +118 -0
  2258. package/src/illustrations/sapIllus-Dot-UnableToLoadImage.svg +24 -0
  2259. package/src/illustrations/sapIllus-Dot-UnableToUpload.svg +10 -0
  2260. package/src/illustrations/sapIllus-Dot-UploadCollection.svg +6 -0
  2261. package/src/illustrations/sapIllus-Dot-UploadToCloud.svg +9 -0
  2262. package/src/illustrations/sapIllus-Dot-UserHasSignedUp.svg +8 -0
  2263. package/src/illustrations/sapIllus-Patterns.svg +20 -0
  2264. package/src/illustrations/sapIllus-Scene-Achievement.svg +28 -0
  2265. package/src/illustrations/sapIllus-Scene-AddColumn.svg +48 -0
  2266. package/src/illustrations/sapIllus-Scene-AddDimensions.svg +17 -0
  2267. package/src/illustrations/sapIllus-Scene-AddPeople.svg +30 -0
  2268. package/src/illustrations/sapIllus-Scene-AddPeopleToCalendar.svg +46 -0
  2269. package/src/illustrations/sapIllus-Scene-AddingColumns.svg +37 -0
  2270. package/src/illustrations/sapIllus-Scene-BalloonSky.svg +53 -0
  2271. package/src/illustrations/sapIllus-Scene-BeforeSearch.svg +41 -0
  2272. package/src/illustrations/sapIllus-Scene-Connection.svg +31 -0
  2273. package/src/illustrations/sapIllus-Scene-DragFilesToUpload.svg +20 -0
  2274. package/src/illustrations/sapIllus-Scene-EmptyCalendar.svg +90 -0
  2275. package/src/illustrations/sapIllus-Scene-EmptyList.svg +43 -0
  2276. package/src/illustrations/sapIllus-Scene-EmptyPlanningCalendar.svg +19 -0
  2277. package/src/illustrations/sapIllus-Scene-ErrorScreen.svg +78 -0
  2278. package/src/illustrations/sapIllus-Scene-FilterTable.svg +62 -0
  2279. package/src/illustrations/sapIllus-Scene-FilteringColumns.svg +39 -0
  2280. package/src/illustrations/sapIllus-Scene-GroupTable.svg +76 -0
  2281. package/src/illustrations/sapIllus-Scene-GroupingColumns.svg +40 -0
  2282. package/src/illustrations/sapIllus-Scene-KeyTask.svg +119 -0
  2283. package/src/illustrations/sapIllus-Scene-NewMail.svg +38 -0
  2284. package/src/illustrations/sapIllus-Scene-NoActivities.svg +34 -0
  2285. package/src/illustrations/sapIllus-Scene-NoChartData.svg +45 -0
  2286. package/src/illustrations/sapIllus-Scene-NoColumnsSet.svg +26 -0
  2287. package/src/illustrations/sapIllus-Scene-NoData.svg +12 -0
  2288. package/src/illustrations/sapIllus-Scene-NoDimensionsSet.svg +38 -0
  2289. package/src/illustrations/sapIllus-Scene-NoEntries.svg +42 -0
  2290. package/src/illustrations/sapIllus-Scene-NoFilterResults.svg +16 -0
  2291. package/src/illustrations/sapIllus-Scene-NoMail.svg +16 -0
  2292. package/src/illustrations/sapIllus-Scene-NoMail_v1.svg +55 -0
  2293. package/src/illustrations/sapIllus-Scene-NoNotifications.svg +28 -0
  2294. package/src/illustrations/sapIllus-Scene-NoSavedItems.svg +54 -0
  2295. package/src/illustrations/sapIllus-Scene-NoSavedItems_v1.svg +39 -0
  2296. package/src/illustrations/sapIllus-Scene-NoSearchResults.svg +73 -0
  2297. package/src/illustrations/sapIllus-Scene-NoTasks.svg +60 -0
  2298. package/src/illustrations/sapIllus-Scene-NoTasks_v1.svg +86 -0
  2299. package/src/illustrations/sapIllus-Scene-PageNotFound.svg +13 -0
  2300. package/src/illustrations/sapIllus-Scene-ReceiveAppreciation.svg +25 -0
  2301. package/src/illustrations/sapIllus-Scene-ReloadScreen.svg +62 -0
  2302. package/src/illustrations/sapIllus-Scene-ResizeColumn.svg +52 -0
  2303. package/src/illustrations/sapIllus-Scene-ResizingColumns.svg +57 -0
  2304. package/src/illustrations/sapIllus-Scene-SearchEarth.svg +30 -0
  2305. package/src/illustrations/sapIllus-Scene-SearchFolder.svg +44 -0
  2306. package/src/illustrations/sapIllus-Scene-SignOut.svg +21 -0
  2307. package/src/illustrations/sapIllus-Scene-SimpleBalloon.svg +20 -0
  2308. package/src/illustrations/sapIllus-Scene-SimpleBell.svg +16 -0
  2309. package/src/illustrations/sapIllus-Scene-SimpleCalendar.svg +44 -0
  2310. package/src/illustrations/sapIllus-Scene-SimpleCheckMark.svg +9 -0
  2311. package/src/illustrations/sapIllus-Scene-SimpleConnection.svg +22 -0
  2312. package/src/illustrations/sapIllus-Scene-SimpleEmptyDoc.svg +20 -0
  2313. package/src/illustrations/sapIllus-Scene-SimpleEmptyList.svg +13 -0
  2314. package/src/illustrations/sapIllus-Scene-SimpleError.svg +13 -0
  2315. package/src/illustrations/sapIllus-Scene-SimpleMagnifier.svg +13 -0
  2316. package/src/illustrations/sapIllus-Scene-SimpleMail.svg +16 -0
  2317. package/src/illustrations/sapIllus-Scene-SimpleNoSavedItems.svg +27 -0
  2318. package/src/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.svg +24 -0
  2319. package/src/illustrations/sapIllus-Scene-SimpleReload.svg +14 -0
  2320. package/src/illustrations/sapIllus-Scene-SimpleTask.svg +19 -0
  2321. package/src/illustrations/sapIllus-Scene-SleepingBell.svg +50 -0
  2322. package/src/illustrations/sapIllus-Scene-SortColumn.svg +50 -0
  2323. package/src/illustrations/sapIllus-Scene-SortingColumns.svg +50 -0
  2324. package/src/illustrations/sapIllus-Scene-SuccessBalloon.svg +33 -0
  2325. package/src/illustrations/sapIllus-Scene-SuccessCheckMark.svg +43 -0
  2326. package/src/illustrations/sapIllus-Scene-SuccessHighFive.svg +25 -0
  2327. package/src/illustrations/sapIllus-Scene-SuccessScreen.svg +61 -0
  2328. package/src/illustrations/sapIllus-Scene-Survey.svg +21 -0
  2329. package/src/illustrations/sapIllus-Scene-Tent.svg +59 -0
  2330. package/src/illustrations/sapIllus-Scene-UnableToLoad.svg +119 -0
  2331. package/src/illustrations/sapIllus-Scene-UnableToLoadImage.svg +28 -0
  2332. package/src/illustrations/sapIllus-Scene-UnableToUpload.svg +26 -0
  2333. package/src/illustrations/sapIllus-Scene-UploadCollection.svg +29 -0
  2334. package/src/illustrations/sapIllus-Scene-UploadToCloud.svg +22 -0
  2335. package/src/illustrations/sapIllus-Scene-UserHasSignedUp.svg +29 -0
  2336. package/src/illustrations/sapIllus-Spot-Achievement.svg +27 -0
  2337. package/src/illustrations/sapIllus-Spot-AddColumn.svg +37 -0
  2338. package/src/illustrations/sapIllus-Spot-AddDimensions.svg +16 -0
  2339. package/src/illustrations/sapIllus-Spot-AddPeople.svg +31 -0
  2340. package/src/illustrations/sapIllus-Spot-AddPeopleToCalendar.svg +42 -0
  2341. package/src/illustrations/sapIllus-Spot-AddingColumns.svg +37 -0
  2342. package/src/illustrations/sapIllus-Spot-BalloonSky.svg +43 -0
  2343. package/src/illustrations/sapIllus-Spot-BeforeSearch.svg +41 -0
  2344. package/src/illustrations/sapIllus-Spot-Connection.svg +22 -0
  2345. package/src/illustrations/sapIllus-Spot-DragFilesToUpload.svg +18 -0
  2346. package/src/illustrations/sapIllus-Spot-EmptyCalendar.svg +46 -0
  2347. package/src/illustrations/sapIllus-Spot-EmptyList.svg +29 -0
  2348. package/src/illustrations/sapIllus-Spot-EmptyPlanningCalendar.svg +19 -0
  2349. package/src/illustrations/sapIllus-Spot-ErrorScreen.svg +32 -0
  2350. package/src/illustrations/sapIllus-Spot-FilterTable.svg +60 -0
  2351. package/src/illustrations/sapIllus-Spot-FilteringColumns.svg +33 -0
  2352. package/src/illustrations/sapIllus-Spot-GroupTable.svg +86 -0
  2353. package/src/illustrations/sapIllus-Spot-GroupingColumns.svg +35 -0
  2354. package/src/illustrations/sapIllus-Spot-KeyTask.svg +119 -0
  2355. package/src/illustrations/sapIllus-Spot-NewMail.svg +34 -0
  2356. package/src/illustrations/sapIllus-Spot-NoActivities.svg +34 -0
  2357. package/src/illustrations/sapIllus-Spot-NoChartData.svg +42 -0
  2358. package/src/illustrations/sapIllus-Spot-NoColumnsSet.svg +29 -0
  2359. package/src/illustrations/sapIllus-Spot-NoData.svg +12 -0
  2360. package/src/illustrations/sapIllus-Spot-NoDimensionsSet.svg +42 -0
  2361. package/src/illustrations/sapIllus-Spot-NoEntries.svg +42 -0
  2362. package/src/illustrations/sapIllus-Spot-NoFilterResults.svg +16 -0
  2363. package/src/illustrations/sapIllus-Spot-NoMail.svg +15 -0
  2364. package/src/illustrations/sapIllus-Spot-NoMail_v1.svg +16 -0
  2365. package/src/illustrations/sapIllus-Spot-NoNotifications.svg +25 -0
  2366. package/src/illustrations/sapIllus-Spot-NoSavedItems.svg +51 -0
  2367. package/src/illustrations/sapIllus-Spot-NoSavedItems_v1.svg +33 -0
  2368. package/src/illustrations/sapIllus-Spot-NoSearchResults.svg +73 -0
  2369. package/src/illustrations/sapIllus-Spot-NoTasks.svg +32 -0
  2370. package/src/illustrations/sapIllus-Spot-NoTasks_v1.svg +22 -0
  2371. package/src/illustrations/sapIllus-Spot-PageNotFound.svg +10 -0
  2372. package/src/illustrations/sapIllus-Spot-ReceiveAppreciation.svg +20 -0
  2373. package/src/illustrations/sapIllus-Spot-ReloadScreen.svg +36 -0
  2374. package/src/illustrations/sapIllus-Spot-ResizeColumn.svg +49 -0
  2375. package/src/illustrations/sapIllus-Spot-ResizingColumns.svg +37 -0
  2376. package/src/illustrations/sapIllus-Spot-SearchEarth.svg +55 -0
  2377. package/src/illustrations/sapIllus-Spot-SearchFolder.svg +37 -0
  2378. package/src/illustrations/sapIllus-Spot-SignOut.svg +21 -0
  2379. package/src/illustrations/sapIllus-Spot-SimpleBalloon.svg +7 -0
  2380. package/src/illustrations/sapIllus-Spot-SimpleBell.svg +12 -0
  2381. package/src/illustrations/sapIllus-Spot-SimpleCalendar.svg +44 -0
  2382. package/src/illustrations/sapIllus-Spot-SimpleCheckMark.svg +5 -0
  2383. package/src/illustrations/sapIllus-Spot-SimpleConnection.svg +10 -0
  2384. package/src/illustrations/sapIllus-Spot-SimpleEmptyDoc.svg +6 -0
  2385. package/src/illustrations/sapIllus-Spot-SimpleEmptyList.svg +6 -0
  2386. package/src/illustrations/sapIllus-Spot-SimpleError.svg +9 -0
  2387. package/src/illustrations/sapIllus-Spot-SimpleMagnifier.svg +9 -0
  2388. package/src/illustrations/sapIllus-Spot-SimpleMail.svg +12 -0
  2389. package/src/illustrations/sapIllus-Spot-SimpleNoSavedItems.svg +23 -0
  2390. package/src/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.svg +10 -0
  2391. package/src/illustrations/sapIllus-Spot-SimpleReload.svg +7 -0
  2392. package/src/illustrations/sapIllus-Spot-SimpleTask.svg +22 -0
  2393. package/src/illustrations/sapIllus-Spot-SleepingBell.svg +38 -0
  2394. package/src/illustrations/sapIllus-Spot-SortColumn.svg +39 -0
  2395. package/src/illustrations/sapIllus-Spot-SortingColumns.svg +49 -0
  2396. package/src/illustrations/sapIllus-Spot-SuccessBalloon.svg +19 -0
  2397. package/src/illustrations/sapIllus-Spot-SuccessCheckMark.svg +7 -0
  2398. package/src/illustrations/sapIllus-Spot-SuccessHighFive.svg +24 -0
  2399. package/src/illustrations/sapIllus-Spot-SuccessScreen.svg +35 -0
  2400. package/src/illustrations/sapIllus-Spot-Survey.svg +32 -0
  2401. package/src/illustrations/sapIllus-Spot-Tent.svg +29 -0
  2402. package/src/illustrations/sapIllus-Spot-UnableToLoad.svg +119 -0
  2403. package/src/illustrations/sapIllus-Spot-UnableToLoadImage.svg +28 -0
  2404. package/src/illustrations/sapIllus-Spot-UnableToUpload.svg +28 -0
  2405. package/src/illustrations/sapIllus-Spot-UploadCollection.svg +33 -0
  2406. package/src/illustrations/sapIllus-Spot-UploadToCloud.svg +21 -0
  2407. package/src/illustrations/sapIllus-Spot-UserHasSignedUp.svg +34 -0
  2408. package/src/illustrations/tnt/tnt-Dialog-Avatar.svg +124 -0
  2409. package/src/illustrations/tnt/tnt-Dialog-Calculator.svg +80 -0
  2410. package/src/illustrations/tnt/tnt-Dialog-ChartArea.svg +14 -0
  2411. package/src/illustrations/tnt/tnt-Dialog-ChartArea2.svg +12 -0
  2412. package/src/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.svg +13 -0
  2413. package/src/illustrations/tnt/tnt-Dialog-ChartBar.svg +12 -0
  2414. package/src/illustrations/tnt/tnt-Dialog-ChartBullet.svg +14 -0
  2415. package/src/illustrations/tnt/tnt-Dialog-ChartDoughnut.svg +13 -0
  2416. package/src/illustrations/tnt/tnt-Dialog-ChartFlow.svg +13 -0
  2417. package/src/illustrations/tnt/tnt-Dialog-ChartGantt.svg +17 -0
  2418. package/src/illustrations/tnt/tnt-Dialog-ChartOrg.svg +15 -0
  2419. package/src/illustrations/tnt/tnt-Dialog-ChartPie.svg +12 -0
  2420. package/src/illustrations/tnt/tnt-Dialog-CodePlaceholder.svg +6 -0
  2421. package/src/illustrations/tnt/tnt-Dialog-Company.svg +13 -0
  2422. package/src/illustrations/tnt/tnt-Dialog-Compass.svg +34 -0
  2423. package/src/illustrations/tnt/tnt-Dialog-Components.svg +9 -0
  2424. package/src/illustrations/tnt/tnt-Dialog-Dialog.svg +32 -0
  2425. package/src/illustrations/tnt/tnt-Dialog-EmptyContentPane.svg +18 -0
  2426. package/src/illustrations/tnt/tnt-Dialog-ExternalLink.svg +11 -0
  2427. package/src/illustrations/tnt/tnt-Dialog-FaceID.svg +17 -0
  2428. package/src/illustrations/tnt/tnt-Dialog-Fingerprint.svg +16 -0
  2429. package/src/illustrations/tnt/tnt-Dialog-Handshake.svg +32 -0
  2430. package/src/illustrations/tnt/tnt-Dialog-Help.svg +27 -0
  2431. package/src/illustrations/tnt/tnt-Dialog-Lock.svg +12 -0
  2432. package/src/illustrations/tnt/tnt-Dialog-Mission.svg +18 -0
  2433. package/src/illustrations/tnt/tnt-Dialog-MissionFailed.svg +41 -0
  2434. package/src/illustrations/tnt/tnt-Dialog-NoApplications.svg +15 -0
  2435. package/src/illustrations/tnt/tnt-Dialog-NoFlows.svg +11 -0
  2436. package/src/illustrations/tnt/tnt-Dialog-NoUsers.svg +15 -0
  2437. package/src/illustrations/tnt/tnt-Dialog-Radar.svg +15 -0
  2438. package/src/illustrations/tnt/tnt-Dialog-RoadMap.svg +41 -0
  2439. package/src/illustrations/tnt/tnt-Dialog-Secrets.svg +11 -0
  2440. package/src/illustrations/tnt/tnt-Dialog-Services.svg +16 -0
  2441. package/src/illustrations/tnt/tnt-Dialog-SessionExpired.svg +11 -0
  2442. package/src/illustrations/tnt/tnt-Dialog-SessionExpiring.svg +10 -0
  2443. package/src/illustrations/tnt/tnt-Dialog-Settings.svg +37 -0
  2444. package/src/illustrations/tnt/tnt-Dialog-Success.svg +10 -0
  2445. package/src/illustrations/tnt/tnt-Dialog-SuccessfulAuth.svg +10 -0
  2446. package/src/illustrations/tnt/tnt-Dialog-Systems.svg +11 -0
  2447. package/src/illustrations/tnt/tnt-Dialog-Teams.svg +17 -0
  2448. package/src/illustrations/tnt/tnt-Dialog-Tools.svg +12 -0
  2449. package/src/illustrations/tnt/tnt-Dialog-Tutorials.svg +78 -0
  2450. package/src/illustrations/tnt/tnt-Dialog-UnableToLoad.svg +9 -0
  2451. package/src/illustrations/tnt/tnt-Dialog-Unlock.svg +12 -0
  2452. package/src/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.svg +11 -0
  2453. package/src/illustrations/tnt/tnt-Dialog-User2.svg +13 -0
  2454. package/src/illustrations/tnt/tnt-Dot-Avatar.svg +12 -0
  2455. package/src/illustrations/tnt/tnt-Dot-Calculator.svg +11 -0
  2456. package/src/illustrations/tnt/tnt-Dot-Compass.svg +9 -0
  2457. package/src/illustrations/tnt/tnt-Dot-Dialog.svg +19 -0
  2458. package/src/illustrations/tnt/tnt-Dot-EmptyContentPane.svg +15 -0
  2459. package/src/illustrations/tnt/tnt-Dot-Handshake.svg +18 -0
  2460. package/src/illustrations/tnt/tnt-Dot-Help.svg +8 -0
  2461. package/src/illustrations/tnt/tnt-Dot-MissionFailed.svg +9 -0
  2462. package/src/illustrations/tnt/tnt-Dot-RoadMap.svg +5 -0
  2463. package/src/illustrations/tnt/tnt-Dot-Settings.svg +6 -0
  2464. package/src/illustrations/tnt/tnt-Dot-Tutorials.svg +7 -0
  2465. package/src/illustrations/tnt/tnt-Scene-Avatar.svg +130 -0
  2466. package/src/illustrations/tnt/tnt-Scene-Calculator.svg +83 -0
  2467. package/src/illustrations/tnt/tnt-Scene-ChartArea.svg +22 -0
  2468. package/src/illustrations/tnt/tnt-Scene-ChartArea2.svg +19 -0
  2469. package/src/illustrations/tnt/tnt-Scene-ChartBPMNFlow.svg +21 -0
  2470. package/src/illustrations/tnt/tnt-Scene-ChartBar.svg +19 -0
  2471. package/src/illustrations/tnt/tnt-Scene-ChartBullet.svg +20 -0
  2472. package/src/illustrations/tnt/tnt-Scene-ChartDoughnut.svg +19 -0
  2473. package/src/illustrations/tnt/tnt-Scene-ChartFlow.svg +20 -0
  2474. package/src/illustrations/tnt/tnt-Scene-ChartGantt.svg +26 -0
  2475. package/src/illustrations/tnt/tnt-Scene-ChartOrg.svg +26 -0
  2476. package/src/illustrations/tnt/tnt-Scene-ChartPie.svg +18 -0
  2477. package/src/illustrations/tnt/tnt-Scene-CodePlaceholder.svg +9 -0
  2478. package/src/illustrations/tnt/tnt-Scene-Company.svg +30 -0
  2479. package/src/illustrations/tnt/tnt-Scene-Compass.svg +34 -0
  2480. package/src/illustrations/tnt/tnt-Scene-Components.svg +16 -0
  2481. package/src/illustrations/tnt/tnt-Scene-Dialog.svg +35 -0
  2482. package/src/illustrations/tnt/tnt-Scene-EmptyContentPane.svg +15 -0
  2483. package/src/illustrations/tnt/tnt-Scene-ExternalLink.svg +14 -0
  2484. package/src/illustrations/tnt/tnt-Scene-FaceID.svg +21 -0
  2485. package/src/illustrations/tnt/tnt-Scene-Fingerprint.svg +35 -0
  2486. package/src/illustrations/tnt/tnt-Scene-Handshake.svg +32 -0
  2487. package/src/illustrations/tnt/tnt-Scene-Help.svg +29 -0
  2488. package/src/illustrations/tnt/tnt-Scene-Lock.svg +22 -0
  2489. package/src/illustrations/tnt/tnt-Scene-Mission.svg +19 -0
  2490. package/src/illustrations/tnt/tnt-Scene-MissionFailed.svg +49 -0
  2491. package/src/illustrations/tnt/tnt-Scene-NoApplications.svg +17 -0
  2492. package/src/illustrations/tnt/tnt-Scene-NoFlows.svg +20 -0
  2493. package/src/illustrations/tnt/tnt-Scene-NoUsers.svg +16 -0
  2494. package/src/illustrations/tnt/tnt-Scene-Radar.svg +20 -0
  2495. package/src/illustrations/tnt/tnt-Scene-RoadMap.svg +45 -0
  2496. package/src/illustrations/tnt/tnt-Scene-Secrets.svg +14 -0
  2497. package/src/illustrations/tnt/tnt-Scene-Services.svg +17 -0
  2498. package/src/illustrations/tnt/tnt-Scene-SessionExpired.svg +18 -0
  2499. package/src/illustrations/tnt/tnt-Scene-SessionExpiring.svg +17 -0
  2500. package/src/illustrations/tnt/tnt-Scene-Settings.svg +38 -0
  2501. package/src/illustrations/tnt/tnt-Scene-Success.svg +18 -0
  2502. package/src/illustrations/tnt/tnt-Scene-SuccessfulAuth.svg +20 -0
  2503. package/src/illustrations/tnt/tnt-Scene-Systems.svg +12 -0
  2504. package/src/illustrations/tnt/tnt-Scene-Teams.svg +20 -0
  2505. package/src/illustrations/tnt/tnt-Scene-Tools.svg +18 -0
  2506. package/src/illustrations/tnt/tnt-Scene-Tutorials.svg +84 -0
  2507. package/src/illustrations/tnt/tnt-Scene-UnableToLoad.svg +20 -0
  2508. package/src/illustrations/tnt/tnt-Scene-Unlock.svg +15 -0
  2509. package/src/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.svg +22 -0
  2510. package/src/illustrations/tnt/tnt-Scene-User2.svg +22 -0
  2511. package/src/illustrations/tnt/tnt-Spot-Avatar.svg +105 -0
  2512. package/src/illustrations/tnt/tnt-Spot-Calculator.svg +130 -0
  2513. package/src/illustrations/tnt/tnt-Spot-ChartArea.svg +13 -0
  2514. package/src/illustrations/tnt/tnt-Spot-ChartArea2.svg +7 -0
  2515. package/src/illustrations/tnt/tnt-Spot-ChartBPMNFlow.svg +9 -0
  2516. package/src/illustrations/tnt/tnt-Spot-ChartBar.svg +8 -0
  2517. package/src/illustrations/tnt/tnt-Spot-ChartBullet.svg +10 -0
  2518. package/src/illustrations/tnt/tnt-Spot-ChartDoughnut.svg +9 -0
  2519. package/src/illustrations/tnt/tnt-Spot-ChartFlow.svg +8 -0
  2520. package/src/illustrations/tnt/tnt-Spot-ChartGantt.svg +12 -0
  2521. package/src/illustrations/tnt/tnt-Spot-ChartOrg.svg +6 -0
  2522. package/src/illustrations/tnt/tnt-Spot-ChartPie.svg +8 -0
  2523. package/src/illustrations/tnt/tnt-Spot-CodePlaceholder.svg +6 -0
  2524. package/src/illustrations/tnt/tnt-Spot-Company.svg +13 -0
  2525. package/src/illustrations/tnt/tnt-Spot-Compass.svg +34 -0
  2526. package/src/illustrations/tnt/tnt-Spot-Components.svg +5 -0
  2527. package/src/illustrations/tnt/tnt-Spot-Dialog.svg +32 -0
  2528. package/src/illustrations/tnt/tnt-Spot-EmptyContentPane.svg +16 -0
  2529. package/src/illustrations/tnt/tnt-Spot-ExternalLink.svg +9 -0
  2530. package/src/illustrations/tnt/tnt-Spot-FaceID.svg +16 -0
  2531. package/src/illustrations/tnt/tnt-Spot-Fingerprint.svg +10 -0
  2532. package/src/illustrations/tnt/tnt-Spot-Handshake.svg +64 -0
  2533. package/src/illustrations/tnt/tnt-Spot-Help.svg +23 -0
  2534. package/src/illustrations/tnt/tnt-Spot-Lock.svg +13 -0
  2535. package/src/illustrations/tnt/tnt-Spot-Mission.svg +17 -0
  2536. package/src/illustrations/tnt/tnt-Spot-MissionFailed.svg +113 -0
  2537. package/src/illustrations/tnt/tnt-Spot-NoApplications.svg +11 -0
  2538. package/src/illustrations/tnt/tnt-Spot-NoFlows.svg +8 -0
  2539. package/src/illustrations/tnt/tnt-Spot-NoUsers.svg +11 -0
  2540. package/src/illustrations/tnt/tnt-Spot-Radar.svg +14 -0
  2541. package/src/illustrations/tnt/tnt-Spot-RoadMap.svg +165 -0
  2542. package/src/illustrations/tnt/tnt-Spot-Secrets.svg +9 -0
  2543. package/src/illustrations/tnt/tnt-Spot-Services.svg +14 -0
  2544. package/src/illustrations/tnt/tnt-Spot-SessionExpired.svg +9 -0
  2545. package/src/illustrations/tnt/tnt-Spot-SessionExpiring.svg +9 -0
  2546. package/src/illustrations/tnt/tnt-Spot-Settings.svg +37 -0
  2547. package/src/illustrations/tnt/tnt-Spot-Success.svg +9 -0
  2548. package/src/illustrations/tnt/tnt-Spot-SuccessfulAuth.svg +9 -0
  2549. package/src/illustrations/tnt/tnt-Spot-Systems.svg +10 -0
  2550. package/src/illustrations/tnt/tnt-Spot-Teams.svg +13 -0
  2551. package/src/illustrations/tnt/tnt-Spot-Tools.svg +7 -0
  2552. package/src/illustrations/tnt/tnt-Spot-Tutorials.svg +91 -0
  2553. package/src/illustrations/tnt/tnt-Spot-UnableToLoad.svg +8 -0
  2554. package/src/illustrations/tnt/tnt-Spot-Unlock.svg +11 -0
  2555. package/src/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.svg +10 -0
  2556. package/src/illustrations/tnt/tnt-Spot-User2.svg +10 -0
  2557. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Avatar.svg +15 -0
  2558. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Calculator.svg +23 -0
  2559. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea.svg +14 -0
  2560. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartArea2.svg +13 -0
  2561. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBPMNFlow.svg +21 -0
  2562. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBar.svg +13 -0
  2563. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartBullet.svg +18 -0
  2564. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartDoughnut.svg +17 -0
  2565. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartFlow.svg +18 -0
  2566. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartGantt.svg +18 -0
  2567. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartOrg.svg +29 -0
  2568. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ChartPie.svg +19 -0
  2569. package/src/illustrations-v5/tnt/hc/tnt-Dialog-CodePlaceholder.svg +9 -0
  2570. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Company.svg +22 -0
  2571. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Compass.svg +16 -0
  2572. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Components.svg +21 -0
  2573. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Dialog.svg +22 -0
  2574. package/src/illustrations-v5/tnt/hc/tnt-Dialog-EmptyContentPane.svg +22 -0
  2575. package/src/illustrations-v5/tnt/hc/tnt-Dialog-ExternalLink.svg +17 -0
  2576. package/src/illustrations-v5/tnt/hc/tnt-Dialog-FaceID.svg +17 -0
  2577. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Fingerprint.svg +12 -0
  2578. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Handshake.svg +21 -0
  2579. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Help.svg +11 -0
  2580. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Lock.svg +21 -0
  2581. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Mission.svg +14 -0
  2582. package/src/illustrations-v5/tnt/hc/tnt-Dialog-MissionFailed.svg +11 -0
  2583. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoApplications.svg +18 -0
  2584. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoFlows.svg +21 -0
  2585. package/src/illustrations-v5/tnt/hc/tnt-Dialog-NoUsers.svg +18 -0
  2586. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Radar.svg +13 -0
  2587. package/src/illustrations-v5/tnt/hc/tnt-Dialog-RoadMap.svg +91 -0
  2588. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Secrets.svg +12 -0
  2589. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Services.svg +15 -0
  2590. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpired.svg +13 -0
  2591. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SessionExpiring.svg +11 -0
  2592. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Settings.svg +8 -0
  2593. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Success.svg +19 -0
  2594. package/src/illustrations-v5/tnt/hc/tnt-Dialog-SuccessfulAuth.svg +26 -0
  2595. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Systems.svg +24 -0
  2596. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Teams.svg +26 -0
  2597. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Tools.svg +21 -0
  2598. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Tutorials.svg +17 -0
  2599. package/src/illustrations-v5/tnt/hc/tnt-Dialog-Unlock.svg +17 -0
  2600. package/src/illustrations-v5/tnt/hc/tnt-Dialog-UnsuccessfulAuth.svg +26 -0
  2601. package/src/illustrations-v5/tnt/hc/tnt-Dot-Avatar.svg +12 -0
  2602. package/src/illustrations-v5/tnt/hc/tnt-Dot-Calculator.svg +12 -0
  2603. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartArea.svg +7 -0
  2604. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartArea2.svg +6 -0
  2605. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBPMNFlow.svg +13 -0
  2606. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBar.svg +6 -0
  2607. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartBullet.svg +9 -0
  2608. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartDoughnut.svg +7 -0
  2609. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartFlow.svg +11 -0
  2610. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartGantt.svg +10 -0
  2611. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartOrg.svg +13 -0
  2612. package/src/illustrations-v5/tnt/hc/tnt-Dot-ChartPie.svg +8 -0
  2613. package/src/illustrations-v5/tnt/hc/tnt-Dot-CodePlaceholder.svg +6 -0
  2614. package/src/illustrations-v5/tnt/hc/tnt-Dot-Company.svg +11 -0
  2615. package/src/illustrations-v5/tnt/hc/tnt-Dot-Compass.svg +9 -0
  2616. package/src/illustrations-v5/tnt/hc/tnt-Dot-Components.svg +10 -0
  2617. package/src/illustrations-v5/tnt/hc/tnt-Dot-Dialog.svg +22 -0
  2618. package/src/illustrations-v5/tnt/hc/tnt-Dot-EmptyContentPane.svg +10 -0
  2619. package/src/illustrations-v5/tnt/hc/tnt-Dot-ExternalLink.svg +10 -0
  2620. package/src/illustrations-v5/tnt/hc/tnt-Dot-FaceID.svg +18 -0
  2621. package/src/illustrations-v5/tnt/hc/tnt-Dot-Fingerprint.svg +8 -0
  2622. package/src/illustrations-v5/tnt/hc/tnt-Dot-Handshake.svg +18 -0
  2623. package/src/illustrations-v5/tnt/hc/tnt-Dot-Help.svg +8 -0
  2624. package/src/illustrations-v5/tnt/hc/tnt-Dot-Lock.svg +13 -0
  2625. package/src/illustrations-v5/tnt/hc/tnt-Dot-Mission.svg +9 -0
  2626. package/src/illustrations-v5/tnt/hc/tnt-Dot-MissionFailed.svg +9 -0
  2627. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoApplications.svg +15 -0
  2628. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoFlows.svg +41 -0
  2629. package/src/illustrations-v5/tnt/hc/tnt-Dot-NoUsers.svg +12 -0
  2630. package/src/illustrations-v5/tnt/hc/tnt-Dot-Radar.svg +11 -0
  2631. package/src/illustrations-v5/tnt/hc/tnt-Dot-RoadMap.svg +7 -0
  2632. package/src/illustrations-v5/tnt/hc/tnt-Dot-Secrets.svg +6 -0
  2633. package/src/illustrations-v5/tnt/hc/tnt-Dot-Services.svg +11 -0
  2634. package/src/illustrations-v5/tnt/hc/tnt-Dot-SessionExpired.svg +7 -0
  2635. package/src/illustrations-v5/tnt/hc/tnt-Dot-SessionExpiring.svg +8 -0
  2636. package/src/illustrations-v5/tnt/hc/tnt-Dot-Settings.svg +6 -0
  2637. package/src/illustrations-v5/tnt/hc/tnt-Dot-Success.svg +8 -0
  2638. package/src/illustrations-v5/tnt/hc/tnt-Dot-SuccessfulAuth.svg +11 -0
  2639. package/src/illustrations-v5/tnt/hc/tnt-Dot-Systems.svg +14 -0
  2640. package/src/illustrations-v5/tnt/hc/tnt-Dot-Teams.svg +15 -0
  2641. package/src/illustrations-v5/tnt/hc/tnt-Dot-Tools.svg +17 -0
  2642. package/src/illustrations-v5/tnt/hc/tnt-Dot-Tutorials.svg +7 -0
  2643. package/src/illustrations-v5/tnt/hc/tnt-Dot-Unlock.svg +19 -0
  2644. package/src/illustrations-v5/tnt/hc/tnt-Dot-UnsuccessfulAuth.svg +11 -0
  2645. package/src/illustrations-v5/tnt/hc/tnt-Scene-Avatar.svg +22 -0
  2646. package/src/illustrations-v5/tnt/hc/tnt-Scene-Calculator.svg +31 -0
  2647. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartArea.svg +20 -0
  2648. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartArea2.svg +19 -0
  2649. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBPMNFlow.svg +27 -0
  2650. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBar.svg +19 -0
  2651. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartBullet.svg +24 -0
  2652. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartDoughnut.svg +23 -0
  2653. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartFlow.svg +24 -0
  2654. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartGantt.svg +24 -0
  2655. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartOrg.svg +35 -0
  2656. package/src/illustrations-v5/tnt/hc/tnt-Scene-ChartPie.svg +24 -0
  2657. package/src/illustrations-v5/tnt/hc/tnt-Scene-CodePlaceholder.svg +13 -0
  2658. package/src/illustrations-v5/tnt/hc/tnt-Scene-Company.svg +29 -0
  2659. package/src/illustrations-v5/tnt/hc/tnt-Scene-Compass.svg +23 -0
  2660. package/src/illustrations-v5/tnt/hc/tnt-Scene-Components.svg +25 -0
  2661. package/src/illustrations-v5/tnt/hc/tnt-Scene-Dialog.svg +16 -0
  2662. package/src/illustrations-v5/tnt/hc/tnt-Scene-EmptyContentPane.svg +26 -0
  2663. package/src/illustrations-v5/tnt/hc/tnt-Scene-ExternalLink.svg +21 -0
  2664. package/src/illustrations-v5/tnt/hc/tnt-Scene-FaceID.svg +27 -0
  2665. package/src/illustrations-v5/tnt/hc/tnt-Scene-Fingerprint.svg +16 -0
  2666. package/src/illustrations-v5/tnt/hc/tnt-Scene-Handshake.svg +25 -0
  2667. package/src/illustrations-v5/tnt/hc/tnt-Scene-Help.svg +20 -0
  2668. package/src/illustrations-v5/tnt/hc/tnt-Scene-Lock.svg +25 -0
  2669. package/src/illustrations-v5/tnt/hc/tnt-Scene-Mission.svg +20 -0
  2670. package/src/illustrations-v5/tnt/hc/tnt-Scene-MissionFailed.svg +17 -0
  2671. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoApplications.svg +22 -0
  2672. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoFlows.svg +25 -0
  2673. package/src/illustrations-v5/tnt/hc/tnt-Scene-NoUsers.svg +22 -0
  2674. package/src/illustrations-v5/tnt/hc/tnt-Scene-Radar.svg +18 -0
  2675. package/src/illustrations-v5/tnt/hc/tnt-Scene-RoadMap.svg +29 -0
  2676. package/src/illustrations-v5/tnt/hc/tnt-Scene-Secrets.svg +20 -0
  2677. package/src/illustrations-v5/tnt/hc/tnt-Scene-Services.svg +19 -0
  2678. package/src/illustrations-v5/tnt/hc/tnt-Scene-SessionExpired.svg +17 -0
  2679. package/src/illustrations-v5/tnt/hc/tnt-Scene-SessionExpiring.svg +15 -0
  2680. package/src/illustrations-v5/tnt/hc/tnt-Scene-Settings.svg +12 -0
  2681. package/src/illustrations-v5/tnt/hc/tnt-Scene-Success.svg +26 -0
  2682. package/src/illustrations-v5/tnt/hc/tnt-Scene-SuccessfulAuth.svg +33 -0
  2683. package/src/illustrations-v5/tnt/hc/tnt-Scene-Systems.svg +30 -0
  2684. package/src/illustrations-v5/tnt/hc/tnt-Scene-Teams.svg +30 -0
  2685. package/src/illustrations-v5/tnt/hc/tnt-Scene-Tools.svg +25 -0
  2686. package/src/illustrations-v5/tnt/hc/tnt-Scene-Tutorials.svg +26 -0
  2687. package/src/illustrations-v5/tnt/hc/tnt-Scene-Unlock.svg +21 -0
  2688. package/src/illustrations-v5/tnt/hc/tnt-Scene-UnsuccessfulAuth.svg +33 -0
  2689. package/src/illustrations-v5/tnt/hc/tnt-Spot-Avatar.svg +16 -0
  2690. package/src/illustrations-v5/tnt/hc/tnt-Spot-Calculator.svg +23 -0
  2691. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartArea.svg +14 -0
  2692. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartArea2.svg +13 -0
  2693. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBPMNFlow.svg +20 -0
  2694. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBar.svg +13 -0
  2695. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartBullet.svg +18 -0
  2696. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartDoughnut.svg +17 -0
  2697. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartFlow.svg +18 -0
  2698. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartGantt.svg +18 -0
  2699. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartOrg.svg +29 -0
  2700. package/src/illustrations-v5/tnt/hc/tnt-Spot-ChartPie.svg +18 -0
  2701. package/src/illustrations-v5/tnt/hc/tnt-Spot-CodePlaceholder.svg +9 -0
  2702. package/src/illustrations-v5/tnt/hc/tnt-Spot-Company.svg +22 -0
  2703. package/src/illustrations-v5/tnt/hc/tnt-Spot-Compass.svg +16 -0
  2704. package/src/illustrations-v5/tnt/hc/tnt-Spot-Components.svg +19 -0
  2705. package/src/illustrations-v5/tnt/hc/tnt-Spot-Dialog.svg +22 -0
  2706. package/src/illustrations-v5/tnt/hc/tnt-Spot-EmptyContentPane.svg +22 -0
  2707. package/src/illustrations-v5/tnt/hc/tnt-Spot-ExternalLink.svg +17 -0
  2708. package/src/illustrations-v5/tnt/hc/tnt-Spot-FaceID.svg +17 -0
  2709. package/src/illustrations-v5/tnt/hc/tnt-Spot-Fingerprint.svg +8 -0
  2710. package/src/illustrations-v5/tnt/hc/tnt-Spot-Handshake.svg +26 -0
  2711. package/src/illustrations-v5/tnt/hc/tnt-Spot-Help.svg +11 -0
  2712. package/src/illustrations-v5/tnt/hc/tnt-Spot-Lock.svg +21 -0
  2713. package/src/illustrations-v5/tnt/hc/tnt-Spot-Mission.svg +10 -0
  2714. package/src/illustrations-v5/tnt/hc/tnt-Spot-MissionFailed.svg +10 -0
  2715. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoApplications.svg +18 -0
  2716. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoFlows.svg +21 -0
  2717. package/src/illustrations-v5/tnt/hc/tnt-Spot-NoUsers.svg +18 -0
  2718. package/src/illustrations-v5/tnt/hc/tnt-Spot-Radar.svg +11 -0
  2719. package/src/illustrations-v5/tnt/hc/tnt-Spot-RoadMap.svg +77 -0
  2720. package/src/illustrations-v5/tnt/hc/tnt-Spot-Secrets.svg +12 -0
  2721. package/src/illustrations-v5/tnt/hc/tnt-Spot-Services.svg +15 -0
  2722. package/src/illustrations-v5/tnt/hc/tnt-Spot-SessionExpired.svg +13 -0
  2723. package/src/illustrations-v5/tnt/hc/tnt-Spot-SessionExpiring.svg +11 -0
  2724. package/src/illustrations-v5/tnt/hc/tnt-Spot-Settings.svg +8 -0
  2725. package/src/illustrations-v5/tnt/hc/tnt-Spot-Success.svg +12 -0
  2726. package/src/illustrations-v5/tnt/hc/tnt-Spot-SuccessfulAuth.svg +26 -0
  2727. package/src/illustrations-v5/tnt/hc/tnt-Spot-Systems.svg +24 -0
  2728. package/src/illustrations-v5/tnt/hc/tnt-Spot-Teams.svg +26 -0
  2729. package/src/illustrations-v5/tnt/hc/tnt-Spot-Tools.svg +21 -0
  2730. package/src/illustrations-v5/tnt/hc/tnt-Spot-Tutorials.svg +17 -0
  2731. package/src/illustrations-v5/tnt/hc/tnt-Spot-Unlock.svg +17 -0
  2732. package/src/illustrations-v5/tnt/hc/tnt-Spot-UnsuccessfulAuth.svg +26 -0
  2733. package/src/illustrations-v5/tnt/tnt-Dialog-Avatar.svg +48 -0
  2734. package/src/illustrations-v5/tnt/tnt-Dialog-Calculator.svg +26 -0
  2735. package/src/illustrations-v5/tnt/tnt-Dialog-ChartArea.svg +10 -0
  2736. package/src/illustrations-v5/tnt/tnt-Dialog-ChartArea2.svg +11 -0
  2737. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBPMNFlow.svg +17 -0
  2738. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBar.svg +12 -0
  2739. package/src/illustrations-v5/tnt/tnt-Dialog-ChartBullet.svg +13 -0
  2740. package/src/illustrations-v5/tnt/tnt-Dialog-ChartDoughnut.svg +12 -0
  2741. package/src/illustrations-v5/tnt/tnt-Dialog-ChartFlow.svg +16 -0
  2742. package/src/illustrations-v5/tnt/tnt-Dialog-ChartGantt.svg +12 -0
  2743. package/src/illustrations-v5/tnt/tnt-Dialog-ChartOrg.svg +19 -0
  2744. package/src/illustrations-v5/tnt/tnt-Dialog-ChartPie.svg +12 -0
  2745. package/src/illustrations-v5/tnt/tnt-Dialog-CodePlaceholder.svg +6 -0
  2746. package/src/illustrations-v5/tnt/tnt-Dialog-Company.svg +13 -0
  2747. package/src/illustrations-v5/tnt/tnt-Dialog-Compass.svg +18 -0
  2748. package/src/illustrations-v5/tnt/tnt-Dialog-Components.svg +16 -0
  2749. package/src/illustrations-v5/tnt/tnt-Dialog-Dialog.svg +10 -0
  2750. package/src/illustrations-v5/tnt/tnt-Dialog-ExternalLink.svg +14 -0
  2751. package/src/illustrations-v5/tnt/tnt-Dialog-FaceID.svg +22 -0
  2752. package/src/illustrations-v5/tnt/tnt-Dialog-Fingerprint.svg +31 -0
  2753. package/src/illustrations-v5/tnt/tnt-Dialog-Handshake.svg +38 -0
  2754. package/src/illustrations-v5/tnt/tnt-Dialog-Help.svg +10 -0
  2755. package/src/illustrations-v5/tnt/tnt-Dialog-Lock.svg +43 -0
  2756. package/src/illustrations-v5/tnt/tnt-Dialog-Mission.svg +25 -0
  2757. package/src/illustrations-v5/tnt/tnt-Dialog-MissionFailed.svg +23 -0
  2758. package/src/illustrations-v5/tnt/tnt-Dialog-NoApplications.svg +12 -0
  2759. package/src/illustrations-v5/tnt/tnt-Dialog-NoFlows.svg +12 -0
  2760. package/src/illustrations-v5/tnt/tnt-Dialog-NoUsers.svg +12 -0
  2761. package/src/illustrations-v5/tnt/tnt-Dialog-Radar.svg +27 -0
  2762. package/src/illustrations-v5/tnt/tnt-Dialog-RoadMap.svg +31 -0
  2763. package/src/illustrations-v5/tnt/tnt-Dialog-Secrets.svg +17 -0
  2764. package/src/illustrations-v5/tnt/tnt-Dialog-Services.svg +29 -0
  2765. package/src/illustrations-v5/tnt/tnt-Dialog-SessionExpired.svg +22 -0
  2766. package/src/illustrations-v5/tnt/tnt-Dialog-SessionExpiring.svg +21 -0
  2767. package/src/illustrations-v5/tnt/tnt-Dialog-Settings.svg +18 -0
  2768. package/src/illustrations-v5/tnt/tnt-Dialog-Success.svg +20 -0
  2769. package/src/illustrations-v5/tnt/tnt-Dialog-SuccessfulAuth.svg +13 -0
  2770. package/src/illustrations-v5/tnt/tnt-Dialog-Systems.svg +18 -0
  2771. package/src/illustrations-v5/tnt/tnt-Dialog-Teams.svg +78 -0
  2772. package/src/illustrations-v5/tnt/tnt-Dialog-Tools.svg +25 -0
  2773. package/src/illustrations-v5/tnt/tnt-Dialog-Tutorials.svg +17 -0
  2774. package/src/illustrations-v5/tnt/tnt-Dialog-Unlock.svg +44 -0
  2775. package/src/illustrations-v5/tnt/tnt-Dialog-UnsuccessfulAuth.svg +13 -0
  2776. package/src/illustrations-v5/tnt/tnt-Dot-Avatar.svg +20 -0
  2777. package/src/illustrations-v5/tnt/tnt-Dot-Calculator.svg +7 -0
  2778. package/src/illustrations-v5/tnt/tnt-Dot-ChartArea.svg +8 -0
  2779. package/src/illustrations-v5/tnt/tnt-Dot-ChartArea2.svg +16 -0
  2780. package/src/illustrations-v5/tnt/tnt-Dot-ChartBPMNFlow.svg +16 -0
  2781. package/src/illustrations-v5/tnt/tnt-Dot-ChartBar.svg +17 -0
  2782. package/src/illustrations-v5/tnt/tnt-Dot-ChartBullet.svg +20 -0
  2783. package/src/illustrations-v5/tnt/tnt-Dot-ChartDoughnut.svg +10 -0
  2784. package/src/illustrations-v5/tnt/tnt-Dot-ChartFlow.svg +14 -0
  2785. package/src/illustrations-v5/tnt/tnt-Dot-ChartGantt.svg +11 -0
  2786. package/src/illustrations-v5/tnt/tnt-Dot-ChartOrg.svg +24 -0
  2787. package/src/illustrations-v5/tnt/tnt-Dot-ChartPie.svg +10 -0
  2788. package/src/illustrations-v5/tnt/tnt-Dot-CodePlaceholder.svg +4 -0
  2789. package/src/illustrations-v5/tnt/tnt-Dot-Company.svg +14 -0
  2790. package/src/illustrations-v5/tnt/tnt-Dot-Compass.svg +17 -0
  2791. package/src/illustrations-v5/tnt/tnt-Dot-Components.svg +21 -0
  2792. package/src/illustrations-v5/tnt/tnt-Dot-Dialog.svg +8 -0
  2793. package/src/illustrations-v5/tnt/tnt-Dot-ExternalLink.svg +9 -0
  2794. package/src/illustrations-v5/tnt/tnt-Dot-FaceID.svg +20 -0
  2795. package/src/illustrations-v5/tnt/tnt-Dot-Fingerprint.svg +12 -0
  2796. package/src/illustrations-v5/tnt/tnt-Dot-Handshake.svg +35 -0
  2797. package/src/illustrations-v5/tnt/tnt-Dot-Help.svg +15 -0
  2798. package/src/illustrations-v5/tnt/tnt-Dot-Lock.svg +25 -0
  2799. package/src/illustrations-v5/tnt/tnt-Dot-Mission.svg +20 -0
  2800. package/src/illustrations-v5/tnt/tnt-Dot-MissionFailed.svg +19 -0
  2801. package/src/illustrations-v5/tnt/tnt-Dot-NoApplications.svg +10 -0
  2802. package/src/illustrations-v5/tnt/tnt-Dot-NoFlows.svg +10 -0
  2803. package/src/illustrations-v5/tnt/tnt-Dot-NoUsers.svg +17 -0
  2804. package/src/illustrations-v5/tnt/tnt-Dot-Radar.svg +27 -0
  2805. package/src/illustrations-v5/tnt/tnt-Dot-RoadMap.svg +10 -0
  2806. package/src/illustrations-v5/tnt/tnt-Dot-Secrets.svg +15 -0
  2807. package/src/illustrations-v5/tnt/tnt-Dot-Services.svg +13 -0
  2808. package/src/illustrations-v5/tnt/tnt-Dot-SessionExpired.svg +12 -0
  2809. package/src/illustrations-v5/tnt/tnt-Dot-SessionExpiring.svg +19 -0
  2810. package/src/illustrations-v5/tnt/tnt-Dot-Settings.svg +7 -0
  2811. package/src/illustrations-v5/tnt/tnt-Dot-Success.svg +14 -0
  2812. package/src/illustrations-v5/tnt/tnt-Dot-SuccessfulAuth.svg +9 -0
  2813. package/src/illustrations-v5/tnt/tnt-Dot-Systems.svg +14 -0
  2814. package/src/illustrations-v5/tnt/tnt-Dot-Teams.svg +31 -0
  2815. package/src/illustrations-v5/tnt/tnt-Dot-Tools.svg +25 -0
  2816. package/src/illustrations-v5/tnt/tnt-Dot-Tutorials.svg +15 -0
  2817. package/src/illustrations-v5/tnt/tnt-Dot-Unlock.svg +27 -0
  2818. package/src/illustrations-v5/tnt/tnt-Dot-UnsuccessfulAuth.svg +9 -0
  2819. package/src/illustrations-v5/tnt/tnt-Scene-Avatar.svg +48 -0
  2820. package/src/illustrations-v5/tnt/tnt-Scene-Calculator.svg +21 -0
  2821. package/src/illustrations-v5/tnt/tnt-Scene-ChartArea.svg +10 -0
  2822. package/src/illustrations-v5/tnt/tnt-Scene-ChartArea2.svg +11 -0
  2823. package/src/illustrations-v5/tnt/tnt-Scene-ChartBPMNFlow.svg +17 -0
  2824. package/src/illustrations-v5/tnt/tnt-Scene-ChartBar.svg +12 -0
  2825. package/src/illustrations-v5/tnt/tnt-Scene-ChartBullet.svg +17 -0
  2826. package/src/illustrations-v5/tnt/tnt-Scene-ChartDoughnut.svg +12 -0
  2827. package/src/illustrations-v5/tnt/tnt-Scene-ChartFlow.svg +16 -0
  2828. package/src/illustrations-v5/tnt/tnt-Scene-ChartGantt.svg +12 -0
  2829. package/src/illustrations-v5/tnt/tnt-Scene-ChartOrg.svg +18 -0
  2830. package/src/illustrations-v5/tnt/tnt-Scene-ChartPie.svg +12 -0
  2831. package/src/illustrations-v5/tnt/tnt-Scene-CodePlaceholder.svg +6 -0
  2832. package/src/illustrations-v5/tnt/tnt-Scene-Company.svg +13 -0
  2833. package/src/illustrations-v5/tnt/tnt-Scene-Compass.svg +18 -0
  2834. package/src/illustrations-v5/tnt/tnt-Scene-Components.svg +18 -0
  2835. package/src/illustrations-v5/tnt/tnt-Scene-Dialog.svg +10 -0
  2836. package/src/illustrations-v5/tnt/tnt-Scene-ExternalLink.svg +14 -0
  2837. package/src/illustrations-v5/tnt/tnt-Scene-FaceID.svg +21 -0
  2838. package/src/illustrations-v5/tnt/tnt-Scene-Fingerprint.svg +31 -0
  2839. package/src/illustrations-v5/tnt/tnt-Scene-Handshake.svg +38 -0
  2840. package/src/illustrations-v5/tnt/tnt-Scene-Help.svg +17 -0
  2841. package/src/illustrations-v5/tnt/tnt-Scene-Lock.svg +43 -0
  2842. package/src/illustrations-v5/tnt/tnt-Scene-Mission.svg +32 -0
  2843. package/src/illustrations-v5/tnt/tnt-Scene-MissionFailed.svg +23 -0
  2844. package/src/illustrations-v5/tnt/tnt-Scene-NoApplications.svg +12 -0
  2845. package/src/illustrations-v5/tnt/tnt-Scene-NoFlows.svg +12 -0
  2846. package/src/illustrations-v5/tnt/tnt-Scene-NoUsers.svg +19 -0
  2847. package/src/illustrations-v5/tnt/tnt-Scene-Radar.svg +29 -0
  2848. package/src/illustrations-v5/tnt/tnt-Scene-RoadMap.svg +31 -0
  2849. package/src/illustrations-v5/tnt/tnt-Scene-Secrets.svg +17 -0
  2850. package/src/illustrations-v5/tnt/tnt-Scene-Services.svg +29 -0
  2851. package/src/illustrations-v5/tnt/tnt-Scene-SessionExpired.svg +23 -0
  2852. package/src/illustrations-v5/tnt/tnt-Scene-SessionExpiring.svg +21 -0
  2853. package/src/illustrations-v5/tnt/tnt-Scene-Settings.svg +18 -0
  2854. package/src/illustrations-v5/tnt/tnt-Scene-Success.svg +20 -0
  2855. package/src/illustrations-v5/tnt/tnt-Scene-SuccessfulAuth.svg +18 -0
  2856. package/src/illustrations-v5/tnt/tnt-Scene-Systems.svg +27 -0
  2857. package/src/illustrations-v5/tnt/tnt-Scene-Teams.svg +84 -0
  2858. package/src/illustrations-v5/tnt/tnt-Scene-Tools.svg +46 -0
  2859. package/src/illustrations-v5/tnt/tnt-Scene-Tutorials.svg +17 -0
  2860. package/src/illustrations-v5/tnt/tnt-Scene-Unlock.svg +44 -0
  2861. package/src/illustrations-v5/tnt/tnt-Scene-UnsuccessfulAuth.svg +18 -0
  2862. package/src/illustrations-v5/tnt/tnt-Spot-Avatar.svg +48 -0
  2863. package/src/illustrations-v5/tnt/tnt-Spot-Calculator.svg +25 -0
  2864. package/src/illustrations-v5/tnt/tnt-Spot-ChartArea.svg +9 -0
  2865. package/src/illustrations-v5/tnt/tnt-Spot-ChartArea2.svg +10 -0
  2866. package/src/illustrations-v5/tnt/tnt-Spot-ChartBPMNFlow.svg +17 -0
  2867. package/src/illustrations-v5/tnt/tnt-Spot-ChartBar.svg +11 -0
  2868. package/src/illustrations-v5/tnt/tnt-Spot-ChartBullet.svg +12 -0
  2869. package/src/illustrations-v5/tnt/tnt-Spot-ChartDoughnut.svg +11 -0
  2870. package/src/illustrations-v5/tnt/tnt-Spot-ChartFlow.svg +13 -0
  2871. package/src/illustrations-v5/tnt/tnt-Spot-ChartGantt.svg +11 -0
  2872. package/src/illustrations-v5/tnt/tnt-Spot-ChartOrg.svg +18 -0
  2873. package/src/illustrations-v5/tnt/tnt-Spot-ChartPie.svg +11 -0
  2874. package/src/illustrations-v5/tnt/tnt-Spot-CodePlaceholder.svg +6 -0
  2875. package/src/illustrations-v5/tnt/tnt-Spot-Company.svg +13 -0
  2876. package/src/illustrations-v5/tnt/tnt-Spot-Compass.svg +18 -0
  2877. package/src/illustrations-v5/tnt/tnt-Spot-Components.svg +18 -0
  2878. package/src/illustrations-v5/tnt/tnt-Spot-Dialog.svg +10 -0
  2879. package/src/illustrations-v5/tnt/tnt-Spot-ExternalLink.svg +13 -0
  2880. package/src/illustrations-v5/tnt/tnt-Spot-FaceID.svg +21 -0
  2881. package/src/illustrations-v5/tnt/tnt-Spot-Fingerprint.svg +31 -0
  2882. package/src/illustrations-v5/tnt/tnt-Spot-Handshake.svg +38 -0
  2883. package/src/illustrations-v5/tnt/tnt-Spot-Help.svg +9 -0
  2884. package/src/illustrations-v5/tnt/tnt-Spot-Lock.svg +43 -0
  2885. package/src/illustrations-v5/tnt/tnt-Spot-Mission.svg +25 -0
  2886. package/src/illustrations-v5/tnt/tnt-Spot-MissionFailed.svg +23 -0
  2887. package/src/illustrations-v5/tnt/tnt-Spot-NoApplications.svg +11 -0
  2888. package/src/illustrations-v5/tnt/tnt-Spot-NoFlows.svg +11 -0
  2889. package/src/illustrations-v5/tnt/tnt-Spot-NoUsers.svg +12 -0
  2890. package/src/illustrations-v5/tnt/tnt-Spot-Radar.svg +27 -0
  2891. package/src/illustrations-v5/tnt/tnt-Spot-RoadMap.svg +31 -0
  2892. package/src/illustrations-v5/tnt/tnt-Spot-Secrets.svg +17 -0
  2893. package/src/illustrations-v5/tnt/tnt-Spot-Services.svg +29 -0
  2894. package/src/illustrations-v5/tnt/tnt-Spot-SessionExpired.svg +22 -0
  2895. package/src/illustrations-v5/tnt/tnt-Spot-SessionExpiring.svg +19 -0
  2896. package/src/illustrations-v5/tnt/tnt-Spot-Settings.svg +14 -0
  2897. package/src/illustrations-v5/tnt/tnt-Spot-Success.svg +20 -0
  2898. package/src/illustrations-v5/tnt/tnt-Spot-SuccessfulAuth.svg +14 -0
  2899. package/src/illustrations-v5/tnt/tnt-Spot-Systems.svg +18 -0
  2900. package/src/illustrations-v5/tnt/tnt-Spot-Teams.svg +78 -0
  2901. package/src/illustrations-v5/tnt/tnt-Spot-Tools.svg +25 -0
  2902. package/src/illustrations-v5/tnt/tnt-Spot-Tutorials.svg +16 -0
  2903. package/src/illustrations-v5/tnt/tnt-Spot-Unlock.svg +44 -0
  2904. package/src/illustrations-v5/tnt/tnt-Spot-UnsuccessfulAuth.svg +14 -0
  2905. package/src/themes/BarcodeScannerDialog.css +49 -0
  2906. package/src/themes/DynamicPage.css +135 -0
  2907. package/src/themes/DynamicPageHeader.css +9 -0
  2908. package/src/themes/DynamicPageHeaderActions.css +51 -0
  2909. package/src/themes/DynamicPageTitle.css +173 -0
  2910. package/src/themes/DynamicSideContent.css +268 -0
  2911. package/src/themes/FlexibleColumnLayout.css +125 -0
  2912. package/src/themes/IllustratedMessage.css +238 -0
  2913. package/src/themes/InvisibleTextStyles.css +9 -0
  2914. package/src/themes/MediaGallery.css +153 -0
  2915. package/src/themes/MediaGalleryItem.css +130 -0
  2916. package/src/themes/NavigationLayout.css +64 -0
  2917. package/src/themes/NavigationMenu.css +15 -0
  2918. package/src/themes/NavigationMenuItem.css +93 -0
  2919. package/src/themes/NotificationList.css +7 -0
  2920. package/src/themes/NotificationListGroupItem.css +122 -0
  2921. package/src/themes/NotificationListItem.css +207 -0
  2922. package/src/themes/NotificationListItemBase.css +25 -0
  2923. package/src/themes/NotificationStateIcon.css +5 -0
  2924. package/src/themes/Page.css +176 -0
  2925. package/src/themes/ProductSwitch.css +32 -0
  2926. package/src/themes/ProductSwitchItem.css +164 -0
  2927. package/src/themes/Search.css +110 -0
  2928. package/src/themes/SearchField.css +299 -0
  2929. package/src/themes/SearchItem.css +109 -0
  2930. package/src/themes/SearchItemGroup.css +20 -0
  2931. package/src/themes/SearchItemShowMore.css +7 -0
  2932. package/src/themes/SearchMessageArea.css +17 -0
  2933. package/src/themes/ShellBar.css +529 -0
  2934. package/src/themes/ShellBarBranding.css +76 -0
  2935. package/src/themes/ShellBarPopover.css +38 -0
  2936. package/src/themes/ShellBarSearch.css +3 -0
  2937. package/src/themes/SideNavigation.css +75 -0
  2938. package/src/themes/SideNavigationGroup.css +37 -0
  2939. package/src/themes/SideNavigationItem.css +29 -0
  2940. package/src/themes/SideNavigationItemBase.css +376 -0
  2941. package/src/themes/SideNavigationPopover.css +19 -0
  2942. package/src/themes/SideNavigationSubItem.css +25 -0
  2943. package/src/themes/Timeline.css +88 -0
  2944. package/src/themes/TimelineGroupItem.css +184 -0
  2945. package/src/themes/TimelineItem.css +445 -0
  2946. package/src/themes/UploadCollection.css +97 -0
  2947. package/src/themes/UploadCollectionItem.css +181 -0
  2948. package/src/themes/UserMenu.css +174 -0
  2949. package/src/themes/UserMenuItem.css +11 -0
  2950. package/src/themes/UserSettingsAccountView.css +57 -0
  2951. package/src/themes/UserSettingsAppearanceViewItem.css +65 -0
  2952. package/src/themes/UserSettingsDialog.css +114 -0
  2953. package/src/themes/UserSettingsItem.css +77 -0
  2954. package/src/themes/UserSettingsView.css +13 -0
  2955. package/src/themes/ViewSettingsDialog.css +84 -0
  2956. package/src/themes/Wizard.css +139 -0
  2957. package/src/themes/WizardPopover.css +25 -0
  2958. package/src/themes/WizardTab.css +189 -0
  2959. package/src/themes/base/DynamicPage-parameters.css +18 -0
  2960. package/src/themes/base/DynamicPageHeader-parameters.css +5 -0
  2961. package/src/themes/base/DynamicPageHeaderActions-parameters.css +7 -0
  2962. package/src/themes/base/DynamicPageTitle-parameters.css +19 -0
  2963. package/src/themes/base/FlexibleColumnLayout-parameters.css +6 -0
  2964. package/src/themes/base/IllustratedMessage-parameters.css +13 -0
  2965. package/src/themes/base/MediaGallery-parameters.css +5 -0
  2966. package/src/themes/base/MediaGalleryItem-parameters.css +6 -0
  2967. package/src/themes/base/NotificationListItem-parameters.css +33 -0
  2968. package/src/themes/base/Page-parameters.css +4 -0
  2969. package/src/themes/base/ProductSwitchItem-parameters.css +6 -0
  2970. package/src/themes/base/Search-parameters.css +10 -0
  2971. package/src/themes/base/SearchField-parameters.css +31 -0
  2972. package/src/themes/base/ShellBar-parameters.css +26 -0
  2973. package/src/themes/base/SideNavigation-parameters.css +77 -0
  2974. package/src/themes/base/TimelineGroupItem-parameters.css +4 -0
  2975. package/src/themes/base/TimelineItem-parameters.css +20 -0
  2976. package/src/themes/base/UploadCollection-parameters.css +13 -0
  2977. package/src/themes/base/ViewSettingsDialog-parameters.css +7 -0
  2978. package/src/themes/base/Wizard-parameters.css +4 -0
  2979. package/src/themes/base/WizardTab-parameters.css +11 -0
  2980. package/src/themes/base/rtl-parameters.css +14 -0
  2981. package/src/themes/sap_belize/DynamicPage-parameters.css +16 -0
  2982. package/src/themes/sap_belize_hcb/DynamicPageTitle-parameters.css +6 -0
  2983. package/src/themes/sap_belize_hcw/DynamicPageTitle-parameters.css +6 -0
  2984. package/src/themes/sap_fiori_3/DynamicPageHeaderActions-parameters.css +5 -0
  2985. package/src/themes/sap_fiori_3/DynamicPageTitle-parameters.css +4 -0
  2986. package/src/themes/sap_fiori_3/SearchField-parameters.css +28 -0
  2987. package/src/themes/sap_fiori_3/ShellBar-parameters.css +5 -0
  2988. package/src/themes/sap_fiori_3/TimelineGroupItem-parameters.css +6 -0
  2989. package/src/themes/sap_fiori_3/parameters-bundle.css +21 -0
  2990. package/src/themes/sap_fiori_3_dark/SearchField-parameters.css +27 -0
  2991. package/src/themes/sap_fiori_3_dark/ShellBar-parameters.css +5 -0
  2992. package/src/themes/sap_fiori_3_dark/parameters-bundle.css +21 -0
  2993. package/src/themes/sap_fiori_3_hcb/DynamicPageTitle-parameters.css +6 -0
  2994. package/src/themes/sap_fiori_3_hcb/FlexibleColumnLayout-parameters.css +6 -0
  2995. package/src/themes/sap_fiori_3_hcb/MediaGallery-parameters.css +5 -0
  2996. package/src/themes/sap_fiori_3_hcb/Page-parameters.css +4 -0
  2997. package/src/themes/sap_fiori_3_hcb/ProductSwitchItem-parameters.css +6 -0
  2998. package/src/themes/sap_fiori_3_hcb/SearchField-parameters.css +29 -0
  2999. package/src/themes/sap_fiori_3_hcb/ShellBar-parameters.css +5 -0
  3000. package/src/themes/sap_fiori_3_hcb/TimelineItem-parameters.css +6 -0
  3001. package/src/themes/sap_fiori_3_hcb/UploadCollection-parameters.css +7 -0
  3002. package/src/themes/sap_fiori_3_hcb/WizardTab-parameters.css +9 -0
  3003. package/src/themes/sap_fiori_3_hcb/parameters-bundle.css +22 -0
  3004. package/src/themes/sap_fiori_3_hcw/DynamicPageTitle-parameters.css +6 -0
  3005. package/src/themes/sap_fiori_3_hcw/FlexibleColumnLayout-parameters.css +6 -0
  3006. package/src/themes/sap_fiori_3_hcw/MediaGallery-parameters.css +5 -0
  3007. package/src/themes/sap_fiori_3_hcw/Page-parameters.css +4 -0
  3008. package/src/themes/sap_fiori_3_hcw/ProductSwitchItem-parameters.css +6 -0
  3009. package/src/themes/sap_fiori_3_hcw/SearchField-parameters.css +28 -0
  3010. package/src/themes/sap_fiori_3_hcw/ShellBar-parameters.css +5 -0
  3011. package/src/themes/sap_fiori_3_hcw/TimelineItem-parameters.css +6 -0
  3012. package/src/themes/sap_fiori_3_hcw/UploadCollection-parameters.css +6 -0
  3013. package/src/themes/sap_fiori_3_hcw/WizardTab-parameters.css +8 -0
  3014. package/src/themes/sap_fiori_3_hcw/parameters-bundle.css +22 -0
  3015. package/src/themes/sap_horizon/DynamicPageHeaderActions-parameters.css +6 -0
  3016. package/src/themes/sap_horizon/DynamicPageTitle-parameters.css +5 -0
  3017. package/src/themes/sap_horizon/FlexibleColumnLayout-parameters.css +3 -0
  3018. package/src/themes/sap_horizon/MediaGallery-parameters.css +5 -0
  3019. package/src/themes/sap_horizon/NotificationListItem-parameters.css +20 -0
  3020. package/src/themes/sap_horizon/ProductSwitchItem-parameters.css +5 -0
  3021. package/src/themes/sap_horizon/ShellBar-parameters.css +30 -0
  3022. package/src/themes/sap_horizon/SideNavigation-parameters.css +55 -0
  3023. package/src/themes/sap_horizon/TimelineItem-parameters.css +21 -0
  3024. package/src/themes/sap_horizon/UploadCollection-parameters.css +11 -0
  3025. package/src/themes/sap_horizon/Wizard-parameters.css +6 -0
  3026. package/src/themes/sap_horizon/WizardTab-parameters.css +11 -0
  3027. package/src/themes/sap_horizon/parameters-bundle.css +26 -0
  3028. package/src/themes/sap_horizon_dark/FlexibleColumnLayout-parameters.css +3 -0
  3029. package/src/themes/sap_horizon_dark/MediaGallery-parameters.css +5 -0
  3030. package/src/themes/sap_horizon_dark/NotificationListItem-parameters.css +20 -0
  3031. package/src/themes/sap_horizon_dark/ProductSwitchItem-parameters.css +5 -0
  3032. package/src/themes/sap_horizon_dark/ShellBar-parameters.css +30 -0
  3033. package/src/themes/sap_horizon_dark/SideNavigation-parameters.css +55 -0
  3034. package/src/themes/sap_horizon_dark/TimelineItem-parameters.css +21 -0
  3035. package/src/themes/sap_horizon_dark/UploadCollection-parameters.css +11 -0
  3036. package/src/themes/sap_horizon_dark/Wizard-parameters.css +6 -0
  3037. package/src/themes/sap_horizon_dark/WizardTab-parameters.css +10 -0
  3038. package/src/themes/sap_horizon_dark/parameters-bundle.css +25 -0
  3039. package/src/themes/sap_horizon_dark_exp/FlexibleColumnLayout-parameters.css +3 -0
  3040. package/src/themes/sap_horizon_dark_exp/NotificationListItem-parameters.css +3 -0
  3041. package/src/themes/sap_horizon_dark_exp/ProductSwitchItem-parameters.css +5 -0
  3042. package/src/themes/sap_horizon_dark_exp/ShellBar-parameters.css +22 -0
  3043. package/src/themes/sap_horizon_dark_exp/SideNavigation-parameters.css +17 -0
  3044. package/src/themes/sap_horizon_dark_exp/TimelineItem-parameters.css +21 -0
  3045. package/src/themes/sap_horizon_dark_exp/UploadCollection-parameters.css +5 -0
  3046. package/src/themes/sap_horizon_dark_exp/Wizard-parameters.css +6 -0
  3047. package/src/themes/sap_horizon_dark_exp/WizardTab-parameters.css +10 -0
  3048. package/src/themes/sap_horizon_dark_exp/parameters-bundle.css +20 -0
  3049. package/src/themes/sap_horizon_exp/FlexibleColumnLayout-parameters.css +3 -0
  3050. package/src/themes/sap_horizon_exp/NotificationListItem-parameters.css +3 -0
  3051. package/src/themes/sap_horizon_exp/ProductSwitchItem-parameters.css +5 -0
  3052. package/src/themes/sap_horizon_exp/ShellBar-parameters.css +28 -0
  3053. package/src/themes/sap_horizon_exp/SideNavigation-parameters.css +17 -0
  3054. package/src/themes/sap_horizon_exp/TimelineItem-parameters.css +21 -0
  3055. package/src/themes/sap_horizon_exp/UploadCollection-parameters.css +5 -0
  3056. package/src/themes/sap_horizon_exp/Wizard-parameters.css +6 -0
  3057. package/src/themes/sap_horizon_exp/WizardTab-parameters.css +11 -0
  3058. package/src/themes/sap_horizon_exp/parameters-bundle.css +20 -0
  3059. package/src/themes/sap_horizon_hcb/DynamicPageTitle-parameters.css +11 -0
  3060. package/src/themes/sap_horizon_hcb/FlexibleColumnLayout-parameters.css +6 -0
  3061. package/src/themes/sap_horizon_hcb/MediaGallery-parameters.css +5 -0
  3062. package/src/themes/sap_horizon_hcb/NotificationListItem-parameters.css +22 -0
  3063. package/src/themes/sap_horizon_hcb/Page-parameters.css +4 -0
  3064. package/src/themes/sap_horizon_hcb/ProductSwitchItem-parameters.css +6 -0
  3065. package/src/themes/sap_horizon_hcb/SearchField-parameters.css +29 -0
  3066. package/src/themes/sap_horizon_hcb/ShellBar-parameters.css +14 -0
  3067. package/src/themes/sap_horizon_hcb/SideNavigation-parameters.css +53 -0
  3068. package/src/themes/sap_horizon_hcb/TimelineItem-parameters.css +6 -0
  3069. package/src/themes/sap_horizon_hcb/UploadCollection-parameters.css +11 -0
  3070. package/src/themes/sap_horizon_hcb/Wizard-parameters.css +6 -0
  3071. package/src/themes/sap_horizon_hcb/WizardTab-parameters.css +11 -0
  3072. package/src/themes/sap_horizon_hcb/parameters-bundle.css +23 -0
  3073. package/src/themes/sap_horizon_hcb_exp/FlexibleColumnLayout-parameters.css +6 -0
  3074. package/src/themes/sap_horizon_hcb_exp/MediaGallery-parameters.css +5 -0
  3075. package/src/themes/sap_horizon_hcb_exp/Page-parameters.css +4 -0
  3076. package/src/themes/sap_horizon_hcb_exp/ProductSwitchItem-parameters.css +6 -0
  3077. package/src/themes/sap_horizon_hcb_exp/ShellBar-parameters.css +11 -0
  3078. package/src/themes/sap_horizon_hcb_exp/SideNavigation-parameters.css +16 -0
  3079. package/src/themes/sap_horizon_hcb_exp/TimelineItem-parameters.css +6 -0
  3080. package/src/themes/sap_horizon_hcb_exp/UploadCollection-parameters.css +8 -0
  3081. package/src/themes/sap_horizon_hcb_exp/Wizard-parameters.css +6 -0
  3082. package/src/themes/sap_horizon_hcb_exp/WizardTab-parameters.css +11 -0
  3083. package/src/themes/sap_horizon_hcb_exp/parameters-bundle.css +18 -0
  3084. package/src/themes/sap_horizon_hcw/DynamicPageTitle-parameters.css +11 -0
  3085. package/src/themes/sap_horizon_hcw/FlexibleColumnLayout-parameters.css +6 -0
  3086. package/src/themes/sap_horizon_hcw/MediaGallery-parameters.css +5 -0
  3087. package/src/themes/sap_horizon_hcw/NotificationListItem-parameters.css +22 -0
  3088. package/src/themes/sap_horizon_hcw/Page-parameters.css +4 -0
  3089. package/src/themes/sap_horizon_hcw/ProductSwitchItem-parameters.css +6 -0
  3090. package/src/themes/sap_horizon_hcw/SearchField-parameters.css +29 -0
  3091. package/src/themes/sap_horizon_hcw/ShellBar-parameters.css +14 -0
  3092. package/src/themes/sap_horizon_hcw/SideNavigation-parameters.css +53 -0
  3093. package/src/themes/sap_horizon_hcw/TimelineItem-parameters.css +6 -0
  3094. package/src/themes/sap_horizon_hcw/UploadCollection-parameters.css +11 -0
  3095. package/src/themes/sap_horizon_hcw/Wizard-parameters.css +6 -0
  3096. package/src/themes/sap_horizon_hcw/WizardTab-parameters.css +11 -0
  3097. package/src/themes/sap_horizon_hcw/parameters-bundle.css +24 -0
  3098. package/src/themes/sap_horizon_hcw_exp/FlexibleColumnLayout-parameters.css +6 -0
  3099. package/src/themes/sap_horizon_hcw_exp/MediaGallery-parameters.css +5 -0
  3100. package/src/themes/sap_horizon_hcw_exp/Page-parameters.css +4 -0
  3101. package/src/themes/sap_horizon_hcw_exp/ProductSwitchItem-parameters.css +6 -0
  3102. package/src/themes/sap_horizon_hcw_exp/ShellBar-parameters.css +5 -0
  3103. package/src/themes/sap_horizon_hcw_exp/SideNavigation-parameters.css +16 -0
  3104. package/src/themes/sap_horizon_hcw_exp/TimelineItem-parameters.css +6 -0
  3105. package/src/themes/sap_horizon_hcw_exp/UploadCollection-parameters.css +7 -0
  3106. package/src/themes/sap_horizon_hcw_exp/Wizard-parameters.css +6 -0
  3107. package/src/themes/sap_horizon_hcw_exp/WizardTab-parameters.css +11 -0
  3108. package/src/themes/sap_horizon_hcw_exp/parameters-bundle.css +19 -0
  3109. package/tsconfig.json +43 -0
  3110. package/config/postcss.components/postcss.config.js +0 -1
  3111. package/config/postcss.themes/postcss.config.js +0 -1
  3112. package/dist/NotificationOverflowAction.js +0 -90
  3113. package/dist/api.json +0 -1
  3114. package/dist/features/CoPilotAnimation.js +0 -8
  3115. package/dist/generated/assets/themes/sap_belize/parameters-bundle.css.json +0 -1
  3116. package/dist/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json +0 -1
  3117. package/dist/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json +0 -1
  3118. package/dist/generated/templates/NotifactionOverflowActionsPopoverTemplate.lit.js +0 -8
  3119. package/dist/generated/templates/NotificationListGroupItemTemplate.lit.js +0 -15
  3120. package/dist/generated/templates/NotificationListItemTemplate.lit.js +0 -16
  3121. package/dist/generated/templates/ProductSwitchItemTemplate.lit.js +0 -15
  3122. package/dist/generated/templates/ProductSwitchTemplate.lit.js +0 -7
  3123. package/dist/generated/templates/ShellBarItemTemplate.lit.js +0 -7
  3124. package/dist/generated/templates/ShellBarPopoverTemplate.lit.js +0 -9
  3125. package/dist/generated/templates/ShellBarTemplate.lit.js +0 -23
  3126. package/dist/generated/templates/UploadCollectionItemTemplate.lit.js +0 -26
  3127. package/dist/generated/templates/UploadCollectionTemplate.lit.js +0 -10
  3128. package/dist/generated/themes/NotifactionOverflowActionsPopover.css.js +0 -8
  3129. package/dist/generated/themes/NotificationPrioIcon.css.js +0 -8
  3130. package/dist/generated/themes/sap_belize/parameters-bundle.css.js +0 -1
  3131. package/dist/generated/themes/sap_belize_hcb/parameters-bundle.css.js +0 -1
  3132. package/dist/generated/themes/sap_belize_hcw/parameters-bundle.css.js +0 -1
  3133. package/dist/webcomponentsjs/LICENSE.md +0 -19
  3134. package/dist/webcomponentsjs/README.md +0 -229
  3135. package/dist/webcomponentsjs/bundles/webcomponents-ce.js +0 -63
  3136. package/dist/webcomponentsjs/bundles/webcomponents-ce.js.map +0 -1
  3137. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js +0 -297
  3138. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce-pf.js.map +0 -1
  3139. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js +0 -208
  3140. package/dist/webcomponentsjs/bundles/webcomponents-sd-ce.js.map +0 -1
  3141. package/dist/webcomponentsjs/bundles/webcomponents-sd.js +0 -166
  3142. package/dist/webcomponentsjs/bundles/webcomponents-sd.js.map +0 -1
  3143. package/dist/webcomponentsjs/custom-elements-es5-adapter.js +0 -15
  3144. package/dist/webcomponentsjs/package.json +0 -46
  3145. package/dist/webcomponentsjs/src/entrypoints/custom-elements-es5-adapter-index.js +0 -16
  3146. package/dist/webcomponentsjs/src/entrypoints/webcomponents-bundle-index.js +0 -53
  3147. package/dist/webcomponentsjs/src/entrypoints/webcomponents-ce-index.js +0 -17
  3148. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-index.js +0 -19
  3149. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-ce-pf-index.js +0 -28
  3150. package/dist/webcomponentsjs/src/entrypoints/webcomponents-sd-index.js +0 -18
  3151. package/dist/webcomponentsjs/webcomponents-bundle.js +0 -298
  3152. package/dist/webcomponentsjs/webcomponents-bundle.js.map +0 -1
  3153. package/dist/webcomponentsjs/webcomponents-loader.js +0 -185
  3154. package/package-scripts.js +0 -11
  3155. package/src/Assets.js +0 -6
  3156. package/src/NotifactionOverflowActionsPopover.hbs +0 -20
  3157. package/src/NotificationListGroupItem.hbs +0 -81
  3158. package/src/NotificationListGroupItem.js +0 -219
  3159. package/src/NotificationListItem.hbs +0 -98
  3160. package/src/NotificationListItem.js +0 -430
  3161. package/src/NotificationListItemBase.js +0 -241
  3162. package/src/NotificationOverflowAction.js +0 -90
  3163. package/src/ProductSwitch.hbs +0 -3
  3164. package/src/ProductSwitch.js +0 -130
  3165. package/src/ProductSwitchItem.hbs +0 -43
  3166. package/src/ProductSwitchItem.js +0 -225
  3167. package/src/ShellBar.hbs +0 -192
  3168. package/src/ShellBar.js +0 -1037
  3169. package/src/ShellBarItem.hbs +0 -1
  3170. package/src/ShellBarItem.js +0 -91
  3171. package/src/ShellBarPopover.hbs +0 -31
  3172. package/src/UploadCollection.hbs +0 -34
  3173. package/src/UploadCollection.js +0 -324
  3174. package/src/UploadCollectionItem.hbs +0 -84
  3175. package/src/UploadCollectionItem.js +0 -493
  3176. package/src/features/CoPilotAnimation.js +0 -8
  3177. package/src/types/UploadCollectionDnDMode.js +0 -49
  3178. package/src/types/UploadState.js +0 -56
  3179. package/src/upload-utils/UploadCollectionBodyDnD.js +0 -73
package/CHANGELOG.md CHANGED
@@ -3,6 +3,3930 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [0.0.0-e03cd01f3](https://github.com/UI5/webcomponents/compare/v2.18.0...v0.0.0-e03cd01f3) (2026-01-06)
7
+
8
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
9
+
10
+
11
+
12
+
13
+
14
+ # [2.18.0](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.3...v2.18.0) (2026-01-05)
15
+
16
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
17
+
18
+
19
+
20
+
21
+
22
+ # [2.18.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.2...v2.18.0-rc.3) (2026-01-01)
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * **ui5-search-item:** update search item gap with design spec ([#12831](https://github.com/UI5/webcomponents/issues/12831)) ([1a65306](https://github.com/UI5/webcomponents/commit/1a653065b586817e505f03a950ae83d15ba9cf41))
28
+
29
+
30
+
31
+
32
+
33
+ # [2.18.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.1...v2.18.0-rc.2) (2025-12-25)
34
+
35
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
36
+
37
+
38
+
39
+
40
+
41
+ # [2.18.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.18.0-rc.0...v2.18.0-rc.1) (2025-12-18)
42
+
43
+
44
+ ### Bug Fixes
45
+
46
+ * **ui5-search-field:** add scope-value property ([#12795](https://github.com/UI5/webcomponents/issues/12795)) ([fdd67e4](https://github.com/UI5/webcomponents/commit/fdd67e475aa5b444627227e1a65aa04a2b52d31f))
47
+
48
+
49
+ ### Features
50
+
51
+ * **ui5-search:** enhance accessibility support ([#12717](https://github.com/UI5/webcomponents/issues/12717)) ([e97c302](https://github.com/UI5/webcomponents/commit/e97c302a8277aa13c2dab8573a2eb3c1c065c89a))
52
+ * **ui5-user-settings:** add UserSettingsAppearanceView components ([#12739](https://github.com/UI5/webcomponents/issues/12739)) ([5f8bf37](https://github.com/UI5/webcomponents/commit/5f8bf3798fd8fad7a87479193f7e6fdaae4c68b2))
53
+
54
+
55
+
56
+
57
+
58
+ # [2.18.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.17.0...v2.18.0-rc.0) (2025-12-11)
59
+
60
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
61
+
62
+
63
+
64
+
65
+
66
+ # [2.17.0](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.5...v2.17.0) (2025-12-05)
67
+
68
+
69
+ ### Bug Fixes
70
+
71
+ * **ui5-dynamic-page:** fit content paddings aligned with specification ([#12738](https://github.com/UI5/webcomponents/issues/12738)) ([00803e6](https://github.com/UI5/webcomponents/commit/00803e68e431c663e5fc1595ff3a45cf0b1876ce)), closes [#12652](https://github.com/UI5/webcomponents/issues/12652)
72
+ * **ui5-search-item:** correct font size ([#12758](https://github.com/UI5/webcomponents/issues/12758)) ([35ae11a](https://github.com/UI5/webcomponents/commit/35ae11a9e10f1578a1c16e3e0f93221680f98aee))
73
+
74
+
75
+
76
+
77
+
78
+ # [2.17.0-rc.5](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.4...v2.17.0-rc.5) (2025-12-04)
79
+
80
+
81
+ ### Bug Fixes
82
+
83
+ * **tools:** dependencies usage ([#12716](https://github.com/UI5/webcomponents/issues/12716)) ([89bb0dd](https://github.com/UI5/webcomponents/commit/89bb0dd62322598bd1ea7ce984eaf0618546a6f2))
84
+
85
+
86
+ ### Features
87
+
88
+ * **ui5-search:** items wrapping ([#12681](https://github.com/UI5/webcomponents/issues/12681)) ([992a70b](https://github.com/UI5/webcomponents/commit/992a70bcd5f1f82266884cfb9137fda252ac6d66))
89
+
90
+
91
+
92
+
93
+
94
+ # [2.17.0-rc.4](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.3...v2.17.0-rc.4) (2025-11-27)
95
+
96
+
97
+ ### Bug Fixes
98
+
99
+ * **ui5-search-item:** action slot visibility ([#12694](https://github.com/UI5/webcomponents/issues/12694)) ([2d34b93](https://github.com/UI5/webcomponents/commit/2d34b9384ecf3a1288705a5c969228d5c55c1278))
100
+
101
+
102
+
103
+
104
+
105
+ # [2.17.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.2...v2.17.0-rc.3) (2025-11-20)
106
+
107
+
108
+ ### Bug Fixes
109
+
110
+ * **ui5-shellbar:** align logo vertically to middle ([#12685](https://github.com/UI5/webcomponents/issues/12685)) ([acff8fa](https://github.com/UI5/webcomponents/commit/acff8fa6727ebed2779cb9387c418346931bda45))
111
+
112
+
113
+ ### Features
114
+
115
+ * **ui5-user-settings-account-view:** introduce new component `UserSettingsAccountView` ([#12658](https://github.com/UI5/webcomponents/issues/12658)) ([b818abb](https://github.com/UI5/webcomponents/commit/b818abb57326ffde13ac431f26d787ee3a294693))
116
+ * **ui5-wizard:** add getFocusDomRef ([#12668](https://github.com/UI5/webcomponents/issues/12668)) ([ba10757](https://github.com/UI5/webcomponents/commit/ba1075762b3afd7770dc11593312db1920d07a0d))
117
+
118
+
119
+
120
+
121
+
122
+ # [2.17.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.1...v2.17.0-rc.2) (2025-11-13)
123
+
124
+
125
+ ### Bug Fixes
126
+
127
+ * **ui5-popover:** fix horizontal placement (Start and End) in rtl mode ([#12606](https://github.com/UI5/webcomponents/issues/12606)) ([8135904](https://github.com/UI5/webcomponents/commit/813590444b04dda4fa089499720d6e2fc4a1f63e))
128
+
129
+
130
+ ### Features
131
+
132
+ * **ui5-view-settings-dialog:** provide part for header ([#12627](https://github.com/UI5/webcomponents/issues/12627)) ([3206b90](https://github.com/UI5/webcomponents/commit/3206b906785424cac46ceeb6f7d9d61131635316)), closes [#12479](https://github.com/UI5/webcomponents/issues/12479)
133
+
134
+
135
+
136
+
137
+
138
+ # [2.17.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.17.0-rc.0...v2.17.0-rc.1) (2025-11-07)
139
+
140
+
141
+ ### Bug Fixes
142
+
143
+ * **ui5-dynamic-page-title:** correct ARIA attribute handling for non-interactive titles ([#12598](https://github.com/UI5/webcomponents/issues/12598)) ([ddbb8d4](https://github.com/UI5/webcomponents/commit/ddbb8d4bed6a75d661a994c8d5737654a7a62e9c)), closes [#12466](https://github.com/UI5/webcomponents/issues/12466)
144
+ * **ui5-search:** fix popup opening when there are no suggestions ([#12640](https://github.com/UI5/webcomponents/issues/12640)) ([2e760c6](https://github.com/UI5/webcomponents/commit/2e760c6760f79de3337977cf51dc3ed62c594b6e)), closes [#12519](https://github.com/UI5/webcomponents/issues/12519)
145
+ * **ui5-shellbar:** image button is now properly read ([#12611](https://github.com/UI5/webcomponents/issues/12611)) ([873abf8](https://github.com/UI5/webcomponents/commit/873abf816101c3f1ca77b35167dd2e94cf18762b))
146
+
147
+
148
+
149
+
150
+
151
+ # [2.17.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.1-rc.0...v2.17.0-rc.0) (2025-11-06)
152
+
153
+
154
+ ### Bug Fixes
155
+
156
+ * **ui5-dynamic-page:** update header action button tooltip text ([#12634](https://github.com/UI5/webcomponents/issues/12634)) ([4cf0976](https://github.com/UI5/webcomponents/commit/4cf097658638c61e5e3bc4b8d196f74b4764c003)), closes [#12617](https://github.com/UI5/webcomponents/issues/12617)
157
+
158
+
159
+ ### Features
160
+
161
+ * **framework:** Custom Illustrations Documentation & API Enhancement ([#12260](https://github.com/UI5/webcomponents/issues/12260)) ([2ee9b02](https://github.com/UI5/webcomponents/commit/2ee9b024e152029394b39324f2bb7dcb73293dbb))
162
+
163
+
164
+
165
+
166
+
167
+ ## [2.16.1-rc.0](https://github.com/UI5/webcomponents/compare/v2.16.0...v2.16.1-rc.0) (2025-11-06)
168
+
169
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
170
+
171
+
172
+
173
+
174
+
175
+ # [2.16.0](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.3...v2.16.0) (2025-11-05)
176
+
177
+
178
+ ### Bug Fixes
179
+
180
+ * **ui5-dynamic-page:** prevent scroll when focusing title/header ([#12588](https://github.com/UI5/webcomponents/issues/12588)) ([cd6da99](https://github.com/UI5/webcomponents/commit/cd6da99302f197e5b04f044172eed3f93ef5102f))
181
+
182
+
183
+ ### Features
184
+
185
+ * **ui5-user-settings-item:** 'pages' is default slot ([#12610](https://github.com/UI5/webcomponents/issues/12610)) ([d303627](https://github.com/UI5/webcomponents/commit/d3036277fcab2a8d6af8129a2ccde7e48d64486d))
186
+
187
+
188
+
189
+
190
+
191
+ # [2.16.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.2...v2.16.0-rc.3) (2025-10-30)
192
+
193
+
194
+ ### Features
195
+
196
+ * **ui5-flexible-column-layout:** public layoutsConfiguration property ([#9290](https://github.com/UI5/webcomponents/issues/9290)) ([a92742c](https://github.com/UI5/webcomponents/commit/a92742cf13cbbfae3a9d07801339477b4b781720))
197
+ * **ui5-user-settings-item:** introduce option to hide icon ([#12512](https://github.com/UI5/webcomponents/issues/12512)) ([33b962f](https://github.com/UI5/webcomponents/commit/33b962f98f3d3427681abdd05c1c50c21debd415))
198
+
199
+
200
+
201
+
202
+
203
+ # [2.16.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.1...v2.16.0-rc.2) (2025-10-23)
204
+
205
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
206
+
207
+
208
+
209
+
210
+
211
+ # [2.16.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.16.0-rc.0...v2.16.0-rc.1) (2025-10-16)
212
+
213
+
214
+ ### Bug Fixes
215
+
216
+ * apply @custom-elements-manifest/analyzer patch ([#12441](https://github.com/UI5/webcomponents/issues/12441)) ([a9ec6e2](https://github.com/UI5/webcomponents/commit/a9ec6e217bb59dbffb0db79c6008cecf77bc0649))
217
+ * missing translations warning ([#12459](https://github.com/UI5/webcomponents/issues/12459)) ([dcd7693](https://github.com/UI5/webcomponents/commit/dcd7693d7a33145fc97898f6ef6efb1beaf0d817))
218
+ * **ui5-dynamic-page:** prevent z-index conflicts with external components ([#12404](https://github.com/UI5/webcomponents/issues/12404)) ([b1303fa](https://github.com/UI5/webcomponents/commit/b1303fa560e6560e6245af6de4b91de1771dec64)), closes [#12360](https://github.com/UI5/webcomponents/issues/12360)
219
+ * **ui5-shellbar:** remove pointer events restriction ([#12428](https://github.com/UI5/webcomponents/issues/12428)) ([797089c](https://github.com/UI5/webcomponents/commit/797089cd74a5649d312e071501a9e9f7765855e0))
220
+ * **ui5-side-navigation:** add parent item to submenu and enhance ACC ([#12457](https://github.com/UI5/webcomponents/issues/12457)) ([69a2413](https://github.com/UI5/webcomponents/commit/69a24138a0220fe724db0e4ac0e02e9814a93867))
221
+
222
+
223
+ ### Features
224
+
225
+ * **ui5-search-item-show-more:** introduce new click event ([#12410](https://github.com/UI5/webcomponents/issues/12410)) ([4aed816](https://github.com/UI5/webcomponents/commit/4aed816c218d7c878e07e62909fca872d0cae061))
226
+ * **ui5-upload-collection:** add noDataHeaderLevel property ([#12458](https://github.com/UI5/webcomponents/issues/12458)) ([aa61398](https://github.com/UI5/webcomponents/commit/aa613983b1c79b56b5a1af375479f5a6c47e6ad5))
227
+ * **ui5-user-menu-account:** introduce additional-info property ([#12482](https://github.com/UI5/webcomponents/issues/12482)) ([12d25a0](https://github.com/UI5/webcomponents/commit/12d25a00185db42b9fba0adfe8e410e25ad6f00c))
228
+
229
+
230
+
231
+
232
+
233
+ # [2.16.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.15.0...v2.16.0-rc.0) (2025-10-09)
234
+
235
+
236
+ ### Bug Fixes
237
+
238
+ * **ui5-dynamic-page:** improve focus visibility for keyboard navigation ([#12372](https://github.com/UI5/webcomponents/issues/12372)) ([4c0ec2b](https://github.com/UI5/webcomponents/commit/4c0ec2bef1ec0f9c5b628f5171e98c931c4b633f)), closes [#11710](https://github.com/UI5/webcomponents/issues/11710)
239
+ * **ui5-shellbar:** remove internal logo size restrictions ([#12418](https://github.com/UI5/webcomponents/issues/12418)) ([bca773a](https://github.com/UI5/webcomponents/commit/bca773ac7f41f730739f1e05bbcbf8e4012cdeaa))
240
+ * **ui5-view-settings-dialog:** remove focus on first item on filter options ([#12379](https://github.com/UI5/webcomponents/issues/12379)) ([737a6e0](https://github.com/UI5/webcomponents/commit/737a6e0f0fc44ae362831feb4e49eb30fbe81893))
241
+
242
+
243
+
244
+
245
+
246
+ # [2.15.0](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.3...v2.15.0) (2025-10-03)
247
+
248
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
249
+
250
+
251
+
252
+
253
+
254
+ # [2.15.0-rc.3](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.2...v2.15.0-rc.3) (2025-10-02)
255
+
256
+
257
+ ### Bug Fixes
258
+
259
+ * **ui5-search:** fix clearing proposedItem when typing ([#12358](https://github.com/UI5/webcomponents/issues/12358)) ([026723e](https://github.com/UI5/webcomponents/commit/026723e38abdb81f2005649fdf30e642782366e7))
260
+ * **ui5-shellbar-item:** correct getFocusDomRef return value ([#12328](https://github.com/UI5/webcomponents/issues/12328)) ([f292890](https://github.com/UI5/webcomponents/commit/f2928907f71ca43b80c89dfeecee9dbe529bae21))
261
+
262
+
263
+
264
+
265
+
266
+ # [2.15.0-rc.2](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.1...v2.15.0-rc.2) (2025-09-25)
267
+
268
+
269
+ ### Bug Fixes
270
+
271
+ * **ui5-dynamic-page:** add dynamic aria-label based on header state ([#12333](https://github.com/UI5/webcomponents/issues/12333)) ([529e765](https://github.com/UI5/webcomponents/commit/529e7656511422a64d5f6df6a81c1a7864858322)), closes [#12274](https://github.com/UI5/webcomponents/issues/12274)
272
+
273
+
274
+
275
+
276
+
277
+ # [2.15.0-rc.1](https://github.com/UI5/webcomponents/compare/v2.15.0-rc.0...v2.15.0-rc.1) (2025-09-25)
278
+
279
+
280
+ ### Bug Fixes
281
+
282
+ * **ui5-dialog:** overstyling of the header is now possible ([#12252](https://github.com/UI5/webcomponents/issues/12252)) ([fbf1584](https://github.com/UI5/webcomponents/commit/fbf158464e5b658354f6de68958e54d8a6bab561)), closes [#12024](https://github.com/UI5/webcomponents/issues/12024)
283
+ * **ui5-search:** fix opening and closing of the search items popover ([#12241](https://github.com/UI5/webcomponents/issues/12241)) ([32077a8](https://github.com/UI5/webcomponents/commit/32077a8a19b9659747f088b9af48ee6ac253fd03))
284
+ * **ui5-shellbar:** correct spacing after expanded search field ([#12298](https://github.com/UI5/webcomponents/issues/12298)) ([ac38505](https://github.com/UI5/webcomponents/commit/ac385052898d78dc12ebf0a0b3f261446f4687b8))
285
+ * **ui5-shellbar:** ensure avatar click event is triggered correctly ([#12055](https://github.com/UI5/webcomponents/issues/12055)) ([5bbb264](https://github.com/UI5/webcomponents/commit/5bbb2645a79df9b75cf2407cc2a1d47d2e4489d4)), closes [#11920](https://github.com/UI5/webcomponents/issues/11920)
286
+
287
+
288
+ ### Features
289
+
290
+ * **ui5-search:** enable fast navigation with F2 ([#12314](https://github.com/UI5/webcomponents/issues/12314)) ([5199bd0](https://github.com/UI5/webcomponents/commit/5199bd0b868b2b1c330fba3c39b26350cf3dac8a))
291
+
292
+
293
+
294
+
295
+
296
+ # [2.15.0-rc.0](https://github.com/UI5/webcomponents/compare/v2.14.0...v2.15.0-rc.0) (2025-09-11)
297
+
298
+
299
+ ### Bug Fixes
300
+
301
+ * **ui5-side-navigation:** prevent TypeError when selected item has no DomRef ([#12286](https://github.com/UI5/webcomponents/issues/12286)) ([f458819](https://github.com/UI5/webcomponents/commit/f4588196459705f6cde35ee17bf23d1660a5191a)), closes [#12261](https://github.com/UI5/webcomponents/issues/12261)
302
+
303
+
304
+ ### Features
305
+
306
+ * **ui5-view-settings-dialog:** add group option ([#11950](https://github.com/UI5/webcomponents/issues/11950)) ([77bd73e](https://github.com/UI5/webcomponents/commit/77bd73ed3b3a2127a59c256598908c7d94dafeee)), closes [#11815](https://github.com/UI5/webcomponents/issues/11815)
307
+
308
+
309
+
310
+
311
+
312
+ # [2.14.0](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.7...v2.14.0) (2025-09-04)
313
+
314
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
315
+
316
+
317
+
318
+
319
+
320
+ # [2.14.0-rc.7](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.6...v2.14.0-rc.7) (2025-09-04)
321
+
322
+
323
+ ### Bug Fixes
324
+
325
+ * **ScrollbarStyles:** introduce centralized scrollbar styling ([#12207](https://github.com/SAP/ui5-webcomponents/issues/12207)) ([5481bb3](https://github.com/SAP/ui5-webcomponents/commit/5481bb3f1e3f78dc3a0cb13a16c97d19f176ed37))
326
+
327
+
328
+ ### Features
329
+
330
+ * **ui5-shellbar:** add preventable search field clear event ([#12227](https://github.com/SAP/ui5-webcomponents/issues/12227)) ([c178acd](https://github.com/SAP/ui5-webcomponents/commit/c178acd70fe0d740af9ab0acc46951e01227dc3c))
331
+
332
+
333
+
334
+
335
+
336
+ # [2.14.0-rc.6](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.5...v2.14.0-rc.6) (2025-08-29)
337
+
338
+
339
+ ### Bug Fixes
340
+
341
+ * **ui5-dynamic-page-title:** conditionally apply ARIA attributes based on interactivity ([#12141](https://github.com/SAP/ui5-webcomponents/issues/12141)) ([ea23724](https://github.com/SAP/ui5-webcomponents/commit/ea237242f10162c664384f6aa59974b7e44b6b81)), closes [#12053](https://github.com/SAP/ui5-webcomponents/issues/12053)
342
+ * **ui5-search:** autocomplete for items loaded with delay ([#12204](https://github.com/SAP/ui5-webcomponents/issues/12204)) ([5af304b](https://github.com/SAP/ui5-webcomponents/commit/5af304bf494badc397372eba6c809e6c10777e99)), closes [#11959](https://github.com/SAP/ui5-webcomponents/issues/11959)
343
+ * **ui5-search:** deselect item on delete/backspace ([#12215](https://github.com/SAP/ui5-webcomponents/issues/12215)) ([6b098cc](https://github.com/SAP/ui5-webcomponents/commit/6b098ccacf76e82370da59115eab88b3d41a1407))
344
+ * **ui5-shellbar-search:** correct min-width ([#12203](https://github.com/SAP/ui5-webcomponents/issues/12203)) ([8231383](https://github.com/SAP/ui5-webcomponents/commit/8231383616e7c86dda91c9638983dbbd804658d2))
345
+ * **ui5-upload-collection:** truncate long file names ([#12211](https://github.com/SAP/ui5-webcomponents/issues/12211)) ([d13ca50](https://github.com/SAP/ui5-webcomponents/commit/d13ca5024d4f80e893f54d17f3a2c4e54224e2cb)), closes [#12166](https://github.com/SAP/ui5-webcomponents/issues/12166)
346
+
347
+
348
+
349
+
350
+
351
+ # [2.14.0-rc.5](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.4...v2.14.0-rc.5) (2025-08-28)
352
+
353
+
354
+ ### Bug Fixes
355
+
356
+ * **ui5-search:** align autocomplete with ui5-combobox ([#12189](https://github.com/SAP/ui5-webcomponents/issues/12189)) ([178f869](https://github.com/SAP/ui5-webcomponents/commit/178f86952490199f5a900ae8be5544dbe1762efd))
357
+ * **ui5-view-settings-dialog:** initially focus first item in filter options ([f25d80e](https://github.com/SAP/ui5-webcomponents/commit/f25d80ee2ccb101392239c8f7d695c30d147eb4b)), closes [#10555](https://github.com/SAP/ui5-webcomponents/issues/10555)
358
+
359
+
360
+ ### Features
361
+
362
+ * **ui5-navigation-layout:** adjust shellbar padding when side navigation is present ([#12175](https://github.com/SAP/ui5-webcomponents/issues/12175)) ([723493f](https://github.com/SAP/ui5-webcomponents/commit/723493f97a763fab456c9d648531ab46ae84f668))
363
+ * **ui5-search-item-show-more:** introduce new show more item ([#11931](https://github.com/SAP/ui5-webcomponents/issues/11931)) ([f133a70](https://github.com/SAP/ui5-webcomponents/commit/f133a709a578155bbc235c275135a9145d0e891d))
364
+
365
+
366
+
367
+
368
+
369
+ # [2.14.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.3...v2.14.0-rc.4) (2025-08-25)
370
+
371
+
372
+ ### Bug Fixes
373
+
374
+ * **ui5-shellbar:** change content slot type ([#12186](https://github.com/SAP/ui5-webcomponents/issues/12186)) ([25b2f3b](https://github.com/SAP/ui5-webcomponents/commit/25b2f3b71e8f0518369987766da4596ca8a2dd98))
375
+
376
+
377
+
378
+
379
+
380
+ # [2.14.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.2...v2.14.0-rc.3) (2025-08-22)
381
+
382
+
383
+ ### Bug Fixes
384
+
385
+ * **ui5-toolbar:** extend search field type to ShellBarSearch ([#12172](https://github.com/SAP/ui5-webcomponents/issues/12172)) ([6bf6727](https://github.com/SAP/ui5-webcomponents/commit/6bf6727e3421edc201b3288478144cd4575fcdae))
386
+
387
+
388
+
389
+
390
+
391
+ # [2.14.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.1...v2.14.0-rc.2) (2025-08-21)
392
+
393
+
394
+ ### Bug Fixes
395
+
396
+ * **u5-search-item:** encode markup ([#12140](https://github.com/SAP/ui5-webcomponents/issues/12140)) ([005f17e](https://github.com/SAP/ui5-webcomponents/commit/005f17efc4e966882cb28acc0edd2bfba87f71a3))
397
+ * **ui5-page:** correct content overlap with shellbar header ([#12124](https://github.com/SAP/ui5-webcomponents/issues/12124)) ([2313daa](https://github.com/SAP/ui5-webcomponents/commit/2313daa098c86a8b6417fb651c496bb360768041))
398
+ * **ui5-search:** improve arrow navigation with grouping ([#12083](https://github.com/SAP/ui5-webcomponents/issues/12083)) ([c428f77](https://github.com/SAP/ui5-webcomponents/commit/c428f77f65967813baa607a379175836c35040a4))
399
+ * **ui5-side-navigation:** expand SideNavigation item activation to Enter with modifier keys ([d660c37](https://github.com/SAP/ui5-webcomponents/commit/d660c37a81c9a6a6c73715ee9889e6ee140d08d2))
400
+
401
+
402
+
403
+
404
+
405
+ # [2.14.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.14.0-rc.0...v2.14.0-rc.1) (2025-08-14)
406
+
407
+
408
+ ### Bug Fixes
409
+
410
+ * **ui5-dynamic-page:** correct pin button tooltip based on pinned state ([#12086](https://github.com/SAP/ui5-webcomponents/issues/12086)) ([b392d46](https://github.com/SAP/ui5-webcomponents/commit/b392d46c349c9e884f54c1a95c506abd8734d514)), closes [#12064](https://github.com/SAP/ui5-webcomponents/issues/12064)
411
+ * **ui5-search-field:** show separator only when needed ([#12113](https://github.com/SAP/ui5-webcomponents/issues/12113)) ([7566649](https://github.com/SAP/ui5-webcomponents/commit/7566649466b23ace65c7d023c38f3712526aace9))
412
+ * **ui5-shellbar:** apply tertiary button color to cancel button ([#12082](https://github.com/SAP/ui5-webcomponents/issues/12082)) ([2d2d673](https://github.com/SAP/ui5-webcomponents/commit/2d2d673508c4ae133710ad3a312c28836297532a)), closes [#11957](https://github.com/SAP/ui5-webcomponents/issues/11957)
413
+ * **ui5-timeline:** implement arrows navigation for inner elements ([#12033](https://github.com/SAP/ui5-webcomponents/issues/12033)) ([f1ce974](https://github.com/SAP/ui5-webcomponents/commit/f1ce97439adb61f13bd8ad9e652488862d96fb8f)), closes [#11785](https://github.com/SAP/ui5-webcomponents/issues/11785)
414
+ * **ui5-wizard:** create a stacking context for wiz-nav ([#12120](https://github.com/SAP/ui5-webcomponents/issues/12120)) ([29dffba](https://github.com/SAP/ui5-webcomponents/commit/29dffba67fe48ee2ad761aef53c8c9ffdf10dbcd))
415
+
416
+
417
+ ### Features
418
+
419
+ * **ui5-illustrated-message:** updated horizon tnt illustrations ([#12084](https://github.com/SAP/ui5-webcomponents/issues/12084)) ([2a87850](https://github.com/SAP/ui5-webcomponents/commit/2a878504c68773d506711364c1693f5b0a3331f5))
420
+ * **ui5-product-switch-item:** added image slot ([#11965](https://github.com/SAP/ui5-webcomponents/issues/11965)) ([79903f4](https://github.com/SAP/ui5-webcomponents/commit/79903f4fbc83a9a67ee851b175c04b9eaf533cdb))
421
+ * **ui5-timeline:** improve keyboard handling ([#12021](https://github.com/SAP/ui5-webcomponents/issues/12021)) ([de3ab96](https://github.com/SAP/ui5-webcomponents/commit/de3ab969e63c870737b58325a7c87c7a82d1952b))
422
+
423
+
424
+
425
+
426
+
427
+ # [2.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0...v2.14.0-rc.0) (2025-08-07)
428
+
429
+
430
+ ### Bug Fixes
431
+
432
+ * **ui5-search:** visual issues ([#12061](https://github.com/SAP/ui5-webcomponents/issues/12061)) ([6aab670](https://github.com/SAP/ui5-webcomponents/commit/6aab670027a9ea08b01f42b2a8467499966990d2)), closes [#11982](https://github.com/SAP/ui5-webcomponents/issues/11982) [#11964](https://github.com/SAP/ui5-webcomponents/issues/11964) [#11981](https://github.com/SAP/ui5-webcomponents/issues/11981) [#11999](https://github.com/SAP/ui5-webcomponents/issues/11999) [#12042](https://github.com/SAP/ui5-webcomponents/issues/12042) [#11955](https://github.com/SAP/ui5-webcomponents/issues/11955)
433
+ * **ui5-shellbar:** separator height is fixed ([#12056](https://github.com/SAP/ui5-webcomponents/issues/12056)) ([0995652](https://github.com/SAP/ui5-webcomponents/commit/0995652783f2abd8afad99610213866d2881b261))
434
+
435
+
436
+
437
+
438
+
439
+ # [2.13.0](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.3...v2.13.0) (2025-08-04)
440
+
441
+
442
+ ### Features
443
+
444
+ * **ui5-popover:** support setting "null" for opener ([#11995](https://github.com/SAP/ui5-webcomponents/issues/11995)) ([7d012aa](https://github.com/SAP/ui5-webcomponents/commit/7d012aa5667143f4bbdbb9310771dc296de12cbe))
445
+
446
+
447
+
448
+
449
+
450
+ # [2.13.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.2...v2.13.0-rc.3) (2025-07-31)
451
+
452
+
453
+ ### Bug Fixes
454
+
455
+ * **ui5-search:** fix focus on collapsed search button ([#12020](https://github.com/SAP/ui5-webcomponents/issues/12020)) ([1956ddd](https://github.com/SAP/ui5-webcomponents/commit/1956ddd8da4ab9d1417fe7919b7c2a794961846b))
456
+ * **ui5-shellbar-search:** consistent touch target size ([#11974](https://github.com/SAP/ui5-webcomponents/issues/11974)) ([37deaba](https://github.com/SAP/ui5-webcomponents/commit/37deaba7d54cd0f0ad15dd7e5ab4ce2d72bae06e))
457
+
458
+
459
+ ### Features
460
+
461
+ * **ui5-menu, ui5-timeline, ui5-calendar-legend, ui5-color-palette:** add getFocusDomRef ([#11997](https://github.com/SAP/ui5-webcomponents/issues/11997)) ([a9b3c69](https://github.com/SAP/ui5-webcomponents/commit/a9b3c6980647a8c84dd32c2500743285e789b3a0)), closes [#11490](https://github.com/SAP/ui5-webcomponents/issues/11490)
462
+ * **ui5-shellbar-search:** auto-open property introduced ([#11961](https://github.com/SAP/ui5-webcomponents/issues/11961)) ([702150b](https://github.com/SAP/ui5-webcomponents/commit/702150bc30fabf579800a2526b4385d365667bee))
463
+
464
+
465
+
466
+
467
+
468
+ # [2.13.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.1...v2.13.0-rc.2) (2025-07-24)
469
+
470
+
471
+ ### Bug Fixes
472
+
473
+ * **ui5-dynamic-page-title:** respect size property changes of the title ([#11845](https://github.com/SAP/ui5-webcomponents/issues/11845)) ([592a857](https://github.com/SAP/ui5-webcomponents/commit/592a8578a9339a508a622b6ffb43f2f26220a4d7))
474
+ * **ui5-illustrated-message:** remove unnecessary line-height overrides ([#11904](https://github.com/SAP/ui5-webcomponents/issues/11904)) ([88617c7](https://github.com/SAP/ui5-webcomponents/commit/88617c7b8e5e70050e328a7222751aaaffd8c0c3)), closes [#11851](https://github.com/SAP/ui5-webcomponents/issues/11851)
475
+ * **ui5-shellbar-branding:** improve logo spacing and RTL support ([#11945](https://github.com/SAP/ui5-webcomponents/issues/11945)) ([1a28847](https://github.com/SAP/ui5-webcomponents/commit/1a288470b6c87c47730672e7bc008235380b0946)), closes [#11897](https://github.com/SAP/ui5-webcomponents/issues/11897)
476
+ * **ui5-shellbar:** search button adjusted to visual design ([#11896](https://github.com/SAP/ui5-webcomponents/issues/11896)) ([524e986](https://github.com/SAP/ui5-webcomponents/commit/524e9861f5eae8ed5d7271ab20fd0bebb5374b00)), closes [#11875](https://github.com/SAP/ui5-webcomponents/issues/11875)
477
+ * **ui5-timeline:** apply correct accessibility semantics ([#11774](https://github.com/SAP/ui5-webcomponents/issues/11774)) ([87412b5](https://github.com/SAP/ui5-webcomponents/commit/87412b58eab6a01969f7a9ef1dd5d6c4563b647f))
478
+ * **ui5-token:** align delete icon tooltip with latest spec ([#11887](https://github.com/SAP/ui5-webcomponents/issues/11887)) ([4e1b019](https://github.com/SAP/ui5-webcomponents/commit/4e1b01973e5e981b643f30b5477ea8523e7637e5)), closes [#11588](https://github.com/SAP/ui5-webcomponents/issues/11588)
479
+
480
+
481
+ ### Features
482
+
483
+ * **ui5-search-item:** add delete search item functionality ([9e992ae](https://github.com/SAP/ui5-webcomponents/commit/9e992aeb5f8f466a9ee4ab2a13a0ed61c838ec5a))
484
+ * **ui5-shellbar:** keyboard support added for home/end ([#11886](https://github.com/SAP/ui5-webcomponents/issues/11886)) ([a5cf4f0](https://github.com/SAP/ui5-webcomponents/commit/a5cf4f0535db8d84312323959f36201118b9e988)), closes [#11789](https://github.com/SAP/ui5-webcomponents/issues/11789)
485
+
486
+
487
+
488
+
489
+
490
+ # [2.13.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.13.0-rc.0...v2.13.0-rc.1) (2025-07-17)
491
+
492
+
493
+ ### Bug Fixes
494
+
495
+ * **ui5-dynamic-page:** remove aria-expanded from header element ([#11895](https://github.com/SAP/ui5-webcomponents/issues/11895)) ([14fd133](https://github.com/SAP/ui5-webcomponents/commit/14fd1334f46144b695a11d381f4c88b76528d6bc)), closes [#11633](https://github.com/SAP/ui5-webcomponents/issues/11633)
496
+ * **ui5-side-navigation:** add padding at the end of the text ([#11890](https://github.com/SAP/ui5-webcomponents/issues/11890)) ([8cd0506](https://github.com/SAP/ui5-webcomponents/commit/8cd05060498b7c983e8170f95813c997c95bd774))
497
+
498
+
499
+ ### Features
500
+
501
+ * **ui5-combobox, ui5-multi-combo-box, ui5-input, ui5-multi-input:** link navigation in value state ([#11575](https://github.com/SAP/ui5-webcomponents/issues/11575)) ([3f80faa](https://github.com/SAP/ui5-webcomponents/commit/3f80faa4c3fbacf129b6f3fe3bebb92e3b65759f))
502
+
503
+
504
+
505
+
506
+
507
+ # [2.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0...v2.13.0-rc.0) (2025-07-10)
508
+
509
+
510
+ ### Bug Fixes
511
+
512
+ * **ui5-search:** show delete button on item hover ([#11850](https://github.com/SAP/ui5-webcomponents/issues/11850)) ([87cd3c7](https://github.com/SAP/ui5-webcomponents/commit/87cd3c7bf5eafa1b0c9eba16cc31f1d2478484f4))
513
+
514
+
515
+ ### Features
516
+
517
+ * **ui5-breadcrumbs, ui5-meadia-gallery:** getFocusDomRef added ([#11869](https://github.com/SAP/ui5-webcomponents/issues/11869)) ([130e9c5](https://github.com/SAP/ui5-webcomponents/commit/130e9c5c60505c3c627620e377efdf80e1745d6d)), closes [#11483](https://github.com/SAP/ui5-webcomponents/issues/11483)
518
+
519
+
520
+
521
+
522
+
523
+ # [2.12.0](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.3...v2.12.0) (2025-07-04)
524
+
525
+
526
+ ### Bug Fixes
527
+
528
+ * **ui5-flexible-column-layout:** prevent layout issue ([#11805](https://github.com/SAP/ui5-webcomponents/issues/11805)) ([5b17cc8](https://github.com/SAP/ui5-webcomponents/commit/5b17cc8a4f3391b8b5735a9c679bc7fd48ae55ed))
529
+
530
+
531
+ ### Features
532
+
533
+ * **ui5-shellbar-branding:** introduce new component ([#11320](https://github.com/SAP/ui5-webcomponents/issues/11320)) ([951aa44](https://github.com/SAP/ui5-webcomponents/commit/951aa446da159e466dc672cfd87a338380e62521))
534
+
535
+
536
+
537
+
538
+
539
+ # [2.12.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.2...v2.12.0-rc.3) (2025-07-03)
540
+
541
+
542
+ ### Bug Fixes
543
+
544
+ * **ui5-shellbar:** button styles for compact aligned ([#11801](https://github.com/SAP/ui5-webcomponents/issues/11801)) ([6cdc498](https://github.com/SAP/ui5-webcomponents/commit/6cdc498b9f7856f7c3e624906f8e6ce4eb7939eb))
545
+ * **ui5-user-menu:** correct design inconsistencies ([#11829](https://github.com/SAP/ui5-webcomponents/issues/11829)) ([32e4284](https://github.com/SAP/ui5-webcomponents/commit/32e428440dcfa4416673d1a4dd461521e67b7ccb))
546
+ * **ui5-view-settings-dialog:** change announce type for the screen reader when view settings are reset ([#11668](https://github.com/SAP/ui5-webcomponents/issues/11668)) ([6793d09](https://github.com/SAP/ui5-webcomponents/commit/6793d098bc9e8d242acbf4f8b23fb5af6f46ff77))
547
+
548
+
549
+ ### Features
550
+
551
+ * **ui5-avatar-group, ui5-product-switch:** getFocusDomRef added ([#11762](https://github.com/SAP/ui5-webcomponents/issues/11762)) ([0954f33](https://github.com/SAP/ui5-webcomponents/commit/0954f331ee36eeea785347bfbede98f186fb04b0)), closes [#11483](https://github.com/SAP/ui5-webcomponents/issues/11483)
552
+ * **ui5-user-menu:** add item groups with checkable menu items ([#11832](https://github.com/SAP/ui5-webcomponents/issues/11832)) ([d0758fd](https://github.com/SAP/ui5-webcomponents/commit/d0758fd8c7af19dc25c5463c2dd8bb57b7599f52))
553
+
554
+
555
+
556
+
557
+
558
+ # [2.12.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.1...v2.12.0-rc.2) (2025-06-26)
559
+
560
+
561
+ ### Bug Fixes
562
+
563
+ * **ui5-shellbar:** correct search visibility toggle ([#11724](https://github.com/SAP/ui5-webcomponents/issues/11724)) ([8c3cba9](https://github.com/SAP/ui5-webcomponents/commit/8c3cba9681136c70c81d8c8cf09e0a588a025a9a))
564
+ * **ui5-side-navigation:** focus is correct after selecting overflow item ([#11702](https://github.com/SAP/ui5-webcomponents/issues/11702)) ([bb22451](https://github.com/SAP/ui5-webcomponents/commit/bb2245177bf388fe5bc972ca65839ca41ccb82bc))
565
+
566
+
567
+ ### Features
568
+
569
+ * **ui5-menu:** menu item groups with checkable menu items ([#10028](https://github.com/SAP/ui5-webcomponents/issues/10028)) ([161af0f](https://github.com/SAP/ui5-webcomponents/commit/161af0fe9912145ddd4fe19f4d71c8aa23db2e15))
570
+
571
+
572
+
573
+
574
+
575
+ # [2.12.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.12.0-rc.0...v2.12.0-rc.1) (2025-06-19)
576
+
577
+
578
+ ### Bug Fixes
579
+
580
+ * **ui5-dynamic-page:** remove aria-expanded and aria-label when no header content is present ([#11626](https://github.com/SAP/ui5-webcomponents/issues/11626)) ([1cdcdd4](https://github.com/SAP/ui5-webcomponents/commit/1cdcdd461484c2a8d801c1f68db8ba5666c8ea0b)), closes [#11570](https://github.com/SAP/ui5-webcomponents/issues/11570)
581
+ * **ui5-shellbar:** allow custom logo width ([#11727](https://github.com/SAP/ui5-webcomponents/issues/11727)) ([2645efe](https://github.com/SAP/ui5-webcomponents/commit/2645efeb9fa4a9e490074c33d5c0b7c28a36731b))
582
+ * **ui5-shellbar:** arrow key navigation inputs support ([#11684](https://github.com/SAP/ui5-webcomponents/issues/11684)) ([404e96b](https://github.com/SAP/ui5-webcomponents/commit/404e96b24fcb2f49b8e21d9c05939209cbee9b71))
583
+ * **ui5-wizard:** define min-width for header steps separators ([#11581](https://github.com/SAP/ui5-webcomponents/issues/11581)) ([cbd2a54](https://github.com/SAP/ui5-webcomponents/commit/cbd2a54ba1ce0f9a39c0599c0179c47daa039d27)), closes [#9672](https://github.com/SAP/ui5-webcomponents/issues/9672)
584
+
585
+
586
+
587
+
588
+
589
+ # [2.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0...v2.12.0-rc.0) (2025-06-12)
590
+
591
+
592
+ ### Bug Fixes
593
+
594
+ * **ui5-busy-indicator:** make text and circles determine indicator dimensions when there is no content ([#11223](https://github.com/SAP/ui5-webcomponents/issues/11223)) ([10c0cfd](https://github.com/SAP/ui5-webcomponents/commit/10c0cfddf56ceea2c4481e0c971b30a2a26f602c))
595
+ * **ui5-shellbar:** prevent logo click event from firing twice ([#11631](https://github.com/SAP/ui5-webcomponents/issues/11631)) ([5b08a48](https://github.com/SAP/ui5-webcomponents/commit/5b08a48abb2177dd00ebab93bb2b62eef4e64e77)), closes [#11506](https://github.com/SAP/ui5-webcomponents/issues/11506)
596
+ * **ui5-upload-collection:** prevent `item-delete` event from firing when item name is deleted ([#11625](https://github.com/SAP/ui5-webcomponents/issues/11625)) ([fe048b0](https://github.com/SAP/ui5-webcomponents/commit/fe048b0d304a42620d738d0822d07e8b292be043))
597
+
598
+
599
+
600
+
601
+
602
+ # [2.11.0](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.4...v2.11.0) (2025-06-05)
603
+
604
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
605
+
606
+
607
+
608
+
609
+
610
+ # [2.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.3...v2.11.0-rc.4) (2025-06-05)
611
+
612
+
613
+ ### Bug Fixes
614
+
615
+ * **ui5-combobox/tokenizer/wizard/input:** extract button texts to vars ([#11549](https://github.com/SAP/ui5-webcomponents/issues/11549)) ([c8daa25](https://github.com/SAP/ui5-webcomponents/commit/c8daa25854c5b9c737b2995df43b562230ee3c88))
616
+ * **ui5-flexible-column-layout:** add aria-valuenow attribute to separators ([#11540](https://github.com/SAP/ui5-webcomponents/issues/11540)) ([3ba75d6](https://github.com/SAP/ui5-webcomponents/commit/3ba75d6a40d70af29cb479e8323d4e0472bcae01)), closes [#11533](https://github.com/SAP/ui5-webcomponents/issues/11533)
617
+ * **ui5-shellbar:** remove empty logo from tab chain ([#11623](https://github.com/SAP/ui5-webcomponents/issues/11623)) ([51661f0](https://github.com/SAP/ui5-webcomponents/commit/51661f05a6557adbe55b15ffbc7babb1e4d64cb5)), closes [#11595](https://github.com/SAP/ui5-webcomponents/issues/11595)
618
+ * **ui5-side-navigation:** group name is now announced by screen reader ([#11600](https://github.com/SAP/ui5-webcomponents/issues/11600)) ([4848317](https://github.com/SAP/ui5-webcomponents/commit/48483179d43b5c94f003584d03fe8809f7e5be31)), closes [#11599](https://github.com/SAP/ui5-webcomponents/issues/11599)
619
+
620
+
621
+ ### Features
622
+
623
+ * **ui5-illustrated-message:** added new illustration types ([#11560](https://github.com/SAP/ui5-webcomponents/issues/11560)) ([5517e2c](https://github.com/SAP/ui5-webcomponents/commit/5517e2c84add4d88077e8dda7c82641eb672d7ee))
624
+ * **ui5-side-navigation:** make disabled items focusable ([#11530](https://github.com/SAP/ui5-webcomponents/issues/11530)) ([617cef5](https://github.com/SAP/ui5-webcomponents/commit/617cef5c221fafcc1acfb8bec377ae7e7a8cba00))
625
+
626
+
627
+
628
+
629
+
630
+ # [2.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.2...v2.11.0-rc.3) (2025-05-29)
631
+
632
+
633
+ ### Bug Fixes
634
+
635
+ * **ui5-search:** preserve value before open on mobile ([#11571](https://github.com/SAP/ui5-webcomponents/issues/11571)) ([8ee0387](https://github.com/SAP/ui5-webcomponents/commit/8ee0387ea8083897c1c2e7c64bebd44d4fdb7e18)), closes [#11314](https://github.com/SAP/ui5-webcomponents/issues/11314)
636
+
637
+
638
+ ### Features
639
+
640
+ * add `Assets-node` module for node/ssr env ([#11522](https://github.com/SAP/ui5-webcomponents/issues/11522)) ([4a874cc](https://github.com/SAP/ui5-webcomponents/commit/4a874cc1f88e440f8bce4f9f0757df1af2a04314))
641
+ * **ui5-search-field:** introduce advanced filtering ([#11428](https://github.com/SAP/ui5-webcomponents/issues/11428)) ([bf8a158](https://github.com/SAP/ui5-webcomponents/commit/bf8a158d493cd7472938a66e2fe22d6091467be9))
642
+ * **ui5-search-item:** byline item support ([#11503](https://github.com/SAP/ui5-webcomponents/issues/11503)) ([d8aec50](https://github.com/SAP/ui5-webcomponents/commit/d8aec50480222572df589c47df693d06e2887837))
643
+ * **ui5-shellbar:** replace custom badges with ButtonBadge ([#11284](https://github.com/SAP/ui5-webcomponents/issues/11284)) ([4574d87](https://github.com/SAP/ui5-webcomponents/commit/4574d87917f08ee0658eb8dbd0425ff2ff68590d))
644
+
645
+
646
+
647
+
648
+
649
+ # [2.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.1...v2.11.0-rc.2) (2025-05-22)
650
+
651
+
652
+ ### Bug Fixes
653
+
654
+ * **ui5-side-navigation:** change CSS param 'sapFontSemiboldFamily' to 'sapFontSemiboldDuplexFamily' ([#11529](https://github.com/SAP/ui5-webcomponents/issues/11529)) ([0b3a47b](https://github.com/SAP/ui5-webcomponents/commit/0b3a47beaadd70c781d7c5330d85eda1e8bfd987)), closes [#11525](https://github.com/SAP/ui5-webcomponents/issues/11525)
655
+ * **ui5-side-navigation:** right arrow and left arrow behavior fixed ([#11434](https://github.com/SAP/ui5-webcomponents/issues/11434)) ([d31e202](https://github.com/SAP/ui5-webcomponents/commit/d31e202047c2885482f167111dfb8f9f85f9201f))
656
+ * **ui5-timeline-item:** remove focus getting cut ([#11532](https://github.com/SAP/ui5-webcomponents/issues/11532)) ([378c13c](https://github.com/SAP/ui5-webcomponents/commit/378c13c1755e00876778d42fa9498a245a8dbbdf))
657
+
658
+
659
+
660
+
661
+
662
+ # [2.11.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.11.0-rc.0...v2.11.0-rc.1) (2025-05-15)
663
+
664
+
665
+ ### Bug Fixes
666
+
667
+ * **ui5-side-navigation:** disabled groups no longer interactive ([#11404](https://github.com/SAP/ui5-webcomponents/issues/11404)) ([8ec71e3](https://github.com/SAP/ui5-webcomponents/commit/8ec71e372f5397a585068b83d652491ec5746243)), closes [#11384](https://github.com/SAP/ui5-webcomponents/issues/11384)
668
+ * **ui5-side-navigation:** group as first item works without error ([#11406](https://github.com/SAP/ui5-webcomponents/issues/11406)) ([0ffbede](https://github.com/SAP/ui5-webcomponents/commit/0ffbedecf962d319e5fb1a9fb495676dbe7a1c47)), closes [#11383](https://github.com/SAP/ui5-webcomponents/issues/11383)
669
+ * **ui5-upload-collection:** fix file name width ([#11484](https://github.com/SAP/ui5-webcomponents/issues/11484)) ([62a4094](https://github.com/SAP/ui5-webcomponents/commit/62a4094e4842a7687bb17bd92b820dcc4a930023)), closes [#11463](https://github.com/SAP/ui5-webcomponents/issues/11463)
670
+
671
+
672
+
673
+
674
+
675
+ # [2.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0...v2.11.0-rc.0) (2025-05-08)
676
+
677
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
678
+
679
+
680
+
681
+
682
+
683
+ # [2.10.0](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.3...v2.10.0) (2025-05-07)
684
+
685
+
686
+ ### Bug Fixes
687
+
688
+ * **ui5-illustrated-message:** change SVG inline styling to proper attributes ([#11455](https://github.com/SAP/ui5-webcomponents/issues/11455)) ([22f16c3](https://github.com/SAP/ui5-webcomponents/commit/22f16c3db20a7196d00ea44fa9f591107e4c977c)), closes [#11354](https://github.com/SAP/ui5-webcomponents/issues/11354)
689
+ * **ui5-illustrated-message:** replace inline fill style with fill attribute ([#11448](https://github.com/SAP/ui5-webcomponents/issues/11448)) ([54389b5](https://github.com/SAP/ui5-webcomponents/commit/54389b5eb9a0dc8191af8b10320ef20a042d2592))
690
+ * **ui5-side-navigation:** collapsed parent items appear as selected if one of its child items is selected ([#11400](https://github.com/SAP/ui5-webcomponents/issues/11400)) ([387e418](https://github.com/SAP/ui5-webcomponents/commit/387e418084539c87081afbbbe563fade84fb5d82))
691
+
692
+
693
+ ### Features
694
+
695
+ * **ui5-illustrated-message:** decorative property added ([#11442](https://github.com/SAP/ui5-webcomponents/issues/11442)) ([d17d06b](https://github.com/SAP/ui5-webcomponents/commit/d17d06bae818055459d954fafd3cdb238d96cca0))
696
+
697
+
698
+
699
+
700
+
701
+ # [2.10.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.2...v2.10.0-rc.3) (2025-05-01)
702
+
703
+
704
+ ### Bug Fixes
705
+
706
+ * **ui5-dynamic-page:** change the container-type ([#11325](https://github.com/SAP/ui5-webcomponents/issues/11325)) ([8402ec8](https://github.com/SAP/ui5-webcomponents/commit/8402ec8cd47c3cf2b3f1ff54f5703e8a1545d0f9)), closes [#11309](https://github.com/SAP/ui5-webcomponents/issues/11309)
707
+ * **ui5-flexible-column-layout:** column visibility issue fixed ([#11416](https://github.com/SAP/ui5-webcomponents/issues/11416)) ([996de94](https://github.com/SAP/ui5-webcomponents/commit/996de9498bf6b4f4befaf0e15f0489c2d6cc47b9))
708
+ * **ui5-flexible-column-layout:** disable resizing for both separators ([#11411](https://github.com/SAP/ui5-webcomponents/issues/11411)) ([ccd18b1](https://github.com/SAP/ui5-webcomponents/commit/ccd18b1d539857fad33b869523284df99724d77b)), closes [#11402](https://github.com/SAP/ui5-webcomponents/issues/11402)
709
+ * **ui5-flexible-column-layout:** min width of column adjusted to spec ([#11367](https://github.com/SAP/ui5-webcomponents/issues/11367)) ([e424f4e](https://github.com/SAP/ui5-webcomponents/commit/e424f4ea83662758394946b27434afe13a62ae54)), closes [#10997](https://github.com/SAP/ui5-webcomponents/issues/10997)
710
+ * **ui5-shellbar:** fixed avatar font-size ([#11316](https://github.com/SAP/ui5-webcomponents/issues/11316)) ([d672c15](https://github.com/SAP/ui5-webcomponents/commit/d672c15db8eb8843a2ce899bbb8af6b7561fd37a))
711
+ * **ui5-shellbar:** fixed avatar font-size var ([#11424](https://github.com/SAP/ui5-webcomponents/issues/11424)) ([06d206e](https://github.com/SAP/ui5-webcomponents/commit/06d206eaefa8416c784efdacc8e9c8860f849311))
712
+ * **ui5-side-navigation:** improve accessibility for groups ([#11357](https://github.com/SAP/ui5-webcomponents/issues/11357)) ([a5531de](https://github.com/SAP/ui5-webcomponents/commit/a5531de5237b475fa876efeac277811f8cdd8e7d)), closes [#11349](https://github.com/SAP/ui5-webcomponents/issues/11349)
713
+ * **ui5-side-navigation:** update font-weight for first level items ([#11409](https://github.com/SAP/ui5-webcomponents/issues/11409)) ([a894216](https://github.com/SAP/ui5-webcomponents/commit/a894216adbb0bfdbb707bf869cf0309d0638d914)), closes [#11403](https://github.com/SAP/ui5-webcomponents/issues/11403)
714
+
715
+
716
+ ### Features
717
+
718
+ * **ui5-button:** make click button preventable ([#11318](https://github.com/SAP/ui5-webcomponents/issues/11318)) ([1f4aa92](https://github.com/SAP/ui5-webcomponents/commit/1f4aa927d2841e0c51f665ab2bdb851b1d030c35))
719
+ * **ui5-shellbar-search:** initial implementation ([#11398](https://github.com/SAP/ui5-webcomponents/issues/11398)) ([ca372d0](https://github.com/SAP/ui5-webcomponents/commit/ca372d0f4fa5a97ce82f3eb72d973ee2f0d54c0b))
720
+
721
+
722
+
723
+
724
+
725
+ # [2.10.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.1...v2.10.0-rc.2) (2025-04-24)
726
+
727
+
728
+ ### Bug Fixes
729
+
730
+ * **ui5-side-navigation:** change font-family of the text of the items to semi-bold ([89d9924](https://github.com/SAP/ui5-webcomponents/commit/89d99246f93af5d8d9263b5eba1008ff3c048bf2))
731
+ * **ui5-side-navigation:** correct hover styles of selected items ([#11319](https://github.com/SAP/ui5-webcomponents/issues/11319)) ([3ce13c8](https://github.com/SAP/ui5-webcomponents/commit/3ce13c8b6a985523399daebff3c9ee618886b89c)), closes [#11297](https://github.com/SAP/ui5-webcomponents/issues/11297)
732
+ * **ui5-side-navigation:** fix disabled items and tooltips ([#11333](https://github.com/SAP/ui5-webcomponents/issues/11333)) ([7151dae](https://github.com/SAP/ui5-webcomponents/commit/7151daef6abbf8a68ef8b0f7c0909134124d8b10))
733
+
734
+
735
+
736
+
737
+
738
+ # [2.10.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.10.0-rc.0...v2.10.0-rc.1) (2025-04-17)
739
+
740
+
741
+ ### Bug Fixes
742
+
743
+ * **ui5-form:** propagate `itemSpacing` properly ([#11312](https://github.com/SAP/ui5-webcomponents/issues/11312)) ([32b4fb2](https://github.com/SAP/ui5-webcomponents/commit/32b4fb23ff3baab75978b29ae8eb8da6f90c0652)), closes [#11307](https://github.com/SAP/ui5-webcomponents/issues/11307)
744
+ * **ui5-side-navigation:** update CSS styles ([#11208](https://github.com/SAP/ui5-webcomponents/issues/11208)) ([076f910](https://github.com/SAP/ui5-webcomponents/commit/076f910c16a530537ab60f145fce2343e6ca604b)), closes [#11171](https://github.com/SAP/ui5-webcomponents/issues/11171)
745
+
746
+
747
+ ### Features
748
+
749
+ * **ui5-shellbar:** add branding area accessibility attributes ([#11238](https://github.com/SAP/ui5-webcomponents/issues/11238)) ([7d6fdeb](https://github.com/SAP/ui5-webcomponents/commit/7d6fdeb90b9914bef37b6e09f8cab2f2d7c03bc7)), closes [#6826](https://github.com/SAP/ui5-webcomponents/issues/6826) [#8708](https://github.com/SAP/ui5-webcomponents/issues/8708)
750
+ * **ui5-shellbar:** introduce async search btn getter ([#11338](https://github.com/SAP/ui5-webcomponents/issues/11338)) ([d5526dc](https://github.com/SAP/ui5-webcomponents/commit/d5526dc13410fb9253701ce29fb9b946571d983d))
751
+
752
+
753
+
754
+
755
+
756
+ # [2.10.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.1-rc.0...v2.10.0-rc.0) (2025-04-14)
757
+
758
+
759
+ ### Bug Fixes
760
+
761
+ * **ui5-side-navigation:** remove separator line ([#11306](https://github.com/SAP/ui5-webcomponents/issues/11306)) ([6480a06](https://github.com/SAP/ui5-webcomponents/commit/6480a0619d9819146aa5e204a66190944e1a4c32))
762
+
763
+
764
+
765
+
766
+
767
+ ## [2.9.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0...v2.9.1-rc.0) (2025-04-10)
768
+
769
+
770
+ ### Bug Fixes
771
+
772
+ * **ui5-dynamic-page:** adjust scroll padding for header/footer ([#11193](https://github.com/SAP/ui5-webcomponents/issues/11193)) ([d35b9ce](https://github.com/SAP/ui5-webcomponents/commit/d35b9ce60bc6e2af5ae5113b7018fc0a12489dc0)), closes [#10847](https://github.com/SAP/ui5-webcomponents/issues/10847)
773
+ * **ui5-navigation-layout:** adjust `z-index` values ([#11212](https://github.com/SAP/ui5-webcomponents/issues/11212)) ([d7a368a](https://github.com/SAP/ui5-webcomponents/commit/d7a368a02ce3d8483d36e1f11fa4fc6b5ebc3ce3)), closes [#11174](https://github.com/SAP/ui5-webcomponents/issues/11174)
774
+ * **ui5-search:** stabilitze mobile test ([#11292](https://github.com/SAP/ui5-webcomponents/issues/11292)) ([8a0d742](https://github.com/SAP/ui5-webcomponents/commit/8a0d74293cb20278049f6ba3f231207fc0a6a432))
775
+
776
+
777
+
778
+
779
+
780
+ # [2.9.0](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.3...v2.9.0) (2025-04-04)
781
+
782
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
783
+
784
+
785
+
786
+
787
+
788
+ # [2.9.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.2...v2.9.0-rc.3) (2025-04-03)
789
+
790
+
791
+ ### Bug Fixes
792
+
793
+ * **framework:** fix fetching "id" (indonesian) language ([#11251](https://github.com/SAP/ui5-webcomponents/issues/11251)) ([9a36df5](https://github.com/SAP/ui5-webcomponents/commit/9a36df5dc2191758abd665d6fb1014d645e322f7)), closes [#11233](https://github.com/SAP/ui5-webcomponents/issues/11233)
794
+ * **ui5-dynamic-page:** validate aria-controls reference before rendering ([#11033](https://github.com/SAP/ui5-webcomponents/issues/11033)) ([f1a3ac2](https://github.com/SAP/ui5-webcomponents/commit/f1a3ac2a8e0fb0ddcebd7150594e98ad61e4f475)), closes [#10987](https://github.com/SAP/ui5-webcomponents/issues/10987)
795
+ * **ui5-shellbar:** improve accessibility for shellbar item count announcement ([#11201](https://github.com/SAP/ui5-webcomponents/issues/11201)) ([fd12ada](https://github.com/SAP/ui5-webcomponents/commit/fd12adae820106b78780f869dad6d76ea12747e1)), closes [#11198](https://github.com/SAP/ui5-webcomponents/issues/11198)
796
+ * **ui5-view-settings-dialog:** provide accessible name for the dialog ([#11207](https://github.com/SAP/ui5-webcomponents/issues/11207)) ([3bde951](https://github.com/SAP/ui5-webcomponents/commit/3bde951722cfa2f4275dbf2399c63e7bdc10a47f)), closes [#10557](https://github.com/SAP/ui5-webcomponents/issues/10557)
797
+
798
+
799
+
800
+
801
+
802
+ # [2.9.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.1...v2.9.0-rc.2) (2025-03-27)
803
+
804
+
805
+ ### Bug Fixes
806
+
807
+ * **framework:** fix find first focusable element ([#10984](https://github.com/SAP/ui5-webcomponents/issues/10984)) ([40303d5](https://github.com/SAP/ui5-webcomponents/commit/40303d54ce3fcc06ad980e12224be9f13ce8a983))
808
+ * **ui5-dynamic-page:** correct header snap/pin inconsistency at page top ([#11098](https://github.com/SAP/ui5-webcomponents/issues/11098)) ([43fe1e0](https://github.com/SAP/ui5-webcomponents/commit/43fe1e0b5c55809c10dbba91c2e31628ba9b841c)), closes [#11088](https://github.com/SAP/ui5-webcomponents/issues/11088)
809
+ * **ui5-search:** change growing button to footer button ([#11155](https://github.com/SAP/ui5-webcomponents/issues/11155)) ([67eb583](https://github.com/SAP/ui5-webcomponents/commit/67eb583441db829efebfb9e46f1bd81aa22c3d57))
810
+ * **ui5-search:** fix failing test ([#11190](https://github.com/SAP/ui5-webcomponents/issues/11190)) ([876d629](https://github.com/SAP/ui5-webcomponents/commit/876d629919dfcfbcbb4afc58a5e29b6fc883b236))
811
+ * **ui5-view-settings-dialog:** provide additional filters count description ([#11042](https://github.com/SAP/ui5-webcomponents/issues/11042)) ([a6a86e8](https://github.com/SAP/ui5-webcomponents/commit/a6a86e87408ea68c09c0671c569f00b8d071797e)), closes [#11040](https://github.com/SAP/ui5-webcomponents/issues/11040)
812
+
813
+
814
+ ### Features
815
+
816
+ * **ui5-search:** add samples to playground ([#11148](https://github.com/SAP/ui5-webcomponents/issues/11148)) ([0571300](https://github.com/SAP/ui5-webcomponents/commit/0571300e28f8ecebfe86fe98d3c9eda389028b1c))
817
+ * **ui5-side-navigation:** add accessibleName property ([#11127](https://github.com/SAP/ui5-webcomponents/issues/11127)) ([db269e8](https://github.com/SAP/ui5-webcomponents/commit/db269e8ca4ecf74d8fd2d708822bbf0a395ed3c8))
818
+ * **ui5-side-navigation:** reduce space between items in popovers ([#11165](https://github.com/SAP/ui5-webcomponents/issues/11165)) ([cd0f1eb](https://github.com/SAP/ui5-webcomponents/commit/cd0f1ebca7746ae039f8f0ee6dc0b3bb4e198bba))
819
+ * **ui5-user-menu:** design enhancements ([#11166](https://github.com/SAP/ui5-webcomponents/issues/11166)) ([d3580ad](https://github.com/SAP/ui5-webcomponents/commit/d3580adacf83d7fa636927f6e6c3b0d20df50d27))
820
+
821
+
822
+
823
+
824
+
825
+ # [2.9.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.9.0-rc.0...v2.9.0-rc.1) (2025-03-20)
826
+
827
+
828
+ ### Bug Fixes
829
+
830
+ * **ui5-shellbar:** fix separators visibility when items are hidden ([#11058](https://github.com/SAP/ui5-webcomponents/issues/11058)) ([d721e87](https://github.com/SAP/ui5-webcomponents/commit/d721e87263313f34783636cb65aa325c18257ef6))
831
+ * **ui5-shellbar:** sap home no longer hard coded in title readings ([#11034](https://github.com/SAP/ui5-webcomponents/issues/11034)) ([2810da6](https://github.com/SAP/ui5-webcomponents/commit/2810da6c54dc099eb693a804adfa7a6bb9d26048)), closes [#10970](https://github.com/SAP/ui5-webcomponents/issues/10970)
832
+
833
+
834
+ ### Features
835
+
836
+ * **ui5-search:** introduce experimental component ([#11125](https://github.com/SAP/ui5-webcomponents/issues/11125)) ([48f16fb](https://github.com/SAP/ui5-webcomponents/commit/48f16fb1d05957b3779aeb4868f3cebe5cac5bc2))
837
+ * **ui5-shellbar:** accessibility attributes added to action buttons ([#10951](https://github.com/SAP/ui5-webcomponents/issues/10951)) ([c8c3e19](https://github.com/SAP/ui5-webcomponents/commit/c8c3e1941ab98c02ffa97c4a700d38619cb0326f))
838
+ * **ui5-side-navigation:** enable the web component in popover placement ([#10701](https://github.com/SAP/ui5-webcomponents/issues/10701)) ([a4565fe](https://github.com/SAP/ui5-webcomponents/commit/a4565fe3a3ecb5a3d150942ed72faabbbc770b4a))
839
+ * **ui5-side-navigation:** update visual design ([#11046](https://github.com/SAP/ui5-webcomponents/issues/11046)) ([b5d83a8](https://github.com/SAP/ui5-webcomponents/commit/b5d83a8a0bab9a18d796d9a9515f8e9b5a47c38f))
840
+ * **ui5-user-menu:** design enhancements ([#11124](https://github.com/SAP/ui5-webcomponents/issues/11124)) ([5164035](https://github.com/SAP/ui5-webcomponents/commit/516403532ac4fd0e1c12ca2c4ad79c4091f615ca))
841
+
842
+
843
+
844
+
845
+
846
+ # [2.9.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.1-rc.0...v2.9.0-rc.0) (2025-03-13)
847
+
848
+
849
+ ### Bug Fixes
850
+
851
+ * **ui5-li-notification:** footer no longer overflows ([#11030](https://github.com/SAP/ui5-webcomponents/issues/11030)) ([41c23eb](https://github.com/SAP/ui5-webcomponents/commit/41c23eb908619dd426fa48275732c4152ca6288a))
852
+
853
+
854
+
855
+
856
+
857
+ ## [2.8.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0...v2.8.1-rc.0) (2025-03-06)
858
+
859
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
860
+
861
+
862
+
863
+
864
+
865
+ # [2.8.0](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.3...v2.8.0) (2025-03-04)
866
+
867
+
868
+ ### Bug Fixes
869
+
870
+ * **ui5-shellbar:** correct matching content check ([#10921](https://github.com/SAP/ui5-webcomponents/issues/10921)) ([8782951](https://github.com/SAP/ui5-webcomponents/commit/87829511dd2057b3cf7ff1f28fb04ce00df19ffc))
871
+ * **ui5-shellbar:** menu-item-click click event is now properly fired ([#10983](https://github.com/SAP/ui5-webcomponents/issues/10983)) ([27c8bb7](https://github.com/SAP/ui5-webcomponents/commit/27c8bb7ba6e9d153d3da2ad2d976e7ab4cc13714)), closes [#10950](https://github.com/SAP/ui5-webcomponents/issues/10950)
872
+ * **user-menu:** focus on user menu when it is opened ([#10967](https://github.com/SAP/ui5-webcomponents/issues/10967)) ([a9e2868](https://github.com/SAP/ui5-webcomponents/commit/a9e28689eb80c225244ee5a1f7587fdd6ec48319))
873
+
874
+
875
+ ### Features
876
+
877
+ * **framework:** add `.currentTarget` to the type of event handler in TSX and UI5CustomEvent ([#10957](https://github.com/SAP/ui5-webcomponents/issues/10957)) ([f56753c](https://github.com/SAP/ui5-webcomponents/commit/f56753c5142d6e817b05d7e33bd160f09c2d5205))
878
+ * **ui5-side-navigation:** improve interaction of unselectable parent items in collapsed mode ([#10939](https://github.com/SAP/ui5-webcomponents/issues/10939)) ([20507fa](https://github.com/SAP/ui5-webcomponents/commit/20507fa405c1af2469d98905d6b499e55067c7a6))
879
+ * **user-menu:** change api name from showAddAccount to showEditAccounts ([#10966](https://github.com/SAP/ui5-webcomponents/issues/10966)) ([aa9cf2d](https://github.com/SAP/ui5-webcomponents/commit/aa9cf2d55af42ec6880d98452f6a627fc76e9b3b))
880
+
881
+
882
+
883
+
884
+
885
+ # [2.8.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.2...v2.8.0-rc.3) (2025-02-27)
886
+
887
+
888
+ ### Bug Fixes
889
+
890
+ * **ui5-illustrated-message:** update title font styles ([#10912](https://github.com/SAP/ui5-webcomponents/issues/10912)) ([6a85a53](https://github.com/SAP/ui5-webcomponents/commit/6a85a53f58bf0780975a5e41a1db69d05c9d1059)), closes [#10879](https://github.com/SAP/ui5-webcomponents/issues/10879)
891
+ * **ui5-notification-list:** improve keyboard accessibility for the "More" button ([#10822](https://github.com/SAP/ui5-webcomponents/issues/10822)) ([b659fe2](https://github.com/SAP/ui5-webcomponents/commit/b659fe2faeb42eb052dafcc0c16215a3bf1f1926))
892
+ * **ui5-shellbar:** adjust focus style of startButton ([#10908](https://github.com/SAP/ui5-webcomponents/issues/10908)) ([cc0be62](https://github.com/SAP/ui5-webcomponents/commit/cc0be62a675d22d6f63471c57d71964d395fd5d6)), closes [#10598](https://github.com/SAP/ui5-webcomponents/issues/10598)
893
+
894
+
895
+ ### Features
896
+
897
+ * **ui5-search-field:** introduce base component ([#10922](https://github.com/SAP/ui5-webcomponents/issues/10922)) ([f4489c0](https://github.com/SAP/ui5-webcomponents/commit/f4489c0cecd8c0f2f7916b39e2183193f171f725))
898
+ * **ui5-side-navigation:** visual design enhancements ([#10839](https://github.com/SAP/ui5-webcomponents/issues/10839)) ([09e3f35](https://github.com/SAP/ui5-webcomponents/commit/09e3f35f5973aca5b2104508a3f8d452d8380a76))
899
+ * **ui5-user-settings-dialog:** introduce new components `UserSettingsDialog`, `UserSettingsItem`, and `UserSettingsView` ([#10832](https://github.com/SAP/ui5-webcomponents/issues/10832)) ([8b50b13](https://github.com/SAP/ui5-webcomponents/commit/8b50b134af44cb9b83a223bb1d0d9e3478f47c77))
900
+
901
+
902
+
903
+
904
+
905
+ # [2.8.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.1...v2.8.0-rc.2) (2025-02-20)
906
+
907
+
908
+ ### Bug Fixes
909
+
910
+ * **ui5-flexible-column-layout:** correct focus outline styles ([#10788](https://github.com/SAP/ui5-webcomponents/issues/10788)) ([59710df](https://github.com/SAP/ui5-webcomponents/commit/59710df6e37776531d09d285705ce99e3feb883c)), closes [#10670](https://github.com/SAP/ui5-webcomponents/issues/10670)
911
+
912
+
913
+
914
+
915
+
916
+ # [2.8.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.0...v2.8.0-rc.1) (2025-02-13)
917
+
918
+
919
+ ### Bug Fixes
920
+
921
+ * **ui5-side-navigation:** "Space" key triggers links ([#10767](https://github.com/SAP/ui5-webcomponents/issues/10767)) ([b2ab592](https://github.com/SAP/ui5-webcomponents/commit/b2ab592418f85533fe0ce05687775c8391aa2449)), closes [#10654](https://github.com/SAP/ui5-webcomponents/issues/10654)
922
+ * **ui5-side-navigation:** remove inappropriate exclamation mark usage ([#10769](https://github.com/SAP/ui5-webcomponents/issues/10769)) ([469cc9d](https://github.com/SAP/ui5-webcomponents/commit/469cc9d6238ce4bbc3c593f93ae7fe92bbe804df)), closes [#10714](https://github.com/SAP/ui5-webcomponents/issues/10714)
923
+ * **ui5-upload-collection-item:** properly display deleteButton slot ([#10797](https://github.com/SAP/ui5-webcomponents/issues/10797)) ([be5ce0b](https://github.com/SAP/ui5-webcomponents/commit/be5ce0bd27839dc0fe213ff568ebd9c17d0a3cef))
924
+
925
+
926
+
927
+
928
+
929
+ # [2.8.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.8.0-rc.0) (2025-02-06)
930
+
931
+
932
+ ### Bug Fixes
933
+
934
+ * **ui5-flexible-column-layout:** adjust grip minimum target size ([#10743](https://github.com/SAP/ui5-webcomponents/issues/10743)) ([aa58291](https://github.com/SAP/ui5-webcomponents/commit/aa58291abd89c20c00822c2d78bed16dc32251ee)), closes [#10669](https://github.com/SAP/ui5-webcomponents/issues/10669)
935
+ * **ui5-timeline:** enhance keyboard navigation ([#10746](https://github.com/SAP/ui5-webcomponents/issues/10746)) ([0ebc0f4](https://github.com/SAP/ui5-webcomponents/commit/0ebc0f42d3e8ed5dec44bc4a56601718f22840e3))
936
+
937
+
938
+
939
+
940
+
941
+ # [2.7.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.2...v2.7.0) (2025-02-03)
942
+
943
+
944
+ ### Bug Fixes
945
+
946
+ * **ui5-flexible-column-layout:** aria-hidden is now correct ([#10752](https://github.com/SAP/ui5-webcomponents/issues/10752)) ([8bf7e76](https://github.com/SAP/ui5-webcomponents/commit/8bf7e76bf9a9946f358038c6524b2e20851879c4))
947
+ * **ui5-side-navigation:** apply aria-haspopup to items in overflow ([#10686](https://github.com/SAP/ui5-webcomponents/issues/10686)) ([9550875](https://github.com/SAP/ui5-webcomponents/commit/9550875d65dda77118f7644e081ebf34eedf4d2a))
948
+ * **ui5-view-settings-dialog:** clicking on the radio button/checkbox works ([#10706](https://github.com/SAP/ui5-webcomponents/issues/10706)) ([ff1bdeb](https://github.com/SAP/ui5-webcomponents/commit/ff1bdeb61886eaa129b24f02958b6e40c54775f9))
949
+
950
+
951
+
952
+
953
+
954
+ # [2.7.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.1...v2.7.0-rc.2) (2025-01-30)
955
+
956
+
957
+ ### Bug Fixes
958
+
959
+ * **ui5-side-navigation-item:** correct color for actions in overflow menu ([#10678](https://github.com/SAP/ui5-webcomponents/issues/10678)) ([a96d5ff](https://github.com/SAP/ui5-webcomponents/commit/a96d5ff937807c895b8956882c8f4995fcda8aa1))
960
+ * **ui5-side-navigation:** don't toggle expanded state of items in popover ([#10691](https://github.com/SAP/ui5-webcomponents/issues/10691)) ([4c49c96](https://github.com/SAP/ui5-webcomponents/commit/4c49c96317159fbde9a69c09e8454be99a14a8c8))
961
+ * **ui5-timeline-item:** correct wrapping on long text ([#10483](https://github.com/SAP/ui5-webcomponents/issues/10483)) ([bf4c816](https://github.com/SAP/ui5-webcomponents/commit/bf4c816a38d2206b0c472c05846d74c81edc9e6e))
962
+
963
+
964
+ ### Features
965
+
966
+ * **ui5-side-navigation:** add actions and unselectable items ([#10482](https://github.com/SAP/ui5-webcomponents/issues/10482)) ([9fb9bae](https://github.com/SAP/ui5-webcomponents/commit/9fb9bae3ce086320aed83117aa8641fc06ad5587))
967
+ * **ui5-timeline:** introduce "growing" property ([#10470](https://github.com/SAP/ui5-webcomponents/issues/10470)) ([c39c0e8](https://github.com/SAP/ui5-webcomponents/commit/c39c0e845dceadb1383c49ea8d2f60cd98df3fc0))
968
+ * **ui5-user-menu:** introduce `show-edit-button` property ([#10619](https://github.com/SAP/ui5-webcomponents/issues/10619)) ([6adec46](https://github.com/SAP/ui5-webcomponents/commit/6adec468c2edf41df608d26511a9b7cbf58381f7))
969
+
970
+
971
+
972
+
973
+
974
+ # [2.7.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0-rc.0...v2.7.0-rc.1) (2025-01-23)
975
+
976
+
977
+ ### Bug Fixes
978
+
979
+ * **ui5-dynamic-page:** prevent layout shift with container queries ([#10578](https://github.com/SAP/ui5-webcomponents/issues/10578)) ([c2c3608](https://github.com/SAP/ui5-webcomponents/commit/c2c36080b956312e04fa8231d86e1517a58bd811)), closes [#10564](https://github.com/SAP/ui5-webcomponents/issues/10564)
980
+ * **ui5-dynamic-page:** remove redundant padding ([#10448](https://github.com/SAP/ui5-webcomponents/issues/10448)) ([491538b](https://github.com/SAP/ui5-webcomponents/commit/491538befe698e2c8957549be9d0eccf9014bd7e)), closes [#10413](https://github.com/SAP/ui5-webcomponents/issues/10413)
981
+ * **ui5-page:** fix floating footer layout ([#10496](https://github.com/SAP/ui5-webcomponents/issues/10496)) ([19f7857](https://github.com/SAP/ui5-webcomponents/commit/19f7857ffed9672d3560e6f5a365436119061846)), closes [#10358](https://github.com/SAP/ui5-webcomponents/issues/10358)
982
+ * **ui5-wizard:** replace resize observer with container query ([#7996](https://github.com/SAP/ui5-webcomponents/issues/7996)) ([475c293](https://github.com/SAP/ui5-webcomponents/commit/475c293fe5797aee9dd8a160d69c7baa118a6f07)), closes [#7666](https://github.com/SAP/ui5-webcomponents/issues/7666)
983
+
984
+
985
+ ### Features
986
+
987
+ * **ui5-flexible-column-layout:** add arrow icon functionality ([#10362](https://github.com/SAP/ui5-webcomponents/issues/10362)) ([61b94ae](https://github.com/SAP/ui5-webcomponents/commit/61b94aece6b41fa438df9d0e9b5dc60f28bae55d))
988
+ * **ui5-shellbar:** introduce content slot ([#10595](https://github.com/SAP/ui5-webcomponents/issues/10595)) ([c8b8696](https://github.com/SAP/ui5-webcomponents/commit/c8b86964a8dfe906176bf106f80d278d910f3f8f))
989
+ * **ui5-timeline-item:** introduce `state` property ([#10277](https://github.com/SAP/ui5-webcomponents/issues/10277)) ([b378604](https://github.com/SAP/ui5-webcomponents/commit/b378604e008efbf71054e72583ff8fd9fd227275))
990
+
991
+
992
+
993
+
994
+
995
+ # [2.7.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2...v2.7.0-rc.0) (2025-01-16)
996
+
997
+
998
+ ### Bug Fixes
999
+
1000
+ * i18n decorator property definition ([#10521](https://github.com/SAP/ui5-webcomponents/issues/10521)) ([d19f4e9](https://github.com/SAP/ui5-webcomponents/commit/d19f4e99bad74432bff21587da43a5844f17f8cf))
1001
+ * **ui5-view-settings-dialog:** adjust reset button announcement ([#10320](https://github.com/SAP/ui5-webcomponents/issues/10320)) ([42b29f3](https://github.com/SAP/ui5-webcomponents/commit/42b29f3eb6c435959ee67551d5f9f450995370ce)), closes [#10191](https://github.com/SAP/ui5-webcomponents/issues/10191)
1002
+
1003
+
1004
+ ### Features
1005
+
1006
+ * **ui5-side-navigation:** update existing design for Horizon theme ([#10337](https://github.com/SAP/ui5-webcomponents/issues/10337)) ([d5eff51](https://github.com/SAP/ui5-webcomponents/commit/d5eff51f56042d5fbf94e87d6bd94cdbe2d55982))
1007
+
1008
+
1009
+
1010
+
1011
+
1012
+ ## [2.6.2](https://github.com/SAP/ui5-webcomponents/compare/v2.6.2-rc.0...v2.6.2) (2025-01-09)
1013
+
1014
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1015
+
1016
+
1017
+
1018
+
1019
+
1020
+ ## [2.6.2-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.1...v2.6.2-rc.0) (2025-01-09)
1021
+
1022
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1023
+
1024
+
1025
+
1026
+
1027
+
1028
+ ## [2.6.1](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0...v2.6.1) (2025-01-08)
1029
+
1030
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1031
+
1032
+
1033
+
1034
+
1035
+
1036
+ # [2.6.0](https://github.com/SAP/ui5-webcomponents/compare/v2.6.0-rc.5...v2.6.0) (2025-01-07)
1037
+
1038
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1039
+
1040
+
1041
+
1042
+
1043
+
1044
+ # [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)
1045
+
1046
+
1047
+ ### Bug Fixes
1048
+
1049
+ * 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))
1050
+ * **ui5-dynamic-page:** prevent scroll position reset on unpinning the header ([#10441](https://github.com/SAP/ui5-webcomponents/issues/10441)) ([9f5a67a](https://github.com/SAP/ui5-webcomponents/commit/9f5a67ac185a087f65548ace894747dafa8c217a))
1051
+ * **ui5-dynamic-page:** update header sticky on manual snap ([#10431](https://github.com/SAP/ui5-webcomponents/issues/10431)) ([1975d56](https://github.com/SAP/ui5-webcomponents/commit/1975d56e45a4cc0d3f272ad31cb081b91a1b0d1d)), closes [#10430](https://github.com/SAP/ui5-webcomponents/issues/10430)
1052
+ * **ui5-navigation-layout:** replace "sideCollapsed" property with "mode" property ([#10390](https://github.com/SAP/ui5-webcomponents/issues/10390)) ([ae562dd](https://github.com/SAP/ui5-webcomponents/commit/ae562ddd8c5eeb43d07857743c640e1a3d7d60e2))
1053
+ * **ui5-notification-list-item:** scoping issue ([#10458](https://github.com/SAP/ui5-webcomponents/issues/10458)) ([6cc4615](https://github.com/SAP/ui5-webcomponents/commit/6cc46157deec42f207a528f37962b8fd7b968f2b))
1054
+ * **ui5-side-navigation:** ensure all items are focusable after expand ([#10453](https://github.com/SAP/ui5-webcomponents/issues/10453)) ([e60ad85](https://github.com/SAP/ui5-webcomponents/commit/e60ad858431eda48db44fc7fa22cfd4843b22aea)), closes [#10391](https://github.com/SAP/ui5-webcomponents/issues/10391)
1055
+
1056
+
1057
+ ### Features
1058
+
1059
+ * **ui5-dynamic-side-content:** add customizable aria labels ([#10416](https://github.com/SAP/ui5-webcomponents/issues/10416)) ([5887d29](https://github.com/SAP/ui5-webcomponents/commit/5887d29bbe26ddc73c5a6eb3be14985126e9490f)), closes [#8612](https://github.com/SAP/ui5-webcomponents/issues/8612)
1060
+
1061
+
1062
+
1063
+
1064
+
1065
+ # [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)
1066
+
1067
+
1068
+ ### Features
1069
+
1070
+ * **ui5-user-menu:** add open and close events ([#10363](https://github.com/SAP/ui5-webcomponents/issues/10363)) ([f57125a](https://github.com/SAP/ui5-webcomponents/commit/f57125a27b9d7aa7a9f3554db374f1d7da589e6e))
1071
+
1072
+
1073
+
1074
+
1075
+
1076
+ # [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)
1077
+
1078
+
1079
+ ### Bug Fixes
1080
+
1081
+ * **ui5-dynamic-page:** correct z-index for dynamic page header ([#10425](https://github.com/SAP/ui5-webcomponents/issues/10425)) ([5af40ae](https://github.com/SAP/ui5-webcomponents/commit/5af40ae08423bafee67129b4583b891d4ac71674)), closes [#10399](https://github.com/SAP/ui5-webcomponents/issues/10399)
1082
+ * **ui5-navigation-layout:** fix example ([#10421](https://github.com/SAP/ui5-webcomponents/issues/10421)) ([2a4691e](https://github.com/SAP/ui5-webcomponents/commit/2a4691e3f378d8339fb151473c6e63f52413700d))
1083
+ * **ui5-side-navigation:** fix expand and collapse ([#10418](https://github.com/SAP/ui5-webcomponents/issues/10418)) ([4d17e57](https://github.com/SAP/ui5-webcomponents/commit/4d17e575857fbc2665cb9a277418f3e6b9b9433c))
1084
+
1085
+
1086
+ ### Features
1087
+
1088
+ * **ui5-user-menu:** add open and close events ([#10363](https://github.com/SAP/ui5-webcomponents/issues/10363)) ([8109bfd](https://github.com/SAP/ui5-webcomponents/commit/8109bfd85d54374f007564c66df1404fef1a340c))
1089
+
1090
+
1091
+
1092
+
1093
+
1094
+ # [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)
1095
+
1096
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1097
+
1098
+
1099
+
1100
+
1101
+
1102
+ # [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)
1103
+
1104
+
1105
+ ### Bug Fixes
1106
+
1107
+ * **ui5-dynamic-page:** add subtitle interaction ([#10372](https://github.com/SAP/ui5-webcomponents/issues/10372)) ([ab00713](https://github.com/SAP/ui5-webcomponents/commit/ab00713930d2e50497adad52cfbd1b02557a8f41)), closes [#10347](https://github.com/SAP/ui5-webcomponents/issues/10347)
1108
+
1109
+
1110
+
1111
+
1112
+
1113
+ # [2.6.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0...v2.6.0-rc.0) (2024-12-12)
1114
+
1115
+
1116
+ ### Bug Fixes
1117
+
1118
+ * **ui5-dynamic-page:** fix header role ([#10317](https://github.com/SAP/ui5-webcomponents/issues/10317)) ([00823cf](https://github.com/SAP/ui5-webcomponents/commit/00823cf959b42cc4bbee5ea98e98d02f12f01a6a))
1119
+
1120
+
1121
+ ### Features
1122
+
1123
+ * **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))
1124
+ * **ui5-user-menu:** add title and manage button to pin header on phone ([#10339](https://github.com/SAP/ui5-webcomponents/issues/10339)) ([a4e6d56](https://github.com/SAP/ui5-webcomponents/commit/a4e6d568f6376e64d4adcd44f1eb95d06cee719d))
1125
+
1126
+
1127
+
1128
+
1129
+
1130
+ # [2.5.0](https://github.com/SAP/ui5-webcomponents/compare/v2.5.0-rc.3...v2.5.0) (2024-12-05)
1131
+
1132
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1133
+
1134
+
1135
+
1136
+
1137
+
1138
+ # [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)
1139
+
1140
+
1141
+ ### Bug Fixes
1142
+
1143
+ * **ui5-list:** enable focusin event bubbling ([#10156](https://github.com/SAP/ui5-webcomponents/issues/10156)) ([3b6cc84](https://github.com/SAP/ui5-webcomponents/commit/3b6cc8457ab47c1651a34f04b9401ee3112bd8c5)), closes [#9787](https://github.com/SAP/ui5-webcomponents/issues/9787)
1144
+ * **ui5-view-settings-dialog:** adjust dialog heading level ([#10289](https://github.com/SAP/ui5-webcomponents/issues/10289)) ([08d48a3](https://github.com/SAP/ui5-webcomponents/commit/08d48a3eb5e16708242b4a721ead74aebb8bb8ae))
1145
+
1146
+
1147
+ ### Features
1148
+
1149
+ * **framework:** add strict event type checking ([#10235](https://github.com/SAP/ui5-webcomponents/issues/10235)) ([4ff8ab7](https://github.com/SAP/ui5-webcomponents/commit/4ff8ab7c34db5058b92511767be1b96c69a91cb5))
1150
+ * **ui5-user-menu:** introduce new component ([#10244](https://github.com/SAP/ui5-webcomponents/issues/10244)) ([1558499](https://github.com/SAP/ui5-webcomponents/commit/15584993472c2a9d34349da999da74bfe450e76e))
1151
+
1152
+
1153
+
1154
+
1155
+
1156
+ # [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)
1157
+
1158
+
1159
+ ### Bug Fixes
1160
+
1161
+ * **ui5-wizard:** stacked Wizard Steps are aligned properly ([#10250](https://github.com/SAP/ui5-webcomponents/issues/10250)) ([3473fbf](https://github.com/SAP/ui5-webcomponents/commit/3473fbf7dd6f97d0de70a540d412c36901455926)), closes [#9779](https://github.com/SAP/ui5-webcomponents/issues/9779)
1162
+
1163
+
1164
+
1165
+
1166
+
1167
+ # [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)
1168
+
1169
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1170
+
1171
+
1172
+
1173
+
1174
+
1175
+ # [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)
1176
+
1177
+
1178
+ ### Bug Fixes
1179
+
1180
+ * **ui5-dynamic-page:** move subheading slot outside the title wrapper ([#10163](https://github.com/SAP/ui5-webcomponents/issues/10163)) ([6466b8a](https://github.com/SAP/ui5-webcomponents/commit/6466b8ad7f73c85a5c105dea3c196f6bfb78f27a))
1181
+
1182
+
1183
+ ### Features
1184
+
1185
+ * **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)
1186
+
1187
+
1188
+
1189
+
1190
+
1191
+ ## [2.4.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0...v2.4.1-rc.0) (2024-11-07)
1192
+
1193
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1194
+
1195
+
1196
+
1197
+
1198
+
1199
+ # [2.4.0](https://github.com/SAP/ui5-webcomponents/compare/v2.4.0-rc.4...v2.4.0) (2024-11-03)
1200
+
1201
+
1202
+ ### Bug Fixes
1203
+
1204
+ * **ui5-dynamic-page:** improve scrolling smoothness ([#10093](https://github.com/SAP/ui5-webcomponents/issues/10093)) ([d1420b0](https://github.com/SAP/ui5-webcomponents/commit/d1420b0be2c40ca649503cca0715e4c529929f8f)), closes [#10011](https://github.com/SAP/ui5-webcomponents/issues/10011)
1205
+ * **ui5-dynamic-page:** prevent unwanted header toggle from scroll ([#10007](https://github.com/SAP/ui5-webcomponents/issues/10007)) ([7a7d00c](https://github.com/SAP/ui5-webcomponents/commit/7a7d00c0d615283d1a86d775b6c51db7feadfb42))
1206
+ * **ui5-media-gallery:** clear selected thumbnail on item removal ([#10087](https://github.com/SAP/ui5-webcomponents/issues/10087)) ([af4cadb](https://github.com/SAP/ui5-webcomponents/commit/af4cadbfb637c1a6440aa0bd1fc516629ae332ae))
1207
+
1208
+
1209
+
1210
+
1211
+
1212
+ # [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)
1213
+
1214
+
1215
+ ### Features
1216
+
1217
+ * **ui5-navigation-layout:** add ui5-navigation-layout component ([#9517](https://github.com/SAP/ui5-webcomponents/issues/9517)) ([463c780](https://github.com/SAP/ui5-webcomponents/commit/463c780df03e95eacf82075f9a47007a5a088b01))
1218
+
1219
+
1220
+
1221
+
1222
+
1223
+ # [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)
1224
+
1225
+
1226
+ ### Bug Fixes
1227
+
1228
+ * **ui5-dynamic-page:** align header area with title and content ([#10053](https://github.com/SAP/ui5-webcomponents/issues/10053)) ([61e3dbd](https://github.com/SAP/ui5-webcomponents/commit/61e3dbd1f9a5b69c824cfcdae5c750d59585615a))
1229
+
1230
+
1231
+
1232
+
1233
+
1234
+ # [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)
1235
+
1236
+
1237
+ ### Bug Fixes
1238
+
1239
+ * **ui5-notification-list:** fix header bar visibility ([#10010](https://github.com/SAP/ui5-webcomponents/issues/10010)) ([95db5c6](https://github.com/SAP/ui5-webcomponents/commit/95db5c63a3c21ba2d948f5070f3bd1ba85e584ef)), closes [#9995](https://github.com/SAP/ui5-webcomponents/issues/9995)
1240
+
1241
+
1242
+ ### Features
1243
+
1244
+ * **ui5-barcode-scanner-dialog:** added support for custom header and footer slots ([#10066](https://github.com/SAP/ui5-webcomponents/issues/10066)) ([4d06b2e](https://github.com/SAP/ui5-webcomponents/commit/4d06b2e94024e1cf6e121650453362ca79fc8836)), closes [#8919](https://github.com/SAP/ui5-webcomponents/issues/8919)
1245
+ * **ui5-filter-item, ui5-sort-item,..:** add selected `filterItems` to `ui5-confirm` event details ([#9838](https://github.com/SAP/ui5-webcomponents/issues/9838)) ([56ad311](https://github.com/SAP/ui5-webcomponents/commit/56ad3115affe17f453a30ac0880ac879dbbd763b))
1246
+
1247
+
1248
+
1249
+
1250
+
1251
+ # [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)
1252
+
1253
+
1254
+ ### Bug Fixes
1255
+
1256
+ * **tools:** revert tsconfig moduleResolution to node ([#10014](https://github.com/SAP/ui5-webcomponents/issues/10014)) ([0724b92](https://github.com/SAP/ui5-webcomponents/commit/0724b9289ad04f88972d4978ed37e76f13abca13))
1257
+ * **ui5-notification-list-group:** group header hight is shorter when collapsed ([#9953](https://github.com/SAP/ui5-webcomponents/issues/9953)) ([4c8a76e](https://github.com/SAP/ui5-webcomponents/commit/4c8a76edb5699810addd5c77fac2eabd507568f3)), closes [#9911](https://github.com/SAP/ui5-webcomponents/issues/9911)
1258
+ * **ui5-page:** fix createElement error caused by adding new style property in the constructor ([#9998](https://github.com/SAP/ui5-webcomponents/issues/9998)) ([fd402e4](https://github.com/SAP/ui5-webcomponents/commit/fd402e41933da5e57456b736332872a0f0006cdf)), closes [#9981](https://github.com/SAP/ui5-webcomponents/issues/9981)
1259
+
1260
+
1261
+ ### Features
1262
+
1263
+ * **ui5-barcode-scanner-dialog:** added capture region overlay ([#9646](https://github.com/SAP/ui5-webcomponents/issues/9646)) ([19475eb](https://github.com/SAP/ui5-webcomponents/commit/19475eb897d08c5f09ae2583678cc79decca5adc))
1264
+
1265
+
1266
+
1267
+
1268
+
1269
+ # [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)
1270
+
1271
+
1272
+ ### Bug Fixes
1273
+
1274
+ * **ui5-flexible-column-layout:** handle separator movement ([#9978](https://github.com/SAP/ui5-webcomponents/issues/9978)) ([e3db6a6](https://github.com/SAP/ui5-webcomponents/commit/e3db6a6dd2cf290dffd41052849b27e6ee9d36e3))
1275
+ * **ui5-upload-collеction:** hide the upload icon when the height is too small ([#9990](https://github.com/SAP/ui5-webcomponents/issues/9990)) ([d7e485a](https://github.com/SAP/ui5-webcomponents/commit/d7e485a87fc77a3b664c985ddb36981e1ccb33fc)), closes [#9975](https://github.com/SAP/ui5-webcomponents/issues/9975)
1276
+
1277
+
1278
+ ### Features
1279
+
1280
+ * 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))
1281
+
1282
+
1283
+
1284
+
1285
+
1286
+ ## [2.3.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0...v2.3.1-rc.0) (2024-10-03)
1287
+
1288
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1289
+
1290
+
1291
+
1292
+
1293
+
1294
+ # [2.3.0](https://github.com/SAP/ui5-webcomponents/compare/v2.3.0-rc.3...v2.3.0) (2024-10-02)
1295
+
1296
+
1297
+ ### Bug Fixes
1298
+
1299
+ * **ui5-dynamic-page:** action buttons reading fix ([#9858](https://github.com/SAP/ui5-webcomponents/issues/9858)) ([c850ff1](https://github.com/SAP/ui5-webcomponents/commit/c850ff14a6aedd3aaf46f724e3c933a003734008))
1300
+
1301
+
1302
+ ### Features
1303
+
1304
+ * **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))
1305
+ * **ui5-dynamic-page-title:** implement snapped title on mobile ([#9898](https://github.com/SAP/ui5-webcomponents/issues/9898)) ([b8b9a98](https://github.com/SAP/ui5-webcomponents/commit/b8b9a981927822e827da73916d3f1697638c4edc))
1306
+
1307
+
1308
+
1309
+
1310
+
1311
+ # [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)
1312
+
1313
+
1314
+ ### Bug Fixes
1315
+
1316
+ * **ui5-barcode-scanner-dialog:** can be imported in server environments with a shim ([#9901](https://github.com/SAP/ui5-webcomponents/issues/9901)) ([40dc4eb](https://github.com/SAP/ui5-webcomponents/commit/40dc4eb3f103a1d979ea7bb9849f3a4f3a68680b))
1317
+ * **ui5-flexible-column-layout:** iframe content no longer hinders resize ([#9859](https://github.com/SAP/ui5-webcomponents/issues/9859)) ([d594ae7](https://github.com/SAP/ui5-webcomponents/commit/d594ae7c4b89849f0cd296cac29fdab7b5c2a8c0))
1318
+ * **ui5-page:** fix double footer and adjust animation timing ([#9885](https://github.com/SAP/ui5-webcomponents/issues/9885)) ([e8beb76](https://github.com/SAP/ui5-webcomponents/commit/e8beb76ea28f76eb39af40df9c0cc5c603a365d2)), closes [#9755](https://github.com/SAP/ui5-webcomponents/issues/9755) [#9756](https://github.com/SAP/ui5-webcomponents/issues/9756)
1319
+
1320
+
1321
+
1322
+
1323
+
1324
+ # [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)
1325
+
1326
+
1327
+ ### Bug Fixes
1328
+
1329
+ * **ui5-dynamic-side-content:** fix scrollbar styling ([#9842](https://github.com/SAP/ui5-webcomponents/issues/9842)) ([c5d0249](https://github.com/SAP/ui5-webcomponents/commit/c5d02499a849b09cd076b9419c723a81b642bf17))
1330
+ * **ui5-illustrated-message:** illustration fixed ([#9739](https://github.com/SAP/ui5-webcomponents/issues/9739)) ([0b57512](https://github.com/SAP/ui5-webcomponents/commit/0b575120c079a3726320046d033aeb1ba4a4dee5))
1331
+ * **ui5-wizard:** prevent step selection upon scrolling on Single Step layout ([#9766](https://github.com/SAP/ui5-webcomponents/issues/9766)) ([82f6afc](https://github.com/SAP/ui5-webcomponents/commit/82f6afc2fab521d114ee534c12939b44a9ca69fa)), closes [#9083](https://github.com/SAP/ui5-webcomponents/issues/9083)
1332
+
1333
+
1334
+
1335
+
1336
+
1337
+ # [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)
1338
+
1339
+
1340
+ ### Features
1341
+
1342
+ * **ui5-li-notification-group:** add new features - growing and sticky header ([#9783](https://github.com/SAP/ui5-webcomponents/issues/9783)) ([a40a451](https://github.com/SAP/ui5-webcomponents/commit/a40a45160d4efe1e1ebb8c43ee3216a2f758558c))
1343
+
1344
+
1345
+
1346
+
1347
+
1348
+ # [2.3.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0...v2.3.0-rc.0) (2024-09-05)
1349
+
1350
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
1351
+
1352
+
1353
+
1354
+
1355
+
1356
+ # [2.2.0](https://github.com/SAP/ui5-webcomponents/compare/v2.2.0-rc.3...v2.2.0) (2024-09-03)
1357
+
1358
+
1359
+ ### Bug Fixes
1360
+
1361
+ * **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)
1362
+ * **ui5-wizard:** improve focus and keyboard handling ([#9758](https://github.com/SAP/ui5-webcomponents/issues/9758)) ([6573a6e](https://github.com/SAP/ui5-webcomponents/commit/6573a6ecf318715c422617ea8ec2fa0cef62713b)), closes [#9670](https://github.com/SAP/ui5-webcomponents/issues/9670) [#9571](https://github.com/SAP/ui5-webcomponents/issues/9571)
1363
+
1364
+
1365
+
1366
+
1367
+
1368
+ # [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)
1369
+
1370
+
1371
+ ### Bug Fixes
1372
+
1373
+ * **ui5-wizard:** improve accessibility ([#9738](https://github.com/SAP/ui5-webcomponents/issues/9738)) ([d8a1196](https://github.com/SAP/ui5-webcomponents/commit/d8a1196586535034bfe87e0583f250543d02b3ba))
1374
+
1375
+
1376
+
1377
+
1378
+
1379
+ # [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)
1380
+
1381
+
1382
+ ### Bug Fixes
1383
+
1384
+ * **ui5-flexible-column-layout:** correct min-width constraint ([#9673](https://github.com/SAP/ui5-webcomponents/issues/9673)) ([08fa1b9](https://github.com/SAP/ui5-webcomponents/commit/08fa1b95879bdab853f6378ca09192c0abeb7b20))
1385
+ * **ui5-flexible-column-layout:** correct separator height ([#9698](https://github.com/SAP/ui5-webcomponents/issues/9698)) ([e4c48cf](https://github.com/SAP/ui5-webcomponents/commit/e4c48cf41432c3e5a8399f7633dc9c3955ba7260))
1386
+
1387
+
1388
+
1389
+
1390
+
1391
+ # [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)
1392
+
1393
+
1394
+ ### Bug Fixes
1395
+
1396
+ * **ui5-shellbar:** buttons now have equal styles ([#9664](https://github.com/SAP/ui5-webcomponents/issues/9664)) ([38a446a](https://github.com/SAP/ui5-webcomponents/commit/38a446a73d68b5b9ec872cb2f377c4ffb896d3af))
1397
+
1398
+
1399
+
1400
+
1401
+
1402
+ # [2.2.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.1...v2.2.0-rc.0) (2024-08-08)
1403
+
1404
+
1405
+ ### Bug Fixes
1406
+
1407
+ * **ui5-dynamic-side-content:** retrieve correct width ([#9642](https://github.com/SAP/ui5-webcomponents/issues/9642)) ([02f55f7](https://github.com/SAP/ui5-webcomponents/commit/02f55f77bb88d3e0080c09b67294c922b59eb52a)), closes [#9462](https://github.com/SAP/ui5-webcomponents/issues/9462)
1408
+ * **ui5-page:** focused content is visible with floating footer ([#9643](https://github.com/SAP/ui5-webcomponents/issues/9643)) ([4364e03](https://github.com/SAP/ui5-webcomponents/commit/4364e03ff61bed17b9cde68d6edba96024b4bb38))
1409
+
1410
+
1411
+ ### Features
1412
+
1413
+ * **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)
1414
+
1415
+
1416
+
1417
+
1418
+
1419
+ ## [2.1.1](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0...v2.1.1) (2024-08-02)
1420
+
1421
+
1422
+ ### Bug Fixes
1423
+
1424
+ * **ui5-dynamic-page-title:** separator fixed ([#9621](https://github.com/SAP/ui5-webcomponents/issues/9621)) ([5240c0b](https://github.com/SAP/ui5-webcomponents/commit/5240c0b46e781abaa54afc014a7861d85622206b))
1425
+ * **ui5-timeline:** fix javascript error ([#9634](https://github.com/SAP/ui5-webcomponents/issues/9634)) ([ac2c014](https://github.com/SAP/ui5-webcomponents/commit/ac2c0148f7d41f52f01c50a42322b8d150633d2d)), closes [#9633](https://github.com/SAP/ui5-webcomponents/issues/9633)
1426
+
1427
+
1428
+
1429
+
1430
+
1431
+ # [2.1.0](https://github.com/SAP/ui5-webcomponents/compare/v2.1.0-rc.3...v2.1.0) (2024-08-02)
1432
+
1433
+
1434
+ ### Bug Fixes
1435
+
1436
+ * **ui5-dynamic-page:** fixed wrong overlapping in header area ([#9568](https://github.com/SAP/ui5-webcomponents/issues/9568)) ([9d55094](https://github.com/SAP/ui5-webcomponents/commit/9d550946c4708ee2e124307344837a0ce38ca682)), closes [#9560](https://github.com/SAP/ui5-webcomponents/issues/9560)
1437
+ * **ui5-page:** replace resize observer with container query ([#9576](https://github.com/SAP/ui5-webcomponents/issues/9576)) ([67b9ce1](https://github.com/SAP/ui5-webcomponents/commit/67b9ce1a8cab83fe7a943ddb8c963fdb9f249d4c))
1438
+ * **ui5-shellbar:** add missing icon dependency ([#9618](https://github.com/SAP/ui5-webcomponents/issues/9618)) ([2691670](https://github.com/SAP/ui5-webcomponents/commit/269167087c69f31cdce96f9c04464de40bc5054b)), closes [#9580](https://github.com/SAP/ui5-webcomponents/issues/9580) [#9534](https://github.com/SAP/ui5-webcomponents/issues/9534)
1439
+ * **ui5-shellbar:** remove aria attribute from search button ([#9597](https://github.com/SAP/ui5-webcomponents/issues/9597)) ([43c03e7](https://github.com/SAP/ui5-webcomponents/commit/43c03e7510a82b189d3729062089f2a0dcbb12c8))
1440
+
1441
+
1442
+ ### Features
1443
+
1444
+ * **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))
1445
+ * **ui5-timeline-group-item:** introduce new component ([#9407](https://github.com/SAP/ui5-webcomponents/issues/9407)) ([aea62ef](https://github.com/SAP/ui5-webcomponents/commit/aea62ef38b55107f7dfd63c468bc1936d426ae42))
1446
+
1447
+
1448
+
1449
+
1450
+
1451
+ # [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)
1452
+
1453
+
1454
+ ### Bug Fixes
1455
+
1456
+ * **ui5-shellbar:** improved readability ([#9527](https://github.com/SAP/ui5-webcomponents/issues/9527)) ([ea60331](https://github.com/SAP/ui5-webcomponents/commit/ea60331ece11a9ff1c2097108b83ee006768cc2c)), closes [#9296](https://github.com/SAP/ui5-webcomponents/issues/9296)
1457
+
1458
+
1459
+
1460
+
1461
+
1462
+ # [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)
1463
+
1464
+
1465
+ ### Bug Fixes
1466
+
1467
+ * **ui5-li-notification:** fix aria-level value ([#9504](https://github.com/SAP/ui5-webcomponents/issues/9504)) ([ca153d0](https://github.com/SAP/ui5-webcomponents/commit/ca153d01317286164e39a119c43c7ecaddffdeef))
1468
+ * **ui5-upload-collection:** make empty upload collection focusable ([#9403](https://github.com/SAP/ui5-webcomponents/issues/9403)) ([16d7bef](https://github.com/SAP/ui5-webcomponents/commit/16d7bef464be7b3e1b2d11484a5145d8d526855a))
1469
+
1470
+
1471
+
1472
+
1473
+
1474
+ # [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)
1475
+
1476
+
1477
+ ### Bug Fixes
1478
+
1479
+ * **ui5-flexible-column-layout:** correct separator visualization ([#9478](https://github.com/SAP/ui5-webcomponents/issues/9478)) ([1be8d6c](https://github.com/SAP/ui5-webcomponents/commit/1be8d6c094827aeedcc6742a6aae81ce6cd2d966)), closes [#9477](https://github.com/SAP/ui5-webcomponents/issues/9477)
1480
+ * **ui5-wizard:** disabled steps are no longer clickable ([#9459](https://github.com/SAP/ui5-webcomponents/issues/9459)) ([2ea26ca](https://github.com/SAP/ui5-webcomponents/commit/2ea26caa0b4457a3b79edbbdfbbe206ad5713135))
1481
+
1482
+
1483
+
1484
+
1485
+
1486
+ # [2.1.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.1...v2.1.0-rc.0) (2024-07-11)
1487
+
1488
+
1489
+ ### Bug Fixes
1490
+
1491
+ * **ui5-li-notification-group:** suspend nested item navigation ([#9361](https://github.com/SAP/ui5-webcomponents/issues/9361)) ([90f5f11](https://github.com/SAP/ui5-webcomponents/commit/90f5f11c6353a894a34b8275c331660730e1443e))
1492
+ * **ui5-notification-list-item:** focus is no longer trapped in loading item ([#8969](https://github.com/SAP/ui5-webcomponents/issues/8969)) ([fa37d92](https://github.com/SAP/ui5-webcomponents/commit/fa37d92f30931a1ac38d6efadf4439ba3d3d555e)), closes [#8768](https://github.com/SAP/ui5-webcomponents/issues/8768)
1493
+ * **ui5-notification-list:** fixed show more test ([#9419](https://github.com/SAP/ui5-webcomponents/issues/9419)) ([4ba9173](https://github.com/SAP/ui5-webcomponents/commit/4ba917317a6cf48e7606e9988635fd45cb293dd1))
1494
+ * **ui5-upload-collection-item:** delete can be triggered by keyboard now ([#9392](https://github.com/SAP/ui5-webcomponents/issues/9392)) ([b3de325](https://github.com/SAP/ui5-webcomponents/commit/b3de325d58e566b7be19978952501d4be99aeb5c))
1495
+
1496
+
1497
+
1498
+
1499
+
1500
+ ## [2.0.1](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0...v2.0.1) (2024-07-05)
1501
+
1502
+
1503
+ ### Bug Fixes
1504
+
1505
+ * **ui5-notification-list:** fixed show more test ([#9400](https://github.com/SAP/ui5-webcomponents/issues/9400)) ([c19c5e3](https://github.com/SAP/ui5-webcomponents/commit/c19c5e3f3a756bdd8323a73b59c94b44167f16f7))
1506
+
1507
+
1508
+
1509
+
1510
+
1511
+ # [2.0.0](https://github.com/SAP/ui5-webcomponents/compare/v2.0.0-rc.6...v2.0.0) (2024-07-03)
1512
+
1513
+
1514
+ ### Bug Fixes
1515
+
1516
+ * **dynamic-page:** some remarks fixed ([#9341](https://github.com/SAP/ui5-webcomponents/issues/9341)) ([eb99114](https://github.com/SAP/ui5-webcomponents/commit/eb991145f0029d00c41c37a1b3a7e1e7229be647))
1517
+ * **ui5-tag:** fix styling issues ([#9305](https://github.com/SAP/ui5-webcomponents/issues/9305)) ([24dd42b](https://github.com/SAP/ui5-webcomponents/commit/24dd42b16f6889f9ea54402f4b664c84fdf92bfa))
1518
+
1519
+
1520
+ ### Code Refactoring
1521
+
1522
+ * **ui5-illustrated-message:** rename IllustrationMessageSize enum ([#9302](https://github.com/SAP/ui5-webcomponents/issues/9302)) ([6fe2a02](https://github.com/SAP/ui5-webcomponents/commit/6fe2a023772f34550a3d7f433017b1f8f2c5cd0c)), closes [#8605](https://github.com/SAP/ui5-webcomponents/issues/8605) [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#7887](https://github.com/SAP/ui5-webcomponents/issues/7887)
1523
+ * **ui5-view-settings-dialog:** change opening api to open property ([#9249](https://github.com/SAP/ui5-webcomponents/issues/9249)) ([52106cc](https://github.com/SAP/ui5-webcomponents/commit/52106ccffba64d13949764339a71225b33dac3a3))
1524
+
1525
+
1526
+ ### Features
1527
+
1528
+ * add property initializers ([#8846](https://github.com/SAP/ui5-webcomponents/issues/8846)) ([eef0cc9](https://github.com/SAP/ui5-webcomponents/commit/eef0cc9b663fda6268b98e516ed46439435fa2b0))
1529
+ * **ui5-flexible-column-layout:** enable resize via separators drag-and-drop ([#9160](https://github.com/SAP/ui5-webcomponents/issues/9160)) ([9b54af4](https://github.com/SAP/ui5-webcomponents/commit/9b54af42b6dccfee5781ef45f66d2003a71f7e5b))
1530
+
1531
+
1532
+ ### BREAKING CHANGES
1533
+
1534
+ * **ui5-illustrated-message:** The enum IllustrationMessageSize is renamed to IllustrationMessageDesign.
1535
+ If you have previously imported the enum:
1536
+
1537
+ import IllustrationMessageSize from "@ui5/webcomponents-base/dist/types/IllustrationMessageSize.js";
1538
+ Now import IllustrationMessageDesign instead:
1539
+
1540
+ import IllustrationMessageDesign from "@ui5/webcomponents-base/dist/types/IllustrationMessageDesign.js";
1541
+ * **ui5-view-settings-dialog:** Removed `show` and `close` methods.
1542
+
1543
+ Before, the ui5-view-settings-dialog could be opened and closed by calling `show()` and `close()`:
1544
+ ```ts
1545
+ const viewSettingsDialog = document.getElementById("exampleID");
1546
+ viewSettingsDialog.show();
1547
+ viewSettingsDialog.close();
1548
+ ```
1549
+ Now, the dialog is opened and closed by setting the open property to true or false:
1550
+ ```ts
1551
+ const viewSettingsDialog = document.getElementById("exampleID");
1552
+ viewSettingsDialog.open = true;
1553
+ viewSettingsDialog.open = false;
1554
+ ```
1555
+ fixes: https://github.com/SAP/ui5-webcomponents/issues/9240
1556
+ * @property decorator must be adapted according to new type parameter
1557
+
1558
+
1559
+
1560
+
1561
+
1562
+ # [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)
1563
+
1564
+
1565
+ ### Bug Fixes
1566
+
1567
+ * **ui5-barcode-scanner-dialog:** properly fire 'close' event ([#9193](https://github.com/SAP/ui5-webcomponents/issues/9193)) ([db099f1](https://github.com/SAP/ui5-webcomponents/commit/db099f120353d86ccb04de554b483228bff73325)), closes [#9177](https://github.com/SAP/ui5-webcomponents/issues/9177)
1568
+ * **ui5-li-notification:** enhance accessibility ([#9192](https://github.com/SAP/ui5-webcomponents/issues/9192)) ([cc34cea](https://github.com/SAP/ui5-webcomponents/commit/cc34cea9d06babbcb44a1edd21e99becf637c64f)), closes [#9161](https://github.com/SAP/ui5-webcomponents/issues/9161)
1569
+ * **ui5-notification-list:** change host to display:block ([#9139](https://github.com/SAP/ui5-webcomponents/issues/9139)) ([efb4791](https://github.com/SAP/ui5-webcomponents/commit/efb4791e529860e2a996136719c5bbbb98d5603f))
1570
+ * **ui5-shellbar:** add tooltip for shellbar items ([#9143](https://github.com/SAP/ui5-webcomponents/issues/9143)) ([c39c18a](https://github.com/SAP/ui5-webcomponents/commit/c39c18a8d4f6b1b858f72680d830c40f189d7eab))
1571
+ * **ui5-side-navigation:** group name is announced one time by screen … ([#9207](https://github.com/SAP/ui5-webcomponents/issues/9207)) ([4f18dfd](https://github.com/SAP/ui5-webcomponents/commit/4f18dfdf844dee248744692913284304641e83cb))
1572
+
1573
+
1574
+ ### Code Refactoring
1575
+
1576
+ * **ui5-li, ui5-li-custom:** rename classes ([#9158](https://github.com/SAP/ui5-webcomponents/issues/9158)) ([8f5b679](https://github.com/SAP/ui5-webcomponents/commit/8f5b67901a429196252f52980c10a04f7d43fe0b))
1577
+ * **ui5-side-navigation-item:** remove wholeItemToggleable property ([#9164](https://github.com/SAP/ui5-webcomponents/issues/9164)) ([37b2181](https://github.com/SAP/ui5-webcomponents/commit/37b2181eb79dfccae8b39069bb068062e37a5a2b)), closes [#9057](https://github.com/SAP/ui5-webcomponents/issues/9057)
1578
+ * **ui5-tag:** wrap text by default ([#9126](https://github.com/SAP/ui5-webcomponents/issues/9126)) ([96704b8](https://github.com/SAP/ui5-webcomponents/commit/96704b8e893a777206c00efbc57282e56429d687))
1579
+
1580
+
1581
+ ### BREAKING CHANGES
1582
+
1583
+ * **ui5-side-navigation-item:** the `wholeItemToggleAble` poperty of `ui5-side-navigation-item` is now remomoved.
1584
+ The functionality of clicking the whole item to show/hide the sub items (if present) will
1585
+ be introduced soon with new property name and enhanced accessibility and keyboard handling.
1586
+ * **ui5-tag:** `wrapping-type` property default value has changed from `None` to `Normal`. Before:
1587
+ ```html
1588
+ <ui5-tag>In Process</ui5-tag><!-- would truncate the text if there is not enough space -->
1589
+ ```
1590
+
1591
+ Now:
1592
+ ```html
1593
+ <ui5-tag>In Process</ui5-tag><!-- would let the text wrap if there is not enough space -->
1594
+ ```
1595
+
1596
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
1597
+
1598
+ * refactor(ui5-tag): fix test texsts
1599
+
1600
+ * refactor(ui5-tag): fix height of the tags to be the same
1601
+
1602
+ No matter if the tag is with wrapping-type="None" or wrapping-type="Normal"
1603
+ the height when there is only one line of text should be the same.
1604
+
1605
+ * refactor(ui5-tag): merge adjustments and code review comments
1606
+
1607
+ * refactor(ui5-tag): fix height
1608
+ * **ui5-li, ui5-li-custom:** `StandardListItem` has been renamed to `ListItemStandard`, and `CustomListItem` has been renamed to `ListItemCustom`.
1609
+ If you previously imported the classes as follows:
1610
+ ```ts
1611
+ import StandardListItem from "@ui5/webcomponents/StandardListItem.js";
1612
+ import CustomListItem from "@ui5/webcomponents/CustomListItem.js";
1613
+ ```
1614
+ now you must change imports to:
1615
+ ```ts
1616
+ import ListItemStandard from "@ui5/webcomponents/ListItemStandard.js";
1617
+ import ListItemCustom from "@ui5/webcomponents/ListItemCustom.js";
1618
+ ```
1619
+
1620
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1621
+
1622
+
1623
+
1624
+
1625
+
1626
+ # [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)
1627
+
1628
+
1629
+ ### Bug Fixes
1630
+
1631
+ * **ui5-notification-list:** improved accessibility ([#9070](https://github.com/SAP/ui5-webcomponents/issues/9070)) ([5e62d4a](https://github.com/SAP/ui5-webcomponents/commit/5e62d4af792d7043f931b0f8f894d36a85f18395))
1632
+ * **ui5-shellbar:** improved samples accessibility ([#8847](https://github.com/SAP/ui5-webcomponents/issues/8847)) ([7563e7d](https://github.com/SAP/ui5-webcomponents/commit/7563e7d942d06865d8fcc44d9f4dc1e1d6179e97)), closes [#8821](https://github.com/SAP/ui5-webcomponents/issues/8821)
1633
+
1634
+
1635
+ ### Code Refactoring
1636
+
1637
+ * **ui5-link:** wrap text by default ([#9006](https://github.com/SAP/ui5-webcomponents/issues/9006)) ([1924b54](https://github.com/SAP/ui5-webcomponents/commit/1924b5457f22c428527f8be3fbdd46d9d5d7ffed))
1638
+
1639
+
1640
+ ### BREAKING CHANGES
1641
+
1642
+ * **ui5-link:** `wrapping-type` property default value has changed from `None` to `Normal`.
1643
+ Before:
1644
+ ```html
1645
+ <ui5-link>some very very very long link</ui5-link> <!-- would truncate the text if there is not enough space -->
1646
+ ```
1647
+
1648
+ Now:
1649
+ ```html
1650
+ <ui5-link>some very very very long link</ui5-link> <!-- would let the text wrap if there is not enough space -->
1651
+ ```
1652
+
1653
+
1654
+
1655
+
1656
+
1657
+ # [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)
1658
+
1659
+
1660
+ ### Bug Fixes
1661
+
1662
+ * **ui5-illustrated-mesasge:** update subtitle color ([#8986](https://github.com/SAP/ui5-webcomponents/issues/8986)) ([c9a5120](https://github.com/SAP/ui5-webcomponents/commit/c9a5120912d22980e25adbb042d308fee5201487)), closes [#8984](https://github.com/SAP/ui5-webcomponents/issues/8984)
1663
+ * **ui5-notification-list:** fix keyboard issues ([#9040](https://github.com/SAP/ui5-webcomponents/issues/9040)) ([f1c0635](https://github.com/SAP/ui5-webcomponents/commit/f1c0635d6d2b94e94b7ecc311bb49480db1fae6d))
1664
+ * **ui5-notification:** implement keyboard navigation spec ([#8975](https://github.com/SAP/ui5-webcomponents/issues/8975)) ([d68c883](https://github.com/SAP/ui5-webcomponents/commit/d68c883f527e57f75bdad5a7a421b3ab8e4efbb0))
1665
+ * **ui5-side-navigation-item:** "selected" is no longer announced on every focused item ([#9008](https://github.com/SAP/ui5-webcomponents/issues/9008)) ([8cd3f83](https://github.com/SAP/ui5-webcomponents/commit/8cd3f83e2fcc31d57ebcdd38ee2ceff36150e1d1))
1666
+ * **ui5-side-navigation-item:** click event is no longer fired twice ([#8944](https://github.com/SAP/ui5-webcomponents/issues/8944)) ([0dd36ca](https://github.com/SAP/ui5-webcomponents/commit/0dd36ca4b84c3b73fbb9c9cd44cee3d7b6e97d2a))
1667
+
1668
+
1669
+ ### Code Refactoring
1670
+
1671
+ * **ui5-popup:** rename after-open and after-close events to 'open' and 'close' ([#8946](https://github.com/SAP/ui5-webcomponents/issues/8946)) ([912167d](https://github.com/SAP/ui5-webcomponents/commit/912167d18cd5e365a03513defc570da5bf372715)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
1672
+ * **ui5-shellbar:** introducing assistant slot ([#8963](https://github.com/SAP/ui5-webcomponents/issues/8963)) ([2a8c252](https://github.com/SAP/ui5-webcomponents/commit/2a8c252ecf67fce81d5ac7b2a7d949c058de9d17)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461) [#7887](https://github.com/SAP/ui5-webcomponents/issues/7887)
1673
+
1674
+
1675
+ ### Features
1676
+
1677
+ * **ui5-dynamic-page:** introduce new component ([#7899](https://github.com/SAP/ui5-webcomponents/issues/7899)) ([3752ce7](https://github.com/SAP/ui5-webcomponents/commit/3752ce701fe915fa0b02ba2b114c40bf3b7d9123))
1678
+ * **ui5-li-notification-group:** enhance 'Expand'/'Collapse' tooltip ([#9042](https://github.com/SAP/ui5-webcomponents/issues/9042)) ([08b81c7](https://github.com/SAP/ui5-webcomponents/commit/08b81c7bd852a50f735ab8621cb3e0de69c25497))
1679
+ * **ui5-li-notification:** implement new design ([#8426](https://github.com/SAP/ui5-webcomponents/issues/8426)) ([e451cdc](https://github.com/SAP/ui5-webcomponents/commit/e451cdc3709553dcb780f637463dc1b29e8f2971))
1680
+
1681
+
1682
+ ### BREAKING CHANGES
1683
+
1684
+ * **ui5-notification:** Instead of `ui5-list`, `ui5-notification-list` should be used as a container for `ui5-li-notification-group` and `ui5-li-notification` components.
1685
+
1686
+ Previously the application developers were defining notifications in this way:
1687
+
1688
+ ```
1689
+ <ui5-list>
1690
+ <ui5-li-notification-group title-text="Group Title" >
1691
+ <ui5-li-notification..
1692
+ ```
1693
+ To support accessibility, developers should now use the `ui5-notification-list` as seen below:
1694
+
1695
+ ```
1696
+ <ui5-notification-list>
1697
+ <ui5-li-notification-group title-text="Group Title" >
1698
+ <ui5-li-notification..
1699
+ ```
1700
+ * **ui5-shellbar:** 1. The `showCoPilot` property of the `ui5-shellbar` is removed.
1701
+
1702
+ If you have previously used the `showCoPilot` property:
1703
+ ```html
1704
+ <ui5-shellbar show-co-pilot></ui5-shellbar>
1705
+ ```
1706
+ it will no longer work for the component.
1707
+
1708
+ 2. The `CoPilotAnimation` feature of the `ui5-shellbar` is removed.
1709
+
1710
+ If you have previously used the `CoPilotAnimation` feature:
1711
+ ```js
1712
+ import CoPilotAnimation from "@ui5/webcomponents-fiori/dist/features/CoPilotAnimation.js"
1713
+ ```
1714
+ it will no longer work for the component.
1715
+
1716
+ 3. The `copilotDomRef` getter of the `ui5-shellbar` is removed.
1717
+
1718
+ If you have previously used the `copilotDomRef` public getter:
1719
+ ```js
1720
+ shellbar.copilotDomRef
1721
+ ```
1722
+
1723
+ it will no longer work for the component.
1724
+
1725
+ 4. The `co-pilot-click` event of the `ui5-shellbar` is removed.
1726
+ If you have previously used the `co-pilot-click` public event:
1727
+ ```js
1728
+ shellbar.addEventListener("ui5-co-pilot-click", function(event) {
1729
+ ...
1730
+ });
1731
+ ```
1732
+
1733
+ it will no longer work for the component.
1734
+
1735
+ You can achieve similar functionality with the new slot:
1736
+
1737
+ HTML:
1738
+ ```html
1739
+ <ui5-shellbar>
1740
+ <ui5-toggle-button id="assistant" icon="sap-icon://da" slot="assistant"></ui5-toggle-button>
1741
+ </ui5-shellbar>
1742
+ ```
1743
+
1744
+ JavaScript:
1745
+ ```js
1746
+ assistant.addEventListener("click", function (event) {
1747
+ const toggleButton = event.target;
1748
+ toggleButton.icon = toggleButton.pressed ? "sap-icon://da-2" : "sap-icon://da";
1749
+ });
1750
+
1751
+ ```
1752
+ * **ui5-popup:** Event names `after-close` and `after-open` are now named `close` and `open`.
1753
+ Previously the application developers could subscribe to the events as follows:
1754
+ ```ts
1755
+ popup.addEventListener("after-open", function() {
1756
+ //...
1757
+ });
1758
+ popup.addEventListener("after-close", function() {
1759
+ //...
1760
+ });
1761
+ ```
1762
+
1763
+ Now the application developers should include the ui5-bar as follows:
1764
+ ```ts
1765
+ popup.addEventListener("open", function() {
1766
+ //...
1767
+ });
1768
+
1769
+ popup.addEventListener("close", function() {
1770
+ //...
1771
+ });
1772
+
1773
+ ```
1774
+
1775
+
1776
+
1777
+
1778
+
1779
+ # [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)
1780
+
1781
+
1782
+ ### Bug Fixes
1783
+
1784
+ * **ui5-illustrated-message:** typo in the UnsuccessfulAuth name ([#8873](https://github.com/SAP/ui5-webcomponents/issues/8873)) ([b64d76f](https://github.com/SAP/ui5-webcomponents/commit/b64d76f7b425feeab61e93a9e452cd127b2cfb4d))
1785
+
1786
+
1787
+ ### Code Refactoring
1788
+
1789
+ * rename ValueState values ([#8864](https://github.com/SAP/ui5-webcomponents/issues/8864)) ([ef9304d](https://github.com/SAP/ui5-webcomponents/commit/ef9304da4b1446178b1b2bfa737d9867461cc4bc))
1790
+ * **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)
1791
+ * **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))
1792
+ * **ui5-badge:** rename Badge `ui5-badge` to Tag `ui5-tag` ([#8884](https://github.com/SAP/ui5-webcomponents/issues/8884)) ([4b8c1ee](https://github.com/SAP/ui5-webcomponents/commit/4b8c1eee72a6baea79a58983e8cc021addca9480))
1793
+ * **ui5-illustrated-message:** remove titleLevel property ([#8700](https://github.com/SAP/ui5-webcomponents/issues/8700)) ([9fe199c](https://github.com/SAP/ui5-webcomponents/commit/9fe199ca2f1a76985645fb375270afe29baa716f))
1794
+ * **ui5-input:** events changes ([#8769](https://github.com/SAP/ui5-webcomponents/issues/8769)) ([9f5c8a4](https://github.com/SAP/ui5-webcomponents/commit/9f5c8a4f3145a8f56abec178188e53b387a627b6))
1795
+ * **ui5-list:** enable hierarchical groups ([#8632](https://github.com/SAP/ui5-webcomponents/issues/8632)) ([193ed52](https://github.com/SAP/ui5-webcomponents/commit/193ed52f2085bef380005337001dc4f2f131a971)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
1796
+ * **ui5-page:** rename disableScrolling and floatingFooter properties ([#8816](https://github.com/SAP/ui5-webcomponents/issues/8816)) ([2f6fe6c](https://github.com/SAP/ui5-webcomponents/commit/2f6fe6c1e598ebb807ade1b1bfabe93c76f1b6fb))
1797
+ * **ui5-segmented-button-item:** implement segmented button item independently from button ([#8669](https://github.com/SAP/ui5-webcomponents/issues/8669)) ([7b5f751](https://github.com/SAP/ui5-webcomponents/commit/7b5f7513bf91bcc20553dfefa4f40215c10e567b))
1798
+ * **ui5-segmented-button:** rename `mode` to `selectionMode` ([#8761](https://github.com/SAP/ui5-webcomponents/issues/8761)) ([4be1540](https://github.com/SAP/ui5-webcomponents/commit/4be15407d7932599294a85a7297460d733b901b2))
1799
+ * **ui5-title:** wrap text by default ([#8916](https://github.com/SAP/ui5-webcomponents/issues/8916)) ([f267f50](https://github.com/SAP/ui5-webcomponents/commit/f267f504a93d45a65c4cdf2acff8c65182ba1df2))
1800
+ * **ui5-toast:** replace `show` method with `open` property ([#8855](https://github.com/SAP/ui5-webcomponents/issues/8855)) ([372d27d](https://github.com/SAP/ui5-webcomponents/commit/372d27d9db9afd40ffaf85cbfab61f10284063c3)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
1801
+ * **ui5-wizard:** rename event parameter ([#8845](https://github.com/SAP/ui5-webcomponents/issues/8845)) ([9882144](https://github.com/SAP/ui5-webcomponents/commit/988214415bc4a7d7b2d47f2ef9cdda7d572390fc)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
1802
+
1803
+
1804
+ ### Reverts
1805
+
1806
+ * Revert "fix(ui5-shellbar): aligned specs" (#8770) ([b73c171](https://github.com/SAP/ui5-webcomponents/commit/b73c171965b8f97d26a2beaf571190a81d39956e)), closes [#8770](https://github.com/SAP/ui5-webcomponents/issues/8770) [#8694](https://github.com/SAP/ui5-webcomponents/issues/8694)
1807
+
1808
+
1809
+ ### BREAKING CHANGES
1810
+
1811
+ * **ui5-title:** wrapping-type property default value has changed from `None` to `Normal`.
1812
+ Previously long texts would truncate if there is not enough space. Now, long texts would wrap.
1813
+
1814
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1815
+ * **ui5-input:** Remove suggestion-item-select event.
1816
+ Rename and modify suggestion-item-preview event.
1817
+ Remove openPicker method and replace it with public property "open".
1818
+
1819
+ * refactor(ui5-input): events changes
1820
+
1821
+ * refactor(ui5-input): property open tests
1822
+
1823
+ * refactor(ui5-input): events change
1824
+
1825
+ * refactor(ui5-input): events change
1826
+
1827
+ * refactor(ui5-input): events changes
1828
+
1829
+ * refactor(ui5-input): events changes
1830
+
1831
+ * refactor(ui5-input): events changes
1832
+ * **ui5-*:** FlexibleLayout's `accessibilityTexts` and `accessibilityRoles` properties are removed. If you have previously used the `accessibilityTexts` or `accessibilityRoles` properties:
1833
+ ```js
1834
+ fcl.accessibilityTexts = {
1835
+ startColumnAccessibleName: "Products list",
1836
+ midColumnAccessibleName: "Product information",
1837
+ endColumnAccessibleName: "Product detailed information",
1838
+ startArrowLeftText: "Collapse products list",
1839
+ startArrowRightText: "Expand products list",
1840
+ endArrowLeftText: "Expand product detailed information",
1841
+ endArrowRightText: "Collapse product detailed information",
1842
+ startArrowContainerAccessibleName: "Start Arrow Container",
1843
+ endArrowContainerAccessibleName: "End Arrow Container",
1844
+ }
1845
+
1846
+ fcl.accessibilityRoles = {
1847
+ startColumnRole: "complementary",
1848
+ startArrowContainerRole: "navigation",
1849
+ midColumnRole: "main",
1850
+ endArrowContainerRole: "navigation",
1851
+ endColumnRole: "complementary".
1852
+ }
1853
+ ```
1854
+ Now use `accessibilityAttributes` instead:
1855
+ ```js
1856
+ fcl.accessibilityAttributes = {
1857
+ startColumn: {
1858
+ role: "complementary",
1859
+ name: "Products list",
1860
+ },
1861
+ midColumn: {
1862
+ role: "main",
1863
+ name: "Product information",
1864
+ },
1865
+ endColumn: {
1866
+ role: "complementary",
1867
+ name: "Product detailed information",
1868
+ },
1869
+ startArrowLeft: {
1870
+ name: "Collapse products list",
1871
+ },
1872
+ startArrowRight: {
1873
+ name: "Expand products list",
1874
+ },
1875
+ endArrowLeft: {
1876
+ name: "Expand product detailed information",
1877
+ },
1878
+ endArrowRight: {
1879
+ name: "Collapse product detailed information",
1880
+ },
1881
+ startArrowContainer: {
1882
+ role: "navigation",
1883
+ name: "Start Arrow Container",
1884
+ },
1885
+ endArrowContainer: {
1886
+ role: "navigation",
1887
+ name: "End Arrow Container",
1888
+ },
1889
+ };
1890
+ ```
1891
+
1892
+ ShellBar's `accessibilityTexts` and `accessibilityRoles` properties are removed. If you have previously used the `accessibilityTexts` or `accessibilityRoles` properties:
1893
+ ```js
1894
+ shellbar.accessibilityTexts = {
1895
+ profileButtonTitle: "John Dow",
1896
+ logoTitle: "Custom logo title",
1897
+ }
1898
+
1899
+ shellbar.accessibilityRoles = {
1900
+ logoRole: "link"
1901
+ };
1902
+ ```
1903
+ Now use `accessibilityAttributes` instead:
1904
+ ```js
1905
+ shellbar.accessibilityAttributes = {
1906
+ profile: {
1907
+ name: "John Dow",
1908
+ },
1909
+ logo: {
1910
+ role: "link"
1911
+ name: "Custom logo title"
1912
+ },
1913
+ };
1914
+ ```
1915
+
1916
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1917
+
1918
+
1919
+ * **ui5-badge:** Badge web component has been renamed to Tag. If you have previously used the `ui5-badge`:
1920
+ ```html
1921
+ <ui5-badge></ui5-badge>
1922
+ ```
1923
+ Now use `ui5-tag` instead:
1924
+ ```html
1925
+ <ui5-tag></ui5-tag>
1926
+ ```
1927
+
1928
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1929
+ * If you previously used ValueState.Warning, ValueState.Error or ValueState.Success, start using ValueState.Critical, ValueState.Negative and ValueState.Positive respectively.
1930
+ All components with valueState property are also affected. For example:
1931
+ ```html
1932
+ <ui5-input value-state="Success"></ui5-input>
1933
+ <ui5-input value-state="Warning"></ui5-input>
1934
+ <ui5-input value-state="Error"></ui5-input>
1935
+ ```
1936
+ ```html
1937
+ <ui5-input value-state="Positive"></ui5-input>
1938
+ <ui5-input value-state="Critical"></ui5-input>
1939
+ <ui5-input value-state="Negative"></ui5-input>
1940
+ ```
1941
+
1942
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1943
+ * **ui5-toast:** The Toast#show method has been replaced by `open` property. If you previously used `toast.show()` to show the toast, you must now se `toast.open=true`.
1944
+ * **ui5-segmented-button-item:** The `ui5-segmentedbutton-item` `pressed` property is called `selected` now.
1945
+
1946
+ Previously the application developers could use the ui5-segmentedbutton-item as follows:
1947
+ ```html
1948
+ <ui5-segmented-button>
1949
+ <ui5-segmented-button-item pressed> Option 1</ui5-segmented-button-item>
1950
+ <ui5-segmented-button-item>Option 2</ui5-segmented-button-item>
1951
+ <ui5-segmented-button-item>Option 3</ui5-segmented-button-item>
1952
+ </ui5-segmented-button>
1953
+ ```
1954
+
1955
+ Now the application developers should use the ui5-segmentedbutton-item as follows:
1956
+ ```html
1957
+ <ui5-segmented-button>
1958
+ <ui5-segmented-button-item selected> Option 1</ui5-segmented-button-item>
1959
+ <ui5-segmented-button-item>Option 2</ui5-segmented-button-item>
1960
+ <ui5-segmented-button-item>Option 3</ui5-segmented-button-item>
1961
+ </ui5-segmented-button>
1962
+ ```
1963
+
1964
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
1965
+ * **ui5-wizard:** `changeWithClick` was renamed to `withScroll` in the `WizardStepChangeEventDetail`.
1966
+
1967
+ JIRA: BGSOFUIRILA-3867
1968
+ * **theming:** Remove SAP Belize theme
1969
+ * **ui5-illustrated-message:** The `titleLevel` property of the `ui5-illustrated-message`is removed.
1970
+ If you have previously used the `titleLevel` property:
1971
+ ```html
1972
+ <ui5-illustrated-message title-level="H6>
1973
+ ```
1974
+ it will no longer work for the component.
1975
+
1976
+ Instead, you could set the title of the `ui5-illustrated-message` on the `title` slot, as it follows
1977
+
1978
+ ```html
1979
+ <ui5-illustrated-message>
1980
+ <ui5-title slot="title" level="H3">This is a slotted title</ui5-title>
1981
+ </ui5-illustrated-message>
1982
+ ```
1983
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
1984
+ * **ui5-segmented-button:** The mode property is changed to `SelectionMode` and the values it take from `SingleSelect` and `MultiSelect` to `Single` and `Multiple`. Also deleted deprecated getter - `selectedItem` and deprecated event detail `selectedItem` and now can be used with the `selectedItems` getter and `selectedItems` event detail.
1985
+
1986
+ Previously the application developers could set the selection mode as follows:
1987
+ ```ts
1988
+ <ui5-segmented-button id="segButtonMulti" mode="MultiSelect">
1989
+ <ui5-segmented-button-item>Item</ui5-segmented-button-item>
1990
+ <ui5-segmented-button-item>Item</ui5-segmented-button-item>
1991
+ <ui5-segmented-button-item>Click</ui5-segmented-button-item>
1992
+ <ui5-segmented-button-item>SegmentedButtonItem</ui5-segmented-button-item>
1993
+ </ui5-segmented-button>
1994
+ ```
1995
+ Now the application developers could set the selection mode as follows:
1996
+ ```ts
1997
+ <ui5-segmented-button id="segButtonMulti" selection-mode="Multiple">
1998
+ <ui5-segmented-button-item>Item</ui5-segmented-button-item>
1999
+ <ui5-segmented-button-item>Item</ui5-segmented-button-item>
2000
+ <ui5-segmented-button-item>Click</ui5-segmented-button-item>
2001
+ <ui5-segmented-button-item>SegmentedButtonItem</ui5-segmented-button-item>
2002
+ </ui5-segmented-button>
2003
+ ```
2004
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2005
+ * **ui5-page:** `disableScrolling` has been renamed, `floatingFooter` property has been removed and `fixedFooter` property has been added instead.
2006
+
2007
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2008
+ * **ui5-list:** The ui5-li-groupheader component is removed. Groups can now be created with the ui5-li-group. Instead of using ui5-li-groupheader as separator in a flat structure:
2009
+
2010
+ <ui5-list>
2011
+ <ui5-li-groupheader>Actions</ui5-li-groupheader>
2012
+ <ui5-li>Delete Product</ui5-li>
2013
+ <ui5-li>Audit Log Settings</ui5-li>
2014
+ <ui5-li-groupheader>Products</ui5-li-groupheader>
2015
+ <ui5-li>Product 1</ui5-li>
2016
+ </ui5-list>
2017
+ The API supports nesting of ui5-li components inside an ui5-li-group with the header-text property:
2018
+
2019
+ <ui5-list>
2020
+ <ui5-li-group header-text="Actions">
2021
+ <ui5-li>Delete Product</ui5-li>
2022
+ <ui5-li>Audit Log Settings</ui5-li>
2023
+ </ui5-li-group>
2024
+ </ui5-list>
2025
+ or with the header slot:
2026
+
2027
+ <ui5-list>
2028
+ <ui5-li-group>
2029
+ <div slot="header" style="width: '100%'; display: flex; justify-content:space-between; align-items:center;">
2030
+ <span>Back End Developers</span>
2031
+ <ui5-icon name="navigation-right-arrow"></ui5-icon>
2032
+ </div>
2033
+ <ui5-li>Delete Product</ui5-li>
2034
+ <ui5-li>Audit Log Settings</ui5-li>
2035
+ </ui5-li-group>
2036
+ </ui5-list>
2037
+ In addition, the the List's items slot getter, will now return ui5-li-group instances as well. There is a new readonly getter listItems will return an array flat structure containing listitems and group header items.
2038
+
2039
+
2040
+
2041
+
2042
+
2043
+ # [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)
2044
+
2045
+
2046
+ ### Bug Fixes
2047
+
2048
+ * **ui5-shellbar:** aligned specs ([#8694](https://github.com/SAP/ui5-webcomponents/issues/8694)) ([c5ec720](https://github.com/SAP/ui5-webcomponents/commit/c5ec720c8fd362b6fe2f502d473bec5fc4071b38))
2049
+ * **ui5-shellbar:** assistant icon color fixed ([#8713](https://github.com/SAP/ui5-webcomponents/issues/8713)) ([e501ac8](https://github.com/SAP/ui5-webcomponents/commit/e501ac8147bb979319a6e055ba98458650884112))
2050
+ * **ui5-side-navigation:** import overflow icon ([#8736](https://github.com/SAP/ui5-webcomponents/issues/8736)) ([8bc1bb4](https://github.com/SAP/ui5-webcomponents/commit/8bc1bb4698e71c66e1fb59508e115b9e612912fb))
2051
+ * **ui5-side-navigation:** replace items and fixedItems union type with SideNavigationItemBase ([#8740](https://github.com/SAP/ui5-webcomponents/issues/8740)) ([b589486](https://github.com/SAP/ui5-webcomponents/commit/b58948676049565410592700b1796475f1ea94fa))
2052
+
2053
+
2054
+ ### Features
2055
+
2056
+ * **ui5-barcode-scanner-dialog:** add support for close and open events ([#8753](https://github.com/SAP/ui5-webcomponents/issues/8753)) ([1ae2142](https://github.com/SAP/ui5-webcomponents/commit/1ae2142aa6ba2c587126e49422724658686d2344)), closes [#8695](https://github.com/SAP/ui5-webcomponents/issues/8695)
2057
+
2058
+
2059
+
2060
+
2061
+
2062
+ # [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)
2063
+
2064
+
2065
+ ### Features
2066
+
2067
+ * **ui5-button:** provide focus support for mobile ([#8414](https://github.com/SAP/ui5-webcomponents/issues/8414)) ([4d9e32f](https://github.com/SAP/ui5-webcomponents/commit/4d9e32fff1a594f774f9f36d549619c0389c1e07)), closes [#8178](https://github.com/SAP/ui5-webcomponents/issues/8178) [#8322](https://github.com/SAP/ui5-webcomponents/issues/8322)
2068
+
2069
+
2070
+
2071
+
2072
+
2073
+ # [2.0.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0...v2.0.0-rc.0) (2024-04-09)
2074
+
2075
+
2076
+ ### Bug Fixes
2077
+
2078
+ * **ui5-flexible-column-layout:** improved separators borders ([#8639](https://github.com/SAP/ui5-webcomponents/issues/8639)) ([367ca80](https://github.com/SAP/ui5-webcomponents/commit/367ca80c9f3eb24c36080046b58c823f5af21780)), closes [#8307](https://github.com/SAP/ui5-webcomponents/issues/8307)
2079
+ * **ui5-upload-collection:** update ui5-upload-collection Drag and Drop overlay color ([#8616](https://github.com/SAP/ui5-webcomponents/issues/8616)) ([73f713e](https://github.com/SAP/ui5-webcomponents/commit/73f713e5003dacb1ceb68fbb3a6ac2e954741c97))
2080
+
2081
+
2082
+ ### chore
2083
+
2084
+ * 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)
2085
+
2086
+
2087
+ ### Code Refactoring
2088
+
2089
+ * **ui5-list, ui5-tree, ui5-upload-collection:** rename mode to selectionMode ([#8657](https://github.com/SAP/ui5-webcomponents/issues/8657)) ([d53b3b2](https://github.com/SAP/ui5-webcomponents/commit/d53b3b2e231b6bf3aa5b317634d3f304240f9d76))
2090
+ * **ui5-tabcontainer:** remove fixed property ([#8676](https://github.com/SAP/ui5-webcomponents/issues/8676)) ([98052e1](https://github.com/SAP/ui5-webcomponents/commit/98052e1857845314cc41e1cfff80436bd1096436)), closes [#8461](https://github.com/SAP/ui5-webcomponents/issues/8461)
2091
+ * **ui5-upload-collection:** remove Delete selection mode ([#8607](https://github.com/SAP/ui5-webcomponents/issues/8607)) ([926ae75](https://github.com/SAP/ui5-webcomponents/commit/926ae75015fc4ca751dcbc5a36a5acceeedfffe3))
2092
+
2093
+
2094
+ ### Features
2095
+
2096
+ * **focus:** new focus handling ([#8590](https://github.com/SAP/ui5-webcomponents/issues/8590)) ([b6a33e0](https://github.com/SAP/ui5-webcomponents/commit/b6a33e04210de2d0eb972755dbce804d479e14a9))
2097
+
2098
+
2099
+ ### BREAKING CHANGES
2100
+
2101
+ * **ui5-tabcontainer:** Property "fixed" is removed and there is no alternative provided. The TabContainer is no longer expandable/collapsible via use interaction. You can still show the TabContainer collapsed via the "collapsed" property.
2102
+ * **ui5-upload-collection:** The `selectionMode` property no longer accepts "Delete" as value.
2103
+ If you have previously used it:
2104
+ ```html
2105
+ <ui5-upload-collection selection-mode="Delete"></ui5-upload-collection>
2106
+ ```
2107
+ Now omit it completely and use `hide-delete-button` onto the ui5-upload-collection:
2108
+ ```html
2109
+ <ui5-upload-collection>
2110
+ <ui5-upload-collection-item hide-delete-button> </ui5-upload-collection-item>
2111
+ </ui5-upload-collection>
2112
+ ```
2113
+
2114
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2115
+ * **ui5-list, ui5-tree, ui5-upload-collection:** The `mode` property and the `ListMode` enum have been renamed.
2116
+ If you have previously used the `mode` property and the `ListMode` values:
2117
+ ```html
2118
+ <ui5-list class="list" mode="SingleSelect">
2119
+ <ui5-list class="list" mode="MultiSelect">
2120
+ <ui5-upload-collection mode="SingleSelectBegin">
2121
+ <ui5-upload-collection mode="SingleSelectEnd">
2122
+ <ui5-tree mode="SingleSelectAuto" >
2123
+ <ui5-tree mode="None" >
2124
+ ```
2125
+ Now use `selectionMode` and `Single`, `Multiple` instead:
2126
+ ```html
2127
+ <ui5-list class="list" selection-mode="Single">
2128
+ <ui5-list class="list" selection-mode="Multiple">
2129
+ <ui5-upload-collection selection-mode="SingleStart">
2130
+ <ui5-upload-collection selection-mode="SingleEnd">
2131
+ <ui5-tree selection-mode="SingleAuto">
2132
+ <ui5-tree selection-mode="None">
2133
+
2134
+ ```
2135
+
2136
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
2137
+ * "Device#isIE" method has been removed and no longer available
2138
+
2139
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2140
+ * 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:
2141
+ ```ts
2142
+ import { setUseLinks } from "@ui5/webcomponents-base/dist/CSP.js"
2143
+ import { setPackageCSSRoot } from "@ui5/webcomponents-base/dist/CSP.js"
2144
+ import { setPreloadLinks } from "@ui5/webcomponents-base/dist/CSP.js"
2145
+ ```
2146
+ * Removed the `ICardHeader` interface. If you previously used the interface
2147
+ ```ts
2148
+ import type { ICardHeader } from "@ui5/webcomponents-base/dist/Card.js"
2149
+ ```
2150
+ Use the CardHeader type instead:
2151
+ ```ts
2152
+ import type CardHeader from "@ui5/webcomponents-base/dist/CardHeader.js"
2153
+ ```
2154
+ * Removed the `IUploadCollectionItem` interface. If you previously used the interface:
2155
+ ```js
2156
+ import type { IUploadCollectionItem} from "@ui5/webcomponents-fiori/dist/UploadCollection.js"
2157
+ ```
2158
+ Use the `UploadCollectionItem` type instead:
2159
+ ```js
2160
+ import type UploadCollectionItem from "@ui5/webcomponents-fiori/dist/UploadCollectionItem.js"
2161
+ ```
2162
+
2163
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2164
+ * The `size` property now accepts different values. If you previously used it like:
2165
+ ```html
2166
+ <ui5-busy-indicator size="Small"></ui5-busy-indicator>
2167
+ ```
2168
+ Now use the new values instead:
2169
+ ```html
2170
+ <ui5-busy-indicator size="S"></ui5-busy-indicator>
2171
+ ```
2172
+
2173
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2174
+ * The `status` property and its shadow part have been renamed. If you previously used them:
2175
+ ```html
2176
+ <style>
2177
+ .cardHeader::part(status) { ... }
2178
+ </style>
2179
+ <ui5-card-header status="3 of 10"></ui5-popover>
2180
+ ```
2181
+ Now use `additionalText` instead:
2182
+ ```html
2183
+ <style>
2184
+ .cardHeader::part(additional-text) { ... }
2185
+ </style>
2186
+ <ui5-card-header class="cardHeader" additional-text="3 of 10"></ui5-card-header>
2187
+ ```
2188
+
2189
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2190
+ * The `pageIndicatorStyle` no longer exists. If you previously used it like:
2191
+ ```html
2192
+ <ui5-carousel page-indicator-style="Numeric"></ui5-carousel>
2193
+ ```
2194
+ Now you should use `pageIndicatorType` instead:
2195
+ ```html
2196
+ <ui5-carousel page-indicator-type="Numeric"></ui5-carousel>
2197
+ ```
2198
+
2199
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2200
+ * Removed `UI5Element#render` method in favour of `UI5Element#renderer`. If you previously used "render"
2201
+ ```js
2202
+ class MyClass extends UI5Element {
2203
+ static get render() {
2204
+ return litRenderer;
2205
+ }
2206
+ }
2207
+ ```
2208
+ start using "renderer"
2209
+ ```ts
2210
+ class MyClass extends UI5Element {
2211
+ static get renderer() {
2212
+ return litRenderer;
2213
+ }
2214
+ }
2215
+ ```
2216
+ * Remove JavaScript template option from @ui5/create-webcomponents-package
2217
+ Previously `npm init @ui5/webcomponents-package` used to create JS-based project, however now it will be TypeScript-based project.
2218
+ 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.
2219
+ * The `Left` and `Right` options option have been renamed. If you previously used them to set the placement or the alignment of the popover:
2220
+ ```html
2221
+ <ui5-popover horizontal-align="Left" placement-type="Left"></ui5-popover>
2222
+ ```
2223
+ Now use `Start` or `End` instead:
2224
+ ```html
2225
+ <ui5-popover horizontal-align="Start" placement-type="Start"></ui5-popover>
2226
+ ```
2227
+
2228
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2229
+
2230
+ * docs: deploy v2 preview
2231
+ * Remove `soccor` icon. Use `soccer` instead.
2232
+ * Remove `add-polygone` icon. Use `add-polygon` instead.
2233
+ * 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`
2234
+ * All Assets-static.js modules are removed. If you previously imported any Assets-static.js module from any package:
2235
+ ```ts
2236
+ import "@ui5/webcomponents/dist/Assets-static.js";
2237
+ import "@ui5/webcomponents-icons/dist/Assets-static.js"
2238
+ ```
2239
+ use the dynamic equivalent of it:
2240
+ ```ts
2241
+ import "@ui5/webcomponents/dist/Assets.js";
2242
+ import "@ui5/webcomponents-icons/dist/Assets.js"
2243
+ ```
2244
+
2245
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2246
+ * The event `selected-dates-change ` is renamed to `selection-change`. In addition the event details
2247
+ `values` and `dates` are renamed to `selectedValues` and `selectedDateValues`. If you previously used the Calendar event as follows:
2248
+ ```ts
2249
+ myCalendar.addEventListener("selected-dates-change", () => {
2250
+ const values = e.detail.values;
2251
+ const dates = e.detail.dates;
2252
+ })
2253
+ ```
2254
+ Now you have to use the new event name and details:
2255
+ ```ts
2256
+ myCalendar.addEventListener("selection-change", () => {
2257
+ const values = event.detail.selectedValues;
2258
+ const dates = event.detail.selectedDateValues;
2259
+ })
2260
+ ```
2261
+
2262
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2263
+ * The property `color` is renamed to `value`. If you previously used the change event of the ColorPicker as follows:
2264
+ ```html
2265
+ <ui5-color-picker color="red"></ui5-color-picker>
2266
+ ```
2267
+ Now you have to use it like this:
2268
+ ```html
2269
+ <ui5-color-picker value="red"></ui5-color-picker>
2270
+ ```
2271
+
2272
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2273
+ * JavaScript projects may not function properly with the tools package.
2274
+ * The `openPopover` and `showAt` methods are removed in favor of `open` and `opener` properties. If you previously used the imperative API:
2275
+ ```js
2276
+ button.addEventListener("click", function(event) {
2277
+ colorPalettePopover.showAt(this);
2278
+ });
2279
+ ```
2280
+ Now the declarative API should be used instead:
2281
+ ```html
2282
+ <ui5-button id="opener">Open</ui5-button>
2283
+ <ui5-color-palette-popover opener="opener">
2284
+ ```
2285
+ ```js
2286
+ button.addEventListener("click", function(event) {
2287
+ colorPalettePopover.open = !colorPalettePopover.open;
2288
+ });
2289
+ ```
2290
+ * The `ui5-bar` component is now in `main` library. If you previously imported the `ui5-bar` from `fiori`:
2291
+ ```ts
2292
+ import "@ui5/webcomponents-fiori/dist/Bar.js;
2293
+ ```
2294
+ Now, import the `ui5-bar` from `main`:
2295
+ ```ts
2296
+ import "@ui5/webcomponents/dist/Bar.js";
2297
+ ```
2298
+
2299
+ Related to: https://github.com/SAP/ui5-webcomponents/issues/8461
2300
+ * If you have previously used:
2301
+ ```html
2302
+ <ui5-tab id="nestedTab" slot="subTabs"></ui5-tab>
2303
+ ```
2304
+ Now use:
2305
+ ```html
2306
+ <ui5-tab id="nestedTab" slot="items"></ui5-tab>
2307
+ ```
2308
+
2309
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
2310
+ * If you have previously used:
2311
+ ```html
2312
+ <ui5-tabcontainer tabs-overflow-mode="StartAndEnd"></ui5-tabcontainer>
2313
+ ```
2314
+ Now use:
2315
+ ```html
2316
+ <ui5-tabcontainer overflow-mode="StartAndEnd"></ui5-tabcontainer>
2317
+ ```
2318
+
2319
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
2320
+ * If you previously imported `TabContainerBackgroundDesign`, use `BackgroundDesign` instead.
2321
+
2322
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
2323
+ * The showOverflow property is removed. If previously you have used:
2324
+ ```html
2325
+ <ui5-tabcontainer show-overflow></ui5-tabcontainer>
2326
+ ```
2327
+ now use the overflowButton slot:
2328
+ ```html
2329
+ <ui5-tabcontainer>
2330
+ <ui5-button slot="startOverflowButton" id="startOverflowButton">Start</ui5-button>
2331
+ <ui5-button slot="overflowButton" id="endOverflowButton">End</ui5-button>
2332
+ </ui5-tabcontainer>
2333
+ ```
2334
+
2335
+ Relates to https://github.com/SAP/ui5-webcomponents/issues/8461
2336
+ * The `placementType` property and the `PopoverPlacementType` enum have been renamed.
2337
+ If you have previously used the `placementType` property and the `PopoverPlacementType`
2338
+ ```html
2339
+ <ui5-popover placement-type="Bottom"></ui5-popover>
2340
+ ```
2341
+ ```js
2342
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacementType.js";
2343
+ ```
2344
+ Now use `placement` instead:
2345
+ ```html
2346
+ <ui5-placement="Bottom"></ui5-popover>
2347
+ ```
2348
+ ```js
2349
+ import PopoverPlacementType from "@ui5/webcomponents/dist/types/PopoverPlacement.js";
2350
+ ```
2351
+
2352
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461
2353
+ * The `size` property of the `ui5--illustrated-message` is renamed to `design`.
2354
+ If you have previously used the `size` property:
2355
+ ```html
2356
+ <ui5-illustrated-message size="Dialog">
2357
+ ```
2358
+ Now use `design` instead:
2359
+ ```html
2360
+ <ui5-illustrated-message design="Dialog">
2361
+
2362
+ ```
2363
+
2364
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
2365
+ * The `separator-style` property is renamed to `separators` and the `BreadcrumbsSeparatorStyle` enum is renamed to `BreadcrumbsSeparator`.
2366
+ If you have previously used the `separator-style` property:
2367
+ ```html
2368
+ <ui5-breadcrumbs separator-style="Slash">
2369
+ ```
2370
+ Now use `separators` instead:
2371
+ ```html
2372
+ <ui5-breadcrumbs separators="Slash">
2373
+ ```
2374
+
2375
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
2376
+ * The `disabled` property of the `ui5-option` is removed.
2377
+ If you have previously used the `disabled` property:
2378
+ ```html
2379
+ <ui5-option disabled>Option</ui5-option>
2380
+ ```
2381
+ it will no longer work for the component.
2382
+
2383
+ Related to https://github.com/SAP/ui5-webcomponents/issues/8461, https://github.com/SAP/ui5-webcomponents/issues/7887
2384
+ * 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.
2385
+
2386
+
2387
+
2388
+
2389
+
2390
+ # [1.24.0](https://github.com/SAP/ui5-webcomponents/compare/v1.24.0-rc.4...v1.24.0) (2024-04-04)
2391
+
2392
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2393
+
2394
+
2395
+
2396
+
2397
+
2398
+ # [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)
2399
+
2400
+
2401
+ ### Bug Fixes
2402
+
2403
+ * **ui5-illustrated-message:** fixed infinite resize ([#8584](https://github.com/SAP/ui5-webcomponents/issues/8584)) ([aa1301b](https://github.com/SAP/ui5-webcomponents/commit/aa1301b9e1449f67668beaa1373699d54c50270c)), closes [#5852](https://github.com/SAP/ui5-webcomponents/issues/5852)
2404
+ * **ui5-illustrated-message:** tnt chart illustrations alignment ([#8562](https://github.com/SAP/ui5-webcomponents/issues/8562)) ([2ee2ea8](https://github.com/SAP/ui5-webcomponents/commit/2ee2ea8a33b799b4b7488cfa2ca0ce845685e980))
2405
+ * **ui5-illustrated-message:** vertical alignment ([#8566](https://github.com/SAP/ui5-webcomponents/issues/8566)) ([3141327](https://github.com/SAP/ui5-webcomponents/commit/3141327366e6b274e86e17519aadd660813048da)), closes [#8490](https://github.com/SAP/ui5-webcomponents/issues/8490)
2406
+ * **ui5-shellbar:** scope internally used icons ([#8613](https://github.com/SAP/ui5-webcomponents/issues/8613)) ([8419ac5](https://github.com/SAP/ui5-webcomponents/commit/8419ac560851bba08cd7cf24ab18b085a5e212c4)), closes [#8609](https://github.com/SAP/ui5-webcomponents/issues/8609)
2407
+
2408
+
2409
+
2410
+
2411
+
2412
+ # [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)
2413
+
2414
+
2415
+ ### Features
2416
+
2417
+ * **ui5-side-navigation:** make items customizable ([#8479](https://github.com/SAP/ui5-webcomponents/issues/8479)) ([95f6891](https://github.com/SAP/ui5-webcomponents/commit/95f68918c44055b8c005462b8ed083f7aecf61fb))
2418
+
2419
+
2420
+
2421
+
2422
+
2423
+ # [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)
2424
+
2425
+
2426
+ ### Bug Fixes
2427
+
2428
+ * **ui5-timeline-item:** fix subtitle text overflows when long text provided ([#8462](https://github.com/SAP/ui5-webcomponents/issues/8462)) ([c938f6d](https://github.com/SAP/ui5-webcomponents/commit/c938f6d05e6661aa29d7f528f090a965fc8e0a39))
2429
+
2430
+
2431
+
2432
+
2433
+
2434
+ # [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)
2435
+
2436
+
2437
+ ### Features
2438
+
2439
+ * **ui5-side-navigation:** add navigation groups ([#8261](https://github.com/SAP/ui5-webcomponents/issues/8261)) ([8678dc0](https://github.com/SAP/ui5-webcomponents/commit/8678dc0ec8f017a41ac5bdcd7720bc055d28891c))
2440
+
2441
+
2442
+
2443
+
2444
+
2445
+ # [1.24.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1...v1.24.0-rc.0) (2024-03-14)
2446
+
2447
+
2448
+ ### Bug Fixes
2449
+
2450
+ * **ui5-bar:** align subheader style ([#8412](https://github.com/SAP/ui5-webcomponents/issues/8412)) ([e42a976](https://github.com/SAP/ui5-webcomponents/commit/e42a976162314251b4c13d7b6850a80fcc2faffb)), closes [#8079](https://github.com/SAP/ui5-webcomponents/issues/8079)
2451
+ * **ui5-shellbar:** fix volatile test ([#8411](https://github.com/SAP/ui5-webcomponents/issues/8411)) ([7e6bf4b](https://github.com/SAP/ui5-webcomponents/commit/7e6bf4b15a437f2795d5fa791f1df07122bc0121)), closes [#8409](https://github.com/SAP/ui5-webcomponents/issues/8409)
2452
+
2453
+
2454
+ ### Features
2455
+
2456
+ * **ui5-barcode-scanner-dialog:** add 'open' property ([#8316](https://github.com/SAP/ui5-webcomponents/issues/8316)) ([8f59d16](https://github.com/SAP/ui5-webcomponents/commit/8f59d166c55af5f692520ff3b88b09aca28738c3)), closes [#8072](https://github.com/SAP/ui5-webcomponents/issues/8072)
2457
+
2458
+
2459
+
2460
+
2461
+
2462
+ ## [1.23.1](https://github.com/SAP/ui5-webcomponents/compare/v1.23.1-rc.0...v1.23.1) (2024-03-08)
2463
+
2464
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2465
+
2466
+
2467
+
2468
+
2469
+
2470
+ ## [1.23.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0...v1.23.1-rc.0) (2024-03-07)
2471
+
2472
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2473
+
2474
+
2475
+
2476
+
2477
+
2478
+ # [1.23.0](https://github.com/SAP/ui5-webcomponents/compare/v1.23.0-rc.5...v1.23.0) (2024-03-06)
2479
+
2480
+
2481
+ ### Bug Fixes
2482
+
2483
+ * **ui5-side-navigation:** fix private types ([#8158](https://github.com/SAP/ui5-webcomponents/issues/8158)) ([a03921c](https://github.com/SAP/ui5-webcomponents/commit/a03921cc4ad90418d3ca9dd2241a3cafe24e4fff))
2484
+
2485
+
2486
+ ### Features
2487
+
2488
+ * **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)
2489
+
2490
+
2491
+
2492
+
2493
+
2494
+ # [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)
2495
+
2496
+
2497
+ ### Bug Fixes
2498
+
2499
+ * **ui5-illustrated-message:** title subtitle aligned with visual spec ([#8344](https://github.com/SAP/ui5-webcomponents/issues/8344)) ([84fb0d9](https://github.com/SAP/ui5-webcomponents/commit/84fb0d94d0bf9597f10147ca4dff0fcbfc0570ff)), closes [#7879](https://github.com/SAP/ui5-webcomponents/issues/7879)
2500
+
2501
+
2502
+
2503
+
2504
+
2505
+ # [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)
2506
+
2507
+
2508
+ ### Bug Fixes
2509
+
2510
+ * **ui5-li-notification-group:** expand arrow visible ([#8329](https://github.com/SAP/ui5-webcomponents/issues/8329)) ([b2ca2a2](https://github.com/SAP/ui5-webcomponents/commit/b2ca2a299ebde195c5c16902a00969b6ada85f26)), closes [#8302](https://github.com/SAP/ui5-webcomponents/issues/8302)
2511
+
2512
+
2513
+
2514
+
2515
+
2516
+ # [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)
2517
+
2518
+
2519
+ ### Bug Fixes
2520
+
2521
+ * **ui5-timeline-item:** correct content check ([#8295](https://github.com/SAP/ui5-webcomponents/issues/8295)) ([414087f](https://github.com/SAP/ui5-webcomponents/commit/414087f676d83ba1a0e62e1bd929fcd9f9718e4d))
2522
+
2523
+
2524
+
2525
+
2526
+
2527
+ # [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)
2528
+
2529
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2530
+
2531
+
2532
+
2533
+
2534
+
2535
+ # [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)
2536
+
2537
+
2538
+ ### Bug Fixes
2539
+
2540
+ * **ui5-illustrated-message:** improved story and documentation ([#8294](https://github.com/SAP/ui5-webcomponents/issues/8294)) ([9740fe2](https://github.com/SAP/ui5-webcomponents/commit/9740fe21baa34233a66a4aea02f261fe1f5992f2))
2541
+
2542
+
2543
+
2544
+
2545
+
2546
+ # [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)
2547
+
2548
+
2549
+ ### Bug Fixes
2550
+
2551
+ * **ui5-illustrated-message:** aligned with visual specification ([#8266](https://github.com/SAP/ui5-webcomponents/issues/8266)) ([143d4af](https://github.com/SAP/ui5-webcomponents/commit/143d4afccfa1046f08c17e591e2749304afcac49))
2552
+
2553
+
2554
+ ### Features
2555
+
2556
+ * **ui5-side-navigation:** add external link icon ([#8199](https://github.com/SAP/ui5-webcomponents/issues/8199)) ([47e28c5](https://github.com/SAP/ui5-webcomponents/commit/47e28c5c50c824dfb743b79998c4d98f56be4beb))
2557
+
2558
+
2559
+
2560
+
2561
+
2562
+ ## [1.22.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0...v1.22.1-rc.0) (2024-02-08)
2563
+
2564
+
2565
+ ### Bug Fixes
2566
+
2567
+ * cast ariaHasPopup acc attribute to lowercase ([#8239](https://github.com/SAP/ui5-webcomponents/issues/8239)) ([6692284](https://github.com/SAP/ui5-webcomponents/commit/66922847d6cbc545c500c661d18facac7c2f609c))
2568
+ * **ui5-shellbar:** fixed secondaryTitle visual presentation ([#8221](https://github.com/SAP/ui5-webcomponents/issues/8221)) ([b3e0a80](https://github.com/SAP/ui5-webcomponents/commit/b3e0a80157615c22b89d7fb0857d22275cb83710)), closes [#8189](https://github.com/SAP/ui5-webcomponents/issues/8189)
2569
+
2570
+
2571
+
2572
+
2573
+
2574
+ # [1.22.0](https://github.com/SAP/ui5-webcomponents/compare/v1.22.0-rc.3...v1.22.0) (2024-02-05)
2575
+
2576
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2577
+
2578
+
2579
+
2580
+
2581
+
2582
+ # [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)
2583
+
2584
+
2585
+ ### Bug Fixes
2586
+
2587
+ * build ([#8191](https://github.com/SAP/ui5-webcomponents/issues/8191)) ([5af9560](https://github.com/SAP/ui5-webcomponents/commit/5af956088195cd4de81f9c1ec82f1b937b3498aa))
2588
+ * release build ([#8222](https://github.com/SAP/ui5-webcomponents/issues/8222)) ([27042ac](https://github.com/SAP/ui5-webcomponents/commit/27042ac90443dea8d5900d1c5bfa5bc93d365da0))
2589
+ * **ui5-li-notification-group:** correct collapse button shape on Compact mode ([#8166](https://github.com/SAP/ui5-webcomponents/issues/8166)) ([226d975](https://github.com/SAP/ui5-webcomponents/commit/226d975204f0755daf25710ad639ebfbd2e8fdd4)), closes [#8059](https://github.com/SAP/ui5-webcomponents/issues/8059)
2590
+ * **ui5-shellbar:** allow prevent default 'menu-item-click' action ([#8172](https://github.com/SAP/ui5-webcomponents/issues/8172)) ([d16efb6](https://github.com/SAP/ui5-webcomponents/commit/d16efb624f4d581bfa413cb96a4eebd4b9ce29d8))
2591
+
2592
+
2593
+ ### Features
2594
+
2595
+ * 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))
2596
+ * **ui5-illustrated-message:** new illustration type ([#8204](https://github.com/SAP/ui5-webcomponents/issues/8204)) ([9bcf589](https://github.com/SAP/ui5-webcomponents/commit/9bcf58930ce9d8a65507e173d2af99c34e644e78))
2597
+ * **ui5-illustrated-message:** new illustration type ([#8207](https://github.com/SAP/ui5-webcomponents/issues/8207)) ([6473ffe](https://github.com/SAP/ui5-webcomponents/commit/6473ffebd6001404c80cd06849e9135c6c350016))
2598
+ * **ui5-shellbar:** introducing Joule ([#8036](https://github.com/SAP/ui5-webcomponents/issues/8036)) ([ed5c20f](https://github.com/SAP/ui5-webcomponents/commit/ed5c20ffb42dd5f3eb81f77819fd40a9f7abbe08))
2599
+ * **ui5-shellbar:** new event added ([#8197](https://github.com/SAP/ui5-webcomponents/issues/8197)) ([4e864e9](https://github.com/SAP/ui5-webcomponents/commit/4e864e913597cdcc5d783012b8866afc1cde51a1)), closes [#6273](https://github.com/SAP/ui5-webcomponents/issues/6273)
2600
+
2601
+
2602
+
2603
+
2604
+
2605
+ # [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)
2606
+
2607
+
2608
+ ### Bug Fixes
2609
+
2610
+ * **ui5-side-navigation:** allow overstyling of width and border-radius ([#8081](https://github.com/SAP/ui5-webcomponents/issues/8081)) ([392f118](https://github.com/SAP/ui5-webcomponents/commit/392f11815b5e85d22949b4008f0a95c64e16d694))
2611
+ * **ui5-side-navigation:** correct text placement on items without icon ([#8154](https://github.com/SAP/ui5-webcomponents/issues/8154)) ([6bb45a9](https://github.com/SAP/ui5-webcomponents/commit/6bb45a94e5e52fc64fe8b816d1135e97ef6d85f3)), closes [#8131](https://github.com/SAP/ui5-webcomponents/issues/8131)
2612
+
2613
+
2614
+ ### Features
2615
+
2616
+ * **ui5-side-navigation:** display full item in collapsed mode on hover and focus ([#8112](https://github.com/SAP/ui5-webcomponents/issues/8112)) ([e0be298](https://github.com/SAP/ui5-webcomponents/commit/e0be29821a50d6c01f25d671565d0af4863e3d1e))
2617
+
2618
+
2619
+
2620
+
2621
+
2622
+ # [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)
2623
+
2624
+
2625
+ ### Bug Fixes
2626
+
2627
+ * **ui5-shellbar:** logo aligned with visual specification ([#8109](https://github.com/SAP/ui5-webcomponents/issues/8109)) ([4430869](https://github.com/SAP/ui5-webcomponents/commit/443086969a3d09b02fe0807366089dcf5e042c45)), closes [#8058](https://github.com/SAP/ui5-webcomponents/issues/8058)
2628
+
2629
+
2630
+ ### Features
2631
+
2632
+ * **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))
2633
+ * **ui5-illustrated-message:** add subtitle css part ([#8088](https://github.com/SAP/ui5-webcomponents/issues/8088)) ([351e570](https://github.com/SAP/ui5-webcomponents/commit/351e57042b25be66c2b47d72a89afd890dda063e))
2634
+
2635
+
2636
+
2637
+
2638
+
2639
+ # [1.22.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0...v1.22.0-rc.0) (2024-01-11)
2640
+
2641
+
2642
+ ### Features
2643
+
2644
+ * **ui5-side-navigation:** Add new overflow behaviour to collapsed mode ([#8019](https://github.com/SAP/ui5-webcomponents/issues/8019)) ([e5f8edd](https://github.com/SAP/ui5-webcomponents/commit/e5f8eddcdc9f1139d002585cdb014b47a0687b62))
2645
+
2646
+
2647
+
2648
+
2649
+
2650
+ # [1.21.0](https://github.com/SAP/ui5-webcomponents/compare/v1.21.0-rc.5...v1.21.0) (2024-01-05)
2651
+
2652
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2653
+
2654
+
2655
+
2656
+
2657
+
2658
+ # [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)
2659
+
2660
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2661
+
2662
+
2663
+
2664
+
2665
+
2666
+ # [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)
2667
+
2668
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2669
+
2670
+
2671
+
2672
+
2673
+
2674
+ # [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)
2675
+
2676
+
2677
+ ### Features
2678
+
2679
+ * **tools:** Optimize build by switching css processing to esbuild ([#8008](https://github.com/SAP/ui5-webcomponents/issues/8008)) ([b4d411f](https://github.com/SAP/ui5-webcomponents/commit/b4d411f00f8d74ccecb2d02254126243faf53dfd))
2680
+
2681
+
2682
+
2683
+
2684
+
2685
+ # [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)
2686
+
2687
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2688
+
2689
+
2690
+
2691
+
2692
+
2693
+ # [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)
2694
+
2695
+
2696
+ ### Bug Fixes
2697
+
2698
+ * **infra:** release commands ([#7978](https://github.com/SAP/ui5-webcomponents/issues/7978)) ([b0e653c](https://github.com/SAP/ui5-webcomponents/commit/b0e653cf911cc0ffe5fb5dcbd50a7c238f20f33d))
2699
+
2700
+
2701
+
2702
+
2703
+
2704
+ # [1.21.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0...v1.21.0-rc.0) (2023-12-07)
2705
+
2706
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2707
+
2708
+
2709
+
2710
+
2711
+
2712
+ # [1.20.0](https://github.com/SAP/ui5-webcomponents/compare/v1.20.0-rc.3...v1.20.0) (2023-12-04)
2713
+
2714
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2715
+
2716
+
2717
+
2718
+
2719
+
2720
+ # [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)
2721
+
2722
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2723
+
2724
+
2725
+
2726
+
2727
+
2728
+ # [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)
2729
+
2730
+
2731
+ ### Bug Fixes
2732
+
2733
+ * **ui5-wizard:** scrollbar styles are now present on root ([#7838](https://github.com/SAP/ui5-webcomponents/issues/7838)) ([1534d89](https://github.com/SAP/ui5-webcomponents/commit/1534d897f15f52f947a96430ca498a5548e4b6c8))
2734
+
2735
+
2736
+
2737
+
2738
+
2739
+ # [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)
2740
+
2741
+
2742
+ ### Features
2743
+
2744
+ * **ui5-illustrated-message:** titleLevel property added ([#7771](https://github.com/SAP/ui5-webcomponents/issues/7771)) ([2883c58](https://github.com/SAP/ui5-webcomponents/commit/2883c587f367e51e0f08065498b990f86e60e88c)), closes [#7037](https://github.com/SAP/ui5-webcomponents/issues/7037)
2745
+
2746
+
2747
+
2748
+
2749
+
2750
+ # [1.20.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0...v1.20.0-rc.0) (2023-11-09)
2751
+
2752
+
2753
+ ### Features
2754
+
2755
+ * **ui5-illustrated-message:** added new TNT illustrations ([#7773](https://github.com/SAP/ui5-webcomponents/issues/7773)) ([03f28b9](https://github.com/SAP/ui5-webcomponents/commit/03f28b90df0b2a28c0f09f67caaa0a5a1e63c4f3))
2756
+ * **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))
2757
+
2758
+
2759
+
2760
+
2761
+
2762
+ # [1.19.0](https://github.com/SAP/ui5-webcomponents/compare/v1.19.0-rc.3...v1.19.0) (2023-11-02)
2763
+
2764
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2765
+
2766
+
2767
+
2768
+
2769
+
2770
+ # [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)
2771
+
2772
+
2773
+ ### Bug Fixes
2774
+
2775
+ * **ui5-view-settings-dialog:** improve settings management ([#7769](https://github.com/SAP/ui5-webcomponents/issues/7769)) ([33cdb86](https://github.com/SAP/ui5-webcomponents/commit/33cdb86b34a3cb6e1b849a186a8c8c1652eb5bca)), closes [#7752](https://github.com/SAP/ui5-webcomponents/issues/7752)
2776
+
2777
+
2778
+
2779
+
2780
+
2781
+ # [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)
2782
+
2783
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2784
+
2785
+
2786
+
2787
+
2788
+
2789
+ # [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)
2790
+
2791
+
2792
+ ### Bug Fixes
2793
+
2794
+ * **ui5-flexible-column-layout:** wrong focus fixed ([#7586](https://github.com/SAP/ui5-webcomponents/issues/7586)) ([721cc0b](https://github.com/SAP/ui5-webcomponents/commit/721cc0b312fb76142dea97712b21343b7b93337e))
2795
+
2796
+
2797
+
2798
+
2799
+
2800
+ # [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)
2801
+
2802
+
2803
+ ### Bug Fixes
2804
+
2805
+ * **ui5-page:** adjust Horizon themes ([#7685](https://github.com/SAP/ui5-webcomponents/issues/7685)) ([39ccfe6](https://github.com/SAP/ui5-webcomponents/commit/39ccfe63d07b74bb50eb46a419de34fa1461bc6c))
2806
+ * **ui5-shellbar:** apply correct height to horizon high contrast themes ([#7655](https://github.com/SAP/ui5-webcomponents/issues/7655)) ([b72f012](https://github.com/SAP/ui5-webcomponents/commit/b72f0124f9b3ebe74cceeaaaf69abd6711ced0e5))
2807
+ * **ui5-shellbar:** horizon theme update ([#7623](https://github.com/SAP/ui5-webcomponents/issues/7623)) ([ff04434](https://github.com/SAP/ui5-webcomponents/commit/ff04434c9c00b29367faff22d187edb55186eccd))
2808
+ * **ui5-shellbar:** often failing unit test ([#7677](https://github.com/SAP/ui5-webcomponents/issues/7677)) ([a14d57c](https://github.com/SAP/ui5-webcomponents/commit/a14d57c2c25c714983ee3cb0899c8ec72a677b55)), closes [#7673](https://github.com/SAP/ui5-webcomponents/issues/7673)
2809
+
2810
+
2811
+ ### Features
2812
+
2813
+ * **ui5-illustrated-message:** enable vertical responsiveness ([#7672](https://github.com/SAP/ui5-webcomponents/issues/7672)) ([45244aa](https://github.com/SAP/ui5-webcomponents/commit/45244aacdc4fa846175d8a097ae242256e32a5b4)), closes [#6492](https://github.com/SAP/ui5-webcomponents/issues/6492)
2814
+
2815
+
2816
+
2817
+
2818
+
2819
+ ## [1.18.1-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0...v1.18.1-rc.0) (2023-10-05)
2820
+
2821
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2822
+
2823
+
2824
+
2825
+
2826
+
2827
+ # [1.18.0](https://github.com/SAP/ui5-webcomponents/compare/v1.18.0-rc.2...v1.18.0) (2023-10-02)
2828
+
2829
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2830
+
2831
+
2832
+
2833
+
2834
+
2835
+ # [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)
2836
+
2837
+
2838
+ ### Bug Fixes
2839
+
2840
+ * **ui5-media-gallery:** added new horizon theme parameters ([#7575](https://github.com/SAP/ui5-webcomponents/issues/7575)) ([25dbb4b](https://github.com/SAP/ui5-webcomponents/commit/25dbb4bd79890143021b9ecd3033665ea82cd6fa))
2841
+
2842
+
2843
+
2844
+
2845
+
2846
+ # [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)
2847
+
2848
+
2849
+ ### Bug Fixes
2850
+
2851
+ * **ui5-dialog:** fix background and shadow of slotted ui5-bar ([#7421](https://github.com/SAP/ui5-webcomponents/issues/7421)) ([2746460](https://github.com/SAP/ui5-webcomponents/commit/2746460ebd0d6517e8eedadde30b74e424c17a85)), closes [#7418](https://github.com/SAP/ui5-webcomponents/issues/7418)
2852
+ * **ui5-upload-collection-item:** align thumbnail to top ([#7582](https://github.com/SAP/ui5-webcomponents/issues/7582)) ([edeab49](https://github.com/SAP/ui5-webcomponents/commit/edeab49e3f7b63b3aee358983ea1fb9ff586ea3c)), closes [#7551](https://github.com/SAP/ui5-webcomponents/issues/7551)
2853
+ * **ui5-upload-collеction:** align buttons to avoid extra space when size is small ([#7491](https://github.com/SAP/ui5-webcomponents/issues/7491)) ([6594cd5](https://github.com/SAP/ui5-webcomponents/commit/6594cd5df91f31f31efc740846670df4a1c1933d))
2854
+
2855
+
2856
+
2857
+
2858
+
2859
+ # [1.18.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0...v1.18.0-rc.0) (2023-09-07)
2860
+
2861
+
2862
+ ### Bug Fixes
2863
+
2864
+ * **ui5-shellbar:** align notification counter ([#7490](https://github.com/SAP/ui5-webcomponents/issues/7490)) ([f8975a6](https://github.com/SAP/ui5-webcomponents/commit/f8975a67f81b62d90db1e508a85c3c894e995e95)), closes [#7208](https://github.com/SAP/ui5-webcomponents/issues/7208)
2865
+
2866
+
2867
+
2868
+
2869
+
2870
+ # [1.17.0](https://github.com/SAP/ui5-webcomponents/compare/v1.17.0-rc.2...v1.17.0) (2023-09-01)
2871
+
2872
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2873
+
2874
+
2875
+
2876
+
2877
+
2878
+ # [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)
2879
+
2880
+
2881
+ ### Bug Fixes
2882
+
2883
+ * **ui5-page:** enhance storybook samples ([#7448](https://github.com/SAP/ui5-webcomponents/issues/7448)) ([d0b8b01](https://github.com/SAP/ui5-webcomponents/commit/d0b8b01c053853915646b077860a247400cff691))
2884
+
2885
+
2886
+
2887
+
2888
+
2889
+ # [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)
2890
+
2891
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2892
+
2893
+
2894
+
2895
+
2896
+
2897
+ # [1.17.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0...v1.17.0-rc.0) (2023-08-10)
2898
+
2899
+
2900
+ ### Bug Fixes
2901
+
2902
+ * **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))
2903
+ * **ui5-shellbar:** button focus outline adjustment ([#7389](https://github.com/SAP/ui5-webcomponents/issues/7389)) ([3b7c711](https://github.com/SAP/ui5-webcomponents/commit/3b7c711875303be0bb995c80545a9786b2ec511c)), closes [#7220](https://github.com/SAP/ui5-webcomponents/issues/7220)
2904
+ * **ui5-side-navigation:** allow overstyling of border-radius ([#7400](https://github.com/SAP/ui5-webcomponents/issues/7400)) ([16ca431](https://github.com/SAP/ui5-webcomponents/commit/16ca43197ee7e9d522c813933c660b7dfe2a6ea3)), closes [#7308](https://github.com/SAP/ui5-webcomponents/issues/7308)
2905
+
2906
+
2907
+
2908
+
2909
+
2910
+ # [1.16.0](https://github.com/SAP/ui5-webcomponents/compare/v1.16.0-rc.4...v1.16.0) (2023-08-03)
2911
+
2912
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2913
+
2914
+
2915
+
2916
+
2917
+
2918
+ # [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)
2919
+
2920
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2921
+
2922
+
2923
+
2924
+
2925
+
2926
+ # [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)
2927
+
2928
+
2929
+ ### Bug Fixes
2930
+
2931
+ * **ui5-upload-collection:** correct visualization of "mode" property ([#7252](https://github.com/SAP/ui5-webcomponents/issues/7252)) ([9ca02dd](https://github.com/SAP/ui5-webcomponents/commit/9ca02ddae31ca45dfc734906e1f0da2413ceac40)), closes [#7111](https://github.com/SAP/ui5-webcomponents/issues/7111)
2932
+
2933
+
2934
+
2935
+
2936
+
2937
+ # [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)
2938
+
2939
+
2940
+ ### Features
2941
+
2942
+ * **ui5-wizard:** progress navigator title and optional text truncation ([#7263](https://github.com/SAP/ui5-webcomponents/issues/7263)) ([74077d1](https://github.com/SAP/ui5-webcomponents/commit/74077d1f16cb01347b01d1d55ef333789f5601f0))
2943
+
2944
+
2945
+
2946
+
2947
+
2948
+ # [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)
2949
+
2950
+
2951
+ ### Bug Fixes
2952
+
2953
+ * **ui5-shellbar:** primary and secondary titles alignment ([#7215](https://github.com/SAP/ui5-webcomponents/issues/7215)) ([9c32e30](https://github.com/SAP/ui5-webcomponents/commit/9c32e308ed5397ce40fd6ffa7c9b0e23573be75b)), closes [#7153](https://github.com/SAP/ui5-webcomponents/issues/7153) [#7107](https://github.com/SAP/ui5-webcomponents/issues/7107)
2954
+
2955
+
2956
+
2957
+
2958
+
2959
+ # [1.16.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.1...v1.16.0-rc.0) (2023-07-06)
2960
+
2961
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
2962
+
2963
+
2964
+
2965
+
2966
+
2967
+ # [1.15.0](https://github.com/SAP/ui5-webcomponents/compare/v1.15.0-rc.2...v1.15.0) (2023-06-30)
2968
+
2969
+
2970
+ ### Bug Fixes
2971
+
2972
+ * **ui5-shellbar:** align notification counter badge ([#7208](https://github.com/SAP/ui5-webcomponents/issues/7208)) ([1ee67f5](https://github.com/SAP/ui5-webcomponents/commit/1ee67f570ac722983859690fb602c5b62498d6d5))
2973
+ * **ui5-shellbar:** overflow action text translated ([#7218](https://github.com/SAP/ui5-webcomponents/issues/7218)) ([31af59c](https://github.com/SAP/ui5-webcomponents/commit/31af59c6667149798f619cce5eba9d456c29f452))
2974
+ * **ui5-shellbar:** tweaked breakpoint size "S" responsive padding ([#7219](https://github.com/SAP/ui5-webcomponents/issues/7219)) ([af597d1](https://github.com/SAP/ui5-webcomponents/commit/af597d1bc9d3a8e1bd6e79a39eebd84e57416c70))
2975
+ * **ui5-view-settings-dialog:** fix footer buttons position ([#7270](https://github.com/SAP/ui5-webcomponents/issues/7270)) ([e569e6b](https://github.com/SAP/ui5-webcomponents/commit/e569e6b424cc186e22c5972c45d6f11c081505d5))
2976
+
2977
+
2978
+
2979
+
2980
+
2981
+ # [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)
2982
+
2983
+
2984
+ ### Bug Fixes
2985
+
2986
+ * **ui5-page, ui5-wizard:** apply scrollbar styling ([#7224](https://github.com/SAP/ui5-webcomponents/issues/7224)) ([09eb5be](https://github.com/SAP/ui5-webcomponents/commit/09eb5beec006eeb9787740014cefa0335e8603c9))
2987
+ * **ui5-wizard:** prevent throwing exception in the console ([#7204](https://github.com/SAP/ui5-webcomponents/issues/7204)) ([c684135](https://github.com/SAP/ui5-webcomponents/commit/c684135fd64b453a639b0ce29593f03ae02ceac6))
2988
+
2989
+
2990
+ ### Features
2991
+
2992
+ * **ui5-side-navigation:** update Horizon theme design ([#7186](https://github.com/SAP/ui5-webcomponents/issues/7186)) ([819d153](https://github.com/SAP/ui5-webcomponents/commit/819d153ba5d82c0e48a642d2ee21ccc0fb61e253)), closes [#7160](https://github.com/SAP/ui5-webcomponents/issues/7160)
2993
+
2994
+
2995
+
2996
+
2997
+
2998
+ # [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)
2999
+
3000
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3001
+
3002
+
3003
+
3004
+
3005
+
3006
+
3007
+
3008
+
3009
+
3010
+ # [1.15.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0...v1.15.0-rc.0) (2023-06-08)
3011
+
3012
+
3013
+ ### Bug Fixes
3014
+
3015
+ * **ui5-bar:** apply correct box-shadow parameter ([#7150](https://github.com/SAP/ui5-webcomponents/issues/7150)) ([5f9ba23](https://github.com/SAP/ui5-webcomponents/commit/5f9ba23d9c28b2860c43e4396575609f6f6ff1e8))
3016
+ * **ui5-bar:** correct padding values in dialog ([#7046](https://github.com/SAP/ui5-webcomponents/issues/7046)) ([b20c946](https://github.com/SAP/ui5-webcomponents/commit/b20c946a00a91cc25eb709f839ccaa12998bf58e))
3017
+ * **ui5-illustrated-message:** text update in Survey ([#7146](https://github.com/SAP/ui5-webcomponents/issues/7146)) ([a4299ce](https://github.com/SAP/ui5-webcomponents/commit/a4299ce1249a547c89a2335325422944974455cd))
3018
+ * **ui5-shellbar:** improve RTL styling of searchField ([#7089](https://github.com/SAP/ui5-webcomponents/issues/7089)) ([9373abf](https://github.com/SAP/ui5-webcomponents/commit/9373abfd0114650069855419f1caeb2fc5462114)), closes [#7065](https://github.com/SAP/ui5-webcomponents/issues/7065)
3019
+ * **ui5-upload-collection:** item-delete event and delete mode docs are now updated ([#7106](https://github.com/SAP/ui5-webcomponents/issues/7106)) ([b12bccb](https://github.com/SAP/ui5-webcomponents/commit/b12bccb72bdcc63a966bbb54b0d044436e01cb50))
3020
+
3021
+
3022
+
3023
+
3024
+
3025
+ # [1.14.0](https://github.com/SAP/ui5-webcomponents/compare/v1.14.0-rc.2...v1.14.0) (2023-06-01)
3026
+
3027
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3028
+
3029
+
3030
+
3031
+
3032
+
3033
+ # [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)
3034
+
3035
+
3036
+ ### Features
3037
+
3038
+ * **ui5-wizard:** introduce contentLayout property ([#7006](https://github.com/SAP/ui5-webcomponents/issues/7006)) ([66e9c3d](https://github.com/SAP/ui5-webcomponents/commit/66e9c3d83a945ae80e32d8614084b732cabd2bea))
3039
+
3040
+
3041
+
3042
+
3043
+
3044
+ # [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)
3045
+
3046
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3047
+
3048
+
3049
+
3050
+
3051
+
3052
+ # [1.14.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.13.2...v1.14.0-rc.0) (2023-05-18)
3053
+
3054
+
3055
+ ### Bug Fixes
3056
+
3057
+ * **ui5-shellbar:** badge visual alignment ([#7004](https://github.com/SAP/ui5-webcomponents/issues/7004)) ([45a176d](https://github.com/SAP/ui5-webcomponents/commit/45a176da6dd5413617a25a92c1f7ba2e194790b6))
3058
+ * **ui5-shellbar:** remove double box-shadow effect on hover ([#7033](https://github.com/SAP/ui5-webcomponents/issues/7033)) ([fde8b69](https://github.com/SAP/ui5-webcomponents/commit/fde8b69b99175b91cf1a6c3b5018c044c07c8bd7))
3059
+
3060
+
3061
+ ### Features
3062
+
3063
+ * **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)
3064
+
3065
+
3066
+
3067
+
3068
+
3069
+ ## [1.13.2](https://github.com/SAP/ui5-webcomponents/compare/v1.13.1...v1.13.2) (2023-05-15)
3070
+
3071
+
3072
+ ### Bug Fixes
3073
+
3074
+ * **ui5-shellbar:** containers shrink factor reduced ([#6982](https://github.com/SAP/ui5-webcomponents/issues/6982)) ([e82744b](https://github.com/SAP/ui5-webcomponents/commit/e82744bd715bae744a7e41849f1fafc5ccc389ee))
3075
+
3076
+
3077
+
3078
+
3079
+
3080
+ ## [1.13.1](https://github.com/SAP/ui5-webcomponents/compare/v1.13.0-rc.5...v1.13.1) (2023-05-11)
3081
+
3082
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3083
+
3084
+
3085
+
3086
+
3087
+
3088
+ # [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)
3089
+
3090
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3091
+
3092
+
3093
+
3094
+
3095
+
3096
+ # [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)
3097
+
3098
+
3099
+ ### Bug Fixes
3100
+
3101
+ * add missing file-extensions for ESM support ([#6971](https://github.com/SAP/ui5-webcomponents/issues/6971)) ([1f42d0c](https://github.com/SAP/ui5-webcomponents/commit/1f42d0c658a437d64000c0f9b7562edff85b8421))
3102
+
3103
+
3104
+ ### Features
3105
+
3106
+ * generate TS from HBS templates ([#6558](https://github.com/SAP/ui5-webcomponents/issues/6558)) ([02611b2](https://github.com/SAP/ui5-webcomponents/commit/02611b2e24b2c2a06129b8e60a8bc680d9501e39))
3107
+
3108
+
3109
+
3110
+
3111
+
3112
+ # [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)
3113
+
3114
+
3115
+ ### Bug Fixes
3116
+
3117
+ * **ui5-flexible-column-layout:** add new border parameter for horizon theme ([#6915](https://github.com/SAP/ui5-webcomponents/issues/6915)) ([863a057](https://github.com/SAP/ui5-webcomponents/commit/863a0574fa0f712da34e1c25b660d197c28757b8))
3118
+
3119
+
3120
+
3121
+
3122
+
3123
+ # [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)
3124
+
3125
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3126
+
3127
+
3128
+
3129
+
3130
+
3131
+ # [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)
3132
+
3133
+
3134
+ ### Bug Fixes
3135
+
3136
+ * **ui5-bar:** fix top and bottom border of Buttons hidden in ui5-bar when shrinked ([#6887](https://github.com/SAP/ui5-webcomponents/issues/6887)) ([c425bde](https://github.com/SAP/ui5-webcomponents/commit/c425bded5e1047ad5863c764206286bce9b15282))
3137
+ * **ui5-shellbar:** primary title respects text spacing styles ([#6882](https://github.com/SAP/ui5-webcomponents/issues/6882)) ([5ab70d7](https://github.com/SAP/ui5-webcomponents/commit/5ab70d79673a83a3ebefb890065698d841cf0fe3))
3138
+ * **ui5-side-navigation:** avoid firing selection-change when the selected item is clicked ([#6842](https://github.com/SAP/ui5-webcomponents/issues/6842)) ([98c554f](https://github.com/SAP/ui5-webcomponents/commit/98c554f94e5d1ccd5987d9b799e7ead3f6a1745b)), closes [#6825](https://github.com/SAP/ui5-webcomponents/issues/6825)
3139
+ * **ui5-timeline*:** fix chronological line not displaying in vertical or default layout ([#6872](https://github.com/SAP/ui5-webcomponents/issues/6872)) ([69ad2a9](https://github.com/SAP/ui5-webcomponents/commit/69ad2a999a83429041e190033d9733c6bd0e1526))
3140
+
3141
+
3142
+
3143
+
3144
+
3145
+ # [1.13.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0...v1.13.0-rc.0) (2023-04-06)
3146
+
3147
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3148
+
3149
+
3150
+
3151
+
3152
+
3153
+ # [1.12.0](https://github.com/SAP/ui5-webcomponents/compare/v1.12.0-rc.3...v1.12.0) (2023-04-04)
3154
+
3155
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3156
+
3157
+
3158
+
3159
+
3160
+
3161
+ # [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)
3162
+
3163
+
3164
+ ### Bug Fixes
3165
+
3166
+ * **ui5-side-navigation:** correct-style description ([#6814](https://github.com/SAP/ui5-webcomponents/issues/6814)) ([38b14c5](https://github.com/SAP/ui5-webcomponents/commit/38b14c509cc8d650f34250d21422ea57f7ce5cdd))
3167
+
3168
+
3169
+
3170
+
3171
+
3172
+ # [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)
3173
+
3174
+
3175
+ ### Bug Fixes
3176
+
3177
+ * 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))
3178
+
3179
+
3180
+ ### Features
3181
+
3182
+ * **ui5-illustrated-message:** added new illustration type "Survey" ([#6747](https://github.com/SAP/ui5-webcomponents/issues/6747)) ([43301a9](https://github.com/SAP/ui5-webcomponents/commit/43301a961da009500bdfba96d4abcdf86a2a0039))
3183
+ * **ui5-illustrated-message:** added new illustrations ([#6701](https://github.com/SAP/ui5-webcomponents/issues/6701)) ([bead264](https://github.com/SAP/ui5-webcomponents/commit/bead2646325f86a6e5f136d48f8b04ec7983155c))
3184
+ * **ui5-upload-collection:** add IllustratedMessage for empty state ([#6657](https://github.com/SAP/ui5-webcomponents/issues/6657)) ([9ea5c93](https://github.com/SAP/ui5-webcomponents/commit/9ea5c93a5016143a50240d9d178422434a069365)), closes [#6271](https://github.com/SAP/ui5-webcomponents/issues/6271)
3185
+
3186
+
3187
+
3188
+
3189
+
3190
+ # [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)
3191
+
3192
+
3193
+ ### Features
3194
+
3195
+ * **ui5-product-switch:** enable alignment of items ([#6683](https://github.com/SAP/ui5-webcomponents/issues/6683)) ([97cba4b](https://github.com/SAP/ui5-webcomponents/commit/97cba4b0b63d3c8be5be1972188ebc780c255c2a))
3196
+
3197
+
3198
+
3199
+
3200
+
3201
+ # [1.12.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0...v1.12.0-rc.0) (2023-03-09)
3202
+
3203
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3204
+
3205
+
3206
+
3207
+
3208
+
3209
+ # [1.11.0](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.4...v1.11.0) (2023-03-06)
3210
+
3211
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3212
+
3213
+
3214
+
3215
+
3216
+
3217
+ # [1.11.0-rc.4](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.3...v1.11.0-rc.4) (2023-03-02)
3218
+
3219
+
3220
+ ### Features
3221
+
3222
+ * **framework:** use decorators for all static getters to define a custom element ([#6538](https://github.com/SAP/ui5-webcomponents/issues/6538)) ([c90cf0c](https://github.com/SAP/ui5-webcomponents/commit/c90cf0c2521cdbf063ba55706c25006a9f13e68a))
3223
+ * **ui5-li-notification, ui5-li-notification-group:** migrate to TypeScript ([#6568](https://github.com/SAP/ui5-webcomponents/issues/6568)) ([15dfc6e](https://github.com/SAP/ui5-webcomponents/commit/15dfc6e0716802fa00251629b80d5dc56ebb3472))
3224
+ * **ui5-media-gallery:** migrate to Typescript ([#6484](https://github.com/SAP/ui5-webcomponents/issues/6484)) ([3e53ada](https://github.com/SAP/ui5-webcomponents/commit/3e53adac7f01e58a246ad2b68298c304b7a2e949))
3225
+ * **ui5-shellbar:** migrate to Typescript ([#6561](https://github.com/SAP/ui5-webcomponents/issues/6561)) ([8431c60](https://github.com/SAP/ui5-webcomponents/commit/8431c60f2a8cd58bc8cc5708faa02111f079ffa7))
3226
+ * **ui5-wizard:** migrate to Typescript ([#6540](https://github.com/SAP/ui5-webcomponents/issues/6540)) ([57e2de7](https://github.com/SAP/ui5-webcomponents/commit/57e2de7973755909cde287f946e4a1b5f6f4a721)), closes [#4337](https://github.com/SAP/ui5-webcomponents/issues/4337) [#4337](https://github.com/SAP/ui5-webcomponents/issues/4337) [#4337](https://github.com/SAP/ui5-webcomponents/issues/4337) [#4337](https://github.com/SAP/ui5-webcomponents/issues/4337)
3227
+
3228
+
3229
+
3230
+
3231
+
3232
+ # [1.11.0-rc.3](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.2...v1.11.0-rc.3) (2023-02-23)
3233
+
3234
+
3235
+ ### Bug Fixes
3236
+
3237
+ * **ui5-dialog:** overstyle bar when slotted in footer ([#6543](https://github.com/SAP/ui5-webcomponents/issues/6543)) ([a13ae40](https://github.com/SAP/ui5-webcomponents/commit/a13ae407f1decb17648c4ab5dac382b11ec0bd9c)), closes [#5561](https://github.com/SAP/ui5-webcomponents/issues/5561)
3238
+ * **ui5-select, ui5-suggestion-item, ui5-shellbar:** color of icon inside options is according to spec ([#6415](https://github.com/SAP/ui5-webcomponents/issues/6415)) ([78cd73b](https://github.com/SAP/ui5-webcomponents/commit/78cd73b2f6940e62dcd297b4a2c5c63ea7a295e1))
3239
+
3240
+
3241
+ ### Features
3242
+
3243
+ * **playground:** next playground with storybook ([#5831](https://github.com/SAP/ui5-webcomponents/issues/5831)) ([79274c8](https://github.com/SAP/ui5-webcomponents/commit/79274c8e442cf5854a7fe6327f25aaed04312103)), closes [#5898](https://github.com/SAP/ui5-webcomponents/issues/5898)
3244
+ * **ui5-side-navigation:** migrate to TypeScript ([#6429](https://github.com/SAP/ui5-webcomponents/issues/6429)) ([d8ab195](https://github.com/SAP/ui5-webcomponents/commit/d8ab195f59e9208dc9cb1dfd5ffc6518304da055)), closes [#4337](https://github.com/SAP/ui5-webcomponents/issues/4337) [#6436](https://github.com/SAP/ui5-webcomponents/issues/6436)
3245
+
3246
+
3247
+
3248
+
3249
+
3250
+ # [1.11.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.1...v1.11.0-rc.2) (2023-02-16)
3251
+
3252
+
3253
+ ### Bug Fixes
3254
+
3255
+ * **ui5-page:** update documentation on page height ([#6476](https://github.com/SAP/ui5-webcomponents/issues/6476)) ([4c4bb37](https://github.com/SAP/ui5-webcomponents/commit/4c4bb3749561ec0c07390bb53500c9b0ad5bd836))
3256
+ * **ui5-side-navigation:** scope components in static area ([#6453](https://github.com/SAP/ui5-webcomponents/issues/6453)) ([76307cb](https://github.com/SAP/ui5-webcomponents/commit/76307cb2e249a0ccf0719366e6b29f3c8a77ae15))
3257
+
3258
+
3259
+ ### Features
3260
+
3261
+ * **ui5-segmented-button, ui5-toggle-button:** migrated to TypeScript ([#6374](https://github.com/SAP/ui5-webcomponents/issues/6374)) ([26064db](https://github.com/SAP/ui5-webcomponents/commit/26064dbb5ab842712bb304aca619cd10bac38d2b))
3262
+
3263
+
3264
+
3265
+
3266
+
3267
+ # [1.11.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v1.11.0-rc.0...v1.11.0-rc.1) (2023-02-09)
3268
+
3269
+
3270
+ ### Bug Fixes
3271
+
3272
+ * **ui5-shellbar:** i18n of cancel search button text ([#6416](https://github.com/SAP/ui5-webcomponents/issues/6416)) ([3efdc6c](https://github.com/SAP/ui5-webcomponents/commit/3efdc6cf7d14b37e714a3979a16ea4cbe498f85e))
3273
+
3274
+
3275
+
3276
+
3277
+
3278
+ # [1.11.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.10.4-rc.0...v1.11.0-rc.0) (2023-02-02)
3279
+
3280
+
3281
+ ### Features
3282
+
3283
+ * **ui5-barcode-scanner-dialog:** migrated to Typescript ([#6338](https://github.com/SAP/ui5-webcomponents/issues/6338)) ([10b4417](https://github.com/SAP/ui5-webcomponents/commit/10b4417e8ea4229b6bd2ef5b4957bbf00d155d39))
3284
+
3285
+
3286
+
3287
+
3288
+
3289
+ ## [1.10.4-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v1.10.3...v1.10.4-rc.0) (2023-01-26)
3290
+
3291
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3292
+
3293
+
3294
+
3295
+
3296
+
3297
+ ## [1.10.3](https://github.com/SAP/ui5-webcomponents/compare/v1.10.2...v1.10.3) (2023-01-25)
3298
+
3299
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3300
+
3301
+
3302
+
3303
+
3304
+
3305
+ ## [1.10.2](https://github.com/SAP/ui5-webcomponents/compare/v1.10.1...v1.10.2) (2023-01-25)
3306
+
3307
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3308
+
3309
+
3310
+
3311
+
3312
+
3313
+ ## [1.10.1](https://github.com/SAP/ui5-webcomponents/compare/v0.0.0-7b49a7ff1...v1.10.1) (2023-01-24)
3314
+
3315
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3316
+
3317
+
3318
+
3319
+
3320
+
3321
+ # [1.10.0](https://github.com/SAP/ui5-webcomponents/compare/v1.9.3...v1.10.0) (2023-01-20)
3322
+
3323
+
3324
+ ### Bug Fixes
3325
+
3326
+ * **docs:** samples typos ([#6236](https://github.com/SAP/ui5-webcomponents/issues/6236)) ([be26877](https://github.com/SAP/ui5-webcomponents/commit/be26877e361cd17407498b370e08cf11c175a2d5))
3327
+ * **i18n:** processing text with formater ([#6041](https://github.com/SAP/ui5-webcomponents/issues/6041)) ([f155dee](https://github.com/SAP/ui5-webcomponents/commit/f155deee5ca7b1cb4a0e1e61298a895344321eb0))
3328
+ * **ui5-illustrated-message:** i18n texts are fixed ([#6037](https://github.com/SAP/ui5-webcomponents/issues/6037)) ([68350bc](https://github.com/SAP/ui5-webcomponents/commit/68350bc57f50d0f220321a05fb59238bef3dde96)), closes [#5974](https://github.com/SAP/ui5-webcomponents/issues/5974)
3329
+ * **ui5-illustrated-message:** resize fixed ([#6179](https://github.com/SAP/ui5-webcomponents/issues/6179)) ([d52c8af](https://github.com/SAP/ui5-webcomponents/commit/d52c8afda49b5a0c880551d516b82cc99a0cebc5))
3330
+ * **ui5-shellbar:** fixed typo in samples ([#6128](https://github.com/SAP/ui5-webcomponents/issues/6128)) ([c6799f4](https://github.com/SAP/ui5-webcomponents/commit/c6799f49c60297cdbaad53f9442776630d3ea884)), closes [#6116](https://github.com/SAP/ui5-webcomponents/issues/6116)
3331
+ * **ui5-shellbar:** focus on popover fixed ([#6113](https://github.com/SAP/ui5-webcomponents/issues/6113)) ([61c9989](https://github.com/SAP/ui5-webcomponents/commit/61c9989d318c4725eff97c7da70430e11c9eb56f))
3332
+ * **ui5-side-navigation:** fixed accessibility of the Popover ([#6045](https://github.com/SAP/ui5-webcomponents/issues/6045)) ([e0e13e1](https://github.com/SAP/ui5-webcomponents/commit/e0e13e11d26abbcb2746e4abd1c72d312212ebaf)), closes [#5827](https://github.com/SAP/ui5-webcomponents/issues/5827)
3333
+ * **ui5-side-navigation:** fixed accessibility roles and attributes when Side Navigation is collapsed ([#5877](https://github.com/SAP/ui5-webcomponents/issues/5877)) ([92b9dc9](https://github.com/SAP/ui5-webcomponents/commit/92b9dc99ea4c598f22111dfea3a435e55c585dfc)), closes [#5827](https://github.com/SAP/ui5-webcomponents/issues/5827)
3334
+ * **ui5-side-navigation:** focus handling of tree inside popover ([#6155](https://github.com/SAP/ui5-webcomponents/issues/6155)) ([cf024bd](https://github.com/SAP/ui5-webcomponents/commit/cf024bd43e08dd4dccc6cab225b81b3f4f771a74))
3335
+ * **ui5-wizard:** allow scrolling when step is bigger than viewport ([#6241](https://github.com/SAP/ui5-webcomponents/issues/6241)) ([259b61a](https://github.com/SAP/ui5-webcomponents/commit/259b61afafd46f1e5bc881bf780e636683769ac1))
3336
+ * **ui5-wizard:** prevent step overlapping in navigator ([#6169](https://github.com/SAP/ui5-webcomponents/issues/6169)) ([9349e16](https://github.com/SAP/ui5-webcomponents/commit/9349e167eba0c0feac41004b41abf17fbca348b2)), closes [#6067](https://github.com/SAP/ui5-webcomponents/issues/6067)
3337
+
3338
+
3339
+ ### Features
3340
+
3341
+ * enable TS in main, fiori ([#6064](https://github.com/SAP/ui5-webcomponents/issues/6064)) ([0b56130](https://github.com/SAP/ui5-webcomponents/commit/0b561307b93b8af465dc5bee67650069ee138f7f))
3342
+ * fiori `types` folder to TypeScript ([#6076](https://github.com/SAP/ui5-webcomponents/issues/6076)) ([918b4fb](https://github.com/SAP/ui5-webcomponents/commit/918b4fbe7e14220c46115f7426a3d844f5c6ac1f))
3343
+ * migrate illustrated-message component to TS, small refactor ([#6195](https://github.com/SAP/ui5-webcomponents/issues/6195)) ([046c779](https://github.com/SAP/ui5-webcomponents/commit/046c779f654648172619dd720c0d90342ec78fb9))
3344
+ * support decorators for custom elements metadata ([#6072](https://github.com/SAP/ui5-webcomponents/issues/6072)) ([fc9ee6e](https://github.com/SAP/ui5-webcomponents/commit/fc9ee6e2af10b4315fde072a50ab37efa180c809))
3345
+ * **ui5-button, ui5-date-picker, ui5-calendar:** migrate to TS ([#6173](https://github.com/SAP/ui5-webcomponents/issues/6173)) ([7232ca0](https://github.com/SAP/ui5-webcomponents/commit/7232ca08f286c5dde10080373fb62247f1acf7b7)), closes [#6080](https://github.com/SAP/ui5-webcomponents/issues/6080)
3346
+ * **ui5-Illustrated-message:** illustrations update in the default set ([#6013](https://github.com/SAP/ui5-webcomponents/issues/6013)) ([329f80c](https://github.com/SAP/ui5-webcomponents/commit/329f80cca0d9c195e0e776a21d693cb0097d640a))
3347
+ * **ui5-Illustrated-message:** updated missing illustration texts ([#6075](https://github.com/SAP/ui5-webcomponents/issues/6075)) ([78c3227](https://github.com/SAP/ui5-webcomponents/commit/78c3227ac5766903df551f6211dbc04c767cea88))
3348
+ * **ui5-list, ui5-li, ui5-li-custom:** migrate to TS ([#6166](https://github.com/SAP/ui5-webcomponents/issues/6166)) ([12b3570](https://github.com/SAP/ui5-webcomponents/commit/12b35707c3f0934dcb98fdcde0ed715140a4af4a))
3349
+ * **ui5-shellbar:** accessibilityAttributes property added ([#6117](https://github.com/SAP/ui5-webcomponents/issues/6117)) ([056ed9f](https://github.com/SAP/ui5-webcomponents/commit/056ed9fc21c9dac8b6a289d57a23fcb6f9e44c04))
3350
+ * **ui5-shellbar:** programmatically show search field ([#6085](https://github.com/SAP/ui5-webcomponents/issues/6085)) ([e0658a6](https://github.com/SAP/ui5-webcomponents/commit/e0658a6503ea0203df74317f57e4fb0a5be7620e)), closes [#5818](https://github.com/SAP/ui5-webcomponents/issues/5818)
3351
+ * **ui5-shellbar:** use header semantic element ([#6146](https://github.com/SAP/ui5-webcomponents/issues/6146)) ([9865eb2](https://github.com/SAP/ui5-webcomponents/commit/9865eb2d5825d1ce799fc110611288e5fa090613))
3352
+ * **ui5-tree-item-custom:** initial implementation ([#5962](https://github.com/SAP/ui5-webcomponents/issues/5962)) ([b148c23](https://github.com/SAP/ui5-webcomponents/commit/b148c23cf7ed11b4e17c9eda61a20fc48882ba4f))
3353
+ * **ui5-viewsettings-dialog:** migrate to Typescript ([#6218](https://github.com/SAP/ui5-webcomponents/issues/6218)) ([ee3bbe4](https://github.com/SAP/ui5-webcomponents/commit/ee3bbe46b070092dffd054b1350f444fa072539e))
3354
+ * **ui5-wizard:** adopt responsive paddings ([#6061](https://github.com/SAP/ui5-webcomponents/issues/6061)) ([402bc28](https://github.com/SAP/ui5-webcomponents/commit/402bc28137fab738778f8c7da099c073cc39f45d)), closes [#5597](https://github.com/SAP/ui5-webcomponents/issues/5597)
3355
+
3356
+
3357
+
3358
+
3359
+
3360
+ ## [1.9.3](https://github.com/SAP/ui5-webcomponents/compare/v1.9.2...v1.9.3) (2022-12-16)
3361
+
3362
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3363
+
3364
+
3365
+
3366
+
3367
+
3368
+ ## [1.9.1](https://github.com/SAP/ui5-webcomponents/compare/v1.9.0...v1.9.1) (2022-11-10)
3369
+
3370
+
3371
+ ### Bug Fixes
3372
+
3373
+ * **framework:** fix paths for generating illustration imports in nps ([#5997](https://github.com/SAP/ui5-webcomponents/issues/5997)) ([e932f7d](https://github.com/SAP/ui5-webcomponents/commit/e932f7d069ebf10f73219bff7154558b7b0d849e))
3374
+
3375
+
3376
+
3377
+
3378
+
3379
+ # [1.9.0](https://github.com/SAP/ui5-webcomponents/compare/v1.8.0...v1.9.0) (2022-10-31)
3380
+
3381
+
3382
+ ### Bug Fixes
3383
+
3384
+ * **BarcodeScannerDialog:** imports of UMD modules work in all kinds o… ([#5901](https://github.com/SAP/ui5-webcomponents/issues/5901)) ([af203b9](https://github.com/SAP/ui5-webcomponents/commit/af203b94e1143bb01ecd596d5583c90da8f77eba))
3385
+ * **ui5-illustrated-message:** prevent infinite resize ([#5882](https://github.com/SAP/ui5-webcomponents/issues/5882)) ([a8413ad](https://github.com/SAP/ui5-webcomponents/commit/a8413adb6933202da4ff8695823ea840d1be07bb)), closes [#5852](https://github.com/SAP/ui5-webcomponents/issues/5852)
3386
+ * **ui5-notifications:** add missing imports for used icons ([#5907](https://github.com/SAP/ui5-webcomponents/issues/5907)) ([a50a22f](https://github.com/SAP/ui5-webcomponents/commit/a50a22fc1b6fd7a7d94acc90fbf82c8c37266f97)), closes [#5905](https://github.com/SAP/ui5-webcomponents/issues/5905)
3387
+ * **ui5-shellbar:** outline buttons color on focus fixed for quartz ([#5868](https://github.com/SAP/ui5-webcomponents/issues/5868)) ([f61df7e](https://github.com/SAP/ui5-webcomponents/commit/f61df7ec8d9e0530f69b1735388ab277b667fa94))
3388
+
3389
+
3390
+ ### Features
3391
+
3392
+ * **framework:** fetch illustrations on demand ([#5927](https://github.com/SAP/ui5-webcomponents/issues/5927)) ([f8e1033](https://github.com/SAP/ui5-webcomponents/commit/f8e1033643626261dcad8a38f65c325ba9aff99f))
3393
+ * **framework:** generate custom elements manifest ([#5964](https://github.com/SAP/ui5-webcomponents/issues/5964)) ([0d62770](https://github.com/SAP/ui5-webcomponents/commit/0d62770cace54fd9aef73d9632dd06d8a83680e9))
3394
+ * **ui5-barcodescanner:** downgraded to lower helper version ([#5925](https://github.com/SAP/ui5-webcomponents/issues/5925)) ([bf2fc4b](https://github.com/SAP/ui5-webcomponents/commit/bf2fc4b43bea86d330eb66fbe60dc226e9e9f550))
3395
+
3396
+
3397
+
3398
+
3399
+
3400
+ # [1.8.0](https://github.com/SAP/ui5-webcomponents/compare/v1.7.1...v1.8.0) (2022-10-03)
3401
+
3402
+
3403
+ ### Bug Fixes
3404
+
3405
+ * **ui5-illustrated-message:** removed redundant scrollbar in RTL ([#5819](https://github.com/SAP/ui5-webcomponents/issues/5819)) ([676adcd](https://github.com/SAP/ui5-webcomponents/commit/676adcd1e706e528440c9a75edb5713ef538460d)), closes [#5788](https://github.com/SAP/ui5-webcomponents/issues/5788)
3406
+ * **ui5-side-navigation:** toggle icon no longer shrinks with long text ([#5837](https://github.com/SAP/ui5-webcomponents/issues/5837)) ([8a69be2](https://github.com/SAP/ui5-webcomponents/commit/8a69be21c683ed98a522e2391eeb61901acb0e7d)), closes [#5825](https://github.com/SAP/ui5-webcomponents/issues/5825)
3407
+
3408
+
3409
+ ### Features
3410
+
3411
+ * **f6navigation:** improve fastgroup navigation ([#5844](https://github.com/SAP/ui5-webcomponents/issues/5844)) ([f44f57b](https://github.com/SAP/ui5-webcomponents/commit/f44f57b27850de03e430d08e3e9adc71d60296fe))
3412
+ * **ui5-illustrated-message:** accessible-name-ref added ([#5765](https://github.com/SAP/ui5-webcomponents/issues/5765)) ([51165df](https://github.com/SAP/ui5-webcomponents/commit/51165df780d92404c63e16a09dbfe579c533456c))
3413
+
3414
+
3415
+
3416
+
3417
+
3418
+ ## [1.7.1](https://github.com/SAP/ui5-webcomponents/compare/v1.7.0...v1.7.1) (2022-09-08)
3419
+
3420
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3421
+
3422
+
3423
+
3424
+
3425
+
3426
+ # [1.7.0](https://github.com/SAP/ui5-webcomponents/compare/v1.6.0...v1.7.0) (2022-09-02)
3427
+
3428
+
3429
+ ### Bug Fixes
3430
+
3431
+ * **ui5-bar:** adjust resizing behavior ([#5678](https://github.com/SAP/ui5-webcomponents/issues/5678)) ([b6efba2](https://github.com/SAP/ui5-webcomponents/commit/b6efba285ef03c4a873dca92b328cb5c3d1ddf78))
3432
+ * **ui5-li-notification:** align actions' texts to the left ([#5706](https://github.com/SAP/ui5-webcomponents/issues/5706)) ([f746016](https://github.com/SAP/ui5-webcomponents/commit/f746016d6311080fc189079943c273e7e6e21946)), closes [#5704](https://github.com/SAP/ui5-webcomponents/issues/5704)
3433
+ * **ui5-link:** multiple click events ([#5642](https://github.com/SAP/ui5-webcomponents/issues/5642)) ([74fd5b9](https://github.com/SAP/ui5-webcomponents/commit/74fd5b91fd83bf28c0f4347df92b3721eb11577d))
3434
+ * **ui5-view-settings-dialog:** focus correct page on open ([#5746](https://github.com/SAP/ui5-webcomponents/issues/5746)) ([d7a8e10](https://github.com/SAP/ui5-webcomponents/commit/d7a8e10e069a8d6df8aff4acf2d2de2eaa7d081d)), closes [#5451](https://github.com/SAP/ui5-webcomponents/issues/5451)
3435
+ * **ui5-view-settings-dialog:** update setConfirmedSettings param string type from String to Object and description sample code ([#5534](https://github.com/SAP/ui5-webcomponents/issues/5534)) ([da16e2c](https://github.com/SAP/ui5-webcomponents/commit/da16e2c6ea44cd4c500931b1ae2db17434391125))
3436
+
3437
+
3438
+ ### Features
3439
+
3440
+ * **ui5-illustrated-message:** introduce title slot ([#5611](https://github.com/SAP/ui5-webcomponents/issues/5611)) ([16ec3a8](https://github.com/SAP/ui5-webcomponents/commit/16ec3a8b1a84fd9b32cc635050f5ff2aefc4c5c2)), closes [#5503](https://github.com/SAP/ui5-webcomponents/issues/5503)
3441
+
3442
+
3443
+
3444
+
3445
+
3446
+ # [1.6.0](https://github.com/SAP/ui5-webcomponents/compare/v1.5.0...v1.6.0) (2022-07-25)
3447
+
3448
+
3449
+ ### Features
3450
+
3451
+ * **ui5-bar:** implement resize handlers for each slot ([#5482](https://github.com/SAP/ui5-webcomponents/issues/5482)) ([a8a4acd](https://github.com/SAP/ui5-webcomponents/commit/a8a4acd))
3452
+ * **ui5-shellbar:** new property accessibilityRoles ([#5551](https://github.com/SAP/ui5-webcomponents/issues/5551)) ([eef5c50](https://github.com/SAP/ui5-webcomponents/commit/eef5c50)), closes [#4775](https://github.com/SAP/ui5-webcomponents/issues/4775)
3453
+
3454
+
3455
+
3456
+
3457
+
3458
+ # [1.5.0](https://github.com/SAP/ui5-webcomponents/compare/v1.4.0...v1.5.0) (2022-07-03)
3459
+
3460
+
3461
+ ### Bug Fixes
3462
+
3463
+ * **f6navigation:** prevent default behavior on windows OS ([#5424](https://github.com/SAP/ui5-webcomponents/issues/5424)) ([a494f85](https://github.com/SAP/ui5-webcomponents/commit/a494f85))
3464
+ * **ui5-shellbar:** correct accessibility DOM ([#5395](https://github.com/SAP/ui5-webcomponents/issues/5395)) ([aba5fb5](https://github.com/SAP/ui5-webcomponents/commit/aba5fb5))
3465
+ * **ui5-timeline-item:** align text in title link ([51954b7](https://github.com/SAP/ui5-webcomponents/commit/51954b7)), closes [#5163](https://github.com/SAP/ui5-webcomponents/issues/5163)
3466
+
3467
+
3468
+ ### Features
3469
+
3470
+ * **ui5-illustrated-message:** implement size property ([#5405](https://github.com/SAP/ui5-webcomponents/issues/5405)) ([c58690d](https://github.com/SAP/ui5-webcomponents/commit/c58690d))
3471
+ * **ui5-view-settings-dialog:** Implement behaviour for external setting of confirmed settings ([#5222](https://github.com/SAP/ui5-webcomponents/issues/5222)) ([7fbb235](https://github.com/SAP/ui5-webcomponents/commit/7fbb235))
3472
+
3473
+
3474
+
3475
+
3476
+
3477
+ # [1.4.0](https://github.com/SAP/ui5-webcomponents/compare/v1.3.1...v1.4.0) (2022-05-25)
3478
+
3479
+
3480
+ ### Bug Fixes
3481
+
3482
+ * **ui5-illustrated-message:** make component language aware ([#5158](https://github.com/SAP/ui5-webcomponents/issues/5158)) ([5b6502b](https://github.com/SAP/ui5-webcomponents/commit/5b6502b))
3483
+ * **ui5-page:** remove unnecessary scrollbar ([#5258](https://github.com/SAP/ui5-webcomponents/issues/5258)) ([8ef6289](https://github.com/SAP/ui5-webcomponents/commit/8ef6289))
3484
+
3485
+
3486
+ ### Features
3487
+
3488
+ * **ui5-notifications:** implement SAP Horizon theme ([#5067](https://github.com/SAP/ui5-webcomponents/issues/5067)) ([ccdfe4c](https://github.com/SAP/ui5-webcomponents/commit/ccdfe4c))
3489
+ * **ui5-shellbar:** implement Horizon theme ([#5197](https://github.com/SAP/ui5-webcomponents/issues/5197)) ([d278c09](https://github.com/SAP/ui5-webcomponents/commit/d278c09)), closes [#5008](https://github.com/SAP/ui5-webcomponents/issues/5008)
3490
+ * **ui5-side-navigation:** implement SAP Horizon theme family ([#5081](https://github.com/SAP/ui5-webcomponents/issues/5081)) ([d8d9315](https://github.com/SAP/ui5-webcomponents/commit/d8d9315)), closes [#5006](https://github.com/SAP/ui5-webcomponents/issues/5006)
3491
+ * **ui5-timeline:** implement Horizon theme ([#5155](https://github.com/SAP/ui5-webcomponents/issues/5155)) ([e557f71](https://github.com/SAP/ui5-webcomponents/commit/e557f71))
3492
+ * **ui5-upload-collection:** implement SAP Horizon theme family ([#5148](https://github.com/SAP/ui5-webcomponents/issues/5148)) ([7956864](https://github.com/SAP/ui5-webcomponents/commit/7956864))
3493
+
3494
+
3495
+
3496
+
3497
+
3498
+ ## [1.3.1](https://github.com/SAP/ui5-webcomponents/compare/v1.3.0...v1.3.1) (2022-04-27)
3499
+
3500
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3501
+
3502
+
3503
+
3504
+
3505
+
3506
+ # [1.3.0](https://github.com/SAP/ui5-webcomponents/compare/v1.2.4...v1.3.0) (2022-04-19)
3507
+
3508
+
3509
+ ### Bug Fixes
3510
+
3511
+ * **ui5-flexible-column-layout:** correct column border styles for RTL ([#4919](https://github.com/SAP/ui5-webcomponents/issues/4919)) ([660f639](https://github.com/SAP/ui5-webcomponents/commit/660f639)), closes [#4906](https://github.com/SAP/ui5-webcomponents/issues/4906)
3512
+ * **ui5-illustrated-message:** remove offensive characters ([#4929](https://github.com/SAP/ui5-webcomponents/issues/4929)) ([cbf5b02](https://github.com/SAP/ui5-webcomponents/commit/cbf5b02))
3513
+ * **ui5-illustrated-message:** updated illustrations ([#4950](https://github.com/SAP/ui5-webcomponents/issues/4950)) ([6ff4e1b](https://github.com/SAP/ui5-webcomponents/commit/6ff4e1b))
3514
+ * **ui5-media-gallery:** correct overflow label ([#4903](https://github.com/SAP/ui5-webcomponents/issues/4903)) ([4f28a6e](https://github.com/SAP/ui5-webcomponents/commit/4f28a6e))
3515
+ * **ui5-page:** Allow developers to be able to overwrite responsive paddings ([#5056](https://github.com/SAP/ui5-webcomponents/issues/5056)) ([b09dd35](https://github.com/SAP/ui5-webcomponents/commit/b09dd35))
3516
+ * **ui5-shellbar:** searchfield placeholder color ([#5079](https://github.com/SAP/ui5-webcomponents/issues/5079)) ([aba6aab](https://github.com/SAP/ui5-webcomponents/commit/aba6aab))
3517
+ * **ui5-shellbar, ui5-breadcrumbs, ui5-barcode-scanner-dialog:** align popover paddings ([#4894](https://github.com/SAP/ui5-webcomponents/issues/4894)) ([b947d1b](https://github.com/SAP/ui5-webcomponents/commit/b947d1b)), closes [#4872](https://github.com/SAP/ui5-webcomponents/issues/4872)
3518
+ * **ui5-view-settings-dialog:** adjust scrollbar behavior ([#4795](https://github.com/SAP/ui5-webcomponents/issues/4795)) ([8f58fd5](https://github.com/SAP/ui5-webcomponents/commit/8f58fd5)), closes [#4724](https://github.com/SAP/ui5-webcomponents/issues/4724) [#4725](https://github.com/SAP/ui5-webcomponents/issues/4725) [#4860](https://github.com/SAP/ui5-webcomponents/issues/4860)
3519
+ * **ui5-view-settings-dialog:** fixing comments from previous commit ([#4851](https://github.com/SAP/ui5-webcomponents/issues/4851)) ([3fc5814](https://github.com/SAP/ui5-webcomponents/commit/3fc5814))
3520
+ * **ui5-view-settings-dialog:** including title in initial reading ([#4827](https://github.com/SAP/ui5-webcomponents/issues/4827)) ([685d4ba](https://github.com/SAP/ui5-webcomponents/commit/685d4ba)), closes [#4660](https://github.com/SAP/ui5-webcomponents/issues/4660)
3521
+ * **ui5-view-settings-dialog:** replacement of the slot with ui5 li element ([#5013](https://github.com/SAP/ui5-webcomponents/issues/5013)) ([839ddf8](https://github.com/SAP/ui5-webcomponents/commit/839ddf8)), closes [#4888](https://github.com/SAP/ui5-webcomponents/issues/4888)
3522
+ * **ui5-view-settings-dialog:** visual alignment ([#4867](https://github.com/SAP/ui5-webcomponents/issues/4867)) ([8a628df](https://github.com/SAP/ui5-webcomponents/commit/8a628df)), closes [#4102](https://github.com/SAP/ui5-webcomponents/issues/4102) [#3744](https://github.com/SAP/ui5-webcomponents/issues/3744) [#4838](https://github.com/SAP/ui5-webcomponents/issues/4838)
3523
+ * correct responsive padding in some consumers of popups ([#4926](https://github.com/SAP/ui5-webcomponents/issues/4926)) ([b501153](https://github.com/SAP/ui5-webcomponents/commit/b501153)), closes [#4870](https://github.com/SAP/ui5-webcomponents/issues/4870)
3524
+
3525
+
3526
+ ### Features
3527
+
3528
+ * **ui5-fcl:** implement Horizon theme ([#5071](https://github.com/SAP/ui5-webcomponents/issues/5071)) ([7a2a568](https://github.com/SAP/ui5-webcomponents/commit/7a2a568)), closes [#5008](https://github.com/SAP/ui5-webcomponents/issues/5008)
3529
+ * **ui5-wizard:** implement SAP Horizon theme ([#5076](https://github.com/SAP/ui5-webcomponents/issues/5076)) ([801069d](https://github.com/SAP/ui5-webcomponents/commit/801069d))
3530
+
3531
+
3532
+
3533
+
3534
+
3535
+ ## [1.2.4](https://github.com/SAP/ui5-webcomponents/compare/v1.2.3...v1.2.4) (2022-03-30)
3536
+
3537
+
3538
+ ### Bug Fixes
3539
+
3540
+ * **ui5-illustrated-message:** remove offensive characters ([#4929](https://github.com/SAP/ui5-webcomponents/issues/4929)) ([a33c7a5](https://github.com/SAP/ui5-webcomponents/commit/a33c7a5))
3541
+
3542
+
3543
+
3544
+
3545
+
3546
+ ## [1.2.3](https://github.com/SAP/ui5-webcomponents/compare/v1.2.2...v1.2.3) (2022-03-23)
3547
+
3548
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3549
+
3550
+
3551
+
3552
+
3553
+
3554
+ ## [1.2.2](https://github.com/SAP/ui5-webcomponents/compare/v1.2.1...v1.2.2) (2022-03-22)
3555
+
3556
+
3557
+ ### Bug Fixes
3558
+
3559
+ * **ui5-flexible-column-layout:** correct column border styles for RTL ([#4919](https://github.com/SAP/ui5-webcomponents/issues/4919)) ([2f40bd7](https://github.com/SAP/ui5-webcomponents/commit/2f40bd7)), closes [#4906](https://github.com/SAP/ui5-webcomponents/issues/4906)
3560
+ * **ui5-view-settings-dialog:** adjust scrollbar behavior ([#4795](https://github.com/SAP/ui5-webcomponents/issues/4795)) ([ddcb01e](https://github.com/SAP/ui5-webcomponents/commit/ddcb01e)), closes [#4724](https://github.com/SAP/ui5-webcomponents/issues/4724) [#4725](https://github.com/SAP/ui5-webcomponents/issues/4725) [#4860](https://github.com/SAP/ui5-webcomponents/issues/4860)
3561
+
3562
+
3563
+
3564
+
3565
+
3566
+ ## [1.2.1](https://github.com/SAP/ui5-webcomponents/compare/v1.2.0...v1.2.1) (2022-03-02)
3567
+
3568
+
3569
+ ### Bug Fixes
3570
+
3571
+ * **ui5-view-settings-dialog:** fix circular dependency JS error ([#4844](https://github.com/SAP/ui5-webcomponents/issues/4844)) ([057a7d8](https://github.com/SAP/ui5-webcomponents/commit/057a7d8)), closes [#4837](https://github.com/SAP/ui5-webcomponents/issues/4837)
3572
+
3573
+
3574
+
3575
+
3576
+
3577
+ # [1.2.0](https://github.com/SAP/ui5-webcomponents/compare/v1.1.2...v1.2.0) (2022-02-28)
3578
+
3579
+
3580
+ ### Bug Fixes
3581
+
3582
+ * correct scoping issues with several components ([#4820](https://github.com/SAP/ui5-webcomponents/issues/4820)) ([621dc20](https://github.com/SAP/ui5-webcomponents/commit/621dc20))
3583
+ * **ui5-flexible-column-layout:** fix accessibility of hidden columns ([#4811](https://github.com/SAP/ui5-webcomponents/issues/4811)) ([d9f514f](https://github.com/SAP/ui5-webcomponents/commit/d9f514f)), closes [#4789](https://github.com/SAP/ui5-webcomponents/issues/4789)
3584
+ * **ui5-media-gallery-item:** correct jsdoc ([#4819](https://github.com/SAP/ui5-webcomponents/issues/4819)) ([5783fa7](https://github.com/SAP/ui5-webcomponents/commit/5783fa7))
3585
+ * **ui5-view-settings-dialog:** improve `title` text accessibility ([#4783](https://github.com/SAP/ui5-webcomponents/issues/4783)) ([88a13df](https://github.com/SAP/ui5-webcomponents/commit/88a13df)), closes [#4660](https://github.com/SAP/ui5-webcomponents/issues/4660)
3586
+ * **ui5-wizard:** prevent unnecessary content scrolling ([#4774](https://github.com/SAP/ui5-webcomponents/issues/4774)) ([751db3f](https://github.com/SAP/ui5-webcomponents/commit/751db3f))
3587
+ * scoped bundles ([#4745](https://github.com/SAP/ui5-webcomponents/issues/4745)) ([2cd4c7e](https://github.com/SAP/ui5-webcomponents/commit/2cd4c7e))
3588
+
3589
+
3590
+ ### Features
3591
+
3592
+ * **ui5-breadcrumbs:** allow preventDefault in item-click event listener ([#4589](https://github.com/SAP/ui5-webcomponents/issues/4589)) ([ccb4c83](https://github.com/SAP/ui5-webcomponents/commit/ccb4c83))
3593
+ * **ui5-button:** add new `tooltip` property ([#4737](https://github.com/SAP/ui5-webcomponents/issues/4737)) ([df8f013](https://github.com/SAP/ui5-webcomponents/commit/df8f013)), closes [#4689](https://github.com/SAP/ui5-webcomponents/issues/4689)
3594
+ * **ui5-button:** implement accessibilityAttributes property ([#4655](https://github.com/SAP/ui5-webcomponents/issues/4655)) ([d27c4b5](https://github.com/SAP/ui5-webcomponents/commit/d27c4b5)), closes [#3546](https://github.com/SAP/ui5-webcomponents/issues/3546)
3595
+ * **ui5-illustrated-message:** add TNT illustrations ([#4710](https://github.com/SAP/ui5-webcomponents/issues/4710)) ([822a73c](https://github.com/SAP/ui5-webcomponents/commit/822a73c))
3596
+ * **ui5-popup:** аdd default responsive paddings ([#4567](https://github.com/SAP/ui5-webcomponents/issues/4567)) ([ddc1e39](https://github.com/SAP/ui5-webcomponents/commit/ddc1e39)), closes [#4402](https://github.com/SAP/ui5-webcomponents/issues/4402)
3597
+ * **ui5-side-navigation:** make selection-change event preventable ([#4732](https://github.com/SAP/ui5-webcomponents/issues/4732)) ([d908465](https://github.com/SAP/ui5-webcomponents/commit/d908465)), closes [#4700](https://github.com/SAP/ui5-webcomponents/issues/4700)
3598
+ * **ui5-timeline:** add `accessible-name` support ([#4721](https://github.com/SAP/ui5-webcomponents/issues/4721)) ([0562e89](https://github.com/SAP/ui5-webcomponents/commit/0562e89)), closes [#4644](https://github.com/SAP/ui5-webcomponents/issues/4644)
3599
+ * **ui5-view-settings-dialog:** add more event.details to confirm/cancel events ([#4772](https://github.com/SAP/ui5-webcomponents/issues/4772)) ([a3eca7a](https://github.com/SAP/ui5-webcomponents/commit/a3eca7a)), closes [#4539](https://github.com/SAP/ui5-webcomponents/issues/4539)
3600
+
3601
+
3602
+
3603
+
3604
+
3605
+ ## [1.1.2](https://github.com/SAP/ui5-webcomponents/compare/v1.1.1...v1.1.2) (2022-01-26)
3606
+
3607
+
3608
+ ### Bug Fixes
3609
+
3610
+ * **ui5-illustrated-message:** remove uncompleted illustration ([#4638](https://github.com/SAP/ui5-webcomponents/issues/4638)) ([adafeba](https://github.com/SAP/ui5-webcomponents/commit/adafeba))
3611
+
3612
+
3613
+
3614
+
3615
+
3616
+ ## [1.1.1](https://github.com/SAP/ui5-webcomponents/compare/v1.1.0...v1.1.1) (2022-01-24)
3617
+
3618
+
3619
+ ### Bug Fixes
3620
+
3621
+ * **ui5-media-gallery-item:** add missing icon import ([#4615](https://github.com/SAP/ui5-webcomponents/issues/4615)) ([d04cf8c](https://github.com/SAP/ui5-webcomponents/commit/d04cf8c))
3622
+ * **ui5-media-gallery-item:** correct initialization order ([#4614](https://github.com/SAP/ui5-webcomponents/issues/4614)) ([436f8f4](https://github.com/SAP/ui5-webcomponents/commit/436f8f4)), closes [#4610](https://github.com/SAP/ui5-webcomponents/issues/4610)
3623
+
3624
+
3625
+
3626
+
3627
+
3628
+ # [1.1.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.2...v1.1.0) (2022-01-21)
3629
+
3630
+
3631
+ ### Bug Fixes
3632
+
3633
+ * **ui5-bar:** fix rtl support ([#4496](https://github.com/SAP/ui5-webcomponents/issues/4496)) ([e5c0f2d](https://github.com/SAP/ui5-webcomponents/commit/e5c0f2d))
3634
+ * **ui5-bar:** remove unnecessary slot names ([#4510](https://github.com/SAP/ui5-webcomponents/issues/4510)) ([32d4507](https://github.com/SAP/ui5-webcomponents/commit/32d4507))
3635
+ * **ui5-li-notification-group:** fixed close button functionality in shell bar sample ([#4408](https://github.com/SAP/ui5-webcomponents/issues/4408)) ([6a66797](https://github.com/SAP/ui5-webcomponents/commit/6a66797)), closes [#4202](https://github.com/SAP/ui5-webcomponents/issues/4202)
3636
+ * **ui5-li-notification-group:** visual fixes for right-to-left mode ([#4354](https://github.com/SAP/ui5-webcomponents/issues/4354)) ([13b7d68](https://github.com/SAP/ui5-webcomponents/commit/13b7d68)), closes [#4255](https://github.com/SAP/ui5-webcomponents/issues/4255) [#4256](https://github.com/SAP/ui5-webcomponents/issues/4256) [#4257](https://github.com/SAP/ui5-webcomponents/issues/4257)
3637
+ * **ui5-shellbar:** allow selection with Enter key in overflow menu ([#4577](https://github.com/SAP/ui5-webcomponents/issues/4577)) ([fb40514](https://github.com/SAP/ui5-webcomponents/commit/fb40514)), closes [#4556](https://github.com/SAP/ui5-webcomponents/issues/4556)
3638
+ * **ui5-side-navigation:** correct styles for static area ([#4526](https://github.com/SAP/ui5-webcomponents/issues/4526)) ([7d35bd6](https://github.com/SAP/ui5-webcomponents/commit/7d35bd6)), closes [#4515](https://github.com/SAP/ui5-webcomponents/issues/4515)
3639
+ * **ui5-view-settings-dialog:** implement single page functionality ([#4419](https://github.com/SAP/ui5-webcomponents/issues/4419)) ([572a323](https://github.com/SAP/ui5-webcomponents/commit/572a323))
3640
+ * Scoping issues corrected ([#4573](https://github.com/SAP/ui5-webcomponents/issues/4573)) ([4e430d3](https://github.com/SAP/ui5-webcomponents/commit/4e430d3))
3641
+ * **ui5-upload-collection:** make buttons visible on small screens ([#4361](https://github.com/SAP/ui5-webcomponents/issues/4361)) ([fcb7f62](https://github.com/SAP/ui5-webcomponents/commit/fcb7f62))
3642
+ * **ui5-upload-collection:** removed active and hover states ([#4360](https://github.com/SAP/ui5-webcomponents/issues/4360)) ([cb76902](https://github.com/SAP/ui5-webcomponents/commit/cb76902)), closes [#4258](https://github.com/SAP/ui5-webcomponents/issues/4258)
3643
+ * **ui5-wizard:** adjust content and navigator paddings based on spec ([#4479](https://github.com/SAP/ui5-webcomponents/issues/4479)) ([303ecb1](https://github.com/SAP/ui5-webcomponents/commit/303ecb1))
3644
+ * **ui5-wizard:** make playground sample fully usable ([#4457](https://github.com/SAP/ui5-webcomponents/issues/4457)) ([1416d42](https://github.com/SAP/ui5-webcomponents/commit/1416d42))
3645
+ * adding stable selectors for tab container and shellbar ([#4369](https://github.com/SAP/ui5-webcomponents/issues/4369)) ([9abdaba](https://github.com/SAP/ui5-webcomponents/commit/9abdaba))
3646
+
3647
+
3648
+ ### Features
3649
+
3650
+ * **ui5-illustrated-message:** add more illustrations to the default set ([#4587](https://github.com/SAP/ui5-webcomponents/issues/4587)) ([417bd6a](https://github.com/SAP/ui5-webcomponents/commit/417bd6a))
3651
+ * stable-dom-ref supported for abstract items ([#4604](https://github.com/SAP/ui5-webcomponents/issues/4604)) ([5526dea](https://github.com/SAP/ui5-webcomponents/commit/5526dea))
3652
+ * **ui5-dynamic-side-content:** initial implementation ([#4379](https://github.com/SAP/ui5-webcomponents/issues/4379)) ([c36cb57](https://github.com/SAP/ui5-webcomponents/commit/c36cb57))
3653
+ * **ui5-shellbar:** improved accessibilityTexts property ([#4551](https://github.com/SAP/ui5-webcomponents/issues/4551)) ([c811a41](https://github.com/SAP/ui5-webcomponents/commit/c811a41))
3654
+ * implement F6 Navigation Helper ([#4490](https://github.com/SAP/ui5-webcomponents/issues/4490)) ([60d0dc1](https://github.com/SAP/ui5-webcomponents/commit/60d0dc1))
3655
+ * **ui5-flexible-column-layout:** new property accessibilityRoles ([#4446](https://github.com/SAP/ui5-webcomponents/issues/4446)) ([f515f3d](https://github.com/SAP/ui5-webcomponents/commit/f515f3d)), closes [#3804](https://github.com/SAP/ui5-webcomponents/issues/3804) [#3796](https://github.com/SAP/ui5-webcomponents/issues/3796)
3656
+ * **ui5-media-gallery:** Initial implementation ([#4427](https://github.com/SAP/ui5-webcomponents/issues/4427)) ([17cb225](https://github.com/SAP/ui5-webcomponents/commit/17cb225))
3657
+ * **ui5-shellbar:** introduce accessibilityTexts property ([#4377](https://github.com/SAP/ui5-webcomponents/issues/4377)) ([f762e76](https://github.com/SAP/ui5-webcomponents/commit/f762e76)), closes [#4009](https://github.com/SAP/ui5-webcomponents/issues/4009)
3658
+ * **ui5-tabcontainer:** implement overflow functionality ([#4403](https://github.com/SAP/ui5-webcomponents/issues/4403)) ([a38bbab](https://github.com/SAP/ui5-webcomponents/commit/a38bbab)), closes [#2540](https://github.com/SAP/ui5-webcomponents/issues/2540)
3659
+ * **ui5-wizard:** Extend keyboard handling ([#4444](https://github.com/SAP/ui5-webcomponents/issues/4444)) ([57151a3](https://github.com/SAP/ui5-webcomponents/commit/57151a3))
3660
+
3661
+
3662
+
3663
+
3664
+
3665
+ ## [1.0.2](https://github.com/SAP/ui5-webcomponents/compare/v1.0.1...v1.0.2) (2021-11-29)
3666
+
3667
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3668
+
3669
+
3670
+
3671
+
3672
+
3673
+ ## [1.0.1](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0...v1.0.1) (2021-11-10)
3674
+
3675
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3676
+
3677
+
3678
+
3679
+
3680
+
3681
+ # [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
3682
+
3683
+
3684
+ **Note:** Version bump only for package @ui5/webcomponents-fiori
3685
+
3686
+
3687
+
3688
+
3689
+ # [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-11-09)
3690
+
3691
+
3692
+ ### Bug Fixes
3693
+
3694
+ * **ui5-bar:** align `middleContent` slot centrally ([#3719](https://github.com/SAP/ui5-webcomponents/issues/3719)) ([d5a0a3a](https://github.com/SAP/ui5-webcomponents/commit/d5a0a3a)), closes [#3456](https://github.com/SAP/ui5-webcomponents/issues/3456) [#3456](https://github.com/SAP/ui5-webcomponents/issues/3456)
3695
+ * **ui5-flexible-column-layout:** documentation improvement ([#3908](https://github.com/SAP/ui5-webcomponents/issues/3908)) ([dee93fa](https://github.com/SAP/ui5-webcomponents/commit/dee93fa))
3696
+ * **ui5-flexible-column-layout:** speech output on layout arrows ([#4034](https://github.com/SAP/ui5-webcomponents/issues/4034)) ([272e600](https://github.com/SAP/ui5-webcomponents/commit/272e600)), closes [#3699](https://github.com/SAP/ui5-webcomponents/issues/3699)
3697
+ * **ui5-illustrated-message:** add missing dependencies ([#3822](https://github.com/SAP/ui5-webcomponents/issues/3822)) ([75e6a8c](https://github.com/SAP/ui5-webcomponents/commit/75e6a8c))
3698
+ * **ui5-illustrated-message:** generation script ([#3903](https://github.com/SAP/ui5-webcomponents/issues/3903)) ([ecf9563](https://github.com/SAP/ui5-webcomponents/commit/ecf9563))
3699
+ * **ui5-illustrated-message:** remove style attribute of svg ([#3605](https://github.com/SAP/ui5-webcomponents/issues/3605)) ([41f72e3](https://github.com/SAP/ui5-webcomponents/commit/41f72e3))
3700
+ * **ui5-li-notification:** fix icon padding in rtl ([#3876](https://github.com/SAP/ui5-webcomponents/issues/3876)) ([6ebfecb](https://github.com/SAP/ui5-webcomponents/commit/6ebfecb))
3701
+ * **ui5-list, ui5-table, ui5-notification, ui5-busy-indicator:** getFocusDomRef returns the correct element when the state is busy ([#3951](https://github.com/SAP/ui5-webcomponents/issues/3951)) ([ec81c15](https://github.com/SAP/ui5-webcomponents/commit/ec81c15)), closes [#3922](https://github.com/SAP/ui5-webcomponents/issues/3922)
3702
+ * **ui5-product-switch:** adapt focus styles to sap_horizon ([#4276](https://github.com/SAP/ui5-webcomponents/issues/4276)) ([b053ad0](https://github.com/SAP/ui5-webcomponents/commit/b053ad0))
3703
+ * **ui5-product-switch-item:** no-wrap title behavior added when subtitle is not present ([#3800](https://github.com/SAP/ui5-webcomponents/issues/3800)) ([3f007fd](https://github.com/SAP/ui5-webcomponents/commit/3f007fd))
3704
+ * **ui5-shellbar:** fix public readonly getters ([#4283](https://github.com/SAP/ui5-webcomponents/issues/4283)) ([d90daf5](https://github.com/SAP/ui5-webcomponents/commit/d90daf5))
3705
+ * **ui5-shellbar:** fixed growing of left container ([#4105](https://github.com/SAP/ui5-webcomponents/issues/4105)) ([5b167f4](https://github.com/SAP/ui5-webcomponents/commit/5b167f4))
3706
+ * **ui5-shellbar:** press on custom action throws JS error ([#4281](https://github.com/SAP/ui5-webcomponents/issues/4281)) ([c73294b](https://github.com/SAP/ui5-webcomponents/commit/c73294b))
3707
+ * **ui5-shellbar:** remove empty secondary title wrapper ([#3737](https://github.com/SAP/ui5-webcomponents/issues/3737)) ([28d9a1a](https://github.com/SAP/ui5-webcomponents/commit/28d9a1a)), closes [#3698](https://github.com/SAP/ui5-webcomponents/issues/3698) [#3698](https://github.com/SAP/ui5-webcomponents/issues/3698)
3708
+ * **ui5-shellbar:** remove unnecessary aria-label from buttons ([#3981](https://github.com/SAP/ui5-webcomponents/issues/3981)) ([d60120d](https://github.com/SAP/ui5-webcomponents/commit/d60120d)), closes [#3953](https://github.com/SAP/ui5-webcomponents/issues/3953)
3709
+ * **ui5-shellbar-item:** fix JS error on click ([#4287](https://github.com/SAP/ui5-webcomponents/issues/4287)) ([3289da4](https://github.com/SAP/ui5-webcomponents/commit/3289da4))
3710
+ * **ui5-timeline:** align indicator in compact mode ([#3902](https://github.com/SAP/ui5-webcomponents/issues/3902)) ([0c31502](https://github.com/SAP/ui5-webcomponents/commit/0c31502))
3711
+ * **ui5-timeline:** elements with role option have a parent element with role listbox ([#4053](https://github.com/SAP/ui5-webcomponents/issues/4053)) ([2b27754](https://github.com/SAP/ui5-webcomponents/commit/2b27754)), closes [#3459](https://github.com/SAP/ui5-webcomponents/issues/3459)
3712
+ * **ui5-timeline:** keyboard handling is now compliant with the specification ([#3722](https://github.com/SAP/ui5-webcomponents/issues/3722)) ([2ad208e](https://github.com/SAP/ui5-webcomponents/commit/2ad208e))
3713
+ * **ui5-tree, ui5-table, ui5-side-navigation:** unnecessary scrollbar in RTL is removed ([#3948](https://github.com/SAP/ui5-webcomponents/issues/3948)) ([61fe0fe](https://github.com/SAP/ui5-webcomponents/commit/61fe0fe))
3714
+ * **ui5-upload-collection:** exploratory testing issues ([#3797](https://github.com/SAP/ui5-webcomponents/issues/3797)) ([7028b6c](https://github.com/SAP/ui5-webcomponents/commit/7028b6c)), closes [#3625](https://github.com/SAP/ui5-webcomponents/issues/3625)
3715
+ * **ui5-upload-collection:** fix "no files" heading HTML tag ([#3930](https://github.com/SAP/ui5-webcomponents/issues/3930)) ([e020249](https://github.com/SAP/ui5-webcomponents/commit/e020249))
3716
+ * **ui5-wizard:** check if tab has a focusable element ([#3904](https://github.com/SAP/ui5-webcomponents/issues/3904)) ([a64eaf8](https://github.com/SAP/ui5-webcomponents/commit/a64eaf8))
3717
+ * **ui5-wizard:** grouped steps could be activated ([#3961](https://github.com/SAP/ui5-webcomponents/issues/3961)) ([be36219](https://github.com/SAP/ui5-webcomponents/commit/be36219))
3718
+ * **ui5-wizard:** remove unneeded aria properties ([#4262](https://github.com/SAP/ui5-webcomponents/issues/4262)) ([7fa969b](https://github.com/SAP/ui5-webcomponents/commit/7fa969b))
3719
+ * **ui5-wizard:** step titles are now visible on phone ([#3895](https://github.com/SAP/ui5-webcomponents/issues/3895)) ([9a183b4](https://github.com/SAP/ui5-webcomponents/commit/9a183b4))
3720
+ * **ui5-view-settings-dialog:** import all dependencies ([#4074](https://github.com/SAP/ui5-webcomponents/issues/4074)) ([11d529e](https://github.com/SAP/ui5-webcomponents/commit/11d529e))
3721
+
3722
+
3723
+ ### Code Refactoring
3724
+
3725
+ * **ui5-message-strip:** rename tag name ([#4268](https://github.com/SAP/ui5-webcomponents/issues/4268)) ([ec30ec2](https://github.com/SAP/ui5-webcomponents/commit/ec30ec2))
3726
+ * **ui5-shellbar-item:** rename "item-click" to "click" ([#4282](https://github.com/SAP/ui5-webcomponents/issues/4282)) ([4cd86b1](https://github.com/SAP/ui5-webcomponents/commit/4cd86b1))
3727
+
3728
+
3729
+ ### Features
3730
+
3731
+ * **ui5-illustrated-message:** add TNT illustration set ([#3857](https://github.com/SAP/ui5-webcomponents/issues/3857)) ([0ade371](https://github.com/SAP/ui5-webcomponents/commit/0ade371))
3732
+ * **ui5-illustrated-message:** introduce subtitle slot ([#3633](https://github.com/SAP/ui5-webcomponents/issues/3633)) ([96ccf93](https://github.com/SAP/ui5-webcomponents/commit/96ccf93)), closes [#3557](https://github.com/SAP/ui5-webcomponents/issues/3557) [#3557](https://github.com/SAP/ui5-webcomponents/issues/3557)
3733
+ * **ui5-li-notification:** adjust focus styles to sap_horizon ([#4228](https://github.com/SAP/ui5-webcomponents/issues/4228)) ([1f681d0](https://github.com/SAP/ui5-webcomponents/commit/1f681d0))
3734
+ * **ui5-shellbar:** implement sap_horizon ([#4251](https://github.com/SAP/ui5-webcomponents/issues/4251)) ([7500a08](https://github.com/SAP/ui5-webcomponents/commit/7500a08))
3735
+ * **ui5-side-navigation:** adjust focus styles in overflow to sap_horizon ([#4240](https://github.com/SAP/ui5-webcomponents/issues/4240)) ([99e962c](https://github.com/SAP/ui5-webcomponents/commit/99e962c))
3736
+ * introduce sap_horizon theme initial draft ([#3991](https://github.com/SAP/ui5-webcomponents/issues/3991)) ([b1afaf0](https://github.com/SAP/ui5-webcomponents/commit/b1afaf0)), closes [#3988](https://github.com/SAP/ui5-webcomponents/issues/3988)
3737
+ * rework stableDomRef concept ([#4210](https://github.com/SAP/ui5-webcomponents/issues/4210)) ([d1ebea3](https://github.com/SAP/ui5-webcomponents/commit/d1ebea3))
3738
+ * **ui5-product-switch:** add selected state to an item ([#3872](https://github.com/SAP/ui5-webcomponents/issues/3872)) ([9e7928b](https://github.com/SAP/ui5-webcomponents/commit/9e7928b))
3739
+ * **ui5-side-navigation:** Items now have tooltip ([#3921](https://github.com/SAP/ui5-webcomponents/issues/3921)) ([5849a38](https://github.com/SAP/ui5-webcomponents/commit/5849a38)), closes [#3549](https://github.com/SAP/ui5-webcomponents/issues/3549) [#3549](https://github.com/SAP/ui5-webcomponents/issues/3549)
3740
+ * **ui5-timeline:** implement sap_horizon theme ([13a168e](https://github.com/SAP/ui5-webcomponents/commit/13a168e))
3741
+ * **ui5-upload-collection:** Added "accessibleName" property ([#3917](https://github.com/SAP/ui5-webcomponents/issues/3917)) ([ea79fb3](https://github.com/SAP/ui5-webcomponents/commit/ea79fb3)), closes [#3768](https://github.com/SAP/ui5-webcomponents/issues/3768) [#3768](https://github.com/SAP/ui5-webcomponents/issues/3768)
3742
+ * **ui5-view-settings-dialog:** introduce filter section ([#3616](https://github.com/SAP/ui5-webcomponents/issues/3616)) ([52987c2](https://github.com/SAP/ui5-webcomponents/commit/52987c2))
3743
+ * **ui5-view-settings-dialog:** introduce new component ([#3502](https://github.com/SAP/ui5-webcomponents/issues/3502)) ([3bc11e3](https://github.com/SAP/ui5-webcomponents/commit/3bc11e3)), closes [#3304](https://github.com/SAP/ui5-webcomponents/issues/3304) [#3304](https://github.com/SAP/ui5-webcomponents/issues/3304)
3744
+ * **ui5-wizard:** SAP Horizon theme implementation ([#4172](https://github.com/SAP/ui5-webcomponents/issues/4172)) ([67eea9b](https://github.com/SAP/ui5-webcomponents/commit/67eea9b))
3745
+
3746
+
3747
+ ### BREAKING CHANGES
3748
+
3749
+ * **ui5-shellbar-item:** ShellBarItem's event "item-click" has been renamed to "click".
3750
+ * **ui5-message-strip:** MessageStrip component's tag name has been renamed from ui5-messagestrip to ui5-message-strip.
3751
+ * **ui5-wizard:** accessible-name has been removed
3752
+
3753
+
3754
+
3755
+
3756
+
3757
+ # [1.0.0-rc.15](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.14...v1.0.0-rc.15) (2021-07-23)
3758
+
3759
+
3760
+ ### Bug Fixes
3761
+
3762
+ * **ui5-bar:** aria-label added depending on the "design" property ([#3161](https://github.com/SAP/ui5-webcomponents/issues/3161)) ([7ffb575](https://github.com/SAP/ui5-webcomponents/commit/7ffb575)), closes [#3020](https://github.com/SAP/ui5-webcomponents/issues/3020)
3763
+ * **ui5-bar:** rename middleContent slot ([#3440](https://github.com/SAP/ui5-webcomponents/issues/3440)) ([e235d7d](https://github.com/SAP/ui5-webcomponents/commit/e235d7d)), closes [#3107](https://github.com/SAP/ui5-webcomponents/issues/3107)
3764
+ * **ui5-flexible-column-layout:** column borders in high contrast themes ([#3328](https://github.com/SAP/ui5-webcomponents/issues/3328)) ([bd18bb9](https://github.com/SAP/ui5-webcomponents/commit/bd18bb9)), closes [#3320](https://github.com/SAP/ui5-webcomponents/issues/3320)
3765
+ * **ui5-flexible-column-layout:** correct columns display ([#3444](https://github.com/SAP/ui5-webcomponents/issues/3444)) ([62977d0](https://github.com/SAP/ui5-webcomponents/commit/62977d0)), closes [#3425](https://github.com/SAP/ui5-webcomponents/issues/3425)
3766
+ * **ui5-flexible-column-layout:** rename noArrows property to hideArrows ([#3352](https://github.com/SAP/ui5-webcomponents/issues/3352)) ([8660d11](https://github.com/SAP/ui5-webcomponents/commit/8660d11)), closes [#3107](https://github.com/SAP/ui5-webcomponents/issues/3107)
3767
+ * **ui5-shellbar:** fix search field width ([#3296](https://github.com/SAP/ui5-webcomponents/issues/3296)) ([51fb1a3](https://github.com/SAP/ui5-webcomponents/commit/51fb1a3))
3768
+ * **ui5-shellbar:** Fix unnecessary cutting space on left side ([#3513](https://github.com/SAP/ui5-webcomponents/issues/3513)) ([c7e6f07](https://github.com/SAP/ui5-webcomponents/commit/c7e6f07)), closes [#3501](https://github.com/SAP/ui5-webcomponents/issues/3501)
3769
+ * **ui5-shellbar:** hide notification bubble if empty str ([#3123](https://github.com/SAP/ui5-webcomponents/issues/3123)) ([33fde82](https://github.com/SAP/ui5-webcomponents/commit/33fde82)), closes [#3121](https://github.com/SAP/ui5-webcomponents/issues/3121)
3770
+ * **ui5-shellbar:** menu button arrow position ([#3285](https://github.com/SAP/ui5-webcomponents/issues/3285)) ([18ea76d](https://github.com/SAP/ui5-webcomponents/commit/18ea76d)), closes [#3199](https://github.com/SAP/ui5-webcomponents/issues/3199)
3771
+ * **ui5-side-navigation:** items in popup fire click event ([#3468](https://github.com/SAP/ui5-webcomponents/issues/3468)) ([658328a](https://github.com/SAP/ui5-webcomponents/commit/658328a))
3772
+ * **ui5-upload-collection:** change file deleted event name ([#3413](https://github.com/SAP/ui5-webcomponents/issues/3413)) ([5898eb8](https://github.com/SAP/ui5-webcomponents/commit/5898eb8)), closes [#3107](https://github.com/SAP/ui5-webcomponents/issues/3107)
3773
+ * **ui5-upload-collection:** rename noDnd property to hideDragOverlay ([#3335](https://github.com/SAP/ui5-webcomponents/issues/3335)) ([c360443](https://github.com/SAP/ui5-webcomponents/commit/c360443)), closes [#3107](https://github.com/SAP/ui5-webcomponents/issues/3107)
3774
+ * **ui5-upload-collection-item:** fixed keyboard navigation ([#3327](https://github.com/SAP/ui5-webcomponents/issues/3327)) ([aad0c32](https://github.com/SAP/ui5-webcomponents/commit/aad0c32))
3775
+ * **ui5-wizard:** Circle's number horizontally aligned with the step's title ([#3370](https://github.com/SAP/ui5-webcomponents/issues/3370)) ([2cd97ec](https://github.com/SAP/ui5-webcomponents/commit/2cd97ec)), closes [#3251](https://github.com/SAP/ui5-webcomponents/issues/3251) [#3251](https://github.com/SAP/ui5-webcomponents/issues/3251)
3776
+ * **ui5-wizard:** correct aria-controls value ([#3180](https://github.com/SAP/ui5-webcomponents/issues/3180)) ([d449812](https://github.com/SAP/ui5-webcomponents/commit/d449812))
3777
+ * **ui5-wizard:** implement revised accessibility spec ([#2990](https://github.com/SAP/ui5-webcomponents/issues/2990)) ([99cb6b1](https://github.com/SAP/ui5-webcomponents/commit/99cb6b1))
3778
+ * **ui5-wizard-step:** rename properties ([#3334](https://github.com/SAP/ui5-webcomponents/issues/3334)) ([b0e73ad](https://github.com/SAP/ui5-webcomponents/commit/b0e73ad)), closes [#3107](https://github.com/SAP/ui5-webcomponents/issues/3107)
3779
+ * keep invisible texts out of the view port ([#3085](https://github.com/SAP/ui5-webcomponents/issues/3085)) ([de47520](https://github.com/SAP/ui5-webcomponents/commit/de47520)), closes [#2723](https://github.com/SAP/ui5-webcomponents/issues/2723) [#2723](https://github.com/SAP/ui5-webcomponents/issues/2723)
3780
+
3781
+
3782
+ ### Features
3783
+
3784
+ * **ui5-page:** implement responsive paddings ([#3412](https://github.com/SAP/ui5-webcomponents/issues/3412)) ([b720393](https://github.com/SAP/ui5-webcomponents/commit/b720393))
3785
+ * **ui5-product-switch:** Implement accessibility specification ([#2865](https://github.com/SAP/ui5-webcomponents/issues/2865)) ([8c0225c](https://github.com/SAP/ui5-webcomponents/commit/8c0225c)), closes [#2707](https://github.com/SAP/ui5-webcomponents/issues/2707)
3786
+ * **ui5-wizard:** set initial focus when a step is changed ([#3310](https://github.com/SAP/ui5-webcomponents/issues/3310)) ([70f5563](https://github.com/SAP/ui5-webcomponents/commit/70f5563))
3787
+
3788
+
3789
+
3790
+ # [1.0.0-rc.14](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.13...v1.0.0-rc.14) (2021-04-01)
3791
+
3792
+
3793
+ ### Bug Fixes
3794
+
3795
+
3796
+
3797
+ * **ui5-li-notification-group, ui5-li-notification:** fix i18n bundles usage ([#3063](https://github.com/SAP/ui5-webcomponents/issues/3063)) ([d6b6fa4](https://github.com/SAP/ui5-webcomponents/commit/d6b6fa4))
3798
+ * **ui5-upload-collection-item:** make use of both main & fiori i18n bundles ([#3061](https://github.com/SAP/ui5-webcomponents/issues/3061)) ([2a01cb4](https://github.com/SAP/ui5-webcomponents/commit/2a01cb4))
3799
+
3800
+
3801
+ ### Features
3802
+
3803
+ * **ui5-static-area-item:** StaticAreaItem can now be scoped ([#3076](https://github.com/SAP/ui5-webcomponents/issues/3076)) ([9a7ffe4](https://github.com/SAP/ui5-webcomponents/commit/9a7ffe4))
3804
+ * **ui5-wizard:** add parameter to selectionChange event ([#3034](https://github.com/SAP/ui5-webcomponents/issues/3034)) ([7ad94d2](https://github.com/SAP/ui5-webcomponents/commit/7ad94d2))
3805
+
3806
+
3807
+
3808
+ # [1.0.0-rc.13](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.12...v1.0.0-rc.13) (2021-03-26)
3809
+
3810
+
3811
+ ### Bug Fixes
3812
+
3813
+ * **ui5-page:** correct background-design styles ([#2862](https://github.com/SAP/ui5-webcomponents/issues/2862)) ([b10ee4c](https://github.com/SAP/ui5-webcomponents/commit/b10ee4c))
3814
+ * **ui5-upload-collection:** add region and roledescription to root element ([#2915](https://github.com/SAP/ui5-webcomponents/issues/2915)) ([6db9f09](https://github.com/SAP/ui5-webcomponents/commit/6db9f09))
3815
+ * **ui5-upload-collection:** add tooltip to edit button ([#2886](https://github.com/SAP/ui5-webcomponents/issues/2886)) ([35de38c](https://github.com/SAP/ui5-webcomponents/commit/35de38c))
3816
+ * **ui5-upload-collection-item:** show disabled delete button ([#2893](https://github.com/SAP/ui5-webcomponents/issues/2893)) ([b609b47](https://github.com/SAP/ui5-webcomponents/commit/b609b47))
3817
+ * **ui5-wizard:** use CSS vars for navigation bg-color ([#2892](https://github.com/SAP/ui5-webcomponents/issues/2892)) ([c967c6c](https://github.com/SAP/ui5-webcomponents/commit/c967c6c))
3818
+
3819
+
3820
+
3821
+
3822
+
3823
+ # [1.0.0-rc.12](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.11...v1.0.0-rc.12) (2021-02-18)
3824
+
3825
+
3826
+ ### Bug Fixes
3827
+
3828
+ * **ui5-li-notification:** it is now possible to not have a description ([#2744](https://github.com/SAP/ui5-webcomponents/issues/2744)) ([ef35f84](https://github.com/SAP/ui5-webcomponents/commit/ef35f84))
3829
+ * **ui5-li-notification-group:** align priority icon ([#2584](https://github.com/SAP/ui5-webcomponents/issues/2584)) ([ff247f0](https://github.com/SAP/ui5-webcomponents/commit/ff247f0))
3830
+ * **ui5-upload-collection:** wrap noDataText/Desc text ([#2674](https://github.com/SAP/ui5-webcomponents/issues/2674)) ([c48bfe7](https://github.com/SAP/ui5-webcomponents/commit/c48bfe7)), closes [#2672](https://github.com/SAP/ui5-webcomponents/issues/2672)
3831
+ * **ui5-upload-collection-item:** fix title behaviour on small screens ([#2699](https://github.com/SAP/ui5-webcomponents/issues/2699)) ([bb7c952](https://github.com/SAP/ui5-webcomponents/commit/bb7c952))
3832
+ * **ui5-wizard:** observe content height changes ([#2801](https://github.com/SAP/ui5-webcomponents/issues/2801)) ([b4cbc43](https://github.com/SAP/ui5-webcomponents/commit/b4cbc43))
3833
+
3834
+
3835
+ ### Features
3836
+
3837
+ * **ui5-li-notification*:** full-fill accessibility spec ([#2578](https://github.com/SAP/ui5-webcomponents/issues/2578)) ([20de5ae](https://github.com/SAP/ui5-webcomponents/commit/20de5ae))
3838
+ * **ui5-page:** Initial implementation ([#2685](https://github.com/SAP/ui5-webcomponents/issues/2685)) ([bd09e17](https://github.com/SAP/ui5-webcomponents/commit/bd09e17)), closes [#2433](https://github.com/SAP/ui5-webcomponents/issues/2433)
3839
+ * **ui5-wizard:** improve progress navigator responsiveness ([#2590](https://github.com/SAP/ui5-webcomponents/issues/2590)) ([01cd6f9](https://github.com/SAP/ui5-webcomponents/commit/01cd6f9))
3840
+
3841
+
3842
+
3843
+
3844
+ # [1.0.0-rc.11](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.10...v1.0.0-rc.11) (2020-12-21)
3845
+
3846
+
3847
+ ### Bug Fixes
3848
+
3849
+ * **docs:** fix ui5-side-navigation sample ([#2564](https://github.com/SAP/ui5-webcomponents/issues/2564)) ([0338fdc](https://github.com/SAP/ui5-webcomponents/commit/0338fdc))
3850
+ * **ui5-shellbar:** fix overlapping of the search box over icons ([#2155](https://github.com/SAP/ui5-webcomponents/issues/2155)) ([3597902](https://github.com/SAP/ui5-webcomponents/commit/3597902)), closes [#2044](https://github.com/SAP/ui5-webcomponents/issues/2044)
3851
+ * **ui5-upload-collection:** fire drop only when files are dropped within dnd overlay ([#2527](https://github.com/SAP/ui5-webcomponents/issues/2527)) ([455f614](https://github.com/SAP/ui5-webcomponents/commit/455f614))
3852
+ * **ui5-wizard:** correct phone breakpoint size ([#2596](https://github.com/SAP/ui5-webcomponents/issues/2596)) ([c98d9ba](https://github.com/SAP/ui5-webcomponents/commit/c98d9ba))
3853
+ * **ui5-wizard:** fix styling issues ([#2547](https://github.com/SAP/ui5-webcomponents/issues/2547)) ([65cb42f](https://github.com/SAP/ui5-webcomponents/commit/65cb42f)), closes [#2523](https://github.com/SAP/ui5-webcomponents/issues/2523)
3854
+
3855
+
3856
+ ### Features
3857
+
3858
+ * **framework:** Change child-parent invalidation API ([#2541](https://github.com/SAP/ui5-webcomponents/issues/2541)) ([a1a3f80](https://github.com/SAP/ui5-webcomponents/commit/a1a3f80))
3859
+ * **ui5-bar:** initial implementation ([#2533](https://github.com/SAP/ui5-webcomponents/issues/2533)) ([5c601cd](https://github.com/SAP/ui5-webcomponents/commit/5c601cd)), closes [#2434](https://github.com/SAP/ui5-webcomponents/issues/2434)
3860
+ * **ui5-flexible-column-layout:** add start/mid/endColumnAccessibleName properties ([#2483](https://github.com/SAP/ui5-webcomponents/issues/2483)) ([fb0b24c](https://github.com/SAP/ui5-webcomponents/commit/fb0b24c))
3861
+ * **ui5-side-navigation:** add "header" slot ([#2520](https://github.com/SAP/ui5-webcomponents/issues/2520)) ([b5c4a92](https://github.com/SAP/ui5-webcomponents/commit/b5c4a92)), closes [#2518](https://github.com/SAP/ui5-webcomponents/issues/2518)
3862
+ * **ui5-side-navigation-item, ui5-side-navigation-sub-item:** introduce click event ([#2298](https://github.com/SAP/ui5-webcomponents/issues/2298)) ([d73ce38](https://github.com/SAP/ui5-webcomponents/commit/d73ce38))
3863
+
3864
+
3865
+
3866
+
3867
+
3868
+ # [1.0.0-rc.10](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.9...v1.0.0-rc.10) (2020-11-12)
3869
+
3870
+
3871
+
3872
+ ### Features
3873
+
3874
+ * **ui5-wizard:** introduce new component ([#2400](https://github.com/SAP/ui5-webcomponents/issues/2400)) ([bdec517](https://github.com/SAP/ui5-webcomponents/commit/bdec517)), closes [#2368](https://github.com/SAP/ui5-webcomponents/issues/2368)
3875
+
3876
+
3877
+
3878
+ # [1.0.0-rc.9](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.8...v1.0.0-rc.9) (2020-10-08)
3879
+
3880
+
3881
+ ### Bug Fixes
3882
+
3883
+ * **components:** fix setting contentDensity styles ([#2094](https://github.com/SAP/ui5-webcomponents/issues/2094)) ([9454ab7](https://github.com/SAP/ui5-webcomponents/commit/9454ab7)), closes [#2093](https://github.com/SAP/ui5-webcomponents/issues/2093)
3884
+ * **ui5-flexible-column-layout:** Fix arrow misplacement in IE ([#2032](https://github.com/SAP/ui5-webcomponents/issues/2032)) ([57be7c2](https://github.com/SAP/ui5-webcomponents/commit/57be7c2)), closes [#1998](https://github.com/SAP/ui5-webcomponents/issues/1998)
3885
+ * **ui5-shellbar:** remove width limitation of logo ([230cd7f](https://github.com/SAP/ui5-webcomponents/commit/230cd7f)), closes [#2066](https://github.com/SAP/ui5-webcomponents/issues/2066)
3886
+ * **ui5-shellbar-item:** Update count properly ([#2049](https://github.com/SAP/ui5-webcomponents/issues/2049)) ([2499c56](https://github.com/SAP/ui5-webcomponents/commit/2499c56)), closes [#2048](https://github.com/SAP/ui5-webcomponents/issues/2048)
3887
+
3888
+
3889
+ ### Features
3890
+
3891
+ * **ui5-shellbar:** implement root part ([#2299](https://github.com/SAP/ui5-webcomponents/issues/2299)) ([de2d07f](https://github.com/SAP/ui5-webcomponents/commit/de2d07f))
3892
+
3893
+
3894
+
3895
+
3896
+
3897
+ # [1.0.0-rc.8](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.7...v1.0.0-rc.8) (2020-07-30)
3898
+
3899
+
3900
+ ### Bug Fixes
3901
+
3902
+ * **ui5-upload-collection-item:** Activate editing with SPACE ([#2024](https://github.com/SAP/ui5-webcomponents/issues/2024)) ([45de0f2](https://github.com/SAP/ui5-webcomponents/commit/45de0f2)), closes [#2003](https://github.com/SAP/ui5-webcomponents/issues/2003)
3903
+ * **ui5-file-uploader:** Setting the value to an empty string also resets the file input ([#1715](https://github.com/SAP/ui5-webcomponents/issues/1715)) ([f8b1b39](https://github.com/SAP/ui5-webcomponents/commit/f8b1b39))
3904
+ * **ui5-shellbar:** Fix popup opening on notificationClick ([#1632](https://github.com/SAP/ui5-webcomponents/issues/1632)) ([04b44b4](https://github.com/SAP/ui5-webcomponents/commit/04b44b4))
3905
+ * **ui5-shellbar:** Fix profile bg-color ([#1945](https://github.com/SAP/ui5-webcomponents/issues/1945)) ([a3207e5](https://github.com/SAP/ui5-webcomponents/commit/a3207e5)), closes [#1944](https://github.com/SAP/ui5-webcomponents/issues/1944)
3906
+ * **ui5-shellbar:** Fix search field focus handling ([#1636](https://github.com/SAP/ui5-webcomponents/issues/1636)) ([c65010b](https://github.com/SAP/ui5-webcomponents/commit/c65010b))
3907
+ * **ui5-shellbar:** Fix search field visual in IE ([#1643](https://github.com/SAP/ui5-webcomponents/issues/1643)) ([afec3fe](https://github.com/SAP/ui5-webcomponents/commit/afec3fe))
3908
+ * **ui5-shellbar:** Style profile correctly on IE ([#1807](https://github.com/SAP/ui5-webcomponents/issues/1807)) ([4198599](https://github.com/SAP/ui5-webcomponents/commit/4198599))
3909
+ * **ui5-upload-collection:** Set minimum height in no-data mode ([#1683](https://github.com/SAP/ui5-webcomponents/issues/1683)) ([549148d](https://github.com/SAP/ui5-webcomponents/commit/549148d))
3910
+ * **ui5-upload-collection:** Provide min-height also when DND mode is on ([#1770](https://github.com/SAP/ui5-webcomponents/issues/1770)) ([33fa055](https://github.com/SAP/ui5-webcomponents/commit/33fa055))
3911
+ * **ui5-upload-collection:** The component does not get stuck when dropping on the body ([#1897](https://github.com/SAP/ui5-webcomponents/issues/1897)) ([f236e0d](https://github.com/SAP/ui5-webcomponents/commit/f236e0d))
3912
+ * correct styles for some elements ([#1773](https://github.com/SAP/ui5-webcomponents/issues/1773)) ([1a5db12](https://github.com/SAP/ui5-webcomponents/commit/1a5db12))
3913
+ * **ui5-upload-collection-item:** Make component responsive ([#1579](https://github.com/SAP/ui5-webcomponents/issues/1579)) ([47d37c3](https://github.com/SAP/ui5-webcomponents/commit/47d37c3))
3914
+
3915
+
3916
+ ### Features
3917
+
3918
+ * **ui5-flexible-column-layout:** Introduce new components ([#1867](https://github.com/SAP/ui5-webcomponents/issues/1867)) ([7a68dd2](https://github.com/SAP/ui5-webcomponents/commit/7a68dd2))
3919
+ * **ui5-side-navigation:** Initial implementation ([#1889](https://github.com/SAP/ui5-webcomponents/issues/1889)) ([47b38cc](https://github.com/SAP/ui5-webcomponents/commit/47b38cc))
3920
+ * **ui5-li-notification, ui5-li-notification-group:** Introduce new components ([#1576](https://github.com/SAP/ui5-webcomponents/issues/1576)) ([ef62f81](https://github.com/SAP/ui5-webcomponents/commit/ef62f81)), closes [#1478](https://github.com/SAP/ui5-webcomponents/issues/1478)
3921
+ * **ui5-shellbar:** Add "logo" slot ([#1842](https://github.com/SAP/ui5-webcomponents/issues/1842)) ([08fc5f3](https://github.com/SAP/ui5-webcomponents/commit/08fc5f3))
3922
+ * **ui5-shellbar:** Enable tooltips of custom icons ([#1863](https://github.com/SAP/ui5-webcomponents/issues/1863)) ([4338d56](https://github.com/SAP/ui5-webcomponents/commit/4338d56))
3923
+ * **ui5-shellbar:** Implement accessibility spec ([#1553](https://github.com/SAP/ui5-webcomponents/issues/1553)) ([3b7b439](https://github.com/SAP/ui5-webcomponents/commit/3b7b439))
3924
+ * **ui5-upload-collection-item:** Implement keyboard handling ([#1702](https://github.com/SAP/ui5-webcomponents/issues/1702)) ([37bf177](https://github.com/SAP/ui5-webcomponents/commit/37bf177))
3925
+
3926
+
3927
+
3928
+
3929
+
6
3930
  # [1.0.0-rc.7](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.6...v1.0.0-rc.7) (2020-04-30)
7
3931
 
8
3932