@openui5/sap.ui.webc.fiori 1.96.2 → 1.97.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 (282) hide show
  1. package/.reuse/dep5 +1 -1
  2. package/THIRDPARTY.txt +2 -1
  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 +4 -4
  7. package/src/sap/ui/webc/fiori/FilterItem.js +71 -0
  8. package/src/sap/ui/webc/fiori/FilterItemOption.js +68 -0
  9. package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +2 -2
  10. package/src/sap/ui/webc/fiori/IllustratedMessage.js +4 -4
  11. package/src/sap/ui/webc/fiori/NotificationAction.js +1 -1
  12. package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +1 -1
  13. package/src/sap/ui/webc/fiori/NotificationListItem.js +1 -1
  14. package/src/sap/ui/webc/fiori/Page.js +1 -1
  15. package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
  16. package/src/sap/ui/webc/fiori/ProductSwitchItem.js +1 -1
  17. package/src/sap/ui/webc/fiori/ShellBar.js +1 -1
  18. package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
  19. package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
  20. package/src/sap/ui/webc/fiori/SideNavigationItem.js +1 -1
  21. package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +1 -1
  22. package/src/sap/ui/webc/fiori/SortItem.js +68 -0
  23. package/src/sap/ui/webc/fiori/Timeline.js +1 -1
  24. package/src/sap/ui/webc/fiori/TimelineItem.js +1 -1
  25. package/src/sap/ui/webc/fiori/UploadCollection.js +12 -2
  26. package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
  27. package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +18 -9
  28. package/src/sap/ui/webc/fiori/Wizard.js +9 -9
  29. package/src/sap/ui/webc/fiori/WizardStep.js +9 -11
  30. package/src/sap/ui/webc/fiori/library.js +156 -6
  31. package/src/sap/ui/webc/fiori/thirdparty/Bar.js +30 -1
  32. package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +3 -4
  33. package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +45 -0
  34. package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +31 -0
  35. package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +8 -9
  36. package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +14 -5
  37. package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +6 -0
  38. package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +12 -15
  39. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +10 -13
  40. package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +3 -4
  41. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +6 -3
  42. package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +6 -0
  43. package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +34 -19
  44. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +6 -0
  45. package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +6 -0
  46. package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +31 -0
  47. package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +2 -3
  48. package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +14 -8
  49. package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +12 -13
  50. package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +219 -42
  51. package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +19 -16
  52. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -0
  53. package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -0
  54. package/src/sap/ui/webc/fiori/thirdparty/css/themes/FilterItem.css +1 -0
  55. package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -0
  56. package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -0
  57. package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
  58. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotifactionOverflowActionsPopover.css +1 -0
  59. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -0
  60. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -0
  61. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -0
  62. package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -0
  63. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -0
  64. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -0
  65. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -0
  66. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -0
  67. package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -0
  68. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -0
  69. package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -0
  70. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -0
  71. package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -0
  72. package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -0
  73. package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -0
  74. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -0
  75. package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -0
  76. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
  77. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
  78. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
  79. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
  80. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
  81. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
  82. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
  83. package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
  84. package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +2 -1
  85. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +9 -8
  86. package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +47 -47
  87. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +1 -1
  88. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FilterItemTemplate.lit.js +20 -0
  89. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +1 -1
  90. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +7 -5
  91. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +1 -1
  92. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +2 -2
  93. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +1 -1
  94. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +6 -6
  95. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +2 -2
  96. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +4 -4
  97. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +1 -1
  98. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +2 -2
  99. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +3 -3
  100. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +3 -4
  101. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +12 -1
  102. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +1 -1
  103. package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +1 -1
  104. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +3 -3
  105. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +3 -3
  106. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FilterItem.css.js +13 -0
  107. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +3 -3
  108. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +3 -3
  109. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
  110. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotifactionOverflowActionsPopover.css.js +3 -3
  111. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +3 -3
  112. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +3 -3
  113. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +3 -3
  114. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +3 -3
  115. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +3 -3
  116. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +3 -3
  117. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +3 -3
  118. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +3 -3
  119. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +3 -3
  120. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +3 -3
  121. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +3 -3
  122. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +3 -3
  123. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +3 -3
  124. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +3 -3
  125. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +3 -3
  126. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +3 -3
  127. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +3 -3
  128. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
  129. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
  130. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
  131. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
  132. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
  133. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
  134. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
  135. package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
  136. package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +2 -0
  137. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +2 -0
  138. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +2 -0
  139. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +2 -0
  140. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +2 -0
  141. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +2 -0
  142. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +2 -0
  143. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +2 -0
  144. package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +2 -0
  145. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +2 -0
  146. package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +2 -0
  147. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +18 -0
  148. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +18 -0
  149. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +18 -0
  150. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +18 -0
  151. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +18 -0
  152. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +18 -0
  153. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +18 -0
  154. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +18 -0
  155. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +18 -0
  156. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +18 -0
  157. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +18 -0
  158. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +18 -0
  159. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +18 -0
  160. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +18 -0
  161. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +18 -0
  162. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +18 -0
  163. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +18 -0
  164. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +18 -0
  165. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +12 -0
  166. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +19 -0
  167. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +17 -0
  168. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +23 -0
  169. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +22 -0
  170. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +18 -0
  171. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +24 -0
  172. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -0
  173. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -0
  174. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -0
  175. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +21 -0
  176. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +22 -0
  177. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +17 -0
  178. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +16 -0
  179. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +16 -0
  180. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +16 -0
  181. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +18 -0
  182. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +17 -0
  183. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +15 -0
  184. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +36 -0
  185. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +20 -0
  186. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +27 -0
  187. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +41 -0
  188. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +28 -0
  189. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +25 -0
  190. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +24 -0
  191. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +26 -0
  192. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -0
  193. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +26 -0
  194. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +23 -0
  195. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +24 -0
  196. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +23 -0
  197. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +24 -0
  198. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +26 -0
  199. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +21 -0
  200. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +28 -0
  201. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +12 -0
  202. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +19 -0
  203. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +15 -0
  204. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +22 -0
  205. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +16 -0
  206. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +19 -0
  207. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +23 -0
  208. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -0
  209. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -0
  210. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -0
  211. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +20 -0
  212. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -0
  213. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +15 -0
  214. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +15 -0
  215. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +15 -0
  216. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
  217. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +17 -0
  218. package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +16 -0
  219. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ar-4986cab5.js → messagebundle_ar-f55bd0d9.js} +3 -2
  220. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_bg-7e9aa059.js → messagebundle_bg-eb73ad77.js} +2 -1
  221. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ca-01451c6a.js → messagebundle_ca-18554b48.js} +2 -1
  222. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cs-ac6c8738.js → messagebundle_cs-7c21900b.js} +2 -1
  223. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cy-3dfe9dd5.js → messagebundle_cy-04ebca8d.js} +3 -2
  224. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_da-663276e4.js → messagebundle_da-49bb0a1c.js} +2 -1
  225. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_de-72e82e46.js → messagebundle_de-ba618d63.js} +3 -2
  226. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_el-c96044ad.js → messagebundle_el-7db9c5fd.js} +2 -1
  227. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en-2d504d66.js → messagebundle_en-d099f44a.js} +3 -2
  228. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_GB-c8b9808b.js → messagebundle_en_GB-4887b667.js} +3 -2
  229. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_sappsd-ff0f05eb.js → messagebundle_en_US_sappsd-65b99ab9.js} +2 -1
  230. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saprigi-9005c49a.js → messagebundle_en_US_saprigi-617e6535.js} +12 -1
  231. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saptrc-e2be9611.js → messagebundle_en_US_saptrc-6d0883b2.js} +2 -1
  232. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es-20ceffef.js → messagebundle_es-f7558331.js} +3 -2
  233. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es_MX-9617bbe2.js → messagebundle_es_MX-82bc00a1.js} +2 -1
  234. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_et-70cc45fe.js → messagebundle_et-24b4540a.js} +2 -1
  235. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fi-38c6589c.js → messagebundle_fi-8dc53cb0.js} +2 -1
  236. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr-0a9f2183.js → messagebundle_fr-7e340939.js} +2 -1
  237. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr_CA-5401e307.js → messagebundle_fr_CA-d3853c9b.js} +3 -2
  238. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hi-9aad7093.js → messagebundle_hi-78b175f0.js} +2 -1
  239. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hr-9a46b37c.js → messagebundle_hr-3ed6353c.js} +2 -1
  240. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hu-94c5c8ec.js → messagebundle_hu-9af2b64b.js} +2 -1
  241. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_it-594c952a.js → messagebundle_it-7968f555.js} +2 -1
  242. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_iw-3ad5f2eb.js → messagebundle_iw-30a93e6c.js} +2 -1
  243. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ja-ec45026f.js → messagebundle_ja-2b23c18f.js} +3 -2
  244. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_kk-9322e295.js → messagebundle_kk-847a0b84.js} +2 -1
  245. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ko-64bfa5d3.js → messagebundle_ko-eaabc5f5.js} +2 -1
  246. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lt-caf1e289.js → messagebundle_lt-ac869899.js} +2 -1
  247. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lv-8877dca6.js → messagebundle_lv-ff63b614.js} +2 -1
  248. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ms-d3aa34d7.js → messagebundle_ms-e844b95d.js} +2 -1
  249. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_nl-7653fecd.js → messagebundle_nl-b644fdd4.js} +2 -1
  250. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_no-e4cf07cf.js → messagebundle_no-aedb265f.js} +2 -1
  251. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pl-34323862.js → messagebundle_pl-3f303622.js} +3 -2
  252. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt-3c7586ed.js → messagebundle_pt-541e1fa1.js} +2 -1
  253. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt_PT-6101090e.js → messagebundle_pt_PT-196ce616.js} +3 -2
  254. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ro-3e1aac26.js → messagebundle_ro-cbff6cf1.js} +2 -1
  255. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ru-6fab2afc.js → messagebundle_ru-ff1b077c.js} +2 -1
  256. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sh-59c9c475.js → messagebundle_sh-88cafb2d.js} +2 -1
  257. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sk-3947d2b2.js → messagebundle_sk-877257e4.js} +2 -1
  258. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sl-5cb9b7cc.js → messagebundle_sl-0504465e.js} +2 -1
  259. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sv-9bfc19a7.js → messagebundle_sv-30172f15.js} +3 -2
  260. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_th-a6a77885.js → messagebundle_th-1e8f0c20.js} +3 -2
  261. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_tr-6f2ec772.js → messagebundle_tr-1739cd9a.js} +2 -1
  262. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_uk-dde2e605.js → messagebundle_uk-b933c172.js} +3 -2
  263. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_vi-e549a9d4.js → messagebundle_vi-329c5bac.js} +3 -2
  264. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_CN-fa4baf83.js → messagebundle_zh_CN-4936266e.js} +3 -2
  265. package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_TW-060ab1cb.js → messagebundle_zh_TW-87ecd6ac.js} +3 -2
  266. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-1b65841f.js +13 -0
  267. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7ad9af9f.js +13 -0
  268. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7cb04d8d.js +13 -0
  269. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-9b078ef8.js +13 -0
  270. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-aed8d630.js +13 -0
  271. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-becae35f.js +13 -0
  272. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e0121de4.js +13 -0
  273. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e4fed822.js +13 -0
  274. package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +18 -0
  275. package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +20 -0
  276. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-68447658.js +0 -9
  277. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-816bd805.js +0 -9
  278. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-a596f129.js +0 -9
  279. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-a8f6197d.js +0 -9
  280. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-cc7a39f2.js +0 -9
  281. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d0336f5e.js +0 -9
  282. package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-f592e4f1.js +0 -9
package/.reuse/dep5 CHANGED
@@ -418,7 +418,7 @@ Comment: these files contain content from SAP and BooleanExpressionEvaluator: Bo
418
418
 
419
419
  # Library: sap.ui.webc.common:
420
420
 
421
- Files: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.* src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theme-base/*.* 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/*.*
421
+ 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/*.*
422
422
  Copyright: SAP
423
423
  License: Apache-2.0
424
424
  Comment: these files belong to: UI5 Web Components
package/THIRDPARTY.txt CHANGED
@@ -412,10 +412,11 @@ Copyright: SAP
412
412
  License: Apache-2.0
413
413
  License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
414
414
  Contained in: src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/base/*.*
415
- src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theme-base/*.*
415
+ src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/theming/*.*
416
416
  src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/localization/*.*
417
417
  src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons/*.*
418
418
  src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-tnt/*.*
419
+ src/sap.ui.webc.common/src/sap/ui/webc/common/thirdparty/icons-business-suite/*.*
419
420
 
420
421
  Component: lit-html, version: 1.4.1
421
422
  Copyright: Google LLC
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openui5/sap.ui.webc.fiori",
3
- "version": "1.96.2",
3
+ "version": "1.97.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",
@@ -16,8 +16,8 @@
16
16
  "url": "https://github.com/SAP/openui5.git"
17
17
  },
18
18
  "dependencies": {
19
- "@openui5/sap.ui.core": "1.96.2",
20
- "@openui5/sap.ui.webc.main": "1.96.2",
21
- "@openui5/sap.ui.webc.common": "1.96.2"
19
+ "@openui5/sap.ui.core": "1.97.0",
20
+ "@openui5/sap.ui.webc.main": "1.97.0",
21
+ "@openui5/sap.ui.webc.common": "1.97.0"
22
22
  }
23
23
  }
@@ -3,7 +3,7 @@
3
3
 
4
4
  <name>sap.ui.webc.fiori</name>
5
5
  <vendor>SAP SE</vendor>
6
- <version>1.96.2</version>
6
+ <version>1.97.0</version>
7
7
  <copyright>OpenUI5
8
8
  * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
9
9
  * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
@@ -39,7 +39,7 @@ sap.ui.define([
39
39
  * </ul>
40
40
  *
41
41
  * @author SAP SE
42
- * @version 1.96.2
42
+ * @version 1.97.0
43
43
  *
44
44
  * @constructor
45
45
  * @public
@@ -32,12 +32,12 @@ sap.ui.define([
32
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.
33
33
  *
34
34
  * @author SAP SE
35
- * @version 1.96.2
35
+ * @version 1.97.0
36
36
  *
37
37
  * @constructor
38
38
  * @public
39
- * @since 1.92.0
40
- * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
39
+ * @since 1.95.0
40
+ * @experimental Since 1.95.0 This control is experimental and its API might change significantly.
41
41
  * @alias sap.ui.webc.fiori.BarcodeScannerDialog
42
42
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
43
43
  */
@@ -101,4 +101,4 @@ sap.ui.define([
101
101
  */
102
102
 
103
103
  return BarcodeScannerDialog;
104
- });
104
+ });
@@ -0,0 +1,71 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ // Provides control sap.ui.webc.fiori.FilterItem.
8
+ sap.ui.define([
9
+ "sap/ui/webc/common/WebComponent",
10
+ "./library",
11
+ "./thirdparty/FilterItem"
12
+ ], function(WebComponent, library) {
13
+ "use strict";
14
+
15
+ /**
16
+ * Constructor for a new <code>FilterItem</code>.
17
+ *
18
+ * @param {string} [sId] ID for the new control, generated automatically if no ID is given
19
+ * @param {object} [mSettings] Initial settings for the new control
20
+ *
21
+ * @extends sap.ui.webc.common.WebComponent
22
+ * @class
23
+ *
24
+ * <h3>Overview</h3>
25
+ *
26
+ * <h3>Usage</h3>
27
+ *
28
+ * @author SAP SE
29
+ * @version 1.97.0
30
+ *
31
+ * @constructor
32
+ * @public
33
+ * @since 1.97.0
34
+ * @experimental Since 1.97.0 This control is experimental and its API might change significantly.
35
+ * @alias sap.ui.webc.fiori.FilterItem
36
+ * @implements sap.ui.webc.fiori.IFilterItem
37
+ * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
38
+ */
39
+ var FilterItem = WebComponent.extend("sap.ui.webc.fiori.FilterItem", {
40
+ metadata: {
41
+ library: "sap.ui.webc.fiori",
42
+ tag: "ui5-filter-item-ui5",
43
+ interfaces: [
44
+ "sap.ui.webc.fiori.IFilterItem"
45
+ ],
46
+ properties: {
47
+
48
+ /**
49
+ * Defines the text of the component.
50
+ */
51
+ text: {
52
+ type: "string",
53
+ defaultValue: ""
54
+ }
55
+ },
56
+ aggregations: {
57
+
58
+ /**
59
+ * Defines the <code>values</code> list.
60
+ */
61
+ values: {
62
+ type: "sap.ui.webc.fiori.IFilterItemOption",
63
+ multiple: true,
64
+ slot: "values"
65
+ }
66
+ }
67
+ }
68
+ });
69
+
70
+ return FilterItem;
71
+ });
@@ -0,0 +1,68 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ // Provides control sap.ui.webc.fiori.FilterItemOption.
8
+ sap.ui.define([
9
+ "sap/ui/webc/common/WebComponent",
10
+ "./library",
11
+ "./thirdparty/FilterItemOption"
12
+ ], function(WebComponent, library) {
13
+ "use strict";
14
+
15
+ /**
16
+ * Constructor for a new <code>FilterItemOption</code>.
17
+ *
18
+ * @param {string} [sId] ID for the new control, generated automatically if no ID is given
19
+ * @param {object} [mSettings] Initial settings for the new control
20
+ *
21
+ * @extends sap.ui.webc.common.WebComponent
22
+ * @class
23
+ *
24
+ * <h3>Overview</h3>
25
+ *
26
+ * <h3>Usage</h3>
27
+ *
28
+ * @author SAP SE
29
+ * @version 1.97.0
30
+ *
31
+ * @constructor
32
+ * @public
33
+ * @since 1.97.0
34
+ * @experimental Since 1.97.0 This control is experimental and its API might change significantly.
35
+ * @alias sap.ui.webc.fiori.FilterItemOption
36
+ * @implements sap.ui.webc.fiori.IFilterItemOption
37
+ * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
38
+ */
39
+ var FilterItemOption = WebComponent.extend("sap.ui.webc.fiori.FilterItemOption", {
40
+ metadata: {
41
+ library: "sap.ui.webc.fiori",
42
+ tag: "ui5-filter-item-option-ui5",
43
+ interfaces: [
44
+ "sap.ui.webc.fiori.IFilterItemOption"
45
+ ],
46
+ properties: {
47
+
48
+ /**
49
+ * Defines whether the option is selected
50
+ */
51
+ selected: {
52
+ type: "boolean",
53
+ defaultValue: false
54
+ },
55
+
56
+ /**
57
+ * Defines the text of the component.
58
+ */
59
+ text: {
60
+ type: "string",
61
+ defaultValue: ""
62
+ }
63
+ }
64
+ }
65
+ });
66
+
67
+ return FilterItemOption;
68
+ });
@@ -46,7 +46,7 @@ sap.ui.define([
46
46
  * <br>
47
47
  *
48
48
  * @author SAP SE
49
- * @version 1.96.2
49
+ * @version 1.97.0
50
50
  *
51
51
  * @constructor
52
52
  * @public
@@ -62,7 +62,7 @@ sap.ui.define([
62
62
  properties: {
63
63
 
64
64
  /**
65
- * On object of strings that defines several additional accessibility texts for even further customization.
65
+ * An object of strings that defines several additional accessibility texts for even further customization.
66
66
  *
67
67
  * It supports the following fields: - <code>startColumnAccessibleName</code>: the accessibility name for the <code>startColumn</code> region - <code>midColumnAccessibleName</code>: the accessibility name for the <code>midColumn</code> region - <code>endColumnAccessibleName</code>: the accessibility name for the <code>endColumn</code> region - <code>startArrowLeftText</code>: the text that the first arrow (between the <code>begin</code> and <code>mid</code> columns) will have when pointing to the left - <code>startArrowRightText</code>: the text that the first arrow (between the <code>begin</code> and <code>mid</code> columns) will have when pointing to the right - <code>endArrowLeftText</code>: the text that the second arrow (between the <code>mid</code> and <code>end</code> columns) will have when pointing to the left - <code>endArrowRightText</code>: the text that the second arrow (between the <code>mid</code> and <code>end</code> columns) will have when pointing to the right
68
68
  */
@@ -40,12 +40,12 @@ sap.ui.define([
40
40
  * <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
41
  *
42
42
  * @author SAP SE
43
- * @version 1.96.2
43
+ * @version 1.97.0
44
44
  *
45
45
  * @constructor
46
46
  * @public
47
- * @since 1.92.0
48
- * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
47
+ * @since 1.95.0
48
+ * @experimental Since 1.95.0 This control is experimental and its API might change significantly.
49
49
  * @alias sap.ui.webc.fiori.IllustratedMessage
50
50
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
51
51
  */
@@ -111,4 +111,4 @@ sap.ui.define([
111
111
  });
112
112
 
113
113
  return IllustratedMessage;
114
- });
114
+ });
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * 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.
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.96.2
30
+ * @version 1.97.0
31
31
  *
32
32
  * @constructor
33
33
  * @public
@@ -47,7 +47,7 @@ sap.ui.define([
47
47
  * </ul>
48
48
  *
49
49
  * @author SAP SE
50
- * @version 1.96.2
50
+ * @version 1.97.0
51
51
  *
52
52
  * @constructor
53
53
  * @public
@@ -49,7 +49,7 @@ sap.ui.define([
49
49
  * </ul>
50
50
  *
51
51
  * @author SAP SE
52
- * @version 1.96.2
52
+ * @version 1.97.0
53
53
  *
54
54
  * @constructor
55
55
  * @public
@@ -31,7 +31,7 @@ sap.ui.define([
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.96.2
34
+ * @version 1.97.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.96.2
40
+ * @version 1.97.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.96.2
37
+ * @version 1.97.0
38
38
  *
39
39
  * @constructor
40
40
  * @public
@@ -55,7 +55,7 @@ sap.ui.define([
55
55
  * </ul>
56
56
  *
57
57
  * @author SAP SE
58
- * @version 1.96.2
58
+ * @version 1.97.0
59
59
  *
60
60
  * @constructor
61
61
  * @public
@@ -24,7 +24,7 @@ sap.ui.define([
24
24
  *
25
25
  *
26
26
  * @author SAP SE
27
- * @version 1.96.2
27
+ * @version 1.97.0
28
28
  *
29
29
  * @constructor
30
30
  * @public
@@ -35,7 +35,7 @@ sap.ui.define([
35
35
  * Use the available <code>sap.ui.webc.fiori.SideNavigationItem</code> and <code>sap.ui.webc.fiori.SideNavigationSubItem</code> components to build your menu. The items can consist of text only or an icon with text. The use or non-use of icons must be consistent for all items on one level. You must not combine entries with and without icons on the same level. We strongly recommend that you do not use icons on the second level.
36
36
  *
37
37
  * @author SAP SE
38
- * @version 1.96.2
38
+ * @version 1.97.0
39
39
  *
40
40
  * @constructor
41
41
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * The <code>sap.ui.webc.fiori.SideNavigationItem</code> is used within <code>sap.ui.webc.fiori.SideNavigation</code> only. Via the <code>sap.ui.webc.fiori.SideNavigationItem</code> you control the content of the <code>SideNavigation</code>.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.96.2
29
+ * @version 1.97.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * The <code>sap.ui.webc.fiori.SideNavigationSubItem</code> is intended to be used inside a <code>sap.ui.webc.fiori.SideNavigationItem</code> only.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.96.2
29
+ * @version 1.97.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -0,0 +1,68 @@
1
+ /*!
2
+ * OpenUI5
3
+ * (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
4
+ * Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
5
+ */
6
+
7
+ // Provides control sap.ui.webc.fiori.SortItem.
8
+ sap.ui.define([
9
+ "sap/ui/webc/common/WebComponent",
10
+ "./library",
11
+ "./thirdparty/SortItem"
12
+ ], function(WebComponent, library) {
13
+ "use strict";
14
+
15
+ /**
16
+ * Constructor for a new <code>SortItem</code>.
17
+ *
18
+ * @param {string} [sId] ID for the new control, generated automatically if no ID is given
19
+ * @param {object} [mSettings] Initial settings for the new control
20
+ *
21
+ * @extends sap.ui.webc.common.WebComponent
22
+ * @class
23
+ *
24
+ * <h3>Overview</h3>
25
+ *
26
+ * <h3>Usage</h3>
27
+ *
28
+ * @author SAP SE
29
+ * @version 1.97.0
30
+ *
31
+ * @constructor
32
+ * @public
33
+ * @since 1.97.0
34
+ * @experimental Since 1.97.0 This control is experimental and its API might change significantly.
35
+ * @alias sap.ui.webc.fiori.SortItem
36
+ * @implements sap.ui.webc.fiori.ISortItem
37
+ * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
38
+ */
39
+ var SortItem = WebComponent.extend("sap.ui.webc.fiori.SortItem", {
40
+ metadata: {
41
+ library: "sap.ui.webc.fiori",
42
+ tag: "ui5-sort-item-ui5",
43
+ interfaces: [
44
+ "sap.ui.webc.fiori.ISortItem"
45
+ ],
46
+ properties: {
47
+
48
+ /**
49
+ * Defines if the component is selected.
50
+ */
51
+ selected: {
52
+ type: "boolean",
53
+ defaultValue: false
54
+ },
55
+
56
+ /**
57
+ * Defines the text of the component.
58
+ */
59
+ text: {
60
+ type: "string",
61
+ defaultValue: ""
62
+ }
63
+ }
64
+ }
65
+ });
66
+
67
+ return SortItem;
68
+ });
@@ -28,7 +28,7 @@ sap.ui.define([
28
28
  * The <code>sap.ui.webc.fiori.Timeline</code> component shows entries (such as objects, events, or posts) in chronological order. A common use case is to provide information about changes to an object, or events related to an object. These entries can be generated by the system (for example, value XY changed from A to B), or added manually. There are two distinct variants of the timeline: basic and social. The basic timeline is read-only, while the social timeline offers a high level of interaction and collaboration, and is integrated within SAP Jam.
29
29
  *
30
30
  * @author SAP SE
31
- * @version 1.96.2
31
+ * @version 1.97.0
32
32
  *
33
33
  * @constructor
34
34
  * @public
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * An entry posted on the timeline.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.96.2
29
+ * @version 1.97.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -27,7 +27,7 @@ sap.ui.define([
27
27
  * <h3>Overview</h3> This component allows you to represent files before uploading them to a server, with the help of <code>sap.ui.webc.fiori.UploadCollectionItem</code>. It also allows you to show already uploaded files.
28
28
  *
29
29
  * @author SAP SE
30
- * @version 1.96.2
30
+ * @version 1.97.0
31
31
  *
32
32
  * @constructor
33
33
  * @public
@@ -42,6 +42,14 @@ sap.ui.define([
42
42
  tag: "ui5-upload-collection-ui5",
43
43
  properties: {
44
44
 
45
+ /**
46
+ * Sets the accessible aria name of the component.
47
+ */
48
+ accessibleName: {
49
+ type: "string",
50
+ defaultValue: ""
51
+ },
52
+
45
53
  /**
46
54
  * Defines the height of the control
47
55
  */
@@ -108,7 +116,9 @@ sap.ui.define([
108
116
  aggregations: {
109
117
 
110
118
  /**
111
- * Defines the <code>sap.ui.webc.fiori.UploadCollection</code> header.
119
+ * Defines the <code>sap.ui.webc.fiori.UploadCollection</code> header. <br>
120
+ * <br>
121
+ * <b>Note:</b> If <code>header</code> slot is provided, the labelling of the <code>UploadCollection</code> is a responsibility of the application developer. <code>accessibleName</code> should be used.
112
122
  */
113
123
  header: {
114
124
  type: "sap.ui.core.Control",
@@ -26,7 +26,7 @@ sap.ui.define([
26
26
  * <h3>Overview</h3> A component to be used within the <code>sap.ui.webc.fiori.UploadCollection</code>.
27
27
  *
28
28
  * @author SAP SE
29
- * @version 1.96.2
29
+ * @version 1.97.0
30
30
  *
31
31
  * @constructor
32
32
  * @public
@@ -21,7 +21,7 @@ sap.ui.define([
21
21
  * @extends sap.ui.webc.common.WebComponent
22
22
  * @class
23
23
  *
24
- * <h3>Overview</h3> The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> component helps the user to sort data within a list or a table. It consists of several lists like <code>Sort order</code> which is built-in and <code>Sort By</code> which must be provided by the developer. The selected options can be used to create sorters for the table.
24
+ * <h3>Overview</h3> The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> component helps the user to sort data within a list or a table. It consists of several lists like <code>Sort order</code> which is built-in and <code>Sort By</code> and <code>Filter By</code> lists, for which you must be provide items(<code>sap.ui.webc.fiori.SortItem</code> & <code>sap.ui.webc.fiori.FilterItem</code> respectively) These options can be used to create sorters for a table.
25
25
  *
26
26
  * The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> interrupts the current application processing as it is the only focused UI element and the main screen is dimmed/blocked. The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> is modal, which means that user action is required before returning to the parent window is possible.
27
27
  *
@@ -30,12 +30,12 @@ sap.ui.define([
30
30
  * <h3>Responsive Behavior</h3> <code>sap.ui.webc.fiori.ViewSettingsDialog</code> stretches on full screen on phones.
31
31
  *
32
32
  * @author SAP SE
33
- * @version 1.96.2
33
+ * @version 1.97.0
34
34
  *
35
35
  * @constructor
36
36
  * @public
37
- * @since 1.92.0
38
- * @experimental Since 1.92.0 This control is experimental and its API might change significantly.
37
+ * @since 1.95.0
38
+ * @experimental Since 1.95.0 This control is experimental and its API might change significantly.
39
39
  * @alias sap.ui.webc.fiori.ViewSettingsDialog
40
40
  * @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
41
41
  */
@@ -56,10 +56,19 @@ sap.ui.define([
56
56
  aggregations: {
57
57
 
58
58
  /**
59
- * Defines the <code>sortItems</code> list.
59
+ *
60
+ */
61
+ filterItems: {
62
+ type: "sap.ui.webc.fiori.IFilterItem",
63
+ multiple: true,
64
+ slot: "filterItems"
65
+ },
66
+
67
+ /**
68
+ *
60
69
  */
61
70
  sortItems: {
62
- type: "sap.ui.webc.main.IListItem",
71
+ type: "sap.ui.webc.fiori.ISortItem",
63
72
  multiple: true,
64
73
  slot: "sortItems"
65
74
  }
@@ -79,7 +88,7 @@ sap.ui.define([
79
88
  },
80
89
 
81
90
  /**
82
- * The current sort by selected.
91
+ * The currently selected <code>sap.ui.webc.fiori.SortItem</code> text attribute.
83
92
  */
84
93
  sortBy: {
85
94
  type: "string"
@@ -100,7 +109,7 @@ sap.ui.define([
100
109
  },
101
110
 
102
111
  /**
103
- * The current sort by selected.
112
+ * The currently selected <code>sap.ui.webc.fiori.SortItem</code> text attribute.
104
113
  */
105
114
  sortBy: {
106
115
  type: "string"
@@ -120,4 +129,4 @@ sap.ui.define([
120
129
  */
121
130
 
122
131
  return ViewSettingsDialog;
123
- });
132
+ });
@@ -23,14 +23,14 @@ sap.ui.define([
23
23
  *
24
24
  * <h3>Overview</h3>
25
25
  *
26
- * The <code>sap.ui.webc.fiori.Wizard</code> helps users complete a complex task by dividing it into sections and guiding the user through it. It has two main areas - a navigation area at the top showing the step sequence and a content area below it.
26
+ * The <code>sap.ui.webc.fiori.Wizard</code> helps users to complete a complex task by dividing it into sections and guiding them through it. It has two main areas - a navigation area at the top showing the step sequence and a content area below it.
27
27
  *
28
28
  * <h3>Structure</h3>
29
29
  * <h4>Navigation area</h4> The top most area of the <code>sap.ui.webc.fiori.Wizard</code> is occupied by the navigation area. It shows the sequence of steps, where the recommended number of steps is between 3 and 8 steps.
30
30
  * <ul>
31
31
  * <li> Steps can have different visual representations - numbers or icons.
32
32
  * <li> Steps might have labels for better readability - titleText and subTitleText.</li>
33
- * <li> Steps are defined by using the <code>sap.ui.webc.fiori.WizardStep</code> as slotted element within the <code>sap.ui.webc.fiori.Wizard</code></li>
33
+ * <li> Steps are defined by using the <code>sap.ui.webc.fiori.WizardStep</code> as slotted element within the <code>sap.ui.webc.fiori.Wizard</code>.</li>
34
34
  * </ul>
35
35
  *
36
36
  * <b>Note:</b> If no selected step is defined, the first step will be auto selected. <br>
@@ -50,21 +50,21 @@ sap.ui.define([
50
50
  * </code> <code>&#9;&lt;ui5-wizard&gt;&lt;/ui5-wizard&gt;<br>
51
51
  * </code> <code>&lt;/ui5-dialog&gt;</code>
52
52
  *
53
- * <h4>Moving to next step</h4> The <code>sap.ui.webc.fiori.WizardStep</code> provides the necessary API and it's up to the user of the component to use it to move to the next step. You have to set its <code>selected</code> property (and remove the <code>disabled</code> one if set) to <code>true</code>. And, the <code>sap.ui.webc.fiori.Wizard</code> will automatically scroll to the content of the newly selected step. <br>
53
+ * <h4>Moving to next step</h4> The <code>sap.ui.webc.fiori.WizardStep</code> provides the necessary API and it's up to the user of the component to use it to move to the next step. You have to set its <code>selected</code> property (and remove the <code>disabled</code> one if set) to <code>true</code>. The <code>sap.ui.webc.fiori.Wizard</code> will automatically scroll to the content of the newly selected step. <br>
54
54
  * <br>
55
55
  *
56
56
  *
57
57
  * The Fiori 3 guidelines recommends having a "nextStep" button in the content area. You can place a button, or any other type of element to trigger step change, inside the <code>sap.ui.webc.fiori.WizardStep</code>, and show/hide it when certain fields are filled or user defined criteria is met.
58
58
  *
59
59
  * <h3>Usage</h3>
60
- * <h4>When to use:</h4> When the user has to accomplish a long set of tasks.
60
+ * <h4>When to use:</h4> When the user has to accomplish a long or unfamiliar task.
61
61
  *
62
62
  * <h4>When not to use:</h4> When the task has less than 3 steps.
63
63
  *
64
- * <h3>Responsive Behavior</h3> On small widths the step's titleText, subtitleText and separators in the navigation area will start truncate and shrink and from particular point they will hide to free as much space as possible.
64
+ * <h3>Responsive Behavior</h3> On small widths the step's titleText, subtitleText and separators in the navigation area shrink and from particular point the steps are grouped together and overlap. Tapping on them will show a popover to select the step to navigate to. On mobile device, the grouped steps are presented within a dialog.
65
65
  *
66
66
  * @author SAP SE
67
- * @version 1.96.2
67
+ * @version 1.97.0
68
68
  *
69
69
  * @constructor
70
70
  * @public
@@ -117,21 +117,21 @@ sap.ui.define([
117
117
  stepChange: {
118
118
  parameters: {
119
119
  /**
120
- * the new step
120
+ * The new step.
121
121
  */
122
122
  step: {
123
123
  type: "HTMLElement"
124
124
  },
125
125
 
126
126
  /**
127
- * the previous step
127
+ * The previous step.
128
128
  */
129
129
  previousStep: {
130
130
  type: "HTMLElement"
131
131
  },
132
132
 
133
133
  /**
134
- * the step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation
134
+ * The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
135
135
  */
136
136
  changeWithClick: {
137
137
  type: "boolean"