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

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (651) hide show
  1. package/.reuse/dep5 +35 -15
  2. package/LICENSES/LicenseRef-tzdata-PublicDomain.txt +5 -0
  3. package/THIRDPARTY.txt +64 -21
  4. package/package.json +8 -4
  5. package/src/sap/ui/webc/fiori/.library +9 -2
  6. package/src/sap/ui/webc/fiori/Bar.js +3 -3
  7. package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +2 -2
  8. package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
  9. package/src/sap/ui/webc/fiori/FilterItem.js +1 -1
  10. package/src/sap/ui/webc/fiori/FilterItemOption.js +1 -1
  11. package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +2 -2
  12. package/src/sap/ui/webc/fiori/IllustratedMessage.js +21 -1
  13. package/src/sap/ui/webc/fiori/MediaGallery.js +2 -2
  14. package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
  15. package/src/sap/ui/webc/fiori/NotificationAction.js +2 -2
  16. package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -2
  17. package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -2
  18. package/src/sap/ui/webc/fiori/Page.js +2 -2
  19. package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
  20. package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -2
  21. package/src/sap/ui/webc/fiori/ShellBar.js +2 -2
  22. package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
  23. package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
  24. package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -2
  25. package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -2
  26. package/src/sap/ui/webc/fiori/SortItem.js +1 -1
  27. package/src/sap/ui/webc/fiori/Timeline.js +1 -1
  28. package/src/sap/ui/webc/fiori/TimelineItem.js +2 -2
  29. package/src/sap/ui/webc/fiori/UploadCollection.js +1 -1
  30. package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
  31. package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +17 -2
  32. package/src/sap/ui/webc/fiori/Wizard.js +1 -1
  33. package/src/sap/ui/webc/fiori/WizardStep.js +2 -2
  34. package/src/sap/ui/webc/fiori/lib/zxing.js +24247 -0
  35. package/src/sap/ui/webc/fiori/library.config.js +16 -1
  36. package/src/sap/ui/webc/fiori/library.js +57 -12
  37. package/src/sap/ui/webc/fiori/thirdparty/Assets.js +3 -5
  38. package/src/sap/ui/webc/fiori/thirdparty/Bar.js +211 -88
  39. package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +239 -18952
  40. package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +571 -293
  41. package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +89 -30
  42. package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +79 -26
  43. package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +806 -432
  44. package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +458 -148
  45. package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +148 -35
  46. package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +631 -342
  47. package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +354 -193
  48. package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +115 -40
  49. package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +251 -127
  50. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +407 -238
  51. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +280 -144
  52. package/src/sap/ui/webc/fiori/thirdparty/Page.js +234 -97
  53. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +206 -116
  54. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +265 -121
  55. package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +1186 -752
  56. package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +107 -44
  57. package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +319 -178
  58. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +150 -52
  59. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +107 -38
  60. package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +78 -26
  61. package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +195 -107
  62. package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +210 -96
  63. package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +381 -191
  64. package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +507 -263
  65. package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +757 -410
  66. package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +1022 -567
  67. package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +171 -46
  68. package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +230 -106
  69. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -1
  70. package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -1
  71. package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGalleryItem.css +1 -1
  72. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -1
  73. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -1
  74. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -1
  75. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -1
  76. package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -1
  77. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -1
  78. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -1
  79. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -1
  80. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
  81. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
  82. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
  83. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
  84. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
  85. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
  86. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
  87. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
  88. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
  89. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
  90. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
  91. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
  92. package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +342 -244
  93. package/src/sap/ui/webc/fiori/thirdparty/features/CoPilotAnimation.js +8 -8
  94. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -0
  95. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -0
  96. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -0
  97. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -0
  98. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -0
  99. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -0
  100. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -0
  101. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -0
  102. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -0
  103. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -0
  104. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -0
  105. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -0
  106. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -0
  107. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -0
  108. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -0
  109. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -0
  110. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -0
  111. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -0
  112. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -0
  113. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -0
  114. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -0
  115. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -0
  116. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_in.json.js +1 -0
  117. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -0
  118. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -0
  119. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -0
  120. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -0
  121. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -0
  122. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -0
  123. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -0
  124. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -0
  125. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -0
  126. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -0
  127. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -0
  128. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -0
  129. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -0
  130. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -0
  131. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -0
  132. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -0
  133. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -0
  134. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -0
  135. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -0
  136. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -0
  137. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -0
  138. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -0
  139. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -0
  140. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -0
  141. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -0
  142. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -0
  143. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -0
  144. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -0
  145. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -0
  146. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -0
  147. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -0
  148. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -0
  149. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -0
  150. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -0
  151. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -0
  152. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -0
  153. package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -0
  154. package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +588 -123
  155. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +58 -30
  156. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +169 -115
  157. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +11 -4
  158. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +11 -4
  159. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +11 -4
  160. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +11 -4
  161. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +23 -10
  162. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +17 -7
  163. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +23 -10
  164. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -12
  165. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +32 -16
  166. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +13 -5
  167. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +11 -4
  168. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -12
  169. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +11 -4
  170. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +15 -6
  171. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +60 -25
  172. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +13 -5
  173. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +32 -16
  174. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +23 -10
  175. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +13 -5
  176. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +42 -26
  177. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +15 -6
  178. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +44 -22
  179. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +13 -5
  180. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +19 -8
  181. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +15 -6
  182. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +18 -10
  183. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +18 -10
  184. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +18 -10
  185. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +18 -10
  186. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +18 -10
  187. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +18 -10
  188. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +18 -10
  189. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +18 -10
  190. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +18 -10
  191. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +18 -10
  192. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +18 -10
  193. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +18 -10
  194. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +18 -10
  195. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +18 -10
  196. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +18 -10
  197. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +18 -10
  198. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +18 -10
  199. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +18 -10
  200. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +18 -10
  201. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +18 -10
  202. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +18 -10
  203. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +18 -10
  204. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +18 -10
  205. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +18 -10
  206. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +18 -10
  207. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +18 -10
  208. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +18 -10
  209. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +18 -10
  210. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +13 -6
  211. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +13 -6
  212. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +13 -6
  213. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +13 -6
  214. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +13 -6
  215. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +13 -6
  216. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +13 -6
  217. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +13 -6
  218. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +13 -6
  219. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +13 -6
  220. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +13 -6
  221. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +13 -6
  222. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddColumn.js +40 -19
  223. package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddPeople.js +40 -19
  224. package/src/sap/ui/webc/fiori/thirdparty/illustrations/BalloonSky.js +40 -19
  225. package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +40 -19
  226. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Connection.js +40 -19
  227. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyCalendar.js +40 -19
  228. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyList.js +40 -19
  229. package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyPlanningCalendar.js +40 -19
  230. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ErrorScreen.js +40 -19
  231. package/src/sap/ui/webc/fiori/thirdparty/illustrations/FilterTable.js +40 -19
  232. package/src/sap/ui/webc/fiori/thirdparty/illustrations/GroupTable.js +40 -19
  233. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +40 -19
  234. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +40 -19
  235. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +40 -19
  236. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoFilterResults.js +40 -19
  237. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +40 -19
  238. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail_v1.js +40 -19
  239. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +40 -19
  240. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +40 -19
  241. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems_v1.js +40 -19
  242. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +40 -19
  243. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +40 -19
  244. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks_v1.js +40 -19
  245. package/src/sap/ui/webc/fiori/thirdparty/illustrations/PageNotFound.js +40 -19
  246. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ReloadScreen.js +40 -19
  247. package/src/sap/ui/webc/fiori/thirdparty/illustrations/ResizeColumn.js +40 -19
  248. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchEarth.js +40 -19
  249. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchFolder.js +40 -19
  250. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBalloon.js +40 -19
  251. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBell.js +40 -19
  252. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCalendar.js +40 -19
  253. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCheckMark.js +40 -19
  254. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleConnection.js +40 -19
  255. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyDoc.js +40 -19
  256. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyList.js +40 -19
  257. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleError.js +40 -19
  258. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMagnifier.js +40 -19
  259. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMail.js +40 -19
  260. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNoSavedItems.js +40 -19
  261. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNotFoundMagnifier.js +40 -19
  262. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleReload.js +40 -19
  263. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleTask.js +40 -19
  264. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SleepingBell.js +40 -19
  265. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SortColumn.js +40 -19
  266. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessBalloon.js +40 -19
  267. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessCheckMark.js +40 -19
  268. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessHighFive.js +40 -19
  269. package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessScreen.js +40 -19
  270. package/src/sap/ui/webc/fiori/thirdparty/illustrations/Tent.js +40 -19
  271. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +40 -19
  272. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoadImage.js +40 -19
  273. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +40 -19
  274. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadCollection.js +40 -19
  275. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddColumn.js +9 -6
  276. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddPeople.js +9 -6
  277. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BalloonSky.js +9 -6
  278. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +9 -6
  279. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Connection.js +9 -6
  280. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyCalendar.js +9 -6
  281. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyList.js +9 -6
  282. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +9 -6
  283. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ErrorScreen.js +9 -6
  284. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-FilterTable.js +9 -6
  285. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-GroupTable.js +9 -6
  286. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +9 -6
  287. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +9 -6
  288. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +9 -6
  289. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoFilterResults.js +9 -6
  290. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +9 -6
  291. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail_v1.js +9 -6
  292. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +9 -6
  293. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +9 -6
  294. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +9 -6
  295. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +9 -6
  296. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +9 -6
  297. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks_v1.js +9 -6
  298. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-PageNotFound.js +9 -6
  299. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ReloadScreen.js +9 -6
  300. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ResizeColumn.js +9 -6
  301. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchEarth.js +9 -6
  302. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchFolder.js +9 -6
  303. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBalloon.js +9 -6
  304. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBell.js +9 -6
  305. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCalendar.js +9 -6
  306. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCheckMark.js +9 -6
  307. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleConnection.js +9 -6
  308. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +9 -6
  309. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyList.js +9 -6
  310. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleError.js +9 -6
  311. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMagnifier.js +9 -6
  312. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMail.js +9 -6
  313. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +9 -6
  314. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +9 -6
  315. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleReload.js +9 -6
  316. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleTask.js +9 -6
  317. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SleepingBell.js +9 -6
  318. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SortColumn.js +9 -6
  319. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessBalloon.js +9 -6
  320. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -6
  321. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessHighFive.js +9 -6
  322. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessScreen.js +9 -6
  323. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Tent.js +9 -6
  324. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +9 -6
  325. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoadImage.js +9 -6
  326. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +9 -6
  327. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadCollection.js +9 -6
  328. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddColumn.js +9 -6
  329. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddPeople.js +9 -6
  330. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BalloonSky.js +9 -6
  331. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +9 -6
  332. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Connection.js +9 -6
  333. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyCalendar.js +9 -6
  334. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyList.js +9 -6
  335. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +9 -6
  336. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ErrorScreen.js +9 -6
  337. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-FilterTable.js +9 -6
  338. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-GroupTable.js +9 -6
  339. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +9 -6
  340. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +9 -6
  341. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +9 -6
  342. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoFilterResults.js +9 -6
  343. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +9 -6
  344. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail_v1.js +9 -6
  345. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +9 -6
  346. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +9 -6
  347. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems_v1.js +9 -6
  348. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +9 -6
  349. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +9 -6
  350. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks_v1.js +9 -6
  351. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-PageNotFound.js +9 -6
  352. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ReloadScreen.js +9 -6
  353. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ResizeColumn.js +9 -6
  354. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchEarth.js +9 -6
  355. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchFolder.js +9 -6
  356. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBalloon.js +9 -6
  357. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBell.js +9 -6
  358. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCalendar.js +9 -6
  359. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCheckMark.js +9 -6
  360. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleConnection.js +9 -6
  361. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +9 -6
  362. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyList.js +9 -6
  363. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleError.js +9 -6
  364. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMagnifier.js +9 -6
  365. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMail.js +9 -6
  366. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +9 -6
  367. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +9 -6
  368. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleReload.js +9 -6
  369. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleTask.js +9 -6
  370. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SleepingBell.js +9 -6
  371. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SortColumn.js +9 -6
  372. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessBalloon.js +9 -6
  373. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessCheckMark.js +9 -6
  374. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessHighFive.js +9 -6
  375. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessScreen.js +9 -6
  376. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Tent.js +9 -6
  377. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +9 -6
  378. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoadImage.js +9 -6
  379. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +9 -6
  380. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadCollection.js +9 -6
  381. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddColumn.js +9 -6
  382. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddPeople.js +9 -6
  383. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BalloonSky.js +9 -6
  384. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +9 -6
  385. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Connection.js +9 -6
  386. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyCalendar.js +9 -6
  387. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyList.js +9 -6
  388. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +9 -6
  389. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ErrorScreen.js +9 -6
  390. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-FilterTable.js +9 -6
  391. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-GroupTable.js +9 -6
  392. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +9 -6
  393. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +9 -6
  394. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +9 -6
  395. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoFilterResults.js +9 -6
  396. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +9 -6
  397. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail_v1.js +9 -6
  398. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +9 -6
  399. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +9 -6
  400. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems_v1.js +9 -6
  401. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +9 -6
  402. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +9 -6
  403. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks_v1.js +9 -6
  404. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-PageNotFound.js +9 -6
  405. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ReloadScreen.js +9 -6
  406. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ResizeColumn.js +9 -6
  407. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchEarth.js +9 -6
  408. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchFolder.js +9 -6
  409. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBalloon.js +9 -6
  410. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBell.js +9 -6
  411. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCalendar.js +9 -6
  412. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCheckMark.js +9 -6
  413. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleConnection.js +9 -6
  414. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +9 -6
  415. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyList.js +9 -6
  416. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleError.js +9 -6
  417. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -6
  418. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMail.js +9 -6
  419. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +9 -6
  420. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +9 -6
  421. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleReload.js +9 -6
  422. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleTask.js +9 -6
  423. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SleepingBell.js +9 -6
  424. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SortColumn.js +9 -6
  425. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessBalloon.js +9 -6
  426. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessCheckMark.js +9 -6
  427. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessHighFive.js +9 -6
  428. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessScreen.js +9 -6
  429. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Tent.js +9 -6
  430. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +9 -6
  431. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoadImage.js +9 -6
  432. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +9 -6
  433. package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadCollection.js +9 -6
  434. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea.js +36 -15
  435. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea2.js +36 -15
  436. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBPMNFlow.js +36 -15
  437. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBar.js +36 -15
  438. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBullet.js +36 -15
  439. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartDoughnut.js +36 -15
  440. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartFlow.js +36 -15
  441. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartGantt.js +36 -15
  442. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartOrg.js +36 -15
  443. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartPie.js +36 -15
  444. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +36 -15
  445. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +36 -15
  446. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Components.js +36 -15
  447. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +36 -15
  448. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +36 -15
  449. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +36 -15
  450. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +36 -15
  451. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +36 -15
  452. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +36 -15
  453. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +36 -15
  454. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +36 -15
  455. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +36 -15
  456. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Secrets.js +36 -15
  457. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +36 -15
  458. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +36 -15
  459. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +36 -15
  460. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +36 -15
  461. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +36 -15
  462. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Systems.js +36 -15
  463. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Teams.js +36 -15
  464. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Tools.js +36 -15
  465. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnableToLoad.js +36 -15
  466. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +36 -15
  467. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +36 -15
  468. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/User2.js +36 -15
  469. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea.js +21 -18
  470. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea2.js +19 -16
  471. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +20 -17
  472. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBar.js +19 -16
  473. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBullet.js +21 -18
  474. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +20 -17
  475. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartFlow.js +20 -17
  476. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartGantt.js +24 -21
  477. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartOrg.js +22 -19
  478. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartPie.js +19 -16
  479. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +13 -10
  480. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +20 -17
  481. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Components.js +16 -13
  482. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +18 -15
  483. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +24 -21
  484. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +23 -20
  485. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +19 -16
  486. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +25 -22
  487. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -19
  488. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -15
  489. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -19
  490. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +22 -19
  491. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Secrets.js +19 -16
  492. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +23 -20
  493. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +18 -15
  494. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +17 -14
  495. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +17 -14
  496. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +17 -14
  497. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Systems.js +19 -16
  498. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Teams.js +24 -21
  499. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Tools.js +19 -16
  500. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnableToLoad.js +17 -14
  501. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +19 -16
  502. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +18 -15
  503. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-User2.js +20 -17
  504. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea.js +29 -26
  505. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea2.js +26 -23
  506. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +28 -25
  507. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBar.js +26 -23
  508. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBullet.js +27 -24
  509. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartDoughnut.js +26 -23
  510. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartFlow.js +27 -24
  511. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartGantt.js +33 -30
  512. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartOrg.js +34 -31
  513. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartPie.js +25 -22
  514. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +16 -13
  515. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +37 -34
  516. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Components.js +23 -20
  517. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +21 -18
  518. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +28 -25
  519. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +42 -39
  520. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +29 -26
  521. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +26 -23
  522. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +25 -22
  523. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +27 -24
  524. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -20
  525. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +27 -24
  526. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Secrets.js +22 -19
  527. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +24 -21
  528. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +25 -22
  529. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +24 -21
  530. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +25 -22
  531. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +27 -24
  532. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Systems.js +20 -17
  533. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Teams.js +27 -24
  534. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Tools.js +26 -23
  535. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnableToLoad.js +28 -25
  536. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +22 -19
  537. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +29 -26
  538. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-User2.js +29 -26
  539. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea.js +20 -17
  540. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea2.js +14 -11
  541. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +16 -13
  542. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBar.js +15 -12
  543. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBullet.js +17 -14
  544. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartDoughnut.js +16 -13
  545. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartFlow.js +15 -12
  546. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartGantt.js +19 -16
  547. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartOrg.js +13 -10
  548. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartPie.js +15 -12
  549. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +13 -10
  550. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +20 -17
  551. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Components.js +12 -9
  552. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +16 -13
  553. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +23 -20
  554. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +17 -14
  555. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +20 -17
  556. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +24 -21
  557. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -15
  558. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -12
  559. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -15
  560. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +21 -18
  561. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Secrets.js +16 -13
  562. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -18
  563. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +16 -13
  564. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +16 -13
  565. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +16 -13
  566. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +16 -13
  567. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Systems.js +17 -14
  568. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Teams.js +20 -17
  569. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Tools.js +14 -11
  570. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnableToLoad.js +16 -13
  571. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +18 -15
  572. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +17 -14
  573. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-User2.js +17 -14
  574. package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +60 -17
  575. package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +145 -27
  576. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +78 -0
  577. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +653 -106
  578. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +49 -15
  579. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +53 -16
  580. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +46 -15
  581. package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +46 -15
  582. package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +58 -16
  583. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +60 -17
  584. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +48 -15
  585. package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +67 -18
  586. package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +48 -15
  587. package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +55 -16
  588. package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +62 -17
  589. package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +49 -15
  590. package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +92 -65
  591. package/ui5.yaml +141 -4
  592. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ar.js +0 -124
  593. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_bg.js +0 -124
  594. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ca.js +0 -124
  595. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cs.js +0 -124
  596. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cy.js +0 -124
  597. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_da.js +0 -124
  598. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_de.js +0 -124
  599. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_el.js +0 -124
  600. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en.js +0 -124
  601. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_GB.js +0 -124
  602. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_sappsd.js +0 -124
  603. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saprigi.js +0 -124
  604. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saptrc.js +0 -124
  605. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es.js +0 -124
  606. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es_MX.js +0 -124
  607. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_et.js +0 -124
  608. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fi.js +0 -124
  609. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr.js +0 -124
  610. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr_CA.js +0 -124
  611. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hi.js +0 -124
  612. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hr.js +0 -124
  613. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hu.js +0 -124
  614. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_in.js +0 -53
  615. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_it.js +0 -124
  616. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_iw.js +0 -124
  617. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ja.js +0 -124
  618. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_kk.js +0 -124
  619. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ko.js +0 -124
  620. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lt.js +0 -124
  621. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lv.js +0 -124
  622. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ms.js +0 -124
  623. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_nl.js +0 -124
  624. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_no.js +0 -124
  625. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pl.js +0 -124
  626. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt.js +0 -124
  627. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt_PT.js +0 -124
  628. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ro.js +0 -124
  629. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ru.js +0 -124
  630. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sh.js +0 -124
  631. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sk.js +0 -124
  632. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sl.js +0 -124
  633. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sv.js +0 -124
  634. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_th.js +0 -124
  635. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_tr.js +0 -124
  636. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_uk.js +0 -124
  637. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_vi.js +0 -124
  638. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_CN.js +0 -124
  639. package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_TW.js +0 -124
  640. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css.js +0 -13
  641. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css10.js +0 -13
  642. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css11.js +0 -13
  643. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css12.js +0 -13
  644. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css2.js +0 -13
  645. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css3.js +0 -13
  646. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css4.js +0 -13
  647. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css5.js +0 -13
  648. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css6.js +0 -13
  649. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css7.js +0 -13
  650. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css8.js +0 -13
  651. package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css9.js +0 -13
package/.reuse/dep5 CHANGED
@@ -43,6 +43,14 @@ License: Apache-2.0
43
43
  #
44
44
 
45
45
 
46
+ # Library: sap.m:
47
+
48
+ Files: src/sap.m/src/sap/m/_thirdparty/purify.js
49
+ Copyright: Mario Heiderich
50
+ License: Apache-2.0
51
+ Comment: these files belong to: purify.js
52
+
53
+
46
54
  # Library: sap.ui.codeeditor:
47
55
 
48
56
  Files: src/sap.ui.codeeditor/src/sap/ui/codeeditor/js/ace/*
@@ -127,16 +135,21 @@ Copyright:
127
135
  License: Apache-2.0 and MIT
128
136
  Comment: these files contain content from SAP and jQuery UI 1.11: zIndex.js is overall written by SAP, but contains an implementation of the function 'fnzIndex' which is taken from jQuery UI Datepicker 1.11.1
129
137
 
130
- Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit.*
138
+ Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit.css src/sap.ui.core/src/sap/ui/thirdparty/qunit.js
131
139
  Copyright: jQuery Foundation and other contributors
132
140
  License: MIT
133
141
  Comment: these files belong to: QUnit
134
142
 
135
- Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.*
143
+ Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.css src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.js
136
144
  Copyright: jQuery Foundation and other contributors
137
145
  License: MIT
138
146
  Comment: these files belong to: QUnit 2
139
147
 
148
+ Files: src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/qunit-2.18.css src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/qunit-2.18.js
149
+ Copyright: jQuery Foundation and other contributors
150
+ License: MIT
151
+ Comment: these files belong to: QUnit 2.18
152
+
140
153
  Files: src/sap.ui.core/src/sap/ui/thirdparty/jquery-compat.js
141
154
  Copyright: OpenJS Foundation and other contributors
142
155
  License: MIT
@@ -154,7 +167,7 @@ Copyright:
154
167
  License: Apache-2.0 and MIT
155
168
  Comment: these files contain content from SAP and jQuery.rtl-scroll-type: _FeatureDetection.js is overall written by SAP, but contains code which is inspired by jQuery.rtl-scroll-type
156
169
 
157
- Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite*
170
+ Files: src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite.css src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite.js
158
171
  Copyright: jQuery Foundation and other contributors
159
172
  License: MIT
160
173
  Comment: these files belong to: QUnit Composite
@@ -234,6 +247,11 @@ Copyright: 2010-2017, Christian Johansen, christian@cjohansen.no
234
247
  License: BSD-3-Clause
235
248
  Comment: these files belong to: SinonJS
236
249
 
250
+ Files: src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/sinon-14.0.js
251
+ Copyright: 2010-2022, Christian Johansen, christian@cjohansen.no
252
+ License: BSD-3-Clause
253
+ Comment: these files belong to: SinonJS 14
254
+
237
255
  Files: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
238
256
  Copyright: 2010-2011, Christian Johansen
239
257
  License: BSD-3-Clause
@@ -303,7 +321,7 @@ Copyright: 2018 Michael Mclaughlin
303
321
  License: MIT
304
322
  Comment: these files belong to: bignumber.js
305
323
 
306
- Files: src/sap.ui.core/src/sap/ui/base/util/restricted/_/lodash.custom.js
324
+ Files: src/sap.ui.core/src/sap/base/util/restricted/_/lodash.custom.js
307
325
  Copyright: OpenJS Foundation and other contributors
308
326
  License: MIT
309
327
  Comment: these files belong to: lodash
@@ -313,7 +331,7 @@ Copyright: 2021 Mathias Nater
313
331
  License: MIT
314
332
  Comment: these files belong to: Hyphenopoly
315
333
 
316
- Files: src/sap.ui.core/src/sap/ui/base/util/restricted/_CancelablePromise.js
334
+ Files: src/sap.ui.core/src/sap/base/util/restricted/_CancelablePromise.js
317
335
  Copyright:
318
336
  Sindre Sorhus <sindresorhus@gmail.com>
319
337
  2014-present Sebastian McKenzie and other contributors
@@ -339,6 +357,13 @@ Copyright:
339
357
  License: Apache-2.0 and ISC
340
358
  Comment: these files contain content from SAP and node-lru-cache: LRUPersistentCache.js is overall written by SAP, but portions ('Least Recently Used' logic) are taken from the node-lru-cache project (see https://github.com/isaacs/node-lru-cache/blob/v2.7.3/README.md) and modified.
341
359
 
360
+ Files: src/sap.ui.core/test/sap/ui/core/qunit/i18n/helper/_timezones.js
361
+ Copyright:
362
+ 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
363
+ Arthur David Olson, Paul Eggert and other contributors
364
+ License: Apache-2.0 and LicenseRef-tzdata-PublicDomain
365
+ Comment: these files contain content from SAP and Time Zone Database: _timezones.js is overall written by SAP, but the list of IANA timezone IDs is taken from the Timezone Database
366
+
342
367
 
343
368
  # Library: sap.ui.documentation:
344
369
 
@@ -401,16 +426,6 @@ License: MIT
401
426
  Comment: these files belong to: @cfworker/json-schema
402
427
 
403
428
 
404
- # Library: sap.ui.mdc:
405
-
406
- Files: src/sap.ui.mdc/test/sap/ui/mdc/sample/field/filterfieldwithoperators/BoolExprTool.js
407
- Copyright:
408
- 2009-2022 SAP SE or an SAP affiliate company and OpenUI5 contributors
409
- 2015 unnikked
410
- License: Apache-2.0 and MIT
411
- Comment: these files contain content from SAP and BooleanExpressionEvaluator: BoolExprTool.js is authored by SAP, but partly inspired by BooleanExpressionEvaluator
412
-
413
-
414
429
  # Library: sap.ui.webc.common:
415
430
 
416
431
  Files: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theming/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/localization/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-tnt/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-business-suite/*.*
@@ -431,6 +446,11 @@ Copyright: SAP
431
446
  License: Apache-2.0
432
447
  Comment: these files belong to: UI5 Web Components
433
448
 
449
+ Files: src/sap.ui.webc.fiori/src/sap/ui/webc/fiori/lib/zxing.js
450
+ Copyright: 2005 Sun Microsystems, Inc.; 2010-2014 University of Manchester; 2010-2015 Stian Soiland-Reyes; 2015 Peter Hull
451
+ License: Apache-2.0
452
+ Comment: these files belong to: ZXing
453
+
434
454
 
435
455
  # Library: sap.ui.webc.main:
436
456
 
@@ -0,0 +1,5 @@
1
+ Unless specified below, all files in the tz code and data (including
2
+ this LICENSE file) are in the public domain.
3
+
4
+ If the files date.c, newstrftime.3, and strftime.c are present, they
5
+ contain material derived from BSD and use the BSD 3-clause license.
package/THIRDPARTY.txt CHANGED
@@ -4,6 +4,15 @@ each subcomponent.
4
4
  The full text of all referenced licenses is appended at the end of this file.
5
5
 
6
6
 
7
+ Library: sap.m:
8
+
9
+ Component: purify.js, version: 2.3.8
10
+ Copyright: Mario Heiderich
11
+ License: Apache-2.0
12
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
13
+ Contained in: src/sap.m/src/sap/m/_thirdparty/purify.js
14
+
15
+
7
16
  Library: sap.ui.codeeditor:
8
17
 
9
18
  Component: Ace (Ajax.org Cloud9 Editor), version: 1.4.13
@@ -68,13 +77,22 @@ Component: QUnit, version: 1.18.0
68
77
  Copyright: jQuery Foundation and other contributors
69
78
  License: MIT
70
79
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
71
- Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit.*
80
+ Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit.css
81
+ src/sap.ui.core/src/sap/ui/thirdparty/qunit.js
72
82
 
73
83
  Component: QUnit 2, version: 2.3.2
74
84
  Copyright: jQuery Foundation and other contributors
75
85
  License: MIT
76
86
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
77
- Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.*
87
+ Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.css
88
+ src/sap.ui.core/src/sap/ui/thirdparty/qunit-2.js
89
+
90
+ Component: QUnit 2.18, version: 2.18.0
91
+ Copyright: jQuery Foundation and other contributors
92
+ License: MIT
93
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
94
+ Contained in: src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/qunit-2.18.css
95
+ src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/qunit-2.18.js
78
96
 
79
97
  Component: jQuery-Migrate, version: 3.3.1
80
98
  Copyright: OpenJS Foundation and other contributors
@@ -98,7 +116,8 @@ Component: QUnit Composite, version: 1.0.2-pre
98
116
  Copyright: jQuery Foundation and other contributors
99
117
  License: MIT
100
118
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
101
- Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite*
119
+ Contained in: src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite.css
120
+ src/sap.ui.core/src/sap/ui/thirdparty/qunit-composite.js
102
121
 
103
122
  Component: JUnit Reporter for QUnit, version: 1.1.1
104
123
  Copyright: jQuery Foundation and other contributors
@@ -191,13 +210,19 @@ License: BSD-3-Clause
191
210
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
192
211
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-4.js
193
212
 
213
+ Component: SinonJS 14, version: 14.0.0
214
+ Copyright: 2010-2022, Christian Johansen, christian@cjohansen.no
215
+ License: BSD-3-Clause
216
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
217
+ Contained in: src/sap.ui.core/test/sap/ui/core/qunit/thirdparty/sinon-14.0.js
218
+
194
219
  Component: Sinon-qunit, version: 2.0.0
195
220
  Copyright: 2010-2011, Christian Johansen
196
221
  License: BSD-3-Clause
197
222
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
198
223
  Contained in: src/sap.ui.core/src/sap/ui/thirdparty/sinon-qunit.js
199
224
 
200
- Component: URI.js, version: 1.19.10
225
+ Component: URI.js, version: 1.19.11
201
226
  Copyright: Rodney Rehm
202
227
  License: MIT
203
228
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
@@ -277,7 +302,7 @@ Component: lodash, version: 4.17.21
277
302
  Copyright: OpenJS Foundation and other contributors
278
303
  License: MIT
279
304
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
280
- Contained in: src/sap.ui.core/src/sap/ui/base/util/restricted/_/lodash.custom.js
305
+ Contained in: src/sap.ui.core/src/sap/base/util/restricted/_/lodash.custom.js
281
306
 
282
307
  Component: Hyphenopoly, version: 3.4.0
283
308
  Copyright: 2021 Mathias Nater
@@ -289,13 +314,13 @@ Component: p-cancelable, version: 2.0.0
289
314
  Copyright: Sindre Sorhus <sindresorhus@gmail.com>
290
315
  License: MIT
291
316
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
292
- Contained in: src/sap.ui.core/src/sap/ui/base/util/restricted/_CancelablePromise.js
317
+ Contained in: src/sap.ui.core/src/sap/base/util/restricted/_CancelablePromise.js
293
318
 
294
319
  Component: @babel/helpers, version: 7.10.4
295
320
  Copyright: 2014-present Sebastian McKenzie and other contributors
296
321
  License: MIT
297
322
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
298
- Contained in: src/sap.ui.core/src/sap/ui/base/util/restricted/_CancelablePromise.js
323
+ Contained in: src/sap.ui.core/src/sap/base/util/restricted/_CancelablePromise.js
299
324
 
300
325
  Component: Jalaali JS
301
326
  Copyright: Behrang Norouzinia
@@ -315,6 +340,12 @@ License: ISC
315
340
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/ISC.txt
316
341
  Contained in: src/sap.ui.core/src/sap/ui/core/cache/LRUPersistentCache.js
317
342
 
343
+ Component: Time Zone Database, version: 2022a
344
+ Copyright: Arthur David Olson, Paul Eggert and other contributors
345
+ License: LicenseRef-tzdata-PublicDomain
346
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/LicenseRef-tzdata-PublicDomain.txt
347
+ Contained in: src/sap.ui.core/test/sap/ui/core/qunit/i18n/helper/_timezones.js
348
+
318
349
 
319
350
  Library: sap.ui.documentation:
320
351
 
@@ -389,18 +420,9 @@ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
389
420
  Contained in: src/sap.ui.integration/test/sap/ui/integration/demokit/cardExplorer/webapp/thirdparty/CfWorkerJsonSchemaValidator.js
390
421
 
391
422
 
392
- Library: sap.ui.mdc:
393
-
394
- Component: BooleanExpressionEvaluator, version: master-18530acbf3
395
- Copyright: 2015 unnikked
396
- License: MIT
397
- License Text: https://github.com/SAP/openui5/blob/master/LICENSES/MIT.txt
398
- Contained in: src/sap.ui.mdc/test/sap/ui/mdc/sample/field/filterfieldwithoperators/BoolExprTool.js
399
-
400
-
401
423
  Library: sap.ui.webc.common:
402
424
 
403
- Component: UI5 Web Components, version: 1.1.2
425
+ Component: UI5 Web Components, version: 1.5.0
404
426
  Copyright: SAP
405
427
  License: Apache-2.0
406
428
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
@@ -411,7 +433,7 @@ Contained in: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.*
411
433
  src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-tnt/*.*
412
434
  src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-business-suite/*.*
413
435
 
414
- Component: lit-html, version: 2.0.1
436
+ Component: lit-html, version: 2.2.2
415
437
  Copyright: Google LLC
416
438
  License: BSD-3-Clause
417
439
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/BSD-3-Clause.txt
@@ -420,16 +442,22 @@ Contained in: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/lit-html/
420
442
 
421
443
  Library: sap.ui.webc.fiori:
422
444
 
423
- Component: UI5 Web Components, version: 1.1.2
445
+ Component: UI5 Web Components, version: 1.5.0
424
446
  Copyright: SAP
425
447
  License: Apache-2.0
426
448
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
427
449
  Contained in: src/sap.ui.webc.fiori/src/sap/ui/webc/fiori/thirdparty/*.*
428
450
 
451
+ Component: ZXing, version: 0.19.1
452
+ Copyright: 2005 Sun Microsystems, Inc.; 2010-2014 University of Manchester; 2010-2015 Stian Soiland-Reyes; 2015 Peter Hull
453
+ License: Apache-2.0
454
+ License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
455
+ Contained in: src/sap.ui.webc.fiori/src/sap/ui/webc/fiori/lib/zxing.js
456
+
429
457
 
430
458
  Library: sap.ui.webc.main:
431
459
 
432
- Component: UI5 Web Components, version: 1.1.2
460
+ Component: UI5 Web Components, version: 1.5.0
433
461
  Copyright: SAP
434
462
  License: Apache-2.0
435
463
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
@@ -450,7 +478,7 @@ License: Apache-2.0
450
478
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
451
479
  Contained in: lib/jsdoc/ui5/plugin.js
452
480
 
453
- Component: SAP Theming Base Content, version: 11.1.39
481
+ Component: SAP Theming Base Content, version: 11.1.40
454
482
  Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
455
483
  License: Apache-2.0
456
484
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
@@ -980,6 +1008,21 @@ END of license: LicenseRef-JSONinJSPublicDomain
980
1008
  =================================
981
1009
 
982
1010
 
1011
+ =================================
1012
+ BEGIN of license: LicenseRef-tzdata-PublicDomain
1013
+ =================================
1014
+
1015
+ Unless specified below, all files in the tz code and data (including
1016
+ this LICENSE file) are in the public domain.
1017
+
1018
+ If the files date.c, newstrftime.3, and strftime.c are present, they
1019
+ contain material derived from BSD and use the BSD 3-clause license.
1020
+
1021
+ =================================
1022
+ END of license: LicenseRef-tzdata-PublicDomain
1023
+ =================================
1024
+
1025
+
983
1026
  =================================
984
1027
  BEGIN of license: MIT
985
1028
  =================================
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.webc.fiori",
3
- "version": "1.103.1",
3
+ "version": "1.106.0",
4
4
  "description": "OpenUI5 UI Library sap.ui.webc.fiori",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -15,9 +15,13 @@
15
15
  "type": "git",
16
16
  "url": "https://github.com/SAP/openui5.git"
17
17
  },
18
+ "scripts": {
19
+ "build": "rimraf src/sap/ui/webc/fiori/thirdparty/ && ui5-webc-prebuild",
20
+ "generate": "ui5-webc-generate"
21
+ },
18
22
  "dependencies": {
19
- "@openui5/sap.ui.core": "1.103.1",
20
- "@openui5/sap.ui.webc.main": "1.103.1",
21
- "@openui5/sap.ui.webc.common": "1.103.1"
23
+ "@openui5/sap.ui.core": "1.106.0",
24
+ "@openui5/sap.ui.webc.main": "1.106.0",
25
+ "@openui5/sap.ui.webc.common": "1.106.0"
22
26
  }
23
27
  }
@@ -3,7 +3,7 @@
3
3
 
4
4
  <name>sap.ui.webc.fiori</name>
5
5
  <vendor>SAP SE</vendor>
6
- <version>1.103.1</version>
6
+ <version>1.106.0</version>
7
7
  <copyright>OpenUI5
8
8
  * (c) Copyright 2009-2022 SAP SE or an SAP affiliate company.
9
9
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
@@ -26,18 +26,25 @@
26
26
  <!-- excludes for the JSDoc -->
27
27
  <jsdoc xmlns="http://www.sap.com/ui5/buildext/jsdoc">
28
28
  <exclude name="sap.ui.webc.fiori.thirdparty."/>
29
+ <exclude name="sap.ui.webc.fiori.lib."/>
29
30
  </jsdoc>
30
31
  <!-- excludes for the JSCoverage -->
31
32
  <jscoverage xmlns="http://www.sap.com/ui5/buildext/jscoverage">
32
33
  <exclude name="sap.ui.webc.fiori.thirdparty."/>
34
+ <exclude name="sap.ui.webc.fiori.lib."/>
33
35
  </jscoverage>
34
36
  <!-- Thirdparty references -->
35
37
  <thirdparty xmlns="http://www.sap.com/ui5/buildext/thirdparty" >
36
- <lib name="ui5-web-components" displayName="UI5 Web Components" version="1.1.2" homepage="https://sap.github.io/ui5-webcomponents/">
38
+ <lib name="ui5-web-components" displayName="UI5 Web Components" version="1.5.0" homepage="https://sap.github.io/ui5-webcomponents/">
37
39
  <license url="https://github.com/SAP/ui5-webcomponents/blob/master/LICENSE.txt" type="Apache-2.0"></license>
38
40
  <copyright>SAP</copyright>
39
41
  <pattern>sap/ui/webc/fiori/thirdparty/*.*</pattern>
40
42
  </lib>
43
+ <lib name="ZXing" displayName="ZXing" version="0.19.1" homepage="https://zxing-js.github.io/library/">
44
+ <license url="https://github.com/zxing-js/library/blob/master/LICENSE" type="Apache-2.0"></license>
45
+ <copyright>2005 Sun Microsystems, Inc.; 2010-2014 University of Manchester; 2010-2015 Stian Soiland-Reyes; 2015 Peter Hull</copyright>
46
+ <pattern>sap/ui/webc/fiori/lib/zxing.js</pattern>
47
+ </lib>
41
48
  </thirdparty>
42
49
 
43
50
  <documentation xmlns="http://www.sap.com/ui5/buildext/documentation"
@@ -32,7 +32,7 @@ sap.ui.define([
32
32
  *
33
33
  * <h3>CSS Shadow Parts</h3>
34
34
  *
35
- * <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM. <br>
35
+ * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to style elements inside the Shadow DOM. <br>
36
36
  * The <code>sap.ui.webc.fiori.Bar</code> exposes the following CSS Shadow Parts:
37
37
  * <ul>
38
38
  * <li>bar - Used to style the wrapper of the content of the component</li>
@@ -41,7 +41,7 @@ sap.ui.define([
41
41
  * <h3>Keyboard Handling</h3>
42
42
  *
43
43
  * @author SAP SE
44
- * @version 1.103.1
44
+ * @version 1.106.0
45
45
  *
46
46
  * @constructor
47
47
  * @public
@@ -61,7 +61,7 @@ sap.ui.define([
61
61
  properties: {
62
62
 
63
63
  /**
64
- * Defines the <code>sap.ui.webc.fiori.Bar</code> design.
64
+ * Defines the component's design.
65
65
  *
66
66
  * <br>
67
67
  * <br>
@@ -29,10 +29,10 @@ sap.ui.define([
29
29
  * <br>
30
30
  * Internally, the component uses the zxing-js/library third party OSS.
31
31
  *
32
- * For a list of supported barcode formats, see the <ui5-link target="_blank" href="https://github.com/zxing-js/library">zxing-js/library</ui5-link> documentation.
32
+ * For a list of supported barcode formats, see the {@link https://github.com/zxing-js/library zxing-js/library} documentation.
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.103.1
35
+ * @version 1.106.0
36
36
  *
37
37
  * @constructor
38
38
  * @public
@@ -70,7 +70,7 @@ sap.ui.define([
70
70
  * A special case allows switching the comparison mode between the main and side content. In this case, the screen is split into 50:50 percent for main vs. side content. The responsive behavior of the equal split is the same as in the standard view - the side content disappears on screen widths of less than 720 px and can only be viewed by triggering it.
71
71
  *
72
72
  * @author SAP SE
73
- * @version 1.103.1
73
+ * @version 1.106.0
74
74
  *
75
75
  * @constructor
76
76
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * <h3>Usage</h3>
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.103.1
29
+ * @version 1.106.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * <h3>Usage</h3>
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.103.1
29
+ * @version 1.106.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -25,7 +25,7 @@ sap.ui.define([
25
25
  *
26
26
  * <h3>Overview</h3>
27
27
  *
28
- * The <code>FlexibleColumnLayout</code> implements the master-detail-detail paradigm by displaying up to three pages in separate columns. There are several possible layouts that can be changed either with the component API, or by pressing the arrows, displayed between the columns.
28
+ * The <code>FlexibleColumnLayout</code> implements the list-detail-detail paradigm by displaying up to three pages in separate columns. There are several possible layouts that can be changed either with the component API, or by pressing the arrows, displayed between the columns.
29
29
  *
30
30
  * <h3>Usage</h3>
31
31
  *
@@ -40,7 +40,7 @@ sap.ui.define([
40
40
  * <h3>Keyboard Handling</h3>
41
41
  *
42
42
  * @author SAP SE
43
- * @version 1.103.1
43
+ * @version 1.106.0
44
44
  *
45
45
  * @constructor
46
46
  * @public
@@ -12,6 +12,7 @@ sap.ui.define([
12
12
  ], function(WebComponent, library) {
13
13
  "use strict";
14
14
 
15
+ var IllustrationMessageSize = library.IllustrationMessageSize;
15
16
  var IllustrationMessageType = library.IllustrationMessageType;
16
17
 
17
18
  /**
@@ -40,7 +41,7 @@ sap.ui.define([
40
41
  * <h3>Usage</h3> <code>sap.ui.webc.fiori.IllustratedMessage</code> is meant to be used inside container component, for example a <code>sap.ui.webc.main.Card</code>, a <code>sap.ui.webc.main.Dialog</code> or a <code>sap.ui.webc.fiori.Page</code>
41
42
  *
42
43
  * @author SAP SE
43
- * @version 1.103.1
44
+ * @version 1.106.0
44
45
  *
45
46
  * @constructor
46
47
  * @public
@@ -63,6 +64,25 @@ sap.ui.define([
63
64
  defaultValue: IllustrationMessageType.BeforeSearch
64
65
  },
65
66
 
67
+ /**
68
+ * Determines which illustration breakpoint variant is used. <br>
69
+ * <br>
70
+ * Available options are:
71
+ * <ul>
72
+ * <li><code>Auto</code></li>
73
+ * <li><code>Base</code></li>
74
+ * <li><code>Spot</code></li>
75
+ * <li><code>Dialog</code></li>
76
+ * <li><code>Scene</code></li>
77
+ * </ul>
78
+ *
79
+ * As <code>IllustratedMessage</code> adapts itself around the <code>Illustration</code>, the other elements of the component are displayed differently on the different breakpoints/illustration sizes.
80
+ */
81
+ size: {
82
+ type: "sap.ui.webc.fiori.IllustrationMessageSize",
83
+ defaultValue: IllustrationMessageSize.Auto
84
+ },
85
+
66
86
  /**
67
87
  * Defines the subtitle of the component. <br>
68
88
  * <br>
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  *
28
28
  * <h3>Overview</h3>
29
29
  *
30
- * The <code>ui-media-gallery</code> component allows the user to browse through multimedia items. Currently, the supported items are images and videos. The items should be defined using the <code>sap.ui.webc.fiori.MediaGalleryItem</code> component.
30
+ * The <code>sap.ui.webc.fiori.MediaGallery</code> component allows the user to browse through multimedia items. Currently, the supported items are images and videos. The items should be defined using the <code>sap.ui.webc.fiori.MediaGalleryItem</code> component.
31
31
  *
32
32
  * The items are initially displayed as thumbnails. When the user selects a thumbnail, the corresponding item is displayed in larger size. <br>
33
33
  * The component is responsive by default and adjusts the position of the menu with respect to viewport size, but the application is able to further customize the layout via the provided API.
@@ -45,7 +45,7 @@ sap.ui.define([
45
45
  * </ul> <br>
46
46
  *
47
47
  * @author SAP SE
48
- * @version 1.103.1
48
+ * @version 1.106.0
49
49
  *
50
50
  * @constructor
51
51
  * @public
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * </ul>
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.103.1
40
+ * @version 1.106.0
41
41
  *
42
42
  * @constructor
43
43
  * @public
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * The <code>sap.ui.webc.fiori.NotificationAction</code> represents an abstract action, used in the <code>sap.ui.webc.fiori.NotificationListItem</code> and the <code>sap.ui.webc.fiori.NotificationListGroupItem</code> items.
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.103.1
31
+ * @version 1.106.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -82,7 +82,7 @@ sap.ui.define([
82
82
  /**
83
83
  * Defines the <code>icon</code> source URI. <br>
84
84
  * <br>
85
- * <b>Note:</b> SAP-icons font provides numerous built-in icons. To find all the available icons, see 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>.
85
+ * <b>Note:</b> SAP-icons font provides numerous built-in icons. To find all the available icons, see the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
86
86
  */
87
87
  icon: {
88
88
  type: "string",
@@ -40,14 +40,14 @@ sap.ui.define([
40
40
  *
41
41
  * <h3>CSS Shadow Parts</h3>
42
42
  *
43
- * <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM. <br>
43
+ * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to style elements inside the Shadow DOM. <br>
44
44
  * The <code>sap.ui.webc.fiori.NotificationListGroupItem</code> exposes the following CSS Shadow Parts:
45
45
  * <ul>
46
46
  * <li>title-text - Used to style the titleText of the notification list group item</li>
47
47
  * </ul>
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.103.1
50
+ * @version 1.106.0
51
51
  *
52
52
  * @constructor
53
53
  * @public
@@ -42,14 +42,14 @@ sap.ui.define([
42
42
  *
43
43
  * <h3>CSS Shadow Parts</h3>
44
44
  *
45
- * <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM. <br>
45
+ * {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to style elements inside the Shadow DOM. <br>
46
46
  * The <code>sap.ui.webc.fiori.NotificationListItem</code> exposes the following CSS Shadow Parts:
47
47
  * <ul>
48
48
  * <li>title-text - Used to style the titleText of the notification list item</li>
49
49
  * </ul>
50
50
  *
51
51
  * @author SAP SE
52
- * @version 1.103.1
52
+ * @version 1.106.0
53
53
  *
54
54
  * @constructor
55
55
  * @public
@@ -25,13 +25,13 @@ sap.ui.define([
25
25
  *
26
26
  * <h3>Overview</h3>
27
27
  *
28
- * The <code>sap.ui.webc.fiori.Page</code> is a container control that holds one whole screen of an application. The page has three distinct areas that can hold content - a header, content area and a footer. <h3>Structure</h3>
28
+ * The <code>sap.ui.webc.fiori.Page</code> is a container component that holds one whole screen of an application. The page has three distinct areas that can hold content - a header, content area and a footer. <h3>Structure</h3>
29
29
  * <h4>Header</h4> The top most area of the page is occupied by the header. The standard header includes a navigation button and a title. <h4>Content</h4> The content occupies the main part of the page. Only the content area is scrollable by default. This can be prevented by setting <code>enableScrolling</code> to <code>false</code>. <h4>Footer</h4> The footer is optional and occupies the fixed bottom part of the page. Alternatively, the footer can be floating above the bottom part of the content. This is enabled with the <code>floatingFooter</code> property.
30
30
  *
31
31
  * <b>Note:</b> <code>sap.ui.webc.fiori.Page</code> occipues the whole available space of its parent. In order to achieve the intended design you have to make sure that there is enough space for the <code>sap.ui.webc.fiori.Page</code> to be rendered.
32
32
  *
33
33
  * @author SAP SE
34
- * @version 1.103.1
34
+ * @version 1.106.0
35
35
  *
36
36
  * @constructor
37
37
  * @public
@@ -37,7 +37,7 @@ sap.ui.define([
37
37
  * <br>
38
38
  *
39
39
  * @author SAP SE
40
- * @version 1.103.1
40
+ * @version 1.106.0
41
41
  *
42
42
  * @constructor
43
43
  * @public
@@ -34,7 +34,7 @@ sap.ui.define([
34
34
  * </ul>
35
35
  *
36
36
  * @author SAP SE
37
- * @version 1.103.1
37
+ * @version 1.106.0
38
38
  *
39
39
  * @constructor
40
40
  * @public
@@ -59,7 +59,7 @@ sap.ui.define([
59
59
  * Example: <br>
60
60
  * <pre>ui5-product-switch-item icon="palette"</pre>
61
61
  *
62
- * 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>.
62
+ * See all the available icons in the {@link demo:sap/m/demokit/iconExplorer/webapp/index.html Icon Explorer}.
63
63
  */
64
64
  icon: {
65
65
  type: "string",