@openui5/sap.ui.webc.fiori 1.115.1 → 1.116.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 (279) 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/custom-elements.json.js +1 -0
  112. package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +25 -55
  113. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
  114. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
  115. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
  116. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
  117. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
  118. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
  119. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
  120. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
  121. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
  122. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
  123. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
  124. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
  125. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
  126. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
  127. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
  128. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
  129. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
  130. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
  131. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
  132. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
  133. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
  134. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
  135. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
  136. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
  137. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
  138. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
  139. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
  140. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
  141. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
  142. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
  143. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
  144. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
  145. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
  146. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
  147. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
  148. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
  149. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
  150. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
  151. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
  152. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
  153. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
  154. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
  155. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
  156. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
  157. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
  158. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
  159. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
  160. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
  161. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
  162. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
  163. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
  164. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
  165. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
  166. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
  167. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
  168. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
  169. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
  170. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
  171. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
  172. package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +104 -29
  173. package/src/sap/ui/webc/fiori/thirdparty/generated/js-imports/Illustrations.js +202 -0
  174. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -1
  175. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +3 -1
  176. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +9 -1
  177. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -1
  178. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +28 -7
  179. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +12 -4
  180. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +21 -7
  181. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -9
  182. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +30 -10
  183. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +6 -2
  184. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -1
  185. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -9
  186. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -1
  187. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +9 -3
  188. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +73 -24
  189. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationPopoverTemplate.lit.js +18 -0
  190. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +30 -10
  191. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +21 -7
  192. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +6 -2
  193. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +51 -15
  194. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +9 -3
  195. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +48 -16
  196. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +6 -2
  197. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +15 -5
  198. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +9 -3
  199. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +5 -4
  200. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +5 -4
  201. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +5 -4
  202. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +5 -4
  203. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +5 -4
  204. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
  205. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +5 -4
  206. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +5 -4
  207. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +5 -4
  208. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +5 -4
  209. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +5 -4
  210. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +5 -4
  211. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +5 -4
  212. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +5 -4
  213. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +5 -4
  214. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +5 -4
  215. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +5 -4
  216. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +5 -4
  217. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +5 -4
  218. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +5 -4
  219. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +5 -4
  220. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +5 -4
  221. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +5 -4
  222. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +5 -4
  223. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +5 -4
  224. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +5 -4
  225. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +5 -4
  226. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +5 -4
  227. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
  228. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
  229. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
  230. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
  231. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
  232. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
  233. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
  234. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
  235. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
  236. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
  237. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
  238. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
  239. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddDimensions.js +41 -0
  240. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AllIllustrations.js +3 -0
  241. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoColumnsSet.js +41 -0
  242. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoDimensionsSet.js +41 -0
  243. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Survey.js +41 -0
  244. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadToCloud.js +41 -0
  245. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddDimensions.js +48 -0
  246. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoColumnsSet.js +45 -0
  247. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoDimensionsSet.js +49 -0
  248. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Survey.js +32 -0
  249. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadToCloud.js +40 -0
  250. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddDimensions.js +44 -0
  251. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoColumnsSet.js +46 -0
  252. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoDimensionsSet.js +48 -0
  253. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Survey.js +31 -0
  254. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadToCloud.js +34 -0
  255. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddDimensions.js +48 -0
  256. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoColumnsSet.js +46 -0
  257. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoDimensionsSet.js +52 -0
  258. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Survey.js +42 -0
  259. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadToCloud.js +40 -0
  260. package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +14 -26
  261. package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +42 -56
  262. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +19 -27
  263. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +128 -110
  264. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +12 -24
  265. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +13 -25
  266. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +12 -24
  267. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +12 -24
  268. package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +13 -27
  269. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +14 -26
  270. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +12 -24
  271. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +15 -27
  272. package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +12 -25
  273. package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +11 -25
  274. package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +13 -27
  275. package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +12 -25
  276. package/src/sap/ui/webc/fiori/thirdparty/types/WizardContentLayout.js +34 -0
  277. package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +2 -2
  278. package/ui5.yaml +5 -3
  279. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +0 -14
@@ -1,4 +1,4 @@
1
- sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], function (_exports, _UI5Element) {
1
+ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/event", "sap/ui/webc/common/thirdparty/base/decorators/property"], function (_exports, _UI5Element, _customElement, _event, _property) {
2
2
  "use strict";
3
3
 
4
4
  Object.defineProperty(_exports, "__esModule", {
@@ -6,61 +6,17 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
6
6
  });
7
7
  _exports.default = void 0;
8
8
  _UI5Element = _interopRequireDefault(_UI5Element);
9
+ _customElement = _interopRequireDefault(_customElement);
10
+ _event = _interopRequireDefault(_event);
11
+ _property = _interopRequireDefault(_property);
9
12
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- /**
11
- * @public
12
- */
13
- const metadata = {
14
- tag: "ui5-side-navigation-sub-item",
15
- properties: /** @lends sap.ui.webcomponents.fiori.SideNavigationSubItem.prototype */{
16
- /**
17
- * Defines the text of the item.
18
- *
19
- * @public
20
- * @type {string}
21
- * @defaultvalue ""
22
- */
23
- text: {
24
- type: String
25
- },
26
- /**
27
- * Defines whether the subitem is selected.
28
- *
29
- * @public
30
- * @type {boolean}
31
- * @defaultvalue false
32
- */
33
- selected: {
34
- type: Boolean
35
- },
36
- /**
37
- * Defines the icon of the item.
38
- * <br><br>
39
- *
40
- * The SAP-icons font provides numerous options.
41
- * <br>
42
- * See all the available icons in the <ui5-link target="_blank" href="https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html" class="api-table-content-cell-link">Icon Explorer</ui5-link>.
43
- * @public
44
- * @type {string}
45
- * @defaultvalue ""
46
- */
47
- icon: {
48
- type: String
49
- },
50
- /**
51
- * Defines the tooltip of the component.
52
- * @type {string}
53
- * @defaultvalue ""
54
- * @private
55
- * @since 1.0.0-rc.16
56
- */
57
- title: {
58
- type: String
59
- }
60
- },
61
- events: /** @lends sap.ui.webcomponents.fiori.SideNavigationSubItem.prototype */{}
13
+ var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
14
+ var c = arguments.length,
15
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
16
+ d;
17
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
18
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
62
19
  };
63
-
64
20
  /**
65
21
  * @class
66
22
  *
@@ -74,21 +30,33 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
74
30
  *
75
31
  * @constructor
76
32
  * @author SAP SE
77
- * @alias sap.ui.webcomponents.fiori.SideNavigationSubItem
78
- * @extends UI5Element
33
+ * @alias sap.ui.webc.fiori.SideNavigationSubItem
34
+ * @extends sap.ui.webc.base.UI5Element
79
35
  * @tagname ui5-side-navigation-sub-item
80
36
  * @public
37
+ * @abstract
38
+ * @implements sap.ui.webc.fiori.ISideNavigationSubItem
81
39
  * @since 1.0.0-rc.8
82
- * @implements sap.ui.webcomponents.fiori.ISideNavigationSubItem
83
40
  */
84
- class SideNavigationSubItem extends _UI5Element.default {
85
- static get metadata() {
86
- return metadata;
87
- }
41
+ let SideNavigationSubItem = class SideNavigationSubItem extends _UI5Element.default {
88
42
  get _tooltip() {
89
43
  return this.title || this.text;
90
44
  }
91
- }
45
+ };
46
+ __decorate([(0, _property.default)()], SideNavigationSubItem.prototype, "text", void 0);
47
+ __decorate([(0, _property.default)({
48
+ type: Boolean
49
+ })], SideNavigationSubItem.prototype, "selected", void 0);
50
+ __decorate([(0, _property.default)()], SideNavigationSubItem.prototype, "icon", void 0);
51
+ __decorate([(0, _property.default)()], SideNavigationSubItem.prototype, "title", void 0);
52
+ SideNavigationSubItem = __decorate([(0, _customElement.default)("ui5-side-navigation-sub-item")
53
+ /**
54
+ * Fired when the component is activated either with a
55
+ * click/tap or by using the Enter or Space key.
56
+ *
57
+ * @event sap.ui.webc.fiori.SideNavigationSubItem#click
58
+ * @public
59
+ */, (0, _event.default)("click")], SideNavigationSubItem);
92
60
  SideNavigationSubItem.define();
93
61
  var _default = SideNavigationSubItem;
94
62
  _exports.default = _default;
@@ -1,4 +1,4 @@
1
- sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], function (_exports, _UI5Element) {
1
+ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/customElement"], function (_exports, _UI5Element, _property, _customElement) {
2
2
  "use strict";
3
3
 
4
4
  Object.defineProperty(_exports, "__esModule", {
@@ -6,41 +6,16 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
6
6
  });
7
7
  _exports.default = void 0;
8
8
  _UI5Element = _interopRequireDefault(_UI5Element);
9
+ _property = _interopRequireDefault(_property);
10
+ _customElement = _interopRequireDefault(_customElement);
9
11
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
10
- /**
11
- * @public
12
- */
13
- const metadata = {
14
- tag: "ui5-sort-item",
15
- properties: /** @lends sap.ui.webcomponents.fiori.SortItem.prototype */{
16
- /**
17
- * Defines the text of the component.
18
- *
19
- * @type {string}
20
- * @defaultvalue ""
21
- * @public
22
- */
23
- text: {
24
- type: String
25
- },
26
- /**
27
- * Defines if the component is selected.
28
- * @type {boolean}
29
- * @defaultvalue false
30
- * @public
31
- */
32
- selected: {
33
- type: Boolean
34
- }
35
- },
36
- slots: /** @lends sap.ui.webcomponents.fiori.SortItem.prototype */{
37
- //
38
- },
39
- events: /** @lends sap.ui.webcomponents.fiori.SortItem.prototype */{
40
- //
41
- }
12
+ var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
13
+ var c = arguments.length,
14
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
15
+ d;
16
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
17
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
42
18
  };
43
-
44
19
  /**
45
20
  * @class
46
21
  *
@@ -56,18 +31,20 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
56
31
  *
57
32
  * @constructor
58
33
  * @author SAP SE
59
- * @alias sap.ui.webcomponents.fiori.SortItem
60
- * @extends UI5Element
34
+ * @alias sap.ui.webc.fiori.SortItem
35
+ * @extends sap.ui.webc.base.UI5Element
36
+ * @abstract
61
37
  * @since 1.0.0-rc.16
62
38
  * @tagname ui5-sort-item
63
- * @implements sap.ui.webcomponents.fiori.ISortItem
39
+ * @implements sap.ui.webc.fiori.ISortItem
64
40
  * @public
65
41
  */
66
- class SortItem extends _UI5Element.default {
67
- static get metadata() {
68
- return metadata;
69
- }
70
- }
42
+ let SortItem = class SortItem extends _UI5Element.default {};
43
+ __decorate([(0, _property.default)()], SortItem.prototype, "text", void 0);
44
+ __decorate([(0, _property.default)({
45
+ type: Boolean
46
+ })], SortItem.prototype, "selected", void 0);
47
+ SortItem = __decorate([(0, _customElement.default)("ui5-sort-item")], SortItem);
71
48
  SortItem.define();
72
49
  var _default = SortItem;
73
50
  _exports.default = _default;
@@ -1,4 +1,4 @@
1
- sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/delegate/ItemNavigation", "sap/ui/webc/common/thirdparty/base/types/NavigationMode", "./generated/i18n/i18n-defaults", "./generated/templates/TimelineTemplate.lit", "./TimelineItem", "./generated/themes/Timeline.css", "./types/TimelineLayout"], function (_exports, _UI5Element, _i18nBundle, _LitRenderer, _Keys, _ItemNavigation, _NavigationMode, _i18nDefaults, _TimelineTemplate, _TimelineItem, _Timeline, _TimelineLayout) {
1
+ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/delegate/ItemNavigation", "sap/ui/webc/common/thirdparty/base/types/NavigationMode", "sap/ui/webc/common/thirdparty/base/MarkedEvents", "./generated/i18n/i18n-defaults", "./generated/templates/TimelineTemplate.lit", "./TimelineItem", "./generated/themes/Timeline.css", "./types/TimelineLayout"], function (_exports, _UI5Element, _customElement, _property, _slot, _i18nBundle, _LitRenderer, _Keys, _ItemNavigation, _NavigationMode, _MarkedEvents, _i18nDefaults, _TimelineTemplate, _TimelineItem, _Timeline, _TimelineLayout) {
2
2
  "use strict";
3
3
 
4
4
  Object.defineProperty(_exports, "__esModule", {
@@ -6,6 +6,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
6
6
  });
7
7
  _exports.default = void 0;
8
8
  _UI5Element = _interopRequireDefault(_UI5Element);
9
+ _customElement = _interopRequireDefault(_customElement);
10
+ _property = _interopRequireDefault(_property);
11
+ _slot = _interopRequireDefault(_slot);
9
12
  _LitRenderer = _interopRequireDefault(_LitRenderer);
10
13
  _ItemNavigation = _interopRequireDefault(_ItemNavigation);
11
14
  _NavigationMode = _interopRequireDefault(_NavigationMode);
@@ -14,67 +17,16 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
14
17
  _Timeline = _interopRequireDefault(_Timeline);
15
18
  _TimelineLayout = _interopRequireDefault(_TimelineLayout);
16
19
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
17
- // Styles
18
-
20
+ var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
21
+ var c = arguments.length,
22
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
23
+ d;
24
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
25
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
26
+ };
27
+ var Timeline_1;
19
28
  const SHORT_LINE_WIDTH = "ShortLineWidth";
20
29
  const LARGE_LINE_WIDTH = "LargeLineWidth";
21
-
22
- /**
23
- * @public
24
- */
25
- const metadata = {
26
- tag: "ui5-timeline",
27
- languageAware: true,
28
- managedSlots: true,
29
- properties: /** @lends sap.ui.webcomponents.fiori.Timeline.prototype */{
30
- /**
31
- * Defines the items orientation.
32
- *
33
- * <br><br>
34
- * <b>Note:</b>
35
- * Available options are:
36
- * <ul>
37
- * <li><code>Vertical</code></li>
38
- * <li><code>Horizontal</code></li>
39
- * </ul>
40
- *
41
- * @type {TimelineLayout}
42
- * @defaultvalue "Vertical"
43
- * @since 1.0.0-rc.15
44
- * @public
45
- */
46
- layout: {
47
- type: _TimelineLayout.default,
48
- defaultValue: _TimelineLayout.default.Vertical
49
- },
50
- /**
51
- * Defines the accessible aria name of the component.
52
- *
53
- * @type {string}
54
- * @defaultvalue: ""
55
- * @public
56
- * @since 1.2.0
57
- */
58
- accessibleName: {
59
- type: String
60
- }
61
- },
62
- slots: /** @lends sap.ui.webcomponents.fiori.Timeline.prototype */{
63
- /**
64
- * Determines the content of the <code>ui5-timeline</code>.
65
- *
66
- * @type {sap.ui.webcomponents.fiori.ITimelineItem[]}
67
- * @slot items
68
- * @public
69
- */
70
- "default": {
71
- propertyName: "items",
72
- type: HTMLElement,
73
- individualSlots: true
74
- }
75
- }
76
- };
77
-
78
30
  /**
79
31
  * @class
80
32
  *
@@ -88,47 +40,32 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
88
40
  *
89
41
  * @constructor
90
42
  * @author SAP SE
91
- * @alias sap.ui.webcomponents.fiori.Timeline
92
- * @extends UI5Element
43
+ * @alias sap.ui.webc.fiori.Timeline
44
+ * @extends sap.ui.webc.base.UI5Element
93
45
  * @tagname ui5-timeline
94
- * @appenddocs TimelineItem
46
+ * @appenddocs sap.ui.webc.fiori.TimelineItem
95
47
  * @public
96
48
  * @since 0.8.0
97
49
  */
98
- class Timeline extends _UI5Element.default {
99
- static get metadata() {
100
- return metadata;
101
- }
102
- static get styles() {
103
- return _Timeline.default;
104
- }
105
- static get render() {
106
- return _LitRenderer.default;
107
- }
108
- static get template() {
109
- return _TimelineTemplate.default;
110
- }
50
+ let Timeline = Timeline_1 = class Timeline extends _UI5Element.default {
111
51
  constructor() {
112
52
  super();
113
53
  this._itemNavigation = new _ItemNavigation.default(this, {
114
54
  getItemsCallback: () => this.items
115
55
  });
116
56
  }
117
- static get dependencies() {
118
- return [_TimelineItem.default];
119
- }
120
57
  static async onDefine() {
121
- Timeline.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
58
+ Timeline_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
122
59
  }
123
60
  get ariaLabel() {
124
- return this.accessibleName ? `${Timeline.i18nBundle.getText(_i18nDefaults.TIMELINE_ARIA_LABEL)} ${this.accessibleName}` : Timeline.i18nBundle.getText(_i18nDefaults.TIMELINE_ARIA_LABEL);
61
+ return this.accessibleName ? `${Timeline_1.i18nBundle.getText(_i18nDefaults.TIMELINE_ARIA_LABEL)} ${this.accessibleName}` : Timeline_1.i18nBundle.getText(_i18nDefaults.TIMELINE_ARIA_LABEL);
125
62
  }
126
- _onfocusin(event) {
127
- const target = event.target;
63
+ _onfocusin(e) {
64
+ const target = e.target;
128
65
  this._itemNavigation.setCurrentItem(target);
129
66
  }
130
67
  onBeforeRendering() {
131
- this._itemNavigation.navigationMode = this.layout === _TimelineLayout.default.Horizontal ? _NavigationMode.default.Horizontal : _NavigationMode.default.Vertical;
68
+ this._itemNavigation._navigationMode = this.layout === _TimelineLayout.default.Horizontal ? _NavigationMode.default.Horizontal : _NavigationMode.default.Vertical;
132
69
  for (let i = 0; i < this.items.length; i++) {
133
70
  this.items[i].layout = this.layout;
134
71
  if (this.items[i + 1] && !!this.items[i + 1].icon) {
@@ -138,31 +75,51 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
138
75
  }
139
76
  }
140
77
  }
141
- _onkeydown(event) {
142
- if ((0, _Keys.isTabNext)(event)) {
143
- if (!event.target.nameClickable || event.isMarked === "link") {
144
- this._handleTabNextOrPrevious(event, (0, _Keys.isTabNext)(event));
78
+ _onkeydown(e) {
79
+ const target = e.target;
80
+ if ((0, _Keys.isTabNext)(e)) {
81
+ if (!target.nameClickable || (0, _MarkedEvents.getEventMark)(e) === "link") {
82
+ this._handleTabNextOrPrevious(e, (0, _Keys.isTabNext)(e));
145
83
  }
146
- } else if ((0, _Keys.isTabPrevious)(event)) {
147
- this._handleTabNextOrPrevious(event);
84
+ } else if ((0, _Keys.isTabPrevious)(e)) {
85
+ this._handleTabNextOrPrevious(e);
148
86
  }
149
87
  }
150
- _handleTabNextOrPrevious(event, isNext) {
151
- const nextTargetIndex = isNext ? this.items.indexOf(event.target) + 1 : this.items.indexOf(event.target) - 1;
88
+ _handleTabNextOrPrevious(e, isNext) {
89
+ const target = e.target;
90
+ const nextTargetIndex = isNext ? this.items.indexOf(target) + 1 : this.items.indexOf(target) - 1;
152
91
  const nextTarget = this.items[nextTargetIndex];
153
92
  if (!nextTarget) {
154
93
  return;
155
94
  }
156
95
  if (nextTarget.nameClickable && !isNext) {
157
- event.preventDefault();
158
- nextTarget.shadowRoot.querySelector("[ui5-link]").focus();
96
+ e.preventDefault();
97
+ nextTarget.focusLink();
159
98
  return;
160
99
  }
161
- event.preventDefault();
100
+ e.preventDefault();
162
101
  nextTarget.focus();
163
102
  this._itemNavigation.setCurrentItem(nextTarget);
164
103
  }
165
- }
104
+ };
105
+ __decorate([(0, _property.default)({
106
+ type: _TimelineLayout.default,
107
+ defaultValue: _TimelineLayout.default.Vertical
108
+ })], Timeline.prototype, "layout", void 0);
109
+ __decorate([(0, _property.default)()], Timeline.prototype, "accessibleName", void 0);
110
+ __decorate([(0, _slot.default)({
111
+ type: HTMLElement,
112
+ individualSlots: true,
113
+ "default": true
114
+ })], Timeline.prototype, "items", void 0);
115
+ Timeline = Timeline_1 = __decorate([(0, _customElement.default)({
116
+ tag: "ui5-timeline",
117
+ languageAware: true,
118
+ renderer: _LitRenderer.default,
119
+ styles: _Timeline.default,
120
+ template: _TimelineTemplate.default,
121
+ dependencies: [_TimelineItem.default]
122
+ })], Timeline);
166
123
  Timeline.define();
167
124
  var _default = Timeline;
168
125
  _exports.default = _default;
@@ -1,4 +1,4 @@
1
- sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/main/thirdparty/Icon", "sap/ui/webc/main/thirdparty/Link", "./generated/templates/TimelineItemTemplate.lit", "./types/TimelineLayout", "./generated/themes/TimelineItem.css"], function (_exports, _UI5Element, _LitRenderer, _Icon, _Link, _TimelineItemTemplate, _TimelineLayout, _TimelineItem) {
1
+ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/event", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/main/thirdparty/Icon", "sap/ui/webc/main/thirdparty/Link", "./generated/templates/TimelineItemTemplate.lit", "./types/TimelineLayout", "./generated/themes/TimelineItem.css"], function (_exports, _UI5Element, _customElement, _event, _property, _LitRenderer, _Icon, _Link, _TimelineItemTemplate, _TimelineLayout, _TimelineItem) {
2
2
  "use strict";
3
3
 
4
4
  Object.defineProperty(_exports, "__esModule", {
@@ -6,6 +6,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
6
6
  });
7
7
  _exports.default = void 0;
8
8
  _UI5Element = _interopRequireDefault(_UI5Element);
9
+ _customElement = _interopRequireDefault(_customElement);
10
+ _event = _interopRequireDefault(_event);
11
+ _property = _interopRequireDefault(_property);
9
12
  _LitRenderer = _interopRequireDefault(_LitRenderer);
10
13
  _Icon = _interopRequireDefault(_Icon);
11
14
  _Link = _interopRequireDefault(_Link);
@@ -13,123 +16,15 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
13
16
  _TimelineLayout = _interopRequireDefault(_TimelineLayout);
14
17
  _TimelineItem = _interopRequireDefault(_TimelineItem);
15
18
  function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
16
- // Styles
17
-
19
+ var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
20
+ var c = arguments.length,
21
+ r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
22
+ d;
23
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
24
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
25
+ };
18
26
  const SHORT_LINE_WIDTH = "ShortLineWidth";
19
27
  const LARGE_LINE_WIDTH = "LargeLineWidth";
20
-
21
- /**
22
- * @public
23
- */
24
- const metadata = {
25
- tag: "ui5-timeline-item",
26
- slots: /** @lends sap.ui.webcomponents.fiori.TimelineItem.prototype */{
27
- /**
28
- * Determines the description of the <code>ui5-timeline-item</code>.
29
- *
30
- * @type {Node[]}
31
- * @slot
32
- * @public
33
- */
34
- "default": {
35
- type: Node
36
- }
37
- },
38
- properties: /** @lends sap.ui.webcomponents.fiori.TimelineItem.prototype */{
39
- /**
40
- * Defines the icon to be displayed as graphical element within the <code>ui5-timeline-item</code>.
41
- * SAP-icons font provides numerous options.
42
- * <br><br>
43
- *
44
- * See all the available icons in the <ui5-link target="_blank" href="https://openui5.hana.ondemand.com/test-resources/sap/m/demokit/iconExplorer/webapp/index.html" class="api-table-content-cell-link">Icon Explorer</ui5-link>.
45
- *
46
- * @type {string}
47
- * @defaultvalue ""
48
- * @public
49
- */
50
- icon: {
51
- type: String
52
- },
53
- /**
54
- * Defines the name of the item, displayed before the <code>title-text</code>.
55
- *
56
- * @type {string}
57
- * @defaultvalue ""
58
- * @public
59
- */
60
- name: {
61
- type: String
62
- },
63
- /**
64
- * Defines if the <code>name</code> is clickable.
65
- *
66
- * @type {boolean}
67
- * @defaultvalue false
68
- * @public
69
- */
70
- nameClickable: {
71
- type: Boolean
72
- },
73
- /**
74
- * Defines the title text of the component.
75
- *
76
- * @type {string}
77
- * @defaultvalue ""
78
- * @public
79
- */
80
- titleText: {
81
- type: String
82
- },
83
- /**
84
- * Defines the subtitle text of the component.
85
- * @type {string}
86
- * @defaultvalue ""
87
- * @public
88
- */
89
- subtitleText: {
90
- type: String
91
- },
92
- _tabIndex: {
93
- type: String,
94
- defaultValue: "-1",
95
- noAttribute: true
96
- },
97
- /**
98
- * Defines the items orientation.
99
- *
100
- * @type {TimelineLayout}
101
- * @defaultvalue "Vertical"
102
- * @private
103
- */
104
- layout: {
105
- type: _TimelineLayout.default,
106
- defaultvalue: _TimelineLayout.default.Vertical
107
- },
108
- /**
109
- * Defines the indicator line width.
110
- *
111
- * @type {string}
112
- * @private
113
- */
114
- _lineWidth: {
115
- type: String
116
- }
117
- },
118
- events: /** @lends sap.ui.webcomponents.fiori.TimelineItem.prototype */{
119
- /**
120
- * Fired when the item name is pressed either with a
121
- * click/tap or by using the Enter or Space key.
122
- * <br><br>
123
- * <b>Note:</b> The event will not be fired if the <code>name-clickable</code>
124
- * attribute is not set.
125
- *
126
- * @event sap.ui.webcomponents.fiori.TimelineItem#name-click
127
- * @public
128
- */
129
- "name-click": {}
130
- }
131
- };
132
-
133
28
  /**
134
29
  * @class
135
30
  *
@@ -139,33 +34,33 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
139
34
  *
140
35
  * @constructor
141
36
  * @author SAP SE
142
- * @alias sap.ui.webcomponents.fiori.TimelineItem
143
- * @extends UI5Element
37
+ * @alias sap.ui.webc.fiori.TimelineItem
38
+ * @extends sap.ui.webc.base.UI5Element
144
39
  * @tagname ui5-timeline-item
145
- * @implements sap.ui.webcomponents.fiori.ITimelineItem
40
+ * @implements sap.ui.webc.fiori.ITimelineItem
146
41
  * @public
147
42
  */
148
- class TimelineItem extends _UI5Element.default {
149
- static get metadata() {
150
- return metadata;
151
- }
152
- static get render() {
153
- return _LitRenderer.default;
154
- }
155
- static get template() {
156
- return _TimelineItemTemplate.default;
157
- }
158
- static get styles() {
159
- return _TimelineItem.default;
160
- }
43
+ let TimelineItem = class TimelineItem extends _UI5Element.default {
44
+ /**
45
+ * Determines the description of the <code>ui5-timeline-item</code>.
46
+ *
47
+ * @type {Node[]}
48
+ * @name sap.ui.webc.fiori.TimelineItem.prototype.default
49
+ * @slot
50
+ * @public
51
+ */
161
52
  constructor() {
162
53
  super();
163
54
  }
164
55
  onNamePress() {
165
56
  this.fireEvent("name-click", {});
166
57
  }
167
- static get dependencies() {
168
- return [_Icon.default, _Link.default];
58
+ /**
59
+ * Focus the internal link.
60
+ * @protected
61
+ */
62
+ focusLink() {
63
+ this.shadowRoot.querySelector("[ui5-link]")?.focus();
169
64
  }
170
65
  get classes() {
171
66
  return {
@@ -181,7 +76,40 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
181
76
  }
182
77
  };
183
78
  }
184
- }
79
+ };
80
+ __decorate([(0, _property.default)()], TimelineItem.prototype, "icon", void 0);
81
+ __decorate([(0, _property.default)()], TimelineItem.prototype, "name", void 0);
82
+ __decorate([(0, _property.default)({
83
+ type: Boolean
84
+ })], TimelineItem.prototype, "nameClickable", void 0);
85
+ __decorate([(0, _property.default)()], TimelineItem.prototype, "titleText", void 0);
86
+ __decorate([(0, _property.default)()], TimelineItem.prototype, "subtitleText", void 0);
87
+ __decorate([(0, _property.default)({
88
+ defaultValue: "-1",
89
+ noAttribute: true
90
+ })], TimelineItem.prototype, "_tabIndex", void 0);
91
+ __decorate([(0, _property.default)({
92
+ type: _TimelineLayout.default,
93
+ defaultValue: _TimelineLayout.default.Vertical
94
+ })], TimelineItem.prototype, "layout", void 0);
95
+ __decorate([(0, _property.default)()], TimelineItem.prototype, "_lineWidth", void 0);
96
+ TimelineItem = __decorate([(0, _customElement.default)({
97
+ tag: "ui5-timeline-item",
98
+ renderer: _LitRenderer.default,
99
+ styles: _TimelineItem.default,
100
+ template: _TimelineItemTemplate.default,
101
+ dependencies: [_Icon.default, _Link.default]
102
+ })
103
+ /**
104
+ * Fired when the item name is pressed either with a
105
+ * click/tap or by using the Enter or Space key.
106
+ * <br><br>
107
+ * <b>Note:</b> The event will not be fired if the <code>name-clickable</code>
108
+ * attribute is not set.
109
+ *
110
+ * @event sap.ui.webc.fiori.TimelineItem#name-click
111
+ * @public
112
+ */, (0, _event.default)("name-click")], TimelineItem);
185
113
  TimelineItem.define();
186
114
  var _default = TimelineItem;
187
115
  _exports.default = _default;