@openui5/sap.ui.webc.fiori 1.103.1 → 1.106.0

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 (651) hide show
  1. package/.reuse/dep5 +35 -15
  2. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +5 -0
  3. package/THIRDPARTY.txt +64 -21
  4. package/package.json +8 -4
  5. package/src/sap/ui/webc/fiori/.library +9 -2
  6. package/src/sap/ui/webc/fiori/Bar.js +3 -3
  7. package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +2 -2
  8. package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
  9. package/src/sap/ui/webc/fiori/FilterItem.js +1 -1
  10. package/src/sap/ui/webc/fiori/FilterItemOption.js +1 -1
  11. package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +2 -2
  12. package/src/sap/ui/webc/fiori/IllustratedMessage.js +21 -1
  13. package/src/sap/ui/webc/fiori/MediaGallery.js +2 -2
  14. package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
  15. package/src/sap/ui/webc/fiori/NotificationAction.js +2 -2
  16. package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -2
  17. package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -2
  18. package/src/sap/ui/webc/fiori/Page.js +2 -2
  19. package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
  20. package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -2
  21. package/src/sap/ui/webc/fiori/ShellBar.js +2 -2
  22. package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
  23. package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
  24. package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -2
  25. package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -2
  26. package/src/sap/ui/webc/fiori/SortItem.js +1 -1
  27. package/src/sap/ui/webc/fiori/Timeline.js +1 -1
  28. package/src/sap/ui/webc/fiori/TimelineItem.js +2 -2
  29. package/src/sap/ui/webc/fiori/UploadCollection.js +1 -1
  30. package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
  31. package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +17 -2
  32. package/src/sap/ui/webc/fiori/Wizard.js +1 -1
  33. package/src/sap/ui/webc/fiori/WizardStep.js +2 -2
  34. package/src/sap/ui/webc/fiori/lib/zxing.js +24247 -0
  35. package/src/sap/ui/webc/fiori/library.config.js +16 -1
  36. package/src/sap/ui/webc/fiori/library.js +57 -12
  37. package/src/sap/ui/webc/fiori/thirdparty/Assets.js +3 -5
  38. package/src/sap/ui/webc/fiori/thirdparty/Bar.js +211 -88
  39. package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +239 -18952
  40. package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +571 -293
  41. package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +89 -30
  42. package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +79 -26
  43. package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +806 -432
  44. package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +458 -148
  45. package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +148 -35
  46. package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +631 -342
  47. package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +354 -193
  48. package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +115 -40
  49. package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +251 -127
  50. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +407 -238
  51. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +280 -144
  52. package/src/sap/ui/webc/fiori/thirdparty/Page.js +234 -97
  53. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +206 -116
  54. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +265 -121
  55. package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +1186 -752
  56. package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +107 -44
  57. package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +319 -178
  58. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +150 -52
  59. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +107 -38
  60. package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +78 -26
  61. package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +195 -107
  62. package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +210 -96
  63. package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +381 -191
  64. package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +507 -263
  65. package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +757 -410
  66. package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +1022 -567
  67. package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +171 -46
  68. package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +230 -106
  69. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -1
  70. package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -1
  71. package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGalleryItem.css +1 -1
  72. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -1
  73. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -1
  74. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -1
  75. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -1
  76. package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -1
  77. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -1
  78. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -1
  79. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -1
  80. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  81. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  82. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  83. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  84. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  85. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  86. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  87. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  88. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
  89. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  90. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
  91. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
  92. package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +342 -244
  93. package/src/sap/ui/webc/fiori/thirdparty/features/CoPilotAnimation.js +8 -8
  94. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -0
  95. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -0
  96. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -0
  97. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -0
  98. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -0
  99. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -0
  100. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -0
  101. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -0
  102. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -0
  103. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -0
  104. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -0
  105. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -0
  106. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -0
  107. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -0
  108. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -0
  109. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -0
  110. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -0
  111. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -0
  112. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -0
  113. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -0
  114. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -0
  115. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -0
  116. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_in.json.js +1 -0
  117. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -0
  118. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -0
  119. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -0
  120. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -0
  121. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -0
  122. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -0
  123. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -0
  124. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -0
  125. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -0
  126. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -0
  127. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -0
  128. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -0
  129. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -0
  130. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -0
  131. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -0
  132. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -0
  133. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -0
  134. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -0
  135. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -0
  136. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -0
  137. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -0
  138. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -0
  139. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -0
  140. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -0
  141. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -0
  142. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -0
  143. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -0
  144. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -0
  145. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -0
  146. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -0
  147. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -0
  148. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -0
  149. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -0
  150. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -0
  151. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -0
  152. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -0
  153. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -0
  154. package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +588 -123
  155. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +58 -30
  156. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +169 -115
  157. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +11 -4
  158. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +11 -4
  159. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +11 -4
  160. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +11 -4
  161. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +23 -10
  162. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +17 -7
  163. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +23 -10
  164. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -12
  165. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +32 -16
  166. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +13 -5
  167. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +11 -4
  168. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -12
  169. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +11 -4
  170. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +15 -6
  171. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +60 -25
  172. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +13 -5
  173. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +32 -16
  174. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +23 -10
  175. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +13 -5
  176. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +42 -26
  177. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +15 -6
  178. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +44 -22
  179. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +13 -5
  180. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +19 -8
  181. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +15 -6
  182. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +18 -10
  183. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +18 -10
  184. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +18 -10
  185. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +18 -10
  186. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +18 -10
  187. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +18 -10
  188. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +18 -10
  189. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +18 -10
  190. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +18 -10
  191. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +18 -10
  192. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +18 -10
  193. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +18 -10
  194. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +18 -10
  195. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +18 -10
  196. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +18 -10
  197. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +18 -10
  198. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +18 -10
  199. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +18 -10
  200. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +18 -10
  201. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +18 -10
  202. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +18 -10
  203. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +18 -10
  204. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +18 -10
  205. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +18 -10
  206. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +18 -10
  207. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +18 -10
  208. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +18 -10
  209. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +18 -10
  210. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +13 -6
  211. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +13 -6
  212. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +13 -6
  213. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +13 -6
  214. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +13 -6
  215. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +13 -6
  216. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +13 -6
  217. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +13 -6
  218. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +13 -6
  219. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +13 -6
  220. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +13 -6
  221. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +13 -6
  222. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddColumn.js +40 -19
  223. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddPeople.js +40 -19
  224. package/src/sap/ui/webc/fiori/thirdparty/illustrations/BalloonSky.js +40 -19
  225. package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +40 -19
  226. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Connection.js +40 -19
  227. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyCalendar.js +40 -19
  228. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyList.js +40 -19
  229. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyPlanningCalendar.js +40 -19
  230. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ErrorScreen.js +40 -19
  231. package/src/sap/ui/webc/fiori/thirdparty/illustrations/FilterTable.js +40 -19
  232. package/src/sap/ui/webc/fiori/thirdparty/illustrations/GroupTable.js +40 -19
  233. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +40 -19
  234. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +40 -19
  235. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +40 -19
  236. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoFilterResults.js +40 -19
  237. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +40 -19
  238. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail_v1.js +40 -19
  239. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +40 -19
  240. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +40 -19
  241. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems_v1.js +40 -19
  242. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +40 -19
  243. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +40 -19
  244. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks_v1.js +40 -19
  245. package/src/sap/ui/webc/fiori/thirdparty/illustrations/PageNotFound.js +40 -19
  246. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ReloadScreen.js +40 -19
  247. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ResizeColumn.js +40 -19
  248. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchEarth.js +40 -19
  249. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchFolder.js +40 -19
  250. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBalloon.js +40 -19
  251. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBell.js +40 -19
  252. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCalendar.js +40 -19
  253. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCheckMark.js +40 -19
  254. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleConnection.js +40 -19
  255. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyDoc.js +40 -19
  256. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyList.js +40 -19
  257. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleError.js +40 -19
  258. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMagnifier.js +40 -19
  259. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMail.js +40 -19
  260. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNoSavedItems.js +40 -19
  261. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNotFoundMagnifier.js +40 -19
  262. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleReload.js +40 -19
  263. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleTask.js +40 -19
  264. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SleepingBell.js +40 -19
  265. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SortColumn.js +40 -19
  266. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessBalloon.js +40 -19
  267. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessCheckMark.js +40 -19
  268. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessHighFive.js +40 -19
  269. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessScreen.js +40 -19
  270. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Tent.js +40 -19
  271. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +40 -19
  272. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoadImage.js +40 -19
  273. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +40 -19
  274. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadCollection.js +40 -19
  275. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddColumn.js +9 -6
  276. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddPeople.js +9 -6
  277. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BalloonSky.js +9 -6
  278. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +9 -6
  279. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Connection.js +9 -6
  280. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyCalendar.js +9 -6
  281. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyList.js +9 -6
  282. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +9 -6
  283. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ErrorScreen.js +9 -6
  284. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-FilterTable.js +9 -6
  285. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-GroupTable.js +9 -6
  286. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +9 -6
  287. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +9 -6
  288. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +9 -6
  289. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoFilterResults.js +9 -6
  290. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +9 -6
  291. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail_v1.js +9 -6
  292. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +9 -6
  293. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +9 -6
  294. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +9 -6
  295. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +9 -6
  296. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +9 -6
  297. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks_v1.js +9 -6
  298. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-PageNotFound.js +9 -6
  299. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ReloadScreen.js +9 -6
  300. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ResizeColumn.js +9 -6
  301. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchEarth.js +9 -6
  302. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchFolder.js +9 -6
  303. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBalloon.js +9 -6
  304. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBell.js +9 -6
  305. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCalendar.js +9 -6
  306. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCheckMark.js +9 -6
  307. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleConnection.js +9 -6
  308. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +9 -6
  309. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyList.js +9 -6
  310. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleError.js +9 -6
  311. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMagnifier.js +9 -6
  312. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMail.js +9 -6
  313. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +9 -6
  314. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +9 -6
  315. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleReload.js +9 -6
  316. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleTask.js +9 -6
  317. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SleepingBell.js +9 -6
  318. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SortColumn.js +9 -6
  319. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessBalloon.js +9 -6
  320. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -6
  321. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessHighFive.js +9 -6
  322. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessScreen.js +9 -6
  323. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Tent.js +9 -6
  324. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +9 -6
  325. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoadImage.js +9 -6
  326. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +9 -6
  327. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadCollection.js +9 -6
  328. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddColumn.js +9 -6
  329. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddPeople.js +9 -6
  330. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BalloonSky.js +9 -6
  331. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +9 -6
  332. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Connection.js +9 -6
  333. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyCalendar.js +9 -6
  334. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyList.js +9 -6
  335. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +9 -6
  336. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ErrorScreen.js +9 -6
  337. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-FilterTable.js +9 -6
  338. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-GroupTable.js +9 -6
  339. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +9 -6
  340. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +9 -6
  341. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +9 -6
  342. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoFilterResults.js +9 -6
  343. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +9 -6
  344. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail_v1.js +9 -6
  345. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +9 -6
  346. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +9 -6
  347. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems_v1.js +9 -6
  348. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +9 -6
  349. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +9 -6
  350. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks_v1.js +9 -6
  351. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-PageNotFound.js +9 -6
  352. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ReloadScreen.js +9 -6
  353. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ResizeColumn.js +9 -6
  354. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchEarth.js +9 -6
  355. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchFolder.js +9 -6
  356. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBalloon.js +9 -6
  357. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBell.js +9 -6
  358. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCalendar.js +9 -6
  359. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCheckMark.js +9 -6
  360. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleConnection.js +9 -6
  361. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +9 -6
  362. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyList.js +9 -6
  363. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleError.js +9 -6
  364. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMagnifier.js +9 -6
  365. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMail.js +9 -6
  366. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +9 -6
  367. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +9 -6
  368. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleReload.js +9 -6
  369. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleTask.js +9 -6
  370. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SleepingBell.js +9 -6
  371. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SortColumn.js +9 -6
  372. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessBalloon.js +9 -6
  373. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessCheckMark.js +9 -6
  374. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessHighFive.js +9 -6
  375. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessScreen.js +9 -6
  376. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Tent.js +9 -6
  377. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +9 -6
  378. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoadImage.js +9 -6
  379. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +9 -6
  380. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadCollection.js +9 -6
  381. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddColumn.js +9 -6
  382. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddPeople.js +9 -6
  383. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BalloonSky.js +9 -6
  384. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +9 -6
  385. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Connection.js +9 -6
  386. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyCalendar.js +9 -6
  387. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyList.js +9 -6
  388. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +9 -6
  389. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ErrorScreen.js +9 -6
  390. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-FilterTable.js +9 -6
  391. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-GroupTable.js +9 -6
  392. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +9 -6
  393. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +9 -6
  394. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +9 -6
  395. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoFilterResults.js +9 -6
  396. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +9 -6
  397. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail_v1.js +9 -6
  398. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +9 -6
  399. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +9 -6
  400. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems_v1.js +9 -6
  401. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +9 -6
  402. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +9 -6
  403. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks_v1.js +9 -6
  404. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-PageNotFound.js +9 -6
  405. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ReloadScreen.js +9 -6
  406. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ResizeColumn.js +9 -6
  407. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchEarth.js +9 -6
  408. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchFolder.js +9 -6
  409. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBalloon.js +9 -6
  410. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBell.js +9 -6
  411. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCalendar.js +9 -6
  412. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCheckMark.js +9 -6
  413. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleConnection.js +9 -6
  414. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +9 -6
  415. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyList.js +9 -6
  416. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleError.js +9 -6
  417. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -6
  418. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMail.js +9 -6
  419. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +9 -6
  420. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +9 -6
  421. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleReload.js +9 -6
  422. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleTask.js +9 -6
  423. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SleepingBell.js +9 -6
  424. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SortColumn.js +9 -6
  425. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessBalloon.js +9 -6
  426. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessCheckMark.js +9 -6
  427. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessHighFive.js +9 -6
  428. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessScreen.js +9 -6
  429. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Tent.js +9 -6
  430. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +9 -6
  431. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoadImage.js +9 -6
  432. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +9 -6
  433. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadCollection.js +9 -6
  434. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea.js +36 -15
  435. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea2.js +36 -15
  436. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBPMNFlow.js +36 -15
  437. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBar.js +36 -15
  438. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBullet.js +36 -15
  439. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartDoughnut.js +36 -15
  440. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartFlow.js +36 -15
  441. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartGantt.js +36 -15
  442. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartOrg.js +36 -15
  443. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartPie.js +36 -15
  444. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +36 -15
  445. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +36 -15
  446. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Components.js +36 -15
  447. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +36 -15
  448. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +36 -15
  449. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +36 -15
  450. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +36 -15
  451. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +36 -15
  452. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +36 -15
  453. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +36 -15
  454. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +36 -15
  455. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +36 -15
  456. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Secrets.js +36 -15
  457. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +36 -15
  458. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +36 -15
  459. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +36 -15
  460. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +36 -15
  461. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +36 -15
  462. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Systems.js +36 -15
  463. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Teams.js +36 -15
  464. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Tools.js +36 -15
  465. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnableToLoad.js +36 -15
  466. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +36 -15
  467. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +36 -15
  468. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/User2.js +36 -15
  469. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea.js +21 -18
  470. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea2.js +19 -16
  471. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +20 -17
  472. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBar.js +19 -16
  473. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBullet.js +21 -18
  474. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +20 -17
  475. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartFlow.js +20 -17
  476. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartGantt.js +24 -21
  477. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartOrg.js +22 -19
  478. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartPie.js +19 -16
  479. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +13 -10
  480. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +20 -17
  481. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Components.js +16 -13
  482. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +18 -15
  483. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +24 -21
  484. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +23 -20
  485. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +19 -16
  486. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +25 -22
  487. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -19
  488. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -15
  489. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -19
  490. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +22 -19
  491. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Secrets.js +19 -16
  492. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +23 -20
  493. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +18 -15
  494. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +17 -14
  495. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +17 -14
  496. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +17 -14
  497. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Systems.js +19 -16
  498. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Teams.js +24 -21
  499. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Tools.js +19 -16
  500. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnableToLoad.js +17 -14
  501. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +19 -16
  502. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +18 -15
  503. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-User2.js +20 -17
  504. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea.js +29 -26
  505. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea2.js +26 -23
  506. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +28 -25
  507. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBar.js +26 -23
  508. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBullet.js +27 -24
  509. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartDoughnut.js +26 -23
  510. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartFlow.js +27 -24
  511. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartGantt.js +33 -30
  512. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartOrg.js +34 -31
  513. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartPie.js +25 -22
  514. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +16 -13
  515. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +37 -34
  516. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Components.js +23 -20
  517. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +21 -18
  518. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +28 -25
  519. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +42 -39
  520. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +29 -26
  521. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +26 -23
  522. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +25 -22
  523. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +27 -24
  524. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -20
  525. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +27 -24
  526. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Secrets.js +22 -19
  527. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +24 -21
  528. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +25 -22
  529. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +24 -21
  530. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +25 -22
  531. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +27 -24
  532. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Systems.js +20 -17
  533. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Teams.js +27 -24
  534. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Tools.js +26 -23
  535. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnableToLoad.js +28 -25
  536. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +22 -19
  537. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +29 -26
  538. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-User2.js +29 -26
  539. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea.js +20 -17
  540. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea2.js +14 -11
  541. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +16 -13
  542. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBar.js +15 -12
  543. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBullet.js +17 -14
  544. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartDoughnut.js +16 -13
  545. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartFlow.js +15 -12
  546. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartGantt.js +19 -16
  547. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartOrg.js +13 -10
  548. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartPie.js +15 -12
  549. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +13 -10
  550. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +20 -17
  551. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Components.js +12 -9
  552. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +16 -13
  553. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +23 -20
  554. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +17 -14
  555. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +20 -17
  556. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +24 -21
  557. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -15
  558. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -12
  559. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -15
  560. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +21 -18
  561. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Secrets.js +16 -13
  562. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -18
  563. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +16 -13
  564. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +16 -13
  565. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +16 -13
  566. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +16 -13
  567. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Systems.js +17 -14
  568. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Teams.js +20 -17
  569. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Tools.js +14 -11
  570. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnableToLoad.js +16 -13
  571. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +18 -15
  572. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +17 -14
  573. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-User2.js +17 -14
  574. package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +60 -17
  575. package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +145 -27
  576. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +78 -0
  577. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +653 -106
  578. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +49 -15
  579. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +53 -16
  580. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +46 -15
  581. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +46 -15
  582. package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +58 -16
  583. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +60 -17
  584. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +48 -15
  585. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +67 -18
  586. package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +48 -15
  587. package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +55 -16
  588. package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +62 -17
  589. package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +49 -15
  590. package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +92 -65
  591. package/ui5.yaml +141 -4
  592. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ar.js +0 -124
  593. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_bg.js +0 -124
  594. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ca.js +0 -124
  595. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cs.js +0 -124
  596. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cy.js +0 -124
  597. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_da.js +0 -124
  598. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_de.js +0 -124
  599. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_el.js +0 -124
  600. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en.js +0 -124
  601. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_GB.js +0 -124
  602. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_sappsd.js +0 -124
  603. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saprigi.js +0 -124
  604. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saptrc.js +0 -124
  605. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es.js +0 -124
  606. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es_MX.js +0 -124
  607. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_et.js +0 -124
  608. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fi.js +0 -124
  609. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr.js +0 -124
  610. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr_CA.js +0 -124
  611. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hi.js +0 -124
  612. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hr.js +0 -124
  613. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hu.js +0 -124
  614. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_in.js +0 -53
  615. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_it.js +0 -124
  616. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_iw.js +0 -124
  617. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ja.js +0 -124
  618. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_kk.js +0 -124
  619. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ko.js +0 -124
  620. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lt.js +0 -124
  621. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lv.js +0 -124
  622. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ms.js +0 -124
  623. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_nl.js +0 -124
  624. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_no.js +0 -124
  625. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pl.js +0 -124
  626. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt.js +0 -124
  627. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt_PT.js +0 -124
  628. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ro.js +0 -124
  629. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ru.js +0 -124
  630. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sh.js +0 -124
  631. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sk.js +0 -124
  632. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sl.js +0 -124
  633. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sv.js +0 -124
  634. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_th.js +0 -124
  635. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_tr.js +0 -124
  636. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_uk.js +0 -124
  637. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_vi.js +0 -124
  638. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_CN.js +0 -124
  639. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_TW.js +0 -124
  640. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css.js +0 -13
  641. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css10.js +0 -13
  642. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css11.js +0 -13
  643. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css12.js +0 -13
  644. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css2.js +0 -13
  645. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css3.js +0 -13
  646. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css4.js +0 -13
  647. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css5.js +0 -13
  648. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css6.js +0 -13
  649. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css7.js +0 -13
  650. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css8.js +0 -13
  651. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css9.js +0 -13
@@ -1,752 +1,1186 @@
1
- sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer', 'sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler', 'sap/ui/webc/common/thirdparty/base/FeaturesRegistry', 'sap/ui/webc/common/thirdparty/base/types/AnimationMode', 'sap/ui/webc/common/thirdparty/base/config/AnimationMode', 'sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/Render', 'sap/ui/webc/main/thirdparty/StandardListItem', 'sap/ui/webc/main/thirdparty/List', 'sap/ui/webc/main/thirdparty/Popover', 'sap/ui/webc/main/thirdparty/Button', 'sap/ui/webc/main/thirdparty/types/HasPopup', 'sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/common/thirdparty/icons/search', 'sap/ui/webc/common/thirdparty/icons/bell', 'sap/ui/webc/common/thirdparty/icons/overflow', 'sap/ui/webc/common/thirdparty/icons/grid', './generated/i18n/i18n-defaults', './generated/templates/ShellBarTemplate.lit', './generated/templates/ShellBarPopoverTemplate.lit', './generated/themes/ShellBar.css', './generated/themes/ShellBarPopover.css'], function (UI5Element, litRender, ResizeHandler, FeaturesRegistry, AnimationMode$1, AnimationMode, Keys, Render, StandardListItem, List, Popover, Button, HasPopup, i18nBundle, search, bell, overflow, grid, i18nDefaults, ShellBarTemplate_lit, ShellBarPopoverTemplate_lit, ShellBar_css, ShellBarPopover_css) { 'use strict';
2
-
3
- function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
4
-
5
- var UI5Element__default = /*#__PURE__*/_interopDefaultLegacy(UI5Element);
6
- var litRender__default = /*#__PURE__*/_interopDefaultLegacy(litRender);
7
- var ResizeHandler__default = /*#__PURE__*/_interopDefaultLegacy(ResizeHandler);
8
- var AnimationMode__default = /*#__PURE__*/_interopDefaultLegacy(AnimationMode$1);
9
- var StandardListItem__default = /*#__PURE__*/_interopDefaultLegacy(StandardListItem);
10
- var List__default = /*#__PURE__*/_interopDefaultLegacy(List);
11
- var Popover__default = /*#__PURE__*/_interopDefaultLegacy(Popover);
12
- var Button__default = /*#__PURE__*/_interopDefaultLegacy(Button);
13
- var HasPopup__default = /*#__PURE__*/_interopDefaultLegacy(HasPopup);
14
-
15
- const HANDLE_RESIZE_DEBOUNCE_RATE = 200;
16
- const metadata = {
17
- tag: "ui5-shellbar",
18
- languageAware: true,
19
- fastNavigation: true,
20
- properties: {
21
- primaryTitle: {
22
- type: String,
23
- },
24
- secondaryTitle: {
25
- type: String,
26
- },
27
- notificationsCount: {
28
- type: String,
29
- },
30
- showNotifications: {
31
- type: Boolean,
32
- },
33
- showProductSwitch: {
34
- type: Boolean,
35
- },
36
- showCoPilot: {
37
- type: Boolean,
38
- },
39
- accessibilityTexts: {
40
- type: Object,
41
- },
42
- breakpointSize: {
43
- type: String,
44
- },
45
- showSearchField: {
46
- type: Boolean,
47
- },
48
- coPilotActive: {
49
- type: Boolean,
50
- },
51
- withLogo: {
52
- type: Boolean,
53
- },
54
- _itemsInfo: {
55
- type: Object,
56
- },
57
- _header: {
58
- type: Object,
59
- },
60
- _menuPopoverItems: {
61
- type: String,
62
- multiple: true,
63
- },
64
- _menuPopoverExpanded: {
65
- type: Boolean,
66
- noAttribute: true,
67
- },
68
- _overflowPopoverExpanded: {
69
- type: Boolean,
70
- noAttribute: true,
71
- },
72
- _fullWidthSearch: {
73
- type: Boolean,
74
- noAttribute: true,
75
- },
76
- },
77
- managedSlots: true,
78
- slots: {
79
- "default": {
80
- propertyName: "items",
81
- type: HTMLElement,
82
- invalidateOnChildChange: true,
83
- },
84
- profile: {
85
- type: HTMLElement,
86
- },
87
- logo: {
88
- type: HTMLElement,
89
- },
90
- menuItems: {
91
- type: HTMLElement,
92
- },
93
- searchField: {
94
- type: HTMLElement,
95
- },
96
- startButton: {
97
- type: HTMLElement,
98
- },
99
- },
100
- events: {
101
- "notifications-click": {
102
- detail: {
103
- targetRef: { type: HTMLElement },
104
- },
105
- },
106
- "profile-click": {
107
- detail: {
108
- targetRef: { type: HTMLElement },
109
- },
110
- },
111
- "product-switch-click": {
112
- detail: {
113
- targetRef: { type: HTMLElement },
114
- },
115
- },
116
- "logo-click": {
117
- detail: {
118
- targetRef: { type: HTMLElement },
119
- },
120
- },
121
- "co-pilot-click": {
122
- detail: {
123
- targetRef: { type: HTMLElement },
124
- },
125
- },
126
- "menu-item-click": {
127
- detail: {
128
- item: { type: HTMLElement },
129
- },
130
- },
131
- },
132
- };
133
- class ShellBar extends UI5Element__default {
134
- static get metadata() {
135
- return metadata;
136
- }
137
- static get render() {
138
- return litRender__default;
139
- }
140
- static get template() {
141
- return ShellBarTemplate_lit;
142
- }
143
- static get staticAreaTemplate() {
144
- return ShellBarPopoverTemplate_lit;
145
- }
146
- static get styles() {
147
- return ShellBar_css;
148
- }
149
- static get staticAreaStyles() {
150
- return [ShellBarPopover_css];
151
- }
152
- static get FIORI_3_BREAKPOINTS() {
153
- return [
154
- 599,
155
- 1023,
156
- 1439,
157
- 1919,
158
- 10000,
159
- ];
160
- }
161
- static get FIORI_3_BREAKPOINTS_MAP() {
162
- return {
163
- "599": "S",
164
- "1023": "M",
165
- "1439": "L",
166
- "1919": "XL",
167
- "10000": "XXL",
168
- };
169
- }
170
- constructor() {
171
- super();
172
- this._itemsInfo = [];
173
- this._isInitialRendering = true;
174
- this._focusedItem = null;
175
- this._defaultItemPressPrevented = false;
176
- this.menuItemsObserver = new MutationObserver(() => {
177
- this._updateClonedMenuItems();
178
- });
179
- this._header = {
180
- press: async () => {
181
- this._updateClonedMenuItems();
182
- if (this.hasMenuItems) {
183
- const menuPopover = await this._getMenuPopover();
184
- menuPopover.showAt(this.shadowRoot.querySelector(".ui5-shellbar-menu-button"));
185
- }
186
- },
187
- };
188
- this._handleResize = async event => {
189
- this._debounce(async () => {
190
- await this._getResponsivePopover();
191
- this.overflowPopover.close();
192
- this._overflowActions();
193
- }, HANDLE_RESIZE_DEBOUNCE_RATE);
194
- };
195
- }
196
- _debounce(fn, delay) {
197
- clearTimeout(this._debounceInterval);
198
- this._debounceInterval = setTimeout(() => {
199
- this._debounceInterval = null;
200
- fn();
201
- }, delay);
202
- }
203
- _menuItemPress(event) {
204
- this.menuPopover.close();
205
- this.fireEvent("menu-item-click", {
206
- item: event.detail.selectedItems[0],
207
- }, true);
208
- }
209
- _logoPress() {
210
- this.fireEvent("logo-click", {
211
- targetRef: this.shadowRoot.querySelector(".ui5-shellbar-logo"),
212
- });
213
- }
214
- _menuPopoverBeforeOpen() {
215
- this._menuPopoverExpanded = true;
216
- }
217
- _menuPopoverAfterClose() {
218
- this._menuPopoverExpanded = false;
219
- }
220
- _overflowPopoverBeforeOpen() {
221
- this._overflowPopoverExpanded = true;
222
- }
223
- _overflowPopoverAfterClose() {
224
- this._overflowPopoverExpanded = false;
225
- }
226
- _logoKeyup(event) {
227
- if (Keys.isSpace(event)) {
228
- this._logoPress();
229
- }
230
- }
231
- _logoKeydown(event) {
232
- if (Keys.isSpace(event)) {
233
- event.preventDefault();
234
- return;
235
- }
236
- if (Keys.isEnter(event)) {
237
- this._logoPress();
238
- }
239
- }
240
- _fireCoPilotClick() {
241
- this.fireEvent("co-pilot-click", {
242
- targetRef: this.shadowRoot.querySelector(".ui5-shellbar-coPilot"),
243
- });
244
- }
245
- _coPilotClick() {
246
- this._fireCoPilotClick();
247
- }
248
- _coPilotKeydown(event) {
249
- if (Keys.isSpace(event)) {
250
- this.coPilotActive = true;
251
- event.preventDefault();
252
- return;
253
- }
254
- if (Keys.isEnter(event)) {
255
- this.coPilotActive = true;
256
- this._fireCoPilotClick();
257
- }
258
- }
259
- _coPilotKeyup(event) {
260
- if (Keys.isSpace(event)) {
261
- this._fireCoPilotClick();
262
- }
263
- this.coPilotActive = false;
264
- }
265
- onBeforeRendering() {
266
- const animationsOn = AnimationMode.getAnimationMode() === AnimationMode__default.Full;
267
- const coPilotAnimation = FeaturesRegistry.getFeature("CoPilotAnimation");
268
- this.coPilot = coPilotAnimation && animationsOn ? coPilotAnimation : { animated: false };
269
- this.withLogo = this.hasLogo;
270
- this._hiddenIcons = this._itemsInfo.filter(info => {
271
- const isHidden = (info.classes.indexOf("ui5-shellbar-hidden-button") !== -1);
272
- const isSet = info.classes.indexOf("ui5-shellbar-invisible-button") === -1;
273
- const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
274
- const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
275
- const shouldStayOnScreen = isOverflowIcon || (isImageIcon && this.hasProfile);
276
- return isHidden && isSet && !shouldStayOnScreen;
277
- });
278
- this._observeMenuItems();
279
- }
280
- onAfterRendering() {
281
- this._overflowActions();
282
- this._fullWidthSearch = this._showFullWidthSearch;
283
- }
284
- closeOverflow() {
285
- if (this.overflowPopover) {
286
- this.overflowPopover.close();
287
- }
288
- }
289
- _handleBarBreakpoints() {
290
- const width = this.getBoundingClientRect().width;
291
- const breakpoints = ShellBar.FIORI_3_BREAKPOINTS;
292
- const size = breakpoints.find(bp1 => width < bp1) || ShellBar.FIORI_3_BREAKPOINTS[ShellBar.FIORI_3_BREAKPOINTS.length - 1];
293
- const mappedSize = ShellBar.FIORI_3_BREAKPOINTS_MAP[size];
294
- if (this.breakpointSize !== mappedSize) {
295
- this.breakpointSize = mappedSize;
296
- }
297
- return mappedSize;
298
- }
299
- _handleSizeS() {
300
- const hasIcons = this.showNotifications || this.showProductSwitch || this.searchField.length || this.items.length;
301
- const newItems = this._getAllItems(hasIcons).map(info => {
302
- const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
303
- const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
304
- const shouldStayOnScreen = isOverflowIcon || (isImageIcon && this.hasProfile);
305
- return {
306
- ...info,
307
- classes: `${info.classes} ${shouldStayOnScreen ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-button`,
308
- styles: {
309
- order: shouldStayOnScreen ? 1 : -1,
310
- },
311
- };
312
- });
313
- this._updateItemsInfo(newItems);
314
- }
315
- _handleActionsOverflow() {
316
- const rightContainerRect = this.shadowRoot.querySelector(".ui5-shellbar-overflow-container-right").getBoundingClientRect();
317
- let overflowSelector = ".ui5-shellbar-button:not(.ui5-shellbar-overflow-button):not(.ui5-shellbar-invisible-button)";
318
- if (this.showSearchField) {
319
- overflowSelector += ",.ui5-shellbar-search-field";
320
- }
321
- const elementsToOverflow = this.shadowRoot.querySelectorAll(overflowSelector);
322
- const isRTL = this.effectiveDir === "rtl";
323
- let overflowCount = [].filter.call(elementsToOverflow, icon => {
324
- const iconRect = icon.getBoundingClientRect();
325
- if (isRTL) {
326
- return (iconRect.left + iconRect.width) > (rightContainerRect.left + rightContainerRect.width);
327
- }
328
- return iconRect.left < rightContainerRect.left;
329
- });
330
- overflowCount = overflowCount.length;
331
- const items = this._getAllItems(!!overflowCount).filter(item => item.show);
332
- const itemsByPriority = items.sort((item1, item2) => {
333
- if (item1.priority > item2.priority) {
334
- return 1;
335
- }
336
- if (item1.priority < item2.priority) {
337
- return -1;
338
- }
339
- return 0;
340
- });
341
- for (let i = 0; i < itemsByPriority.length; i++) {
342
- if (i < overflowCount) {
343
- itemsByPriority[i].classes = `${itemsByPriority[i].classes} ui5-shellbar-hidden-button`;
344
- itemsByPriority[i].styles = {
345
- order: -1,
346
- };
347
- }
348
- }
349
- return itemsByPriority;
350
- }
351
- _overflowActions() {
352
- const size = this._handleBarBreakpoints();
353
- if (size === "S") {
354
- return this._handleSizeS();
355
- }
356
- const newItems = this._handleActionsOverflow();
357
- this._updateItemsInfo(newItems);
358
- }
359
- async _toggleActionPopover() {
360
- const overflowButton = this.shadowRoot.querySelector(".ui5-shellbar-overflow-button");
361
- const overflowPopover = await this._getOverflowPopover();
362
- overflowPopover.showAt(overflowButton);
363
- }
364
- onEnterDOM() {
365
- ResizeHandler__default.register(this, this._handleResize);
366
- }
367
- onExitDOM() {
368
- this.menuItemsObserver.disconnect();
369
- ResizeHandler__default.deregister(this, this._handleResize);
370
- clearTimeout(this._debounceInterval);
371
- this._debounceInterval = null;
372
- }
373
- _handleSearchIconPress(event) {
374
- this.showSearchField = !this.showSearchField;
375
- if (!this.showSearchField) {
376
- return;
377
- }
378
- const input = this.searchField[0];
379
- if (input) {
380
- input.focused = true;
381
- }
382
- setTimeout(() => {
383
- if (input) {
384
- input.focus();
385
- }
386
- }, 100);
387
- }
388
- async _handleActionListClick(event) {
389
- if (!this._defaultItemPressPrevented) {
390
- this.closeOverflow();
391
- await Render.renderFinished();
392
- }
393
- this._defaultItemPressPrevented = false;
394
- }
395
- _handleCustomActionPress(event) {
396
- const refItemId = event.target.getAttribute("data-ui5-external-action-item-id");
397
- if (refItemId) {
398
- const shellbarItem = this.items.find(item => {
399
- return item._id === refItemId;
400
- });
401
- const prevented = !shellbarItem.fireEvent("click", { targetRef: event.target }, true);
402
- this._defaultItemPressPrevented = prevented;
403
- }
404
- }
405
- _handleOverflowPress(event) {
406
- this._toggleActionPopover();
407
- }
408
- _handleNotificationsPress(event) {
409
- const notificationIconRef = this.shadowRoot.querySelector(".ui5-shellbar-bell-button");
410
- this._defaultItemPressPrevented = !this.fireEvent("notifications-click", {
411
- targetRef: notificationIconRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : notificationIconRef,
412
- }, true);
413
- }
414
- _handleProfilePress(event) {
415
- this.fireEvent("profile-click", {
416
- targetRef: this.shadowRoot.querySelector(".ui5-shellbar-image-button"),
417
- });
418
- }
419
- _handleCancelButtonPress() {
420
- this.showSearchField = false;
421
- }
422
- _handleProductSwitchPress(event) {
423
- const buttonRef = this.shadowRoot.querySelector(".ui5-shellbar-button-product-switch");
424
- this._defaultItemPressPrevented = !this.fireEvent("product-switch-click", {
425
- targetRef: buttonRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : buttonRef,
426
- }, true);
427
- }
428
- get logoDomRef() {
429
- return this.shadowRoot.querySelector(`*[data-ui5-stable="logo"]`);
430
- }
431
- get copilotDomRef() {
432
- return this.shadowRoot.querySelector(`*[data-ui5-stable="copilot"]`);
433
- }
434
- get notificationsDomRef() {
435
- return this.shadowRoot.querySelector(`*[data-ui5-stable="notifications"]`);
436
- }
437
- get overflowDomRef() {
438
- return this.shadowRoot.querySelector(`*[data-ui5-stable="overflow"]`);
439
- }
440
- get profileDomRef() {
441
- return this.shadowRoot.querySelector(`*[data-ui5-stable="profile"]`);
442
- }
443
- get productSwitchDomRef() {
444
- return this.shadowRoot.querySelector(`*[data-ui5-stable="product-switch"]`);
445
- }
446
- _getAllItems(showOverflowButton) {
447
- let domOrder = -1;
448
- const items = [
449
- {
450
- icon: "search",
451
- text: "Search",
452
- classes: `${this.searchField.length ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-search-button ui5-shellbar-button`,
453
- priority: 4,
454
- domOrder: this.searchField.length ? (++domOrder) : -1,
455
- styles: {
456
- order: this.searchField.length ? 1 : -10,
457
- },
458
- id: `${this._id}-item-${1}`,
459
- press: this._handleSearchIconPress.bind(this),
460
- show: !!this.searchField.length,
461
- },
462
- ...this.items.map((item, index) => {
463
- item._getRealDomRef = () => this.getDomRef().querySelector(`*[data-ui5-stable=${item.stableDomRef}]`);
464
- return {
465
- icon: item.icon,
466
- id: item._id,
467
- count: item.count || undefined,
468
- refItemid: item._id,
469
- text: item.text,
470
- classes: "ui5-shellbar-custom-item ui5-shellbar-button",
471
- priority: 1,
472
- domOrder: (++domOrder),
473
- styles: {
474
- order: 2,
475
- },
476
- show: true,
477
- press: this._handleCustomActionPress.bind(this),
478
- custom: true,
479
- title: item.title,
480
- stableDomRef: item.stableDomRef,
481
- };
482
- }),
483
- {
484
- icon: "bell",
485
- text: "Notifications",
486
- classes: `${this.showNotifications ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-bell-button ui5-shellbar-button`,
487
- priority: 3,
488
- styles: {
489
- order: this.showNotifications ? 3 : -10,
490
- },
491
- id: `${this._id}-item-${2}`,
492
- show: this.showNotifications,
493
- domOrder: this.showNotifications ? (++domOrder) : -1,
494
- press: this._handleNotificationsPress.bind(this),
495
- },
496
- {
497
- icon: "overflow",
498
- text: "Overflow",
499
- classes: `${showOverflowButton ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button ui5-shellbar-button`,
500
- priority: 5,
501
- order: 4,
502
- styles: {
503
- order: showOverflowButton ? 4 : -1,
504
- },
505
- domOrder: showOverflowButton ? (++domOrder) : -1,
506
- id: `${this.id}-item-${5}`,
507
- press: this._handleOverflowPress.bind(this),
508
- show: true,
509
- },
510
- {
511
- text: "Person",
512
- classes: `${this.hasProfile ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-image-button ui5-shellbar-button`,
513
- priority: 4,
514
- styles: {
515
- order: this.hasProfile ? 5 : -10,
516
- },
517
- profile: true,
518
- id: `${this._id}-item-${3}`,
519
- domOrder: this.hasProfile ? (++domOrder) : -1,
520
- show: this.hasProfile,
521
- press: this._handleProfilePress.bind(this),
522
- },
523
- {
524
- icon: "grid",
525
- text: "Product Switch",
526
- classes: `${this.showProductSwitch ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-button ui5-shellbar-button-product-switch`,
527
- priority: 2,
528
- styles: {
529
- order: this.showProductSwitch ? 6 : -10,
530
- },
531
- id: `${this._id}-item-${4}`,
532
- show: this.showProductSwitch,
533
- domOrder: this.showProductSwitch ? (++domOrder) : -1,
534
- press: this._handleProductSwitchPress.bind(this),
535
- },
536
- ];
537
- return items;
538
- }
539
- _updateItemsInfo(newItems) {
540
- const isDifferent = JSON.stringify(this._itemsInfo) !== JSON.stringify(newItems);
541
- if (isDifferent) {
542
- this._itemsInfo = newItems;
543
- }
544
- }
545
- _updateClonedMenuItems() {
546
- this._menuPopoverItems = [];
547
- this.menuItems.forEach(item => {
548
- const clonedItem = item.cloneNode(true);
549
- clonedItem.removeAttribute("slot");
550
- this._menuPopoverItems.push(clonedItem);
551
- });
552
- }
553
- _observeMenuItems() {
554
- this.menuItems.forEach(item => {
555
- this.menuItemsObserver.observe(item, {
556
- characterData: true,
557
- childList: true,
558
- subtree: true,
559
- attributes: true,
560
- });
561
- });
562
- }
563
- async _getResponsivePopover() {
564
- const staticAreaItem = await this.getStaticAreaItemDomRef();
565
- this.overflowPopover = staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
566
- this.menuPopover = staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
567
- }
568
- async _getOverflowPopover() {
569
- const staticAreaItem = await this.getStaticAreaItemDomRef();
570
- return staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
571
- }
572
- async _getMenuPopover() {
573
- const staticAreaItem = await this.getStaticAreaItemDomRef();
574
- return staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
575
- }
576
- isIconHidden(name) {
577
- const itemInfo = this._itemsInfo.find(item => item.icon === name);
578
- if (!itemInfo) {
579
- return false;
580
- }
581
- return itemInfo.classes.indexOf("ui5-shellbar-hidden-button") !== -1;
582
- }
583
- get classes() {
584
- return {
585
- wrapper: {
586
- "ui5-shellbar-root": true,
587
- "ui5-shellbar-with-searchfield": this.searchField.length,
588
- },
589
- button: {
590
- "ui5-shellbar-menu-button--interactive": this.hasMenuItems,
591
- "ui5-shellbar-menu-button": true,
592
- },
593
- items: {
594
- notification: {
595
- "ui5-shellbar-hidden-button": this.isIconHidden("bell"),
596
- },
597
- product: {
598
- "ui5-shellbar-hidden-button": this.isIconHidden("grid"),
599
- },
600
- search: {
601
- "ui5-shellbar-hidden-button": this.isIconHidden("search"),
602
- },
603
- overflow: {
604
- "ui5-shellbar-hidden-button": this.isIconHidden("overflow"),
605
- },
606
- },
607
- };
608
- }
609
- get styles() {
610
- return {
611
- items: {
612
- notification: {
613
- "order": this.isIconHidden("bell") ? "-1" : "3",
614
- },
615
- overflow: {
616
- "order": this.isIconHidden("overflow") ? "-1" : "4",
617
- },
618
- profile: {
619
- "order": this.hasProfile ? "5" : "-1",
620
- },
621
- product: {
622
- "order": this.isIconHidden("grid") ? "-1" : "6",
623
- },
624
- },
625
- searchField: {
626
- "display": this.correctSearchFieldStyles,
627
- },
628
- };
629
- }
630
- get correctSearchFieldStyles() {
631
- if (this.showSearchField) {
632
- if (this._fullWidthSearch) {
633
- return "flex";
634
- }
635
- return "block";
636
- }
637
- return "none";
638
- }
639
- get customItemsInfo() {
640
- return this._itemsInfo.filter(itemInfo => !!itemInfo.custom);
641
- }
642
- get nonFocusableLogo() {
643
- return this.breakpointSize === "S" && this.hasMenuItems;
644
- }
645
- get hasFocusableLogo() {
646
- return this.hasLogo && !this.nonFocusableLogo;
647
- }
648
- get hasNonFocusableLogo() {
649
- return this.hasLogo && this.nonFocusableLogo;
650
- }
651
- get hasLogo() {
652
- return !!this.logo.length;
653
- }
654
- get showArrowDown() {
655
- return this.primaryTitle || this.hasInteractvieLogo;
656
- }
657
- get popoverHorizontalAlign() {
658
- return this.effectiveDir === "rtl" ? "Left" : "Right";
659
- }
660
- get hasSearchField() {
661
- return !!this.searchField.length;
662
- }
663
- get hasProfile() {
664
- return !!this.profile.length;
665
- }
666
- get hasMenuItems() {
667
- return this.menuItems.length > 0;
668
- }
669
- get menuBtnHasPopup() {
670
- return this.hasMenuItems ? HasPopup__default.Menu : undefined;
671
- }
672
- get menuBtnTabindex() {
673
- return this.hasMenuItems ? "0" : "-1";
674
- }
675
- get menuPopoverExpanded() {
676
- return this.hasMenuItems ? this._menuPopoverExpanded : undefined;
677
- }
678
- get _shellbarText() {
679
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_LABEL);
680
- }
681
- get _logoText() {
682
- return this.accessibilityTexts.logoTitle || ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_LOGO);
683
- }
684
- get _copilotText() {
685
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_COPILOT);
686
- }
687
- get _notificationsText() {
688
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_NOTIFICATIONS, this.notificationsCount);
689
- }
690
- get _cancelBtnText() {
691
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_CANCEL);
692
- }
693
- get _showFullWidthSearch() {
694
- const size = this._handleBarBreakpoints();
695
- const searchBtnHidden = !!this.shadowRoot.querySelector(".ui5-shellbar-search-button.ui5-shellbar-hidden-button");
696
- return ((size === "S") || searchBtnHidden);
697
- }
698
- get _profileText() {
699
- return this.accessibilityTexts.profileButtonTitle || ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_PROFILE);
700
- }
701
- get _productsText() {
702
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_PRODUCTS);
703
- }
704
- get _searchText() {
705
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_SEARCH);
706
- }
707
- get _overflowText() {
708
- return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_OVERFLOW);
709
- }
710
- get accInfo() {
711
- return {
712
- notifications: {
713
- "title": this._notificationsText,
714
- },
715
- profile: {
716
- "title": this._profileText,
717
- },
718
- products: {
719
- "title": this._productsText,
720
- },
721
- search: {
722
- "title": this._searchText,
723
- "accessibilityAttributes": {
724
- expanded: this.showSearchField,
725
- },
726
- },
727
- overflow: {
728
- "title": this._overflowText,
729
- "accessibilityAttributes": {
730
- hasPopup: HasPopup__default.Menu,
731
- expanded: this._overflowPopoverExpanded,
732
- },
733
- },
734
- };
735
- }
736
- static get dependencies() {
737
- return [
738
- Button__default,
739
- List__default,
740
- Popover__default,
741
- StandardListItem__default,
742
- ];
743
- }
744
- static async onDefine() {
745
- ShellBar.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
746
- }
747
- }
748
- ShellBar.define();
749
-
750
- return ShellBar;
751
-
752
- });
1
+ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/FeaturesRegistry", "sap/ui/webc/common/thirdparty/base/types/AnimationMode", "sap/ui/webc/common/thirdparty/base/config/AnimationMode", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/main/thirdparty/StandardListItem", "sap/ui/webc/main/thirdparty/List", "sap/ui/webc/main/thirdparty/Popover", "sap/ui/webc/main/thirdparty/Button", "sap/ui/webc/main/thirdparty/types/HasPopup", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/icons/search", "sap/ui/webc/common/thirdparty/icons/bell", "sap/ui/webc/common/thirdparty/icons/overflow", "sap/ui/webc/common/thirdparty/icons/grid", "./generated/i18n/i18n-defaults", "./generated/templates/ShellBarTemplate.lit", "./generated/templates/ShellBarPopoverTemplate.lit", "./generated/themes/ShellBar.css", "./generated/themes/ShellBarPopover.css"], function (_exports, _UI5Element, _LitRenderer, _ResizeHandler, _FeaturesRegistry, _AnimationMode, _AnimationMode2, _Keys, _Render, _StandardListItem, _List, _Popover, _Button, _HasPopup, _i18nBundle, _search, _bell, _overflow, _grid, _i18nDefaults, _ShellBarTemplate, _ShellBarPopoverTemplate, _ShellBar, _ShellBarPopover) {
2
+ "use strict";
3
+
4
+ Object.defineProperty(_exports, "__esModule", {
5
+ value: true
6
+ });
7
+ _exports.default = void 0;
8
+ _UI5Element = _interopRequireDefault(_UI5Element);
9
+ _LitRenderer = _interopRequireDefault(_LitRenderer);
10
+ _ResizeHandler = _interopRequireDefault(_ResizeHandler);
11
+ _AnimationMode = _interopRequireDefault(_AnimationMode);
12
+ _StandardListItem = _interopRequireDefault(_StandardListItem);
13
+ _List = _interopRequireDefault(_List);
14
+ _Popover = _interopRequireDefault(_Popover);
15
+ _Button = _interopRequireDefault(_Button);
16
+ _HasPopup = _interopRequireDefault(_HasPopup);
17
+ _ShellBarTemplate = _interopRequireDefault(_ShellBarTemplate);
18
+ _ShellBarPopoverTemplate = _interopRequireDefault(_ShellBarPopoverTemplate);
19
+ _ShellBar = _interopRequireDefault(_ShellBar);
20
+ _ShellBarPopover = _interopRequireDefault(_ShellBarPopover);
21
+
22
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
23
+
24
+ // Templates
25
+ // Styles
26
+ const HANDLE_RESIZE_DEBOUNCE_RATE = 200; // ms
27
+
28
+ /**
29
+ * @public
30
+ */
31
+
32
+ const metadata = {
33
+ tag: "ui5-shellbar",
34
+ languageAware: true,
35
+ fastNavigation: true,
36
+ properties:
37
+ /** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
38
+ {
39
+ /**
40
+ * Defines the <code>primaryTitle</code>.
41
+ * <br><br>
42
+ * <b>Note:</b> The <code>primaryTitle</code> would be hidden on S screen size (less than approx. 700px).
43
+ * @type {string}
44
+ * @defaultvalue ""
45
+ * @public
46
+ */
47
+ primaryTitle: {
48
+ type: String
49
+ },
50
+
51
+ /**
52
+ * Defines the <code>secondaryTitle</code>.
53
+ * <br><br>
54
+ * <b>Note:</b> The <code>secondaryTitle</code> would be hidden on S and M screen sizes (less than approx. 1300px).
55
+ * @type {string}
56
+ * @defaultvalue ""
57
+ * @public
58
+ */
59
+ secondaryTitle: {
60
+ type: String
61
+ },
62
+
63
+ /**
64
+ * Defines the <code>notificationsCount</code>,
65
+ * displayed in the notification icon top-right corner.
66
+ * @type {string}
67
+ * @defaultvalue ""
68
+ * @public
69
+ */
70
+ notificationsCount: {
71
+ type: String
72
+ },
73
+
74
+ /**
75
+ * Defines, if the notification icon would be displayed.
76
+ * @type {boolean}
77
+ * @defaultvalue false
78
+ * @public
79
+ */
80
+ showNotifications: {
81
+ type: Boolean
82
+ },
83
+
84
+ /**
85
+ * Defines, if the product switch icon would be displayed.
86
+ * @type {boolean}
87
+ * @defaultvalue false
88
+ * @public
89
+ */
90
+ showProductSwitch: {
91
+ type: Boolean
92
+ },
93
+
94
+ /**
95
+ * Defines, if the product CoPilot icon would be displayed.
96
+ * <br><b>Note:</b> By default the co-pilot is displayed as static SVG.
97
+ * If you need an animated co-pilot, you can import the <code>"@ui5/webcomponents-fiori/dist/features/CoPilotAnimation.js"</code> module as add-on feature.
98
+ * @type {boolean}
99
+ * @defaultvalue false
100
+ * @public
101
+ */
102
+ showCoPilot: {
103
+ type: Boolean
104
+ },
105
+
106
+ /**
107
+ * An object of strings that defines several additional accessibility texts
108
+ * for even further customization.
109
+ *
110
+ * It supports the following fields:
111
+ * - <code>profileButtonTitle</code>: defines the tooltip for the profile button
112
+ * - <code>logoTitle</code>: defines the tooltip for the logo
113
+ *
114
+ * @type {object}
115
+ * @public
116
+ * @since 1.1.0
117
+ */
118
+ accessibilityTexts: {
119
+ type: Object
120
+ },
121
+
122
+ /**
123
+ * @private
124
+ */
125
+ breakpointSize: {
126
+ type: String
127
+ },
128
+
129
+ /**
130
+ * @private
131
+ */
132
+ showSearchField: {
133
+ type: Boolean
134
+ },
135
+
136
+ /**
137
+ * @private
138
+ */
139
+ coPilotActive: {
140
+ type: Boolean
141
+ },
142
+
143
+ /**
144
+ * @private
145
+ */
146
+ withLogo: {
147
+ type: Boolean
148
+ },
149
+ _itemsInfo: {
150
+ type: Object
151
+ },
152
+ _header: {
153
+ type: Object
154
+ },
155
+ _menuPopoverItems: {
156
+ type: String,
157
+ multiple: true
158
+ },
159
+ _menuPopoverExpanded: {
160
+ type: Boolean,
161
+ noAttribute: true
162
+ },
163
+ _overflowPopoverExpanded: {
164
+ type: Boolean,
165
+ noAttribute: true
166
+ },
167
+ _fullWidthSearch: {
168
+ type: Boolean,
169
+ noAttribute: true
170
+ }
171
+ },
172
+ managedSlots: true,
173
+ slots:
174
+ /** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
175
+ {
176
+ /**
177
+ * Defines the <code>ui5-shellbar</code> aditional items.
178
+ * <br><br>
179
+ * <b>Note:</b>
180
+ * You can use the &nbsp;&lt;ui5-shellbar-item>&lt;/ui5-shellbar-item>.
181
+ *
182
+ * @type {sap.ui.webcomponents.fiori.IShellBarItem[]}
183
+ * @slot items
184
+ * @public
185
+ */
186
+ "default": {
187
+ propertyName: "items",
188
+ type: HTMLElement,
189
+ invalidateOnChildChange: true
190
+ },
191
+
192
+ /**
193
+ * You can pass <code>ui5-avatar</code> to set the profile image/icon.
194
+ * If no profile slot is set - profile will be excluded from actions.
195
+ *
196
+ * Note: We recommend not using the <code>size</code> attribute of <code>ui5-avatar</code> because
197
+ * it should have specific size by design in the context of <code>ui5-shellbar</code> profile.
198
+ * @type {sap.ui.webcomponents.main.IAvatar}
199
+ * @slot
200
+ * @since 1.0.0-rc.6
201
+ * @public
202
+ */
203
+ profile: {
204
+ type: HTMLElement
205
+ },
206
+
207
+ /**
208
+ * Defines the logo of the <code>ui5-shellbar</code>.
209
+ * For example, you can use <code>ui5-avatar</code> or <code>img</code> elements as logo.
210
+ * @type {sap.ui.webcomponents.main.IAvatar}
211
+ * @slot
212
+ * @since 1.0.0-rc.8
213
+ * @public
214
+ */
215
+ logo: {
216
+ type: HTMLElement
217
+ },
218
+
219
+ /**
220
+ * Defines the items displayed in menu after a click on the primary title.
221
+ * <br><br>
222
+ * <b>Note:</b>
223
+ * You can use the &nbsp;&lt;ui5-li>&lt;/ui5-li> and its ancestors.
224
+ *
225
+ * @type {sap.ui.webcomponents.main.IListItem[]}
226
+ * @slot
227
+ * @since 0.10
228
+ * @public
229
+ */
230
+ menuItems: {
231
+ type: HTMLElement
232
+ },
233
+
234
+ /**
235
+ * Defines the <code>ui5-input</code>, that will be used as a search field.
236
+ *
237
+ * @type {sap.ui.webcomponents.main.IInput}
238
+ * @slot
239
+ * @public
240
+ */
241
+ searchField: {
242
+ type: HTMLElement
243
+ },
244
+
245
+ /**
246
+ * Defines a <code>ui5-button</code> in the bar that will be placed in the beginning.
247
+ * We encourage this slot to be used for a back or home button.
248
+ * It gets overstyled to match ShellBar's styling.
249
+ *
250
+ * @type {sap.ui.webcomponents.main.IButton}
251
+ * @slot
252
+ * @public
253
+ */
254
+ startButton: {
255
+ type: HTMLElement
256
+ }
257
+ },
258
+ events:
259
+ /** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
260
+ {
261
+ /**
262
+ *
263
+ * Fired, when the notification icon is activated.
264
+ *
265
+ *
266
+ * @event sap.ui.webcomponents.fiori.ShellBar#notifications-click
267
+ * @allowPreventDefault
268
+ * @param {HTMLElement} targetRef dom ref of the activated element
269
+ * @public
270
+ */
271
+ "notifications-click": {
272
+ detail: {
273
+ targetRef: {
274
+ type: HTMLElement
275
+ }
276
+ }
277
+ },
278
+
279
+ /**
280
+ * Fired, when the profile slot is present.
281
+ *
282
+ * @event sap.ui.webcomponents.fiori.ShellBar#profile-click
283
+ * @param {HTMLElement} targetRef dom ref of the activated element
284
+ * @public
285
+ */
286
+ "profile-click": {
287
+ detail: {
288
+ targetRef: {
289
+ type: HTMLElement
290
+ }
291
+ }
292
+ },
293
+
294
+ /**
295
+ * Fired, when the product switch icon is activated.
296
+ * <b>Note:</b> You can prevent closing of overflow popover by calling <code>event.preventDefault()</code>.
297
+ *
298
+ * @event sap.ui.webcomponents.fiori.ShellBar#product-switch-click
299
+ * @allowPreventDefault
300
+ * @param {HTMLElement} targetRef dom ref of the activated element
301
+ * @public
302
+ */
303
+ "product-switch-click": {
304
+ detail: {
305
+ targetRef: {
306
+ type: HTMLElement
307
+ }
308
+ }
309
+ },
310
+
311
+ /**
312
+ * Fired, when the logo is activated.
313
+ *
314
+ * @event sap.ui.webcomponents.fiori.ShellBar#logo-click
315
+ * @param {HTMLElement} targetRef dom ref of the activated element
316
+ * @since 0.10
317
+ * @public
318
+ */
319
+ "logo-click": {
320
+ detail: {
321
+ targetRef: {
322
+ type: HTMLElement
323
+ }
324
+ }
325
+ },
326
+
327
+ /**
328
+ * Fired, when the co pilot is activated.
329
+ *
330
+ * @event sap.ui.webcomponents.fiori.ShellBar#co-pilot-click
331
+ * @param {HTMLElement} targetRef dom ref of the activated element
332
+ * @since 0.10
333
+ * @public
334
+ */
335
+ "co-pilot-click": {
336
+ detail: {
337
+ targetRef: {
338
+ type: HTMLElement
339
+ }
340
+ }
341
+ },
342
+
343
+ /**
344
+ * Fired, when a menu item is activated
345
+ * <b>Note:</b> You can prevent closing of overflow popover by calling <code>event.preventDefault()</code>.
346
+ *
347
+ * @event sap.ui.webcomponents.fiori.ShellBar#menu-item-click
348
+ * @param {HTMLElement} item DOM ref of the activated list item
349
+ * @since 0.10
350
+ * @public
351
+ */
352
+ "menu-item-click": {
353
+ detail: {
354
+ item: {
355
+ type: HTMLElement
356
+ }
357
+ }
358
+ }
359
+ }
360
+ };
361
+ /**
362
+ * @class
363
+ * <h3 class="comment-api-title">Overview</h3>
364
+ *
365
+ * The <code>ui5-shellbar</code> is meant to serve as an application header
366
+ * and includes numerous built-in features, such as: logo, profile image/icon, title, search field, notifications and so on.
367
+ * <br><br>
368
+ *
369
+ * <h3>Stable DOM Refs</h3>
370
+ *
371
+ * You can use the following stable DOM refs for the <code>ui5-shellbar</code>:
372
+ * <ul>
373
+ * <li>logo</li>
374
+ * <li>copilot</li>
375
+ * <li>notifications</li>
376
+ * <li>overflow</li>
377
+ * <li>profile</li>
378
+ * <li>product-switch</li>
379
+ * </ul>
380
+ *
381
+ * <h3>CSS Shadow Parts</h3>
382
+ *
383
+ * <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
384
+ * <br>
385
+ * The <code>ui5-shellbar</code> exposes the following CSS Shadow Parts:
386
+ * <ul>
387
+ * <li>root - Used to style the outermost wrapper of the <code>ui5-shellbar</code></li>
388
+ * </ul>
389
+ *
390
+ * <h3>Keyboard Handling</h3>
391
+ *
392
+ * <h4>Fast Navigation</h4>
393
+ * This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>.
394
+ * In order to use this functionality, you need to import the following module:
395
+ * <code>import "@ui5/webcomponents-base/dist/features/F6Navigation.js"</code>
396
+ * <br><br>
397
+ *
398
+ * <h3>ES6 Module Import</h3>
399
+ * <code>import "@ui5/webcomponents-fiori/dist/ShellBar";</code>
400
+ *
401
+ * @constructor
402
+ * @author SAP SE
403
+ * @alias sap.ui.webcomponents.fiori.ShellBar
404
+ * @extends sap.ui.webcomponents.base.UI5Element
405
+ * @tagname ui5-shellbar
406
+ * @appenddocs ShellBarItem
407
+ * @public
408
+ * @since 0.8.0
409
+ */
410
+
411
+ class ShellBar extends _UI5Element.default {
412
+ static get metadata() {
413
+ return metadata;
414
+ }
415
+
416
+ static get render() {
417
+ return _LitRenderer.default;
418
+ }
419
+
420
+ static get template() {
421
+ return _ShellBarTemplate.default;
422
+ }
423
+
424
+ static get staticAreaTemplate() {
425
+ return _ShellBarPopoverTemplate.default;
426
+ }
427
+
428
+ static get styles() {
429
+ return _ShellBar.default;
430
+ }
431
+
432
+ static get staticAreaStyles() {
433
+ return [_ShellBarPopover.default];
434
+ }
435
+
436
+ static get FIORI_3_BREAKPOINTS() {
437
+ return [599, 1023, 1439, 1919, 10000];
438
+ }
439
+
440
+ static get FIORI_3_BREAKPOINTS_MAP() {
441
+ return {
442
+ "599": "S",
443
+ "1023": "M",
444
+ "1439": "L",
445
+ "1919": "XL",
446
+ "10000": "XXL"
447
+ };
448
+ }
449
+
450
+ constructor() {
451
+ super();
452
+ this._itemsInfo = [];
453
+ this._isInitialRendering = true;
454
+ this._focusedItem = null; // marks if preventDefault() is called in item's press handler
455
+
456
+ this._defaultItemPressPrevented = false;
457
+ this.menuItemsObserver = new MutationObserver(() => {
458
+ this._updateClonedMenuItems();
459
+ });
460
+ this._header = {
461
+ press: async () => {
462
+ this._updateClonedMenuItems();
463
+
464
+ if (this.hasMenuItems) {
465
+ const menuPopover = await this._getMenuPopover();
466
+ menuPopover.showAt(this.shadowRoot.querySelector(".ui5-shellbar-menu-button"));
467
+ }
468
+ }
469
+ };
470
+
471
+ this._handleResize = async event => {
472
+ this._debounce(async () => {
473
+ await this._getResponsivePopover();
474
+ this.overflowPopover.close();
475
+
476
+ this._overflowActions();
477
+ }, HANDLE_RESIZE_DEBOUNCE_RATE);
478
+ };
479
+ }
480
+
481
+ _debounce(fn, delay) {
482
+ clearTimeout(this._debounceInterval);
483
+ this._debounceInterval = setTimeout(() => {
484
+ this._debounceInterval = null;
485
+ fn();
486
+ }, delay);
487
+ }
488
+
489
+ _menuItemPress(event) {
490
+ this.menuPopover.close();
491
+ this.fireEvent("menu-item-click", {
492
+ item: event.detail.selectedItems[0]
493
+ }, true);
494
+ }
495
+
496
+ _logoPress() {
497
+ this.fireEvent("logo-click", {
498
+ targetRef: this.shadowRoot.querySelector(".ui5-shellbar-logo")
499
+ });
500
+ }
501
+
502
+ _menuPopoverBeforeOpen() {
503
+ this._menuPopoverExpanded = true;
504
+ }
505
+
506
+ _menuPopoverAfterClose() {
507
+ this._menuPopoverExpanded = false;
508
+ }
509
+
510
+ _overflowPopoverBeforeOpen() {
511
+ this._overflowPopoverExpanded = true;
512
+ }
513
+
514
+ _overflowPopoverAfterClose() {
515
+ this._overflowPopoverExpanded = false;
516
+ }
517
+
518
+ _logoKeyup(event) {
519
+ if ((0, _Keys.isSpace)(event)) {
520
+ this._logoPress();
521
+ }
522
+ }
523
+
524
+ _logoKeydown(event) {
525
+ if ((0, _Keys.isSpace)(event)) {
526
+ event.preventDefault();
527
+ return;
528
+ }
529
+
530
+ if ((0, _Keys.isEnter)(event)) {
531
+ this._logoPress();
532
+ }
533
+ }
534
+
535
+ _fireCoPilotClick() {
536
+ this.fireEvent("co-pilot-click", {
537
+ targetRef: this.shadowRoot.querySelector(".ui5-shellbar-coPilot")
538
+ });
539
+ }
540
+
541
+ _coPilotClick() {
542
+ this._fireCoPilotClick();
543
+ }
544
+
545
+ _coPilotKeydown(event) {
546
+ if ((0, _Keys.isSpace)(event)) {
547
+ this.coPilotActive = true;
548
+ event.preventDefault();
549
+ return;
550
+ }
551
+
552
+ if ((0, _Keys.isEnter)(event)) {
553
+ this.coPilotActive = true;
554
+
555
+ this._fireCoPilotClick();
556
+ }
557
+ }
558
+
559
+ _coPilotKeyup(event) {
560
+ if ((0, _Keys.isSpace)(event)) {
561
+ this._fireCoPilotClick();
562
+ }
563
+
564
+ this.coPilotActive = false;
565
+ }
566
+
567
+ onBeforeRendering() {
568
+ const animationsOn = (0, _AnimationMode2.getAnimationMode)() === _AnimationMode.default.Full;
569
+
570
+ const coPilotAnimation = (0, _FeaturesRegistry.getFeature)("CoPilotAnimation");
571
+ this.coPilot = coPilotAnimation && animationsOn ? coPilotAnimation : {
572
+ animated: false
573
+ };
574
+ this.withLogo = this.hasLogo;
575
+ this._hiddenIcons = this._itemsInfo.filter(info => {
576
+ const isHidden = info.classes.indexOf("ui5-shellbar-hidden-button") !== -1;
577
+ const isSet = info.classes.indexOf("ui5-shellbar-invisible-button") === -1;
578
+ const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
579
+ const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
580
+ const shouldStayOnScreen = isOverflowIcon || isImageIcon && this.hasProfile;
581
+ return isHidden && isSet && !shouldStayOnScreen;
582
+ });
583
+
584
+ this._observeMenuItems();
585
+ }
586
+
587
+ onAfterRendering() {
588
+ this._overflowActions();
589
+
590
+ this._fullWidthSearch = this._showFullWidthSearch;
591
+ }
592
+ /**
593
+ * Closes the overflow area.
594
+ * Useful to manually close the overflow after having suppressed automatic closing with preventDefault() of ShellbarItem's press event
595
+ * @public
596
+ */
597
+
598
+
599
+ closeOverflow() {
600
+ if (this.overflowPopover) {
601
+ this.overflowPopover.close();
602
+ }
603
+ }
604
+
605
+ _handleBarBreakpoints() {
606
+ const width = this.getBoundingClientRect().width;
607
+ const breakpoints = ShellBar.FIORI_3_BREAKPOINTS;
608
+ const size = breakpoints.find(bp1 => width < bp1) || ShellBar.FIORI_3_BREAKPOINTS[ShellBar.FIORI_3_BREAKPOINTS.length - 1];
609
+ const mappedSize = ShellBar.FIORI_3_BREAKPOINTS_MAP[size];
610
+
611
+ if (this.breakpointSize !== mappedSize) {
612
+ this.breakpointSize = mappedSize;
613
+ }
614
+
615
+ return mappedSize;
616
+ }
617
+
618
+ _handleSizeS() {
619
+ const hasIcons = this.showNotifications || this.showProductSwitch || this.searchField.length || this.items.length;
620
+
621
+ const newItems = this._getAllItems(hasIcons).map(info => {
622
+ const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
623
+ const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
624
+ const shouldStayOnScreen = isOverflowIcon || isImageIcon && this.hasProfile;
625
+ return { ...info,
626
+ classes: `${info.classes} ${shouldStayOnScreen ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-button`,
627
+ styles: {
628
+ order: shouldStayOnScreen ? 1 : -1
629
+ }
630
+ };
631
+ });
632
+
633
+ this._updateItemsInfo(newItems);
634
+ }
635
+
636
+ _handleActionsOverflow() {
637
+ const rightContainerRect = this.shadowRoot.querySelector(".ui5-shellbar-overflow-container-right").getBoundingClientRect();
638
+ let overflowSelector = ".ui5-shellbar-button:not(.ui5-shellbar-overflow-button):not(.ui5-shellbar-invisible-button)";
639
+
640
+ if (this.showSearchField) {
641
+ overflowSelector += ",.ui5-shellbar-search-field";
642
+ }
643
+
644
+ const elementsToOverflow = this.shadowRoot.querySelectorAll(overflowSelector);
645
+ const isRTL = this.effectiveDir === "rtl";
646
+ let overflowCount = [].filter.call(elementsToOverflow, icon => {
647
+ const iconRect = icon.getBoundingClientRect();
648
+
649
+ if (isRTL) {
650
+ return iconRect.left + iconRect.width > rightContainerRect.left + rightContainerRect.width;
651
+ }
652
+
653
+ return iconRect.left < rightContainerRect.left;
654
+ });
655
+ overflowCount = overflowCount.length;
656
+
657
+ const items = this._getAllItems(!!overflowCount).filter(item => item.show);
658
+
659
+ const itemsByPriority = items.sort((item1, item2) => {
660
+ if (item1.priority > item2.priority) {
661
+ return 1;
662
+ }
663
+
664
+ if (item1.priority < item2.priority) {
665
+ return -1;
666
+ }
667
+
668
+ return 0;
669
+ });
670
+
671
+ for (let i = 0; i < itemsByPriority.length; i++) {
672
+ if (i < overflowCount) {
673
+ itemsByPriority[i].classes = `${itemsByPriority[i].classes} ui5-shellbar-hidden-button`;
674
+ itemsByPriority[i].styles = {
675
+ order: -1
676
+ };
677
+ }
678
+ }
679
+
680
+ return itemsByPriority;
681
+ }
682
+
683
+ _overflowActions() {
684
+ const size = this._handleBarBreakpoints();
685
+
686
+ if (size === "S") {
687
+ return this._handleSizeS();
688
+ }
689
+
690
+ const newItems = this._handleActionsOverflow();
691
+
692
+ this._updateItemsInfo(newItems);
693
+ }
694
+
695
+ async _toggleActionPopover() {
696
+ const overflowButton = this.shadowRoot.querySelector(".ui5-shellbar-overflow-button");
697
+ const overflowPopover = await this._getOverflowPopover();
698
+ overflowPopover.showAt(overflowButton);
699
+ }
700
+
701
+ onEnterDOM() {
702
+ _ResizeHandler.default.register(this, this._handleResize);
703
+ }
704
+
705
+ onExitDOM() {
706
+ this.menuItemsObserver.disconnect();
707
+
708
+ _ResizeHandler.default.deregister(this, this._handleResize);
709
+
710
+ clearTimeout(this._debounceInterval);
711
+ this._debounceInterval = null;
712
+ }
713
+
714
+ _handleSearchIconPress(event) {
715
+ this.showSearchField = !this.showSearchField;
716
+
717
+ if (!this.showSearchField) {
718
+ return;
719
+ }
720
+
721
+ const input = this.searchField[0]; // update the state immediately
722
+
723
+ if (input) {
724
+ input.focused = true;
725
+ } // move the focus later
726
+
727
+
728
+ setTimeout(() => {
729
+ if (input) {
730
+ input.focus();
731
+ }
732
+ }, 100);
733
+ }
734
+
735
+ async _handleActionListClick(event) {
736
+ if (!this._defaultItemPressPrevented) {
737
+ this.closeOverflow(); // wait for DOM to be updated when ui5-popover is closed, otherwise if Enter key is hold
738
+ // there will be no visual indication that this has happened
739
+
740
+ await (0, _Render.renderFinished)();
741
+ }
742
+
743
+ this._defaultItemPressPrevented = false;
744
+ }
745
+
746
+ _handleCustomActionPress(event) {
747
+ const refItemId = event.target.getAttribute("data-ui5-external-action-item-id");
748
+
749
+ if (refItemId) {
750
+ const shellbarItem = this.items.find(item => {
751
+ return item._id === refItemId;
752
+ });
753
+ const prevented = !shellbarItem.fireEvent("click", {
754
+ targetRef: event.target
755
+ }, true);
756
+ this._defaultItemPressPrevented = prevented;
757
+ }
758
+ }
759
+
760
+ _handleOverflowPress(event) {
761
+ this._toggleActionPopover();
762
+ }
763
+
764
+ _handleNotificationsPress(event) {
765
+ const notificationIconRef = this.shadowRoot.querySelector(".ui5-shellbar-bell-button");
766
+ this._defaultItemPressPrevented = !this.fireEvent("notifications-click", {
767
+ targetRef: notificationIconRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : notificationIconRef
768
+ }, true);
769
+ }
770
+
771
+ _handleProfilePress(event) {
772
+ this.fireEvent("profile-click", {
773
+ targetRef: this.shadowRoot.querySelector(".ui5-shellbar-image-button")
774
+ });
775
+ }
776
+
777
+ _handleCancelButtonPress() {
778
+ this.showSearchField = false;
779
+ }
780
+
781
+ _handleProductSwitchPress(event) {
782
+ const buttonRef = this.shadowRoot.querySelector(".ui5-shellbar-button-product-switch");
783
+ this._defaultItemPressPrevented = !this.fireEvent("product-switch-click", {
784
+ targetRef: buttonRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : buttonRef
785
+ }, true);
786
+ }
787
+ /**
788
+ * Returns the <code>logo</code> DOM ref.
789
+ * @type { HTMLElement }
790
+ * @public
791
+ * @readonly
792
+ * @since 1.0.0-rc.16
793
+ */
794
+
795
+
796
+ get logoDomRef() {
797
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="logo"]`);
798
+ }
799
+ /**
800
+ * Returns the <code>copilot</code> DOM ref.
801
+ * @type { HTMLElement }
802
+ * @public
803
+ * @readonly
804
+ * @since 1.0.0-rc.16
805
+ */
806
+
807
+
808
+ get copilotDomRef() {
809
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="copilot"]`);
810
+ }
811
+ /**
812
+ * Returns the <code>notifications</code> icon DOM ref.
813
+ * @type { HTMLElement }
814
+ * @public
815
+ * @readonly
816
+ * @since 1.0.0-rc.16
817
+ */
818
+
819
+
820
+ get notificationsDomRef() {
821
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="notifications"]`);
822
+ }
823
+ /**
824
+ * Returns the <code>overflow</code> icon DOM ref.
825
+ * @type { HTMLElement }
826
+ * @public
827
+ * @readonly
828
+ * @since 1.0.0-rc.16
829
+ */
830
+
831
+
832
+ get overflowDomRef() {
833
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="overflow"]`);
834
+ }
835
+ /**
836
+ * Returns the <code>profile</code> icon DOM ref.
837
+ * @type { HTMLElement }
838
+ * @public
839
+ * @readonly
840
+ * @since 1.0.0-rc.16
841
+ */
842
+
843
+
844
+ get profileDomRef() {
845
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="profile"]`);
846
+ }
847
+ /**
848
+ * Returns the <code>product-switch</code> icon DOM ref.
849
+ * @type { HTMLElement }
850
+ * @public
851
+ * @readonly
852
+ * @since 1.0.0-rc.16
853
+ */
854
+
855
+
856
+ get productSwitchDomRef() {
857
+ return this.shadowRoot.querySelector(`*[data-ui5-stable="product-switch"]`);
858
+ }
859
+ /**
860
+ * Returns all items that will be placed in the right of the bar as icons / dom elements.
861
+ * @param {boolean} showOverflowButton Determines if overflow button should be visible (not overflowing)
862
+ */
863
+
864
+
865
+ _getAllItems(showOverflowButton) {
866
+ let domOrder = -1;
867
+ const items = [{
868
+ icon: "search",
869
+ text: "Search",
870
+ classes: `${this.searchField.length ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-search-button ui5-shellbar-button`,
871
+ priority: 4,
872
+ domOrder: this.searchField.length ? ++domOrder : -1,
873
+ styles: {
874
+ order: this.searchField.length ? 1 : -10
875
+ },
876
+ id: `${this._id}-item-${1}`,
877
+ press: this._handleSearchIconPress.bind(this),
878
+ show: !!this.searchField.length
879
+ }, ...this.items.map((item, index) => {
880
+ item._getRealDomRef = () => this.getDomRef().querySelector(`*[data-ui5-stable=${item.stableDomRef}]`);
881
+
882
+ return {
883
+ icon: item.icon,
884
+ id: item._id,
885
+ count: item.count || undefined,
886
+ refItemid: item._id,
887
+ text: item.text,
888
+ classes: "ui5-shellbar-custom-item ui5-shellbar-button",
889
+ priority: 1,
890
+ domOrder: ++domOrder,
891
+ styles: {
892
+ order: 2
893
+ },
894
+ show: true,
895
+ press: this._handleCustomActionPress.bind(this),
896
+ custom: true,
897
+ title: item.title,
898
+ stableDomRef: item.stableDomRef
899
+ };
900
+ }), {
901
+ icon: "bell",
902
+ text: "Notifications",
903
+ classes: `${this.showNotifications ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-bell-button ui5-shellbar-button`,
904
+ priority: 3,
905
+ styles: {
906
+ order: this.showNotifications ? 3 : -10
907
+ },
908
+ id: `${this._id}-item-${2}`,
909
+ show: this.showNotifications,
910
+ domOrder: this.showNotifications ? ++domOrder : -1,
911
+ press: this._handleNotificationsPress.bind(this)
912
+ }, {
913
+ icon: "overflow",
914
+ text: "Overflow",
915
+ classes: `${showOverflowButton ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button ui5-shellbar-button`,
916
+ priority: 5,
917
+ order: 4,
918
+ styles: {
919
+ order: showOverflowButton ? 4 : -1
920
+ },
921
+ domOrder: showOverflowButton ? ++domOrder : -1,
922
+ id: `${this.id}-item-${5}`,
923
+ press: this._handleOverflowPress.bind(this),
924
+ show: true
925
+ }, {
926
+ text: "Person",
927
+ classes: `${this.hasProfile ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-image-button ui5-shellbar-button`,
928
+ priority: 4,
929
+ styles: {
930
+ order: this.hasProfile ? 5 : -10
931
+ },
932
+ profile: true,
933
+ id: `${this._id}-item-${3}`,
934
+ domOrder: this.hasProfile ? ++domOrder : -1,
935
+ show: this.hasProfile,
936
+ press: this._handleProfilePress.bind(this)
937
+ }, {
938
+ icon: "grid",
939
+ text: "Product Switch",
940
+ classes: `${this.showProductSwitch ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-button ui5-shellbar-button-product-switch`,
941
+ priority: 2,
942
+ styles: {
943
+ order: this.showProductSwitch ? 6 : -10
944
+ },
945
+ id: `${this._id}-item-${4}`,
946
+ show: this.showProductSwitch,
947
+ domOrder: this.showProductSwitch ? ++domOrder : -1,
948
+ press: this._handleProductSwitchPress.bind(this)
949
+ }];
950
+ return items;
951
+ }
952
+
953
+ _updateItemsInfo(newItems) {
954
+ const isDifferent = JSON.stringify(this._itemsInfo) !== JSON.stringify(newItems);
955
+
956
+ if (isDifferent) {
957
+ this._itemsInfo = newItems;
958
+ }
959
+ }
960
+
961
+ _updateClonedMenuItems() {
962
+ this._menuPopoverItems = [];
963
+ this.menuItems.forEach(item => {
964
+ // clone the menuItem and remove the slot="menuItems",
965
+ // otherwise would not be slotted in the internal ui5-li
966
+ const clonedItem = item.cloneNode(true);
967
+ clonedItem.removeAttribute("slot");
968
+
969
+ this._menuPopoverItems.push(clonedItem);
970
+ });
971
+ }
972
+
973
+ _observeMenuItems() {
974
+ this.menuItems.forEach(item => {
975
+ this.menuItemsObserver.observe(item, {
976
+ characterData: true,
977
+ childList: true,
978
+ subtree: true,
979
+ attributes: true
980
+ });
981
+ });
982
+ }
983
+
984
+ async _getResponsivePopover() {
985
+ const staticAreaItem = await this.getStaticAreaItemDomRef();
986
+ this.overflowPopover = staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
987
+ this.menuPopover = staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
988
+ }
989
+
990
+ async _getOverflowPopover() {
991
+ const staticAreaItem = await this.getStaticAreaItemDomRef();
992
+ return staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
993
+ }
994
+
995
+ async _getMenuPopover() {
996
+ const staticAreaItem = await this.getStaticAreaItemDomRef();
997
+ return staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
998
+ }
999
+
1000
+ isIconHidden(name) {
1001
+ const itemInfo = this._itemsInfo.find(item => item.icon === name);
1002
+
1003
+ if (!itemInfo) {
1004
+ return false;
1005
+ }
1006
+
1007
+ return itemInfo.classes.indexOf("ui5-shellbar-hidden-button") !== -1;
1008
+ }
1009
+
1010
+ get classes() {
1011
+ return {
1012
+ wrapper: {
1013
+ "ui5-shellbar-root": true,
1014
+ "ui5-shellbar-with-searchfield": this.searchField.length
1015
+ },
1016
+ button: {
1017
+ "ui5-shellbar-menu-button--interactive": this.hasMenuItems,
1018
+ "ui5-shellbar-menu-button": true
1019
+ },
1020
+ items: {
1021
+ notification: {
1022
+ "ui5-shellbar-hidden-button": this.isIconHidden("bell")
1023
+ },
1024
+ product: {
1025
+ "ui5-shellbar-hidden-button": this.isIconHidden("grid")
1026
+ },
1027
+ search: {
1028
+ "ui5-shellbar-hidden-button": this.isIconHidden("search")
1029
+ },
1030
+ overflow: {
1031
+ "ui5-shellbar-hidden-button": this.isIconHidden("overflow")
1032
+ }
1033
+ }
1034
+ };
1035
+ }
1036
+
1037
+ get styles() {
1038
+ return {
1039
+ items: {
1040
+ notification: {
1041
+ "order": this.isIconHidden("bell") ? "-1" : "3"
1042
+ },
1043
+ overflow: {
1044
+ "order": this.isIconHidden("overflow") ? "-1" : "4"
1045
+ },
1046
+ profile: {
1047
+ "order": this.hasProfile ? "5" : "-1"
1048
+ },
1049
+ product: {
1050
+ "order": this.isIconHidden("grid") ? "-1" : "6"
1051
+ }
1052
+ },
1053
+ searchField: {
1054
+ "display": this.correctSearchFieldStyles
1055
+ }
1056
+ };
1057
+ }
1058
+
1059
+ get correctSearchFieldStyles() {
1060
+ if (this.showSearchField) {
1061
+ return "flex";
1062
+ }
1063
+
1064
+ return "none";
1065
+ }
1066
+
1067
+ get customItemsInfo() {
1068
+ return this._itemsInfo.filter(itemInfo => !!itemInfo.custom);
1069
+ }
1070
+
1071
+ get hasLogo() {
1072
+ return !!this.logo.length;
1073
+ }
1074
+
1075
+ get showLogoInMenuButton() {
1076
+ return this.hasLogo && this.breakpointSize === "S";
1077
+ }
1078
+
1079
+ get showTitleInMenuButton() {
1080
+ return this.primaryTitle && !this.showLogoInMenuButton;
1081
+ }
1082
+
1083
+ get showMenuButton() {
1084
+ return this.primaryTitle || this.showLogoInMenuButton;
1085
+ }
1086
+
1087
+ get popoverHorizontalAlign() {
1088
+ return this.effectiveDir === "rtl" ? "Left" : "Right";
1089
+ }
1090
+
1091
+ get hasSearchField() {
1092
+ return !!this.searchField.length;
1093
+ }
1094
+
1095
+ get hasProfile() {
1096
+ return !!this.profile.length;
1097
+ }
1098
+
1099
+ get hasMenuItems() {
1100
+ return this.menuItems.length > 0;
1101
+ }
1102
+
1103
+ get _shellbarText() {
1104
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_LABEL);
1105
+ }
1106
+
1107
+ get _logoText() {
1108
+ return this.accessibilityTexts.logoTitle || ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_LOGO);
1109
+ }
1110
+
1111
+ get _copilotText() {
1112
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_COPILOT);
1113
+ }
1114
+
1115
+ get _notificationsText() {
1116
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_NOTIFICATIONS, this.notificationsCount);
1117
+ }
1118
+
1119
+ get _cancelBtnText() {
1120
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_CANCEL);
1121
+ }
1122
+
1123
+ get _showFullWidthSearch() {
1124
+ const size = this._handleBarBreakpoints();
1125
+
1126
+ const searchBtnHidden = !!this.shadowRoot.querySelector(".ui5-shellbar-search-button.ui5-shellbar-hidden-button");
1127
+ return size === "S" || searchBtnHidden;
1128
+ }
1129
+
1130
+ get _profileText() {
1131
+ return this.accessibilityTexts.profileButtonTitle || ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_PROFILE);
1132
+ }
1133
+
1134
+ get _productsText() {
1135
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_PRODUCTS);
1136
+ }
1137
+
1138
+ get _searchText() {
1139
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_SEARCH);
1140
+ }
1141
+
1142
+ get _overflowText() {
1143
+ return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_OVERFLOW);
1144
+ }
1145
+
1146
+ get accInfo() {
1147
+ return {
1148
+ notifications: {
1149
+ "title": this._notificationsText
1150
+ },
1151
+ profile: {
1152
+ "title": this._profileText
1153
+ },
1154
+ products: {
1155
+ "title": this._productsText
1156
+ },
1157
+ search: {
1158
+ "title": this._searchText,
1159
+ "accessibilityAttributes": {
1160
+ expanded: this.showSearchField
1161
+ }
1162
+ },
1163
+ overflow: {
1164
+ "title": this._overflowText,
1165
+ "accessibilityAttributes": {
1166
+ hasPopup: _HasPopup.default.Menu,
1167
+ expanded: this._overflowPopoverExpanded
1168
+ }
1169
+ }
1170
+ };
1171
+ }
1172
+
1173
+ static get dependencies() {
1174
+ return [_Button.default, _List.default, _Popover.default, _StandardListItem.default];
1175
+ }
1176
+
1177
+ static async onDefine() {
1178
+ ShellBar.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
1179
+ }
1180
+
1181
+ }
1182
+
1183
+ ShellBar.define();
1184
+ var _default = ShellBar;
1185
+ _exports.default = _default;
1186
+ });