@openui5/sap.ui.webc.fiori 1.115.1 → 1.117.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 (278) hide show
  1. package/.reuse/dep5 +0 -5
  2. package/THIRDPARTY.txt +1 -7
  3. package/package.json +4 -4
  4. package/src/sap/ui/webc/fiori/.library +1 -1
  5. package/src/sap/ui/webc/fiori/Bar.js +1 -1
  6. package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +1 -1
  7. package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
  8. package/src/sap/ui/webc/fiori/FilterItem.js +9 -1
  9. package/src/sap/ui/webc/fiori/FilterItemOption.js +2 -2
  10. package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +3 -3
  11. package/src/sap/ui/webc/fiori/IllustratedMessage.js +27 -1
  12. package/src/sap/ui/webc/fiori/MediaGallery.js +2 -2
  13. package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
  14. package/src/sap/ui/webc/fiori/NotificationAction.js +17 -1
  15. package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +9 -2
  16. package/src/sap/ui/webc/fiori/NotificationListItem.js +10 -3
  17. package/src/sap/ui/webc/fiori/Page.js +2 -2
  18. package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
  19. package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -3
  20. package/src/sap/ui/webc/fiori/ShellBar.js +49 -1
  21. package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
  22. package/src/sap/ui/webc/fiori/SideNavigation.js +2 -2
  23. package/src/sap/ui/webc/fiori/SideNavigationItem.js +11 -2
  24. package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +10 -1
  25. package/src/sap/ui/webc/fiori/SortItem.js +1 -1
  26. package/src/sap/ui/webc/fiori/Timeline.js +2 -2
  27. package/src/sap/ui/webc/fiori/TimelineItem.js +1 -1
  28. package/src/sap/ui/webc/fiori/UploadCollection.js +2 -2
  29. package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
  30. package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +5 -5
  31. package/src/sap/ui/webc/fiori/Wizard.js +23 -4
  32. package/src/sap/ui/webc/fiori/WizardStep.js +1 -1
  33. package/src/sap/ui/webc/fiori/illustrations/AddDimensions.js +9 -0
  34. package/src/sap/ui/webc/fiori/illustrations/AllIllustrations.js +9 -0
  35. package/src/sap/ui/webc/fiori/illustrations/NoColumnsSet.js +9 -0
  36. package/src/sap/ui/webc/fiori/illustrations/NoDimensionsSet.js +9 -0
  37. package/src/sap/ui/webc/fiori/illustrations/Survey.js +9 -0
  38. package/src/sap/ui/webc/fiori/illustrations/UploadToCloud.js +9 -0
  39. package/src/sap/ui/webc/fiori/library.js +97 -17
  40. package/src/sap/ui/webc/fiori/thirdparty/Bar.js +47 -97
  41. package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +86 -105
  42. package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +93 -225
  43. package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +19 -52
  44. package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +19 -43
  45. package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +196 -333
  46. package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +126 -267
  47. package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +28 -41
  48. package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +105 -236
  49. package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +76 -164
  50. package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +51 -77
  51. package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +53 -90
  52. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +72 -146
  53. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +67 -139
  54. package/src/sap/ui/webc/fiori/thirdparty/Page.js +42 -126
  55. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +45 -65
  56. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +61 -146
  57. package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +288 -418
  58. package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +41 -67
  59. package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +127 -141
  60. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +52 -100
  61. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +30 -62
  62. package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +19 -42
  63. package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +53 -96
  64. package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +63 -135
  65. package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +111 -207
  66. package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +153 -268
  67. package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +154 -244
  68. package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +165 -236
  69. package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +27 -117
  70. package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +53 -137
  71. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -1
  72. package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -1
  73. package/src/sap/ui/webc/fiori/thirdparty/css/themes/DynamicSideContent.css +1 -1
  74. package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -1
  75. package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -1
  76. package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
  77. package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGallery.css +1 -1
  78. package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGalleryItem.css +1 -1
  79. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -1
  80. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -1
  81. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -1
  82. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationOverflowActionsPopover.css +1 -1
  83. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -1
  84. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -1
  85. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -1
  86. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -1
  87. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -1
  88. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBarPopover.css +1 -1
  89. package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -1
  90. package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigationPopover.css +1 -1
  91. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -1
  92. package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -1
  93. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -1
  94. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -1
  95. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -1
  96. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -1
  97. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -1
  98. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -1
  99. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  100. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  101. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  102. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  103. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  104. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  105. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  106. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  107. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
  108. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  109. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
  110. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
  111. package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +25 -55
  112. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
  113. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
  114. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
  115. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
  116. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
  117. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
  118. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
  119. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
  120. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
  121. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
  122. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
  123. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
  124. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
  125. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
  126. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
  127. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
  128. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
  129. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
  130. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
  131. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
  132. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
  133. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
  134. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
  135. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
  136. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
  137. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
  138. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
  139. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
  140. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
  141. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
  142. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
  143. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
  144. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
  145. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
  146. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
  147. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
  148. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
  149. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
  150. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
  151. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
  152. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
  153. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
  154. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
  155. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
  156. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
  157. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
  158. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
  159. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
  160. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
  161. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
  162. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
  163. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
  164. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
  165. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
  166. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
  167. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
  168. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
  169. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
  170. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
  171. package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +104 -29
  172. package/src/sap/ui/webc/fiori/thirdparty/generated/js-imports/Illustrations.js +202 -0
  173. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -1
  174. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +3 -1
  175. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +9 -1
  176. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -1
  177. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +28 -7
  178. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +12 -4
  179. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +21 -7
  180. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -9
  181. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +30 -10
  182. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +6 -2
  183. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -1
  184. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -9
  185. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -1
  186. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +9 -3
  187. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +73 -24
  188. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationPopoverTemplate.lit.js +18 -0
  189. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +30 -10
  190. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +21 -7
  191. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +6 -2
  192. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +51 -15
  193. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +9 -3
  194. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +48 -16
  195. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +6 -2
  196. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +15 -5
  197. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +9 -3
  198. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +5 -4
  199. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +5 -4
  200. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +5 -4
  201. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +5 -4
  202. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +5 -4
  203. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
  204. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +5 -4
  205. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +5 -4
  206. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +5 -4
  207. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +5 -4
  208. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +5 -4
  209. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +5 -4
  210. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +5 -4
  211. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +5 -4
  212. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +5 -4
  213. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +5 -4
  214. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +5 -4
  215. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +5 -4
  216. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +5 -4
  217. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +5 -4
  218. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +5 -4
  219. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +5 -4
  220. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +5 -4
  221. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +5 -4
  222. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +5 -4
  223. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +5 -4
  224. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +5 -4
  225. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +5 -4
  226. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
  227. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
  228. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
  229. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
  230. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
  231. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
  232. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
  233. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
  234. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
  235. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
  236. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
  237. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
  238. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddDimensions.js +41 -0
  239. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AllIllustrations.js +3 -0
  240. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoColumnsSet.js +41 -0
  241. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoDimensionsSet.js +41 -0
  242. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Survey.js +41 -0
  243. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadToCloud.js +41 -0
  244. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddDimensions.js +48 -0
  245. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoColumnsSet.js +45 -0
  246. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoDimensionsSet.js +49 -0
  247. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Survey.js +32 -0
  248. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadToCloud.js +40 -0
  249. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddDimensions.js +44 -0
  250. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoColumnsSet.js +46 -0
  251. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoDimensionsSet.js +48 -0
  252. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Survey.js +31 -0
  253. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadToCloud.js +34 -0
  254. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddDimensions.js +48 -0
  255. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoColumnsSet.js +46 -0
  256. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoDimensionsSet.js +52 -0
  257. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Survey.js +42 -0
  258. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadToCloud.js +40 -0
  259. package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +14 -26
  260. package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +42 -56
  261. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +19 -27
  262. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +128 -110
  263. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +12 -24
  264. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +13 -25
  265. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +12 -24
  266. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +12 -24
  267. package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +13 -27
  268. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +14 -26
  269. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +12 -24
  270. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +15 -27
  271. package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +12 -25
  272. package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +11 -25
  273. package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +13 -27
  274. package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +12 -25
  275. package/src/sap/ui/webc/fiori/thirdparty/types/WizardContentLayout.js +34 -0
  276. package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +2 -2
  277. package/ui5.yaml +10 -6
  278. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +0 -14
@@ -7,13 +7,34 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-illustrated-message-root"><div class="ui5-illustrated-message-illustration">${(0, _LitRenderer.unsafeHTML)(context.effectiveIllustration)}</div>${context.hasTitle ? block1(context, tags, suffix) : undefined}${context.hasSubtitle ? block2(context, tags, suffix) : undefined}${context.hasActions ? block5(context, tags, suffix) : undefined}<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="ui5-illustrated-message-util">${blockSVG1(context, tags, suffix)}</svg></div>`;
11
- const block1 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)} level="H2" class="ui5-illustrated-message-title" wrapping-type="Normal">${(0, _LitRenderer.ifDefined)(context.effectiveTitleText)}</${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-title level="H2" class="ui5-illustrated-message-title" wrapping-type="Normal">${(0, _LitRenderer.ifDefined)(context.effectiveTitleText)}</ui5-title>`;
12
- const block2 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-illustrated-message-subtitle">${context.hasFormattedSubtitle ? block3(context, tags, suffix) : block4(context, tags, suffix)}</div>`;
13
- const block3 = (context, tags, suffix) => (0, _LitRenderer.html)`<slot name="subtitle"></slot>`;
14
- const block4 = (context, tags, suffix) => (0, _LitRenderer.html)`${(0, _LitRenderer.ifDefined)(context.effectiveSubitleText)}`;
15
- const block5 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-illustrated-message-actions"><slot></slot></div>`;
16
- const blockSVG1 = (context, tags, suffix) => (0, _LitRenderer.svg)`<defs><pattern id="sapIllus_PatternShadow" data-name="sapIllus_PatternShadow" width="3" height="5.5" patternUnits="userSpaceOnUse" viewBox="0 0 3 5.5"><rect class="sapIllus_NoColor sapIllus_NoColor_Fill" width="3" height="5.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="3" cy="5.5001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cy="5.5001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="1.5" cy="2.7501" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="3" cy="0.0001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cy="0.0001" r="0.5" /></pattern><pattern id="sapIllus_PatternHighlight" data-name="sapIllus_PatternHighlight" width="3" height="5.5" patternTransform="translate(35.9059 309.6208)" patternUnits="userSpaceOnUse" viewBox="0 0 3 5.5"><rect class="sapIllus_NoColor sapIllus_NoColor_Fill" width="3" height="5.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="3.0001" cy="5.5001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="0.0001" cy="5.5001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="1.5001" cy="2.7501" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="3.0001" cy="0.0001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="0.0001" cy="0.0001" r="0.5" /></pattern></defs>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`<div class="ui5-illustrated-message-root"><div class="ui5-illustrated-message-illustration">${(0, _LitRenderer.unsafeHTML)(this.effectiveIllustration)}</div>${this.hasTitle ? block1.call(this, context, tags, suffix) : undefined}${this.hasSubtitle ? block4.call(this, context, tags, suffix) : undefined}${this.hasActions ? block7.call(this, context, tags, suffix) : undefined}<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="ui5-illustrated-message-util">${blockSVG1.call(this, context, tags, suffix)}</svg></div>`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return (0, _LitRenderer.html)`${this.hasFormattedTitle ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}`;
15
+ }
16
+ function block2(context, tags, suffix) {
17
+ return (0, _LitRenderer.html)`<slot name="title"></slot>`;
18
+ }
19
+ function block3(context, tags, suffix) {
20
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)} level="H2" class="ui5-illustrated-message-title" wrapping-type="Normal">${(0, _LitRenderer.ifDefined)(this.effectiveTitleText)}</${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-title level="H2" class="ui5-illustrated-message-title" wrapping-type="Normal">${(0, _LitRenderer.ifDefined)(this.effectiveTitleText)}</ui5-title>`;
21
+ }
22
+ function block4(context, tags, suffix) {
23
+ return (0, _LitRenderer.html)`<div class="ui5-illustrated-message-subtitle">${this.hasFormattedSubtitle ? block5.call(this, context, tags, suffix) : block6.call(this, context, tags, suffix)}</div>`;
24
+ }
25
+ function block5(context, tags, suffix) {
26
+ return (0, _LitRenderer.html)`<slot name="subtitle"></slot>`;
27
+ }
28
+ function block6(context, tags, suffix) {
29
+ return (0, _LitRenderer.html)`${(0, _LitRenderer.ifDefined)(this.effectiveSubitleText)}`;
30
+ }
31
+ function block7(context, tags, suffix) {
32
+ return (0, _LitRenderer.html)`<div class="ui5-illustrated-message-actions"><slot></slot></div>`;
33
+ }
34
+ function blockSVG1(context, tags, suffix) {
35
+ return (0, _LitRenderer.svg)`<defs><pattern id="sapIllus_PatternShadow" data-name="sapIllus_PatternShadow" width="3" height="5.5" patternUnits="userSpaceOnUse" viewBox="0 0 3 5.5"><rect class="sapIllus_NoColor sapIllus_NoColor_Fill" width="3" height="5.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="3" cy="5.5001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cy="5.5001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="1.5" cy="2.7501" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cx="3" cy="0.0001" r="0.5" /><circle class="sapIllus_BrandColorPrimary sapIllus_BrandColorPrimary_Fill" cy="0.0001" r="0.5" /></pattern><pattern id="sapIllus_PatternHighlight" data-name="sapIllus_PatternHighlight" width="3" height="5.5" patternTransform="translate(35.9059 309.6208)" patternUnits="userSpaceOnUse" viewBox="0 0 3 5.5"><rect class="sapIllus_NoColor sapIllus_NoColor_Fill" width="3" height="5.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="3.0001" cy="5.5001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="0.0001" cy="5.5001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="1.5001" cy="2.7501" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="3.0001" cy="0.0001" r="0.5" /><circle class="sapIllus_ObjectFillColor sapIllus_ObjectFillColor_Fill" cx="0.0001" cy="0.0001" r="0.5" /></pattern></defs>`;
36
+ }
37
+ ;
17
38
  var _default = block0;
18
39
  _exports.default = _default;
19
40
  });
@@ -7,10 +7,18 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-media-gallery-item-root" tabindex="${(0, _LitRenderer.ifDefined)(context.tabIndex)}" data-sap-focus-ref @focusout="${context._onfocusout}" @focusin="${context._onfocusin}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" role="${(0, _LitRenderer.ifDefined)(context._role)}"><div class="ui5-media-gallery-item-mask-layer"></div><div class="ui5-media-gallery-item-wrapper" style="${(0, _LitRenderer.styleMap)(context.styles.wrapper)}">${context._showBackgroundIcon ? block1(context, tags, suffix) : undefined}${context._useContent ? block2(context, tags, suffix) : undefined}${context._useThumbnail ? block3(context, tags, suffix) : undefined}</div></div>`;
11
- const block1 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name="background"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name="background"></ui5-icon>`;
12
- const block2 = (context, tags, suffix) => (0, _LitRenderer.html)`<slot></slot>`;
13
- const block3 = (context, tags, suffix) => (0, _LitRenderer.html)`<slot name="thumbnail"></slot>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`<div class="ui5-media-gallery-item-root" tabindex="${(0, _LitRenderer.ifDefined)(this.effectiveTabIndex)}" data-sap-focus-ref @focusout="${this._onfocusout}" @focusin="${this._onfocusin}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}" role="${(0, _LitRenderer.ifDefined)(this._role)}"><div class="ui5-media-gallery-item-mask-layer"></div><div class="ui5-media-gallery-item-wrapper" style="${(0, _LitRenderer.styleMap)(this.styles.wrapper)}">${this._showBackgroundIcon ? block1.call(this, context, tags, suffix) : undefined}${this._useContent ? block2.call(this, context, tags, suffix) : undefined}${this._useThumbnail ? block3.call(this, context, tags, suffix) : undefined}</div></div>`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name="background"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name="background"></ui5-icon>`;
15
+ }
16
+ function block2(context, tags, suffix) {
17
+ return (0, _LitRenderer.html)`<slot></slot>`;
18
+ }
19
+ function block3(context, tags, suffix) {
20
+ return (0, _LitRenderer.html)`<slot name="thumbnail"></slot>`;
21
+ }
14
22
  var _default = block0;
15
23
  _exports.default = _default;
16
24
  });
@@ -7,13 +7,27 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-media-gallery-root"><div class="ui5-media-gallery-display-wrapper"><div class="ui5-media-gallery-display" @click="${context._onDisplayAreaClick}">${context._isPhonePlatform ? block1(context, tags, suffix) : block3(context, tags, suffix)}</div></div>${context._showThumbnails ? block4(context, tags, suffix) : undefined}</div>`;
11
- const block1 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-carousel", tags, suffix)} @ui5-navigate="${(0, _LitRenderer.ifDefined)(context._onCarouselNavigate)}" hide-navigation-arrows>${(0, _LitRenderer.repeat)(context._selectableItems, (item, index) => item._id || index, (item, index) => block2(item, index, context, tags, suffix))}</${(0, _LitRenderer.scopeTag)("ui5-carousel", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-carousel @ui5-navigate="${(0, _LitRenderer.ifDefined)(context._onCarouselNavigate)}" hide-navigation-arrows>${(0, _LitRenderer.repeat)(context._selectableItems, (item, index) => item._id || index, (item, index) => block2(item, index, context, tags, suffix))}</ui5-carousel>`;
12
- const block2 = (item, index, context, tags, suffix) => (0, _LitRenderer.html)`<slot name="${(0, _LitRenderer.ifDefined)(item._individualSlot)}"></slot>`;
13
- const block3 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-media-gallery-item", tags, suffix)} ?_interactive="${(0, _LitRenderer.ifDefined)(context.interactiveDisplayArea)}" ?_square="${(0, _LitRenderer.ifDefined)(context._shouldHaveSquareDisplay)}" _tab-index="${(0, _LitRenderer.ifDefined)(context._mainItemTabIndex)}"></${(0, _LitRenderer.scopeTag)("ui5-media-gallery-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-media-gallery-item ?_interactive="${(0, _LitRenderer.ifDefined)(context.interactiveDisplayArea)}" ?_square="${(0, _LitRenderer.ifDefined)(context._shouldHaveSquareDisplay)}" _tab-index="${(0, _LitRenderer.ifDefined)(context._mainItemTabIndex)}"></ui5-media-gallery-item>`;
14
- const block4 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-media-gallery-thumbnails-wrapper"><ul>${(0, _LitRenderer.repeat)(context._visibleItems, (item, index) => item._id || index, (item, index) => block5(item, index, context, tags, suffix))}${context._showOverflowBtn ? block6(context, tags, suffix) : undefined}</ul></div>`;
15
- const block5 = (item, index, context, tags, suffix) => (0, _LitRenderer.html)`<li id="${(0, _LitRenderer.ifDefined)(item.id)}" class="ui5-media-gallery-thumbnail" role="option" @click="${context._onThumbnailClick}" @ui5-click="${(0, _LitRenderer.ifDefined)(context._onThumbnailClick)}"><slot name="${(0, _LitRenderer.ifDefined)(item._individualSlot)}"></slot></li>`;
16
- const block6 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<li class="ui5-media-gallery-overflow"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} @click="${context._onOverflowBtnClick}">+${(0, _LitRenderer.ifDefined)(context._overflowSize)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></li>` : (0, _LitRenderer.html)`<li class="ui5-media-gallery-overflow"><ui5-button @click="${context._onOverflowBtnClick}">+${(0, _LitRenderer.ifDefined)(context._overflowSize)}</ui5-button></li>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`<div class="ui5-media-gallery-root"><div class="ui5-media-gallery-display-wrapper"><div class="ui5-media-gallery-display" @click="${this._onDisplayAreaClick}">${this._isPhonePlatform ? block1.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}</div></div>${this._showThumbnails ? block4.call(this, context, tags, suffix) : undefined}</div>`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-carousel", tags, suffix)} @ui5-navigate="${(0, _LitRenderer.ifDefined)(this._onCarouselNavigate)}" hide-navigation-arrows>${(0, _LitRenderer.repeat)(this._selectableItems, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-carousel", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-carousel @ui5-navigate="${(0, _LitRenderer.ifDefined)(this._onCarouselNavigate)}" hide-navigation-arrows>${(0, _LitRenderer.repeat)(this._selectableItems, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</ui5-carousel>`;
15
+ }
16
+ function block2(context, tags, suffix, item, index) {
17
+ return (0, _LitRenderer.html)`<slot name="${(0, _LitRenderer.ifDefined)(item._individualSlot)}"></slot>`;
18
+ }
19
+ function block3(context, tags, suffix) {
20
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-media-gallery-item", tags, suffix)} ?_interactive="${(0, _LitRenderer.ifDefined)(this.interactiveDisplayArea)}" ?_square="${(0, _LitRenderer.ifDefined)(this._shouldHaveSquareDisplay)}" _tab-index="${(0, _LitRenderer.ifDefined)(this._mainItemTabIndex)}"></${(0, _LitRenderer.scopeTag)("ui5-media-gallery-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-media-gallery-item ?_interactive="${(0, _LitRenderer.ifDefined)(this.interactiveDisplayArea)}" ?_square="${(0, _LitRenderer.ifDefined)(this._shouldHaveSquareDisplay)}" _tab-index="${(0, _LitRenderer.ifDefined)(this._mainItemTabIndex)}"></ui5-media-gallery-item>`;
21
+ }
22
+ function block4(context, tags, suffix) {
23
+ return (0, _LitRenderer.html)`<div class="ui5-media-gallery-thumbnails-wrapper"><ul>${(0, _LitRenderer.repeat)(this._visibleItems, (item, index) => item._id || index, (item, index) => block5.call(this, context, tags, suffix, item, index))}${this._showOverflowBtn ? block6.call(this, context, tags, suffix) : undefined}</ul></div>`;
24
+ }
25
+ function block5(context, tags, suffix, item, index) {
26
+ return (0, _LitRenderer.html)`<li id="${(0, _LitRenderer.ifDefined)(item.id)}" class="ui5-media-gallery-thumbnail" role="option" @click="${this._onThumbnailClick}" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onThumbnailClick)}"><slot name="${(0, _LitRenderer.ifDefined)(item._individualSlot)}"></slot></li>`;
27
+ }
28
+ function block6(context, tags, suffix) {
29
+ return suffix ? (0, _LitRenderer.html)`<li class="ui5-media-gallery-overflow"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} @click="${this._onOverflowBtnClick}">+${(0, _LitRenderer.ifDefined)(this._overflowSize)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></li>` : (0, _LitRenderer.html)`<li class="ui5-media-gallery-overflow"><ui5-button @click="${this._onOverflowBtnClick}">+${(0, _LitRenderer.ifDefined)(this._overflowSize)}</ui5-button></li>`;
30
+ }
17
31
  var _default = block0;
18
32
  _exports.default = _default;
19
33
  });
@@ -7,15 +7,33 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<li class="ui5-nli-group-root ui5-nli-focusable" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keydown="${context._onkeydown}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(context._tabIndex)}" aria-expanded="${(0, _LitRenderer.ifDefined)(context.ariaExpanded)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(context.ariaLabelledBy)}"><div class="ui5-nli-group-header"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="navigation-right-arrow" design="Transparent" @click="${context._onBtnToggleClick}" class="ui5-nli-group-toggle-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.toggleBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.toggleBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>${context.hasPriority ? block1(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-title-text" class="ui5-nli-group-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(context.titleText)}</div>${context.showCounter ? block2(context, tags, suffix) : undefined}<div class="ui5-nli-group-divider"></div>${!context.collapsed ? block3(context, tags, suffix) : undefined}${context.showClose ? block7(context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(context._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(context.accInvisibleText)}</span></div><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} class="ui5-nli-group-items"><slot></slot></${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}>${context.busy ? block8(context, tags, suffix) : undefined}</li>` : (0, _LitRenderer.html)`<li class="ui5-nli-group-root ui5-nli-focusable" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keydown="${context._onkeydown}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(context._tabIndex)}" aria-expanded="${(0, _LitRenderer.ifDefined)(context.ariaExpanded)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(context.ariaLabelledBy)}"><div class="ui5-nli-group-header"><ui5-button icon="navigation-right-arrow" design="Transparent" @click="${context._onBtnToggleClick}" class="ui5-nli-group-toggle-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.toggleBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.toggleBtnAccessibleName)}"></ui5-button>${context.hasPriority ? block1(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-title-text" class="ui5-nli-group-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(context.titleText)}</div>${context.showCounter ? block2(context, tags, suffix) : undefined}<div class="ui5-nli-group-divider"></div>${!context.collapsed ? block3(context, tags, suffix) : undefined}${context.showClose ? block7(context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(context._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(context.accInvisibleText)}</span></div><ui5-list class="ui5-nli-group-items"><slot></slot></ui5-list>${context.busy ? block8(context, tags, suffix) : undefined}</li>`;
11
- const block1 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(context.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(context.priorityIcon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(context.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(context.priorityIcon)}"></ui5-icon>`;
12
- const block2 = (context, tags, suffix) => (0, _LitRenderer.html)`<span class="ui5-nli-group-counter">(${(0, _LitRenderer.ifDefined)(context.itemsCount)})</span>`;
13
- const block3 = (context, tags, suffix) => (0, _LitRenderer.html)`${context.showOverflow ? block4(context, tags, suffix) : block5(context, tags, suffix)}`;
14
- const block4 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="overflow" design="Transparent" @click="${context._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="overflow" design="Transparent" @click="${context._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}"></ui5-button>`;
15
- const block5 = (context, tags, suffix) => (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(context.standardActions, (item, index) => item._id || index, (item, index) => block6(item, index, context, tags, suffix))}`;
16
- const block6 = (item, index, context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" @click="${item.press}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" @click="${item.press}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
17
- const block7 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="decline" design="Transparent" @click="${context._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" close-btn></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="decline" design="Transparent" @click="${context._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" close-btn></ui5-button>`;
18
- const block8 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)} delay="${(0, _LitRenderer.ifDefined)(context.busyDelay)}" active size="Medium" class="ui5-nli-busy"></${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-busy-indicator delay="${(0, _LitRenderer.ifDefined)(context.busyDelay)}" active size="Medium" class="ui5-nli-busy"></ui5-busy-indicator>`;
10
+ function block0(context, tags, suffix) {
11
+ return suffix ? (0, _LitRenderer.html)`<li class="ui5-nli-group-root ui5-nli-focusable" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keydown="${this._onkeydown}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(this._tabIndex)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._ariaExpanded)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.ariaLabelledBy)}"><div class="ui5-nli-group-header"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="navigation-right-arrow" design="Transparent" @click="${this._onBtnToggleClick}" class="ui5-nli-group-toggle-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.toggleBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.toggleBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>${this.hasPriority ? block1.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-title-text" class="ui5-nli-group-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(this.titleText)}</div>${this.showCounter ? block2.call(this, context, tags, suffix) : undefined}<div class="ui5-nli-group-divider"></div>${!this.collapsed ? block3.call(this, context, tags, suffix) : undefined}${this.showClose ? block7.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accInvisibleText)}</span></div><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} class="ui5-nli-group-items"><slot></slot></${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}>${this.busy ? block8.call(this, context, tags, suffix) : undefined}</li>` : (0, _LitRenderer.html)`<li class="ui5-nli-group-root ui5-nli-focusable" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keydown="${this._onkeydown}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(this._tabIndex)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._ariaExpanded)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.ariaLabelledBy)}"><div class="ui5-nli-group-header"><ui5-button icon="navigation-right-arrow" design="Transparent" @click="${this._onBtnToggleClick}" class="ui5-nli-group-toggle-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.toggleBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.toggleBtnAccessibleName)}"></ui5-button>${this.hasPriority ? block1.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-title-text" class="ui5-nli-group-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(this.titleText)}</div>${this.showCounter ? block2.call(this, context, tags, suffix) : undefined}<div class="ui5-nli-group-divider"></div>${!this.collapsed ? block3.call(this, context, tags, suffix) : undefined}${this.showClose ? block7.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accInvisibleText)}</span></div><ui5-list class="ui5-nli-group-items"><slot></slot></ui5-list>${this.busy ? block8.call(this, context, tags, suffix) : undefined}</li>`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(this.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(this.priorityIcon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(this.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(this.priorityIcon)}"></ui5-icon>`;
15
+ }
16
+ function block2(context, tags, suffix) {
17
+ return (0, _LitRenderer.html)`<span class="ui5-nli-group-counter">(${(0, _LitRenderer.ifDefined)(this.itemsCount)})</span>`;
18
+ }
19
+ function block3(context, tags, suffix) {
20
+ return (0, _LitRenderer.html)`${this.showOverflow ? block4.call(this, context, tags, suffix) : block5.call(this, context, tags, suffix)}`;
21
+ }
22
+ function block4(context, tags, suffix) {
23
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="overflow" design="Transparent" @click="${this._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="overflow" design="Transparent" @click="${this._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}"></ui5-button>`;
24
+ }
25
+ function block5(context, tags, suffix) {
26
+ return (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(this.standardActions, (item, index) => item._id || index, (item, index) => block6.call(this, context, tags, suffix, item, index))}`;
27
+ }
28
+ function block6(context, tags, suffix, item, index) {
29
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" @click="${item.press}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" @click="${item.press}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
30
+ }
31
+ function block7(context, tags, suffix) {
32
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="decline" design="Transparent" @click="${this._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" close-btn></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="decline" design="Transparent" @click="${this._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" close-btn></ui5-button>`;
33
+ }
34
+ function block8(context, tags, suffix) {
35
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)} delay="${(0, _LitRenderer.ifDefined)(this.busyDelay)}" active size="Medium" class="ui5-nli-busy"></${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-busy-indicator delay="${(0, _LitRenderer.ifDefined)(this.busyDelay)}" active size="Medium" class="ui5-nli-busy"></ui5-busy-indicator>`;
36
+ }
19
37
  var _default = block0;
20
38
  _exports.default = _default;
21
39
  });
@@ -7,16 +7,36 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<li class="ui5-nli-root ui5-nli-focusable" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" @click="${context._onclick}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(context._tabIndex)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(context.ariaLabelledBy)}"><div class="ui5-nli-actions">${context.showOverflow ? block1(context, tags, suffix) : block2(context, tags, suffix)}${context.showClose ? block4(context, tags, suffix) : undefined}</div><div class="ui5-nli-content"><div class="ui5-nli-title-text-wrapper">${context.hasPriority ? block5(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-title-text" class="ui5-nli-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(context.titleText)}</div></div>${context.hasDesc ? block6(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-footer" class="ui5-nli-footer">${(0, _LitRenderer.repeat)(context.footerItems, (item, index) => item._id || index, (item, index) => block7(item, index, context, tags, suffix))}<${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} class="ui5-nli-footer-showMore" ?hidden="${context.hideShowMore}" @click="${context._onShowMoreClick}" aria-hidden="true" href="#" showMore-btn>${(0, _LitRenderer.ifDefined)(context.showMoreText)}</${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}></div><span id="${(0, _LitRenderer.ifDefined)(context._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(context.accInvisibleText)}</span></div><div class="ui5-nli-avatar"><slot name="avatar"></slot></div>${context.busy ? block9(context, tags, suffix) : undefined}</li>` : (0, _LitRenderer.html)`<li class="ui5-nli-root ui5-nli-focusable" @focusin="${context._onfocusin}" @focusout="${context._onfocusout}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" @click="${context._onclick}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(context._tabIndex)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(context.ariaLabelledBy)}"><div class="ui5-nli-actions">${context.showOverflow ? block1(context, tags, suffix) : block2(context, tags, suffix)}${context.showClose ? block4(context, tags, suffix) : undefined}</div><div class="ui5-nli-content"><div class="ui5-nli-title-text-wrapper">${context.hasPriority ? block5(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-title-text" class="ui5-nli-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(context.titleText)}</div></div>${context.hasDesc ? block6(context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(context._id)}-footer" class="ui5-nli-footer">${(0, _LitRenderer.repeat)(context.footerItems, (item, index) => item._id || index, (item, index) => block7(item, index, context, tags, suffix))}<ui5-link class="ui5-nli-footer-showMore" ?hidden="${context.hideShowMore}" @click="${context._onShowMoreClick}" aria-hidden="true" href="#" showMore-btn>${(0, _LitRenderer.ifDefined)(context.showMoreText)}</ui5-link></div><span id="${(0, _LitRenderer.ifDefined)(context._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(context.accInvisibleText)}</span></div><div class="ui5-nli-avatar"><slot name="avatar"></slot></div>${context.busy ? block9(context, tags, suffix) : undefined}</li>`;
11
- const block1 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="overflow" design="Transparent" @click="${context._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="overflow" design="Transparent" @click="${context._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.overflowBtnAccessibleName)}"></ui5-button>`;
12
- const block2 = (context, tags, suffix) => (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(context.standardActions, (item, index) => item._id || index, (item, index) => block3(item, index, context, tags, suffix))}`;
13
- const block3 = (item, index, context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
14
- const block4 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="decline" design="Transparent" @click="${context._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" close-btn></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="decline" design="Transparent" @click="${context._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(context.closeBtnAccessibleName)}" close-btn></ui5-button>`;
15
- const block5 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(context.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(context.priorityIcon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(context.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(context.priorityIcon)}"></ui5-icon>`;
16
- const block6 = (context, tags, suffix) => (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(context._id)}-description" class="ui5-nli-description"><slot></slot></div>`;
17
- const block7 = (item, index, context, tags, suffix) => (0, _LitRenderer.html)`<slot name="${(0, _LitRenderer.ifDefined)(item.slotName)}"></slot>${item.showDivider ? block8(item, index, context, tags, suffix) : undefined}`;
18
- const block8 = (item, index, context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-nli-footer-divider" aria-hidden="true">·</div>`;
19
- const block9 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)} delay="${(0, _LitRenderer.ifDefined)(context.busyDelay)}" active size="Medium" class="ui5-nli-busy" data-sap-focus-ref></${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-busy-indicator delay="${(0, _LitRenderer.ifDefined)(context.busyDelay)}" active size="Medium" class="ui5-nli-busy" data-sap-focus-ref></ui5-busy-indicator>`;
10
+ function block0(context, tags, suffix) {
11
+ return suffix ? (0, _LitRenderer.html)`<li class="ui5-nli-root ui5-nli-focusable" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}" @click="${this._onclick}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(this._tabIndex)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.ariaLabelledBy)}"><div class="ui5-nli-actions">${this.showOverflow ? block1.call(this, context, tags, suffix) : block2.call(this, context, tags, suffix)}${this.showClose ? block4.call(this, context, tags, suffix) : undefined}</div><div class="ui5-nli-content"><div class="ui5-nli-title-text-wrapper">${this.hasPriority ? block5.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-title-text" class="ui5-nli-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(this.titleText)}</div></div>${this.hasDesc ? block6.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-footer" class="ui5-nli-footer">${(0, _LitRenderer.repeat)(this.footerItems, (item, index) => item._id || index, (item, index) => block7.call(this, context, tags, suffix, item, index))}<${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} class="ui5-nli-footer-showMore" ?hidden="${this.hideShowMore}" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onShowMoreClick)}" aria-hidden="true" href="#" showMore-btn>${(0, _LitRenderer.ifDefined)(this.showMoreText)}</${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}></div><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accInvisibleText)}</span></div><div class="ui5-nli-avatar"><slot name="avatar"></slot></div>${this.busy ? block9.call(this, context, tags, suffix) : undefined}</li>` : (0, _LitRenderer.html)`<li class="ui5-nli-root ui5-nli-focusable" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}" @click="${this._onclick}" role="listitem" tabindex="${(0, _LitRenderer.ifDefined)(this._tabIndex)}" aria-labelledby="${(0, _LitRenderer.ifDefined)(this.ariaLabelledBy)}"><div class="ui5-nli-actions">${this.showOverflow ? block1.call(this, context, tags, suffix) : block2.call(this, context, tags, suffix)}${this.showClose ? block4.call(this, context, tags, suffix) : undefined}</div><div class="ui5-nli-content"><div class="ui5-nli-title-text-wrapper">${this.hasPriority ? block5.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-title-text" class="ui5-nli-title-text" part="title-text">${(0, _LitRenderer.ifDefined)(this.titleText)}</div></div>${this.hasDesc ? block6.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-footer" class="ui5-nli-footer">${(0, _LitRenderer.repeat)(this.footerItems, (item, index) => item._id || index, (item, index) => block7.call(this, context, tags, suffix, item, index))}<ui5-link class="ui5-nli-footer-showMore" ?hidden="${this.hideShowMore}" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onShowMoreClick)}" aria-hidden="true" href="#" showMore-btn>${(0, _LitRenderer.ifDefined)(this.showMoreText)}</ui5-link></div><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accInvisibleText)}</span></div><div class="ui5-nli-avatar"><slot name="avatar"></slot></div>${this.busy ? block9.call(this, context, tags, suffix) : undefined}</li>`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="overflow" design="Transparent" @click="${this._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="overflow" design="Transparent" @click="${this._onBtnOverflowClick}" class="ui5-nli-overflow-btn" tooltip="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.overflowBtnAccessibleName)}"></ui5-button>`;
15
+ }
16
+ function block2(context, tags, suffix) {
17
+ return (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(this.standardActions, (item, index) => item._id || index, (item, index) => block3.call(this, context, tags, suffix, item, index))}`;
18
+ }
19
+ function block3(context, tags, suffix, item, index) {
20
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" class="ui5-nli-action" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
21
+ }
22
+ function block4(context, tags, suffix) {
23
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="decline" design="Transparent" @click="${this._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" close-btn></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="decline" design="Transparent" @click="${this._onBtnCloseClick}" tooltip="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" aria-label="${(0, _LitRenderer.ifDefined)(this.closeBtnAccessibleName)}" close-btn></ui5-button>`;
24
+ }
25
+ function block5(context, tags, suffix) {
26
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(this.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(this.priorityIcon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-prio-icon ui5-prio-icon--${(0, _LitRenderer.ifDefined)(this.priorityIcon)}" name="${(0, _LitRenderer.ifDefined)(this.priorityIcon)}"></ui5-icon>`;
27
+ }
28
+ function block6(context, tags, suffix) {
29
+ return (0, _LitRenderer.html)`<div id="${(0, _LitRenderer.ifDefined)(this._id)}-description" class="ui5-nli-description"><slot></slot></div>`;
30
+ }
31
+ function block7(context, tags, suffix, item, index) {
32
+ return (0, _LitRenderer.html)`<slot name="${(0, _LitRenderer.ifDefined)(item.slotName)}"></slot>${item.showDivider ? block8.call(this, context, tags, suffix, item, index) : undefined}`;
33
+ }
34
+ function block8(context, tags, suffix, item, index) {
35
+ return (0, _LitRenderer.html)`<div class="ui5-nli-footer-divider" aria-hidden="true">·</div>`;
36
+ }
37
+ function block9(context, tags, suffix) {
38
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)} delay="${(0, _LitRenderer.ifDefined)(this.busyDelay)}" active size="Medium" class="ui5-nli-busy" data-sap-focus-ref></${(0, _LitRenderer.scopeTag)("ui5-busy-indicator", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-busy-indicator delay="${(0, _LitRenderer.ifDefined)(this.busyDelay)}" active size="Medium" class="ui5-nli-busy" data-sap-focus-ref></ui5-busy-indicator>`;
39
+ }
20
40
  var _default = block0;
21
41
  _exports.default = _default;
22
42
  });
@@ -7,8 +7,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-notification-overflow-popover" placement-type="Bottom" horizontal-align="Right" hide-arrow><div class="ui5-notification-overflow-list">${(0, _LitRenderer.repeat)(context.overflowActions, (item, index) => item._id || index, (item, index) => block1(item, index, context, tags, suffix))}</div></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-popover class="ui5-notification-overflow-popover" placement-type="Bottom" horizontal-align="Right" hide-arrow><div class="ui5-notification-overflow-list">${(0, _LitRenderer.repeat)(context.overflowActions, (item, index) => item._id || index, (item, index) => block1(item, index, context, tags, suffix))}</div></ui5-popover>`;
11
- const block1 = (item, index, context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" design="Transparent" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" design="Transparent" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
10
+ function block0(context, tags, suffix) {
11
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-notification-overflow-popover" placement-type="Bottom" horizontal-align="Right" hide-arrow><div class="ui5-notification-overflow-list">${(0, _LitRenderer.repeat)(this.overflowActions, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</div></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-popover class="ui5-notification-overflow-popover" placement-type="Bottom" horizontal-align="Right" hide-arrow><div class="ui5-notification-overflow-list">${(0, _LitRenderer.repeat)(this.overflowActions, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</div></ui5-popover>`;
12
+ }
13
+ function block1(context, tags, suffix, item, index) {
14
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.icon)}" design="Transparent" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" class="ui5-notification-overflow-list-btn">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="${(0, _LitRenderer.ifDefined)(item.icon)}" design="Transparent" @click="${item.press}" ?disabled="${item.disabled}" design="${(0, _LitRenderer.ifDefined)(item.design)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" class="ui5-notification-overflow-list-btn">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-button>`;
15
+ }
12
16
  var _default = block0;
13
17
  _exports.default = _default;
14
18
  });
@@ -7,7 +7,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-page-root"><header class="ui5-page-header-root" id="ui5-page-header"><slot name="header"></slot></header><section part="content" class="ui5-page-content-root" style="${(0, _LitRenderer.styleMap)(context.styles.content)}"><slot></slot></section><footer class="ui5-page-footer-root" style="${(0, _LitRenderer.styleMap)(context.styles.footer)}"><slot name="footer"></slot></footer></div>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`<div class="ui5-page-root"><header class="ui5-page-header-root" id="ui5-page-header"><slot name="header"></slot></header><section part="content" class="ui5-page-content-root" style="${(0, _LitRenderer.styleMap)(this.styles.content)}"><slot></slot></section><footer class="ui5-page-footer-root" style="${(0, _LitRenderer.styleMap)(this.styles.footer)}"><slot name="footer"></slot></footer></div>`;
12
+ }
11
13
  var _default = block0;
12
14
  _exports.default = _default;
13
15
  });
@@ -7,15 +7,33 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`${context.targetSrc ? block1(context, tags, suffix) : block5(context, tags, suffix)}`;
11
- const block1 = (context, tags, suffix) => (0, _LitRenderer.html)`<a class="ui5-product-switch-item-root" data-sap-focus-ref @focusout="${context._onfocusout}" @focusin="${context._onfocusin}" @mousedown="${context._onmousedown}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" tabindex=${(0, _LitRenderer.ifDefined)(context._tabIndex)} href="${(0, _LitRenderer.ifDefined)(context.targetSrc)}" target="${(0, _LitRenderer.ifDefined)(context.target)}">${context.icon ? block2(context, tags, suffix) : undefined}<span class="ui5-product-switch-item-text-content">${context.titleText ? block3(context, tags, suffix) : undefined}${context.subtitleText ? block4(context, tags, suffix) : undefined}</span></a>`;
12
- const block2 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(context.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(context.icon)}"></ui5-icon>`;
13
- const block3 = (context, tags, suffix) => (0, _LitRenderer.html)`<span class="ui5-product-switch-item-title">${(0, _LitRenderer.ifDefined)(context.titleText)}</span>`;
14
- const block4 = (context, tags, suffix) => (0, _LitRenderer.html)`<span class="ui5-product-switch-item-subtitle">${(0, _LitRenderer.ifDefined)(context.subtitleText)}</span>`;
15
- const block5 = (context, tags, suffix) => (0, _LitRenderer.html)`<div role="listitem" class="ui5-product-switch-item-root" data-sap-focus-ref @focusout="${context._onfocusout}" @focusin="${context._onfocusin}" @mousedown="${context._onmousedown}" @keydown="${context._onkeydown}" @keyup="${context._onkeyup}" tabindex=${(0, _LitRenderer.ifDefined)(context._tabIndex)}>${context.icon ? block6(context, tags, suffix) : undefined}<span class="ui5-product-switch-item-text-content">${context.titleText ? block7(context, tags, suffix) : undefined}${context.subtitleText ? block8(context, tags, suffix) : undefined}</span></div>`;
16
- const block6 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(context.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(context.icon)}"></ui5-icon>`;
17
- const block7 = (context, tags, suffix) => (0, _LitRenderer.html)`<span class="ui5-product-switch-item-title">${(0, _LitRenderer.ifDefined)(context.titleText)}</span>`;
18
- const block8 = (context, tags, suffix) => (0, _LitRenderer.html)`<span class="ui5-product-switch-item-subtitle">${(0, _LitRenderer.ifDefined)(context.subtitleText)}</span>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`${this.targetSrc ? block1.call(this, context, tags, suffix) : block5.call(this, context, tags, suffix)}`;
12
+ }
13
+ function block1(context, tags, suffix) {
14
+ return (0, _LitRenderer.html)`<a class="ui5-product-switch-item-root" data-sap-focus-ref @focusout="${this._onfocusout}" @focusin="${this._onfocusin}" @mousedown="${this._onmousedown}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}" tabindex=${(0, _LitRenderer.ifDefined)(this._tabIndex)} href="${(0, _LitRenderer.ifDefined)(this.targetSrc)}" target="${(0, _LitRenderer.ifDefined)(this.target)}">${this.icon ? block2.call(this, context, tags, suffix) : undefined}<span class="ui5-product-switch-item-text-content">${this.titleText ? block3.call(this, context, tags, suffix) : undefined}${this.subtitleText ? block4.call(this, context, tags, suffix) : undefined}</span></a>`;
15
+ }
16
+ function block2(context, tags, suffix) {
17
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></ui5-icon>`;
18
+ }
19
+ function block3(context, tags, suffix) {
20
+ return (0, _LitRenderer.html)`<span class="ui5-product-switch-item-title">${(0, _LitRenderer.ifDefined)(this.titleText)}</span>`;
21
+ }
22
+ function block4(context, tags, suffix) {
23
+ return (0, _LitRenderer.html)`<span class="ui5-product-switch-item-subtitle">${(0, _LitRenderer.ifDefined)(this.subtitleText)}</span>`;
24
+ }
25
+ function block5(context, tags, suffix) {
26
+ return (0, _LitRenderer.html)`<div role="listitem" class="ui5-product-switch-item-root" data-sap-focus-ref @focusout="${this._onfocusout}" @focusin="${this._onfocusin}" @mousedown="${this._onmousedown}" @keydown="${this._onkeydown}" @keyup="${this._onkeyup}" tabindex=${(0, _LitRenderer.ifDefined)(this._tabIndex)}>${this.icon ? block6.call(this, context, tags, suffix) : undefined}<span class="ui5-product-switch-item-text-content">${this.titleText ? block7.call(this, context, tags, suffix) : undefined}${this.subtitleText ? block8.call(this, context, tags, suffix) : undefined}</span></div>`;
27
+ }
28
+ function block6(context, tags, suffix) {
29
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-product-switch-item-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></ui5-icon>`;
30
+ }
31
+ function block7(context, tags, suffix) {
32
+ return (0, _LitRenderer.html)`<span class="ui5-product-switch-item-title">${(0, _LitRenderer.ifDefined)(this.titleText)}</span>`;
33
+ }
34
+ function block8(context, tags, suffix) {
35
+ return (0, _LitRenderer.html)`<span class="ui5-product-switch-item-subtitle">${(0, _LitRenderer.ifDefined)(this.subtitleText)}</span>`;
36
+ }
19
37
  var _default = block0;
20
38
  _exports.default = _default;
21
39
  });
@@ -7,7 +7,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => (0, _LitRenderer.html)`<div class="ui5-product-switch-root" role="list" aria-label="${(0, _LitRenderer.ifDefined)(context._ariaLabelText)}" @focusin=${context._onfocusin} @keydown=${context._onkeydown} @click="${context.handleProductSwitchItemClick}"><slot></slot></div>`;
10
+ function block0(context, tags, suffix) {
11
+ return (0, _LitRenderer.html)`<div class="ui5-product-switch-root" role="list" aria-label="${(0, _LitRenderer.ifDefined)(this._ariaLabelText)}" @focusin=${this._onfocusin} @keydown=${this._onkeydown} @click="${this.handleProductSwitchItemClick}"><slot></slot></div>`;
12
+ }
11
13
  var _default = block0;
12
14
  _exports.default = _default;
13
15
  });
@@ -7,9 +7,15 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
7
7
  _exports.default = void 0;
8
8
  /* eslint no-unused-vars: 0 */
9
9
 
10
- const block0 = (context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-shellbar-menu-popover" hide-arrow placement-type="Bottom" @ui5-before-open=${(0, _LitRenderer.ifDefined)(context._menuPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(context._menuPopoverAfterClose)}><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} separators="None" mode="SingleSelect" @ui5-selection-change=${(0, _LitRenderer.ifDefined)(context._menuItemPress)}>${(0, _LitRenderer.repeat)(context._menuPopoverItems, (item, index) => item._id || index, (item, index) => block1(item, index, context, tags, suffix))}</${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-shellbar-overflow-popover" placement-type="Bottom" horizontal-align="${(0, _LitRenderer.ifDefined)(context.popoverHorizontalAlign)}" hide-arrow @ui5-before-open=${(0, _LitRenderer.ifDefined)(context._overflowPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(context._overflowPopoverAfterClose)}><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} separators="None" @ui5-item-click="${(0, _LitRenderer.ifDefined)(context._handleActionListClick)}">${(0, _LitRenderer.repeat)(context._hiddenIcons, (item, index) => item._id || index, (item, index) => block2(item, index, context, tags, suffix))}</${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-popover class="ui5-shellbar-menu-popover" hide-arrow placement-type="Bottom" @ui5-before-open=${(0, _LitRenderer.ifDefined)(context._menuPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(context._menuPopoverAfterClose)}><ui5-list separators="None" mode="SingleSelect" @ui5-selection-change=${(0, _LitRenderer.ifDefined)(context._menuItemPress)}>${(0, _LitRenderer.repeat)(context._menuPopoverItems, (item, index) => item._id || index, (item, index) => block1(item, index, context, tags, suffix))}</ui5-list></ui5-popover><ui5-popover class="ui5-shellbar-overflow-popover" placement-type="Bottom" horizontal-align="${(0, _LitRenderer.ifDefined)(context.popoverHorizontalAlign)}" hide-arrow @ui5-before-open=${(0, _LitRenderer.ifDefined)(context._overflowPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(context._overflowPopoverAfterClose)}><ui5-list separators="None" @ui5-item-click="${(0, _LitRenderer.ifDefined)(context._handleActionListClick)}">${(0, _LitRenderer.repeat)(context._hiddenIcons, (item, index) => item._id || index, (item, index) => block2(item, index, context, tags, suffix))}</ui5-list></ui5-popover>`;
11
- const block1 = (item, index, context, tags, suffix) => (0, _LitRenderer.html)`${(0, _LitRenderer.ifDefined)(item)}`;
12
- const block2 = (item, index, context, tags, suffix) => suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)} data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" type="Active" @ui5-_press="${(0, _LitRenderer.ifDefined)(item.press)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-li data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" type="Active" @ui5-_press="${(0, _LitRenderer.ifDefined)(item.press)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-li>`;
10
+ function block0(context, tags, suffix) {
11
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-shellbar-menu-popover" hide-arrow placement-type="Bottom" @ui5-before-open=${(0, _LitRenderer.ifDefined)(this._menuPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(this._menuPopoverAfterClose)}><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} separators="None" mode="SingleSelect" @ui5-selection-change=${(0, _LitRenderer.ifDefined)(this._menuItemPress)}>${(0, _LitRenderer.repeat)(this._menuPopoverItems, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)} class="ui5-shellbar-overflow-popover" placement-type="Bottom" horizontal-align="${(0, _LitRenderer.ifDefined)(this.popoverHorizontalAlign)}" hide-arrow @ui5-before-open=${(0, _LitRenderer.ifDefined)(this._overflowPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(this._overflowPopoverAfterClose)}><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} separators="None" @ui5-item-click="${(0, _LitRenderer.ifDefined)(this._handleActionListClick)}">${(0, _LitRenderer.repeat)(this._hiddenIcons, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-popover class="ui5-shellbar-menu-popover" hide-arrow placement-type="Bottom" @ui5-before-open=${(0, _LitRenderer.ifDefined)(this._menuPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(this._menuPopoverAfterClose)}><ui5-list separators="None" mode="SingleSelect" @ui5-selection-change=${(0, _LitRenderer.ifDefined)(this._menuItemPress)}>${(0, _LitRenderer.repeat)(this._menuPopoverItems, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</ui5-list></ui5-popover><ui5-popover class="ui5-shellbar-overflow-popover" placement-type="Bottom" horizontal-align="${(0, _LitRenderer.ifDefined)(this.popoverHorizontalAlign)}" hide-arrow @ui5-before-open=${(0, _LitRenderer.ifDefined)(this._overflowPopoverBeforeOpen)} @ui5-after-close=${(0, _LitRenderer.ifDefined)(this._overflowPopoverAfterClose)}><ui5-list separators="None" @ui5-item-click="${(0, _LitRenderer.ifDefined)(this._handleActionListClick)}">${(0, _LitRenderer.repeat)(this._hiddenIcons, (item, index) => item._id || index, (item, index) => block2.call(this, context, tags, suffix, item, index))}</ui5-list></ui5-popover>`;
12
+ }
13
+ function block1(context, tags, suffix, item, index) {
14
+ return (0, _LitRenderer.html)`${(0, _LitRenderer.ifDefined)(item)}`;
15
+ }
16
+ function block2(context, tags, suffix, item, index) {
17
+ return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)} data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" type="Active" @ui5-_press="${(0, _LitRenderer.ifDefined)(item.press)}">${(0, _LitRenderer.ifDefined)(item.text)}</${(0, _LitRenderer.scopeTag)("ui5-li", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-li data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" type="Active" @ui5-_press="${(0, _LitRenderer.ifDefined)(item.press)}">${(0, _LitRenderer.ifDefined)(item.text)}</ui5-li>`;
18
+ }
13
19
  var _default = block0;
14
20
  _exports.default = _default;
15
21
  });