@openui5/sap.ui.webc.fiori 1.96.2 → 1.98.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.
- package/.reuse/dep5 +26 -31
- package/THIRDPARTY.txt +15 -21
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +2 -2
- package/src/sap/ui/webc/fiori/Bar.js +2 -2
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +4 -4
- package/src/sap/ui/webc/fiori/FilterItem.js +71 -0
- package/src/sap/ui/webc/fiori/FilterItemOption.js +68 -0
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +4 -4
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +4 -4
- package/src/sap/ui/webc/fiori/NotificationAction.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -2
- package/src/sap/ui/webc/fiori/Page.js +2 -2
- package/src/sap/ui/webc/fiori/ProductSwitch.js +2 -2
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +46 -10
- package/src/sap/ui/webc/fiori/ShellBarItem.js +3 -3
- package/src/sap/ui/webc/fiori/SideNavigation.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -2
- package/src/sap/ui/webc/fiori/SortItem.js +68 -0
- package/src/sap/ui/webc/fiori/Timeline.js +2 -2
- package/src/sap/ui/webc/fiori/TimelineItem.js +2 -2
- package/src/sap/ui/webc/fiori/UploadCollection.js +13 -3
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +2 -2
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +18 -9
- package/src/sap/ui/webc/fiori/Wizard.js +10 -18
- package/src/sap/ui/webc/fiori/WizardStep.js +10 -28
- package/src/sap/ui/webc/fiori/library.js +156 -6
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +30 -1
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +3 -4
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +45 -0
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +8 -9
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +14 -5
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +12 -15
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +10 -13
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +3 -4
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +6 -3
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +62 -24
- package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +4 -7
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +3 -0
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +2 -3
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +14 -8
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +12 -13
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +219 -42
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +19 -20
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +0 -6
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FilterItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotifactionOverflowActionsPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +10 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FilterItemTemplate.lit.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +7 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +2 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +7 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +2 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +4 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +2 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +3 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +12 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FilterItem.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotifactionOverflowActionsPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +2 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +36 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +27 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ar-4986cab5.js → messagebundle_ar-f55bd0d9.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_bg-7e9aa059.js → messagebundle_bg-eb73ad77.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ca-01451c6a.js → messagebundle_ca-18554b48.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cs-ac6c8738.js → messagebundle_cs-7c21900b.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cy-3dfe9dd5.js → messagebundle_cy-04ebca8d.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_da-663276e4.js → messagebundle_da-49bb0a1c.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_de-72e82e46.js → messagebundle_de-ba618d63.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_el-c96044ad.js → messagebundle_el-7db9c5fd.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en-2d504d66.js → messagebundle_en-d099f44a.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_GB-c8b9808b.js → messagebundle_en_GB-4887b667.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_sappsd-ff0f05eb.js → messagebundle_en_US_sappsd-65b99ab9.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saprigi-9005c49a.js → messagebundle_en_US_saprigi-617e6535.js} +12 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saptrc-e2be9611.js → messagebundle_en_US_saptrc-6d0883b2.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es-20ceffef.js → messagebundle_es-f7558331.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es_MX-9617bbe2.js → messagebundle_es_MX-82bc00a1.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_et-70cc45fe.js → messagebundle_et-24b4540a.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fi-38c6589c.js → messagebundle_fi-8dc53cb0.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr-0a9f2183.js → messagebundle_fr-7e340939.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr_CA-5401e307.js → messagebundle_fr_CA-d3853c9b.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hi-9aad7093.js → messagebundle_hi-78b175f0.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hr-9a46b37c.js → messagebundle_hr-3ed6353c.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hu-94c5c8ec.js → messagebundle_hu-9af2b64b.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_it-594c952a.js → messagebundle_it-7968f555.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_iw-3ad5f2eb.js → messagebundle_iw-30a93e6c.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ja-ec45026f.js → messagebundle_ja-2b23c18f.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_kk-9322e295.js → messagebundle_kk-847a0b84.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ko-64bfa5d3.js → messagebundle_ko-eaabc5f5.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lt-caf1e289.js → messagebundle_lt-ac869899.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lv-8877dca6.js → messagebundle_lv-ff63b614.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ms-d3aa34d7.js → messagebundle_ms-e844b95d.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_nl-7653fecd.js → messagebundle_nl-b644fdd4.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_no-e4cf07cf.js → messagebundle_no-aedb265f.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pl-34323862.js → messagebundle_pl-3f303622.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt-3c7586ed.js → messagebundle_pt-541e1fa1.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt_PT-6101090e.js → messagebundle_pt_PT-196ce616.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ro-3e1aac26.js → messagebundle_ro-cbff6cf1.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ru-6fab2afc.js → messagebundle_ru-ff1b077c.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sh-59c9c475.js → messagebundle_sh-88cafb2d.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sk-3947d2b2.js → messagebundle_sk-877257e4.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sl-5cb9b7cc.js → messagebundle_sl-0504465e.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sv-9bfc19a7.js → messagebundle_sv-30172f15.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_th-a6a77885.js → messagebundle_th-1e8f0c20.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_tr-6f2ec772.js → messagebundle_tr-1739cd9a.js} +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_uk-dde2e605.js → messagebundle_uk-b933c172.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_vi-e549a9d4.js → messagebundle_vi-329c5bac.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_CN-fa4baf83.js → messagebundle_zh_CN-4936266e.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_TW-060ab1cb.js → messagebundle_zh_TW-87ecd6ac.js} +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-061b89a5.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-38936e07.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-8bbc66c7.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-8cd66b58.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-b1dbb139.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-b3677e4f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-c7962590.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-c905672f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d5f4bea2.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarItemTemplate.lit.js +0 -7
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-68447658.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-816bd805.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-a596f129.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-a8f6197d.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-cc7a39f2.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d0336f5e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-f592e4f1.js +0 -9
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler', 'sap/ui/webc/common/thirdparty/base/Device', 'sap/ui/webc/main/thirdparty/types/Priority', 'sap/ui/webc/main/thirdparty/Button', 'sap/ui/webc/main/thirdparty/BusyIndicator', 'sap/ui/webc/main/thirdparty/Link', 'sap/ui/webc/main/thirdparty/Icon', 'sap/ui/webc/main/thirdparty/Popover', 'sap/ui/webc/main/thirdparty/types/WrappingType', './NotificationListItemBase', './generated/i18n/i18n-defaults', './generated/templates/NotificationListItemTemplate.lit', './generated/themes/NotificationListItem.css'], function (Keys, ResizeHandler, Device, Priority, Button, BusyIndicator, Link, Icon, Popover, WrappingType, NotificationListItemBase, i18nDefaults, NotificationListItemTemplate_lit, NotificationListItem_css) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
@@ -71,9 +71,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/th
|
|
|
71
71
|
Popover__default,
|
|
72
72
|
];
|
|
73
73
|
}
|
|
74
|
-
static async onDefine() {
|
|
75
|
-
await i18nBundle.fetchI18nBundle("@ui5/webcomponents-fiori");
|
|
76
|
-
}
|
|
77
74
|
onEnterDOM() {
|
|
78
75
|
ResizeHandler__default.register(this, this.onResizeBind);
|
|
79
76
|
}
|
|
@@ -88,15 +85,15 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/th
|
|
|
88
85
|
}
|
|
89
86
|
get showMoreText() {
|
|
90
87
|
if (this._showMorePressed) {
|
|
91
|
-
return
|
|
88
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_SHOW_LESS);
|
|
92
89
|
}
|
|
93
|
-
return
|
|
90
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_SHOW_MORE);
|
|
94
91
|
}
|
|
95
92
|
get overflowBtnAccessibleName() {
|
|
96
|
-
return
|
|
93
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE);
|
|
97
94
|
}
|
|
98
95
|
get closeBtnAccessibleName() {
|
|
99
|
-
return
|
|
96
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE);
|
|
100
97
|
}
|
|
101
98
|
get hideShowMore() {
|
|
102
99
|
if (this.wrappingType === WrappingType__default.None && this._showMore) {
|
|
@@ -161,19 +158,19 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/th
|
|
|
161
158
|
}
|
|
162
159
|
get priorityText() {
|
|
163
160
|
if (this.priority === Priority__default.High) {
|
|
164
|
-
return
|
|
161
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT);
|
|
165
162
|
}
|
|
166
163
|
if (this.priority === Priority__default.Medium) {
|
|
167
|
-
return
|
|
164
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT);
|
|
168
165
|
}
|
|
169
166
|
if (this.priority === Priority__default.Low) {
|
|
170
|
-
return
|
|
167
|
+
return NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT);
|
|
171
168
|
}
|
|
172
169
|
return "";
|
|
173
170
|
}
|
|
174
171
|
get accInvisibleText() {
|
|
175
|
-
const notificationText =
|
|
176
|
-
const readText = this.read ?
|
|
172
|
+
const notificationText = NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_TXT);
|
|
173
|
+
const readText = this.read ? NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_READ) : NotificationListItem.i18nFioriBundle.getText(i18nDefaults.NOTIFICATION_LIST_ITEM_UNREAD);
|
|
177
174
|
const priorityText = this.priorityText;
|
|
178
175
|
return `${notificationText} ${readText} ${priorityText}`;
|
|
179
176
|
}
|
|
@@ -40,10 +40,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/th
|
|
|
40
40
|
},
|
|
41
41
|
};
|
|
42
42
|
class NotificationListItemBase extends ListItemBase__default {
|
|
43
|
-
constructor() {
|
|
44
|
-
super();
|
|
45
|
-
this.i18nFioriBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
46
|
-
}
|
|
47
43
|
static get metadata() {
|
|
48
44
|
return metadata;
|
|
49
45
|
}
|
|
@@ -138,6 +134,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/Keys', 'sap/ui/webc/common/th
|
|
|
138
134
|
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
139
135
|
return staticAreaItem.querySelector(".ui5-notification-overflow-popover");
|
|
140
136
|
}
|
|
137
|
+
static async onDefine() {
|
|
138
|
+
NotificationListItemBase.i18nFioriBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
139
|
+
}
|
|
141
140
|
}
|
|
142
141
|
|
|
143
142
|
return NotificationListItemBase;
|
|
@@ -32,7 +32,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/com
|
|
|
32
32
|
rowSize: this._rowSize,
|
|
33
33
|
getItemsCallback: () => this.items,
|
|
34
34
|
});
|
|
35
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents");
|
|
36
35
|
}
|
|
37
36
|
static get metadata() {
|
|
38
37
|
return metadata;
|
|
@@ -53,10 +52,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/com
|
|
|
53
52
|
};
|
|
54
53
|
}
|
|
55
54
|
static async onDefine() {
|
|
56
|
-
await i18nBundle.
|
|
55
|
+
ProductSwitch.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
57
56
|
}
|
|
58
57
|
get _ariaLabelText() {
|
|
59
|
-
return
|
|
58
|
+
return ProductSwitch.i18nBundle.getText(i18nDefaults.PRODUCT_SWITCH_CONTAINER_LABEL);
|
|
60
59
|
}
|
|
61
60
|
onEnterDOM() {
|
|
62
61
|
this._handleResizeBound = this._handleResize.bind(this);
|
|
@@ -78,6 +77,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/com
|
|
|
78
77
|
this._setRowSize(4);
|
|
79
78
|
}
|
|
80
79
|
}
|
|
80
|
+
handleProductSwitchItemClick(event) {
|
|
81
|
+
this.items.forEach(item => { item.selected = false; });
|
|
82
|
+
event.target.selected = true;
|
|
83
|
+
}
|
|
81
84
|
_onfocusin(event) {
|
|
82
85
|
const target = event.target;
|
|
83
86
|
this._itemNavigation.setCurrentItem(target);
|
|
@@ -31,6 +31,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
31
31
|
focused: {
|
|
32
32
|
type: Boolean,
|
|
33
33
|
},
|
|
34
|
+
selected: {
|
|
35
|
+
type: Boolean,
|
|
36
|
+
},
|
|
34
37
|
_tabIndex: {
|
|
35
38
|
type: String,
|
|
36
39
|
defaultValue: "-1",
|
|
@@ -90,6 +93,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
90
93
|
this.active = false;
|
|
91
94
|
}
|
|
92
95
|
if (Keys.isSpace(event)) {
|
|
96
|
+
if (Keys.isSpaceShift(event)) {
|
|
97
|
+
event.stopPropagation();
|
|
98
|
+
}
|
|
93
99
|
this._fireItemClick();
|
|
94
100
|
}
|
|
95
101
|
}
|
|
@@ -195,7 +195,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
195
195
|
this._overflowActions();
|
|
196
196
|
}, HANDLE_RESIZE_DEBOUNCE_RATE);
|
|
197
197
|
};
|
|
198
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
199
198
|
}
|
|
200
199
|
_debounce(fn, delay) {
|
|
201
200
|
clearTimeout(this._debounceInterval);
|
|
@@ -309,7 +308,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
309
308
|
return {
|
|
310
309
|
...info,
|
|
311
310
|
classes: `${info.classes} ${shouldStayOnScreen ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-button`,
|
|
312
|
-
|
|
311
|
+
styles: {
|
|
312
|
+
order: shouldStayOnScreen ? 1 : -1,
|
|
313
|
+
},
|
|
313
314
|
};
|
|
314
315
|
});
|
|
315
316
|
this._updateItemsInfo(newItems);
|
|
@@ -343,7 +344,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
343
344
|
for (let i = 0; i < itemsByPriority.length; i++) {
|
|
344
345
|
if (i < overflowCount) {
|
|
345
346
|
itemsByPriority[i].classes = `${itemsByPriority[i].classes} ui5-shellbar-hidden-button`;
|
|
346
|
-
itemsByPriority[i].
|
|
347
|
+
itemsByPriority[i].styles = {
|
|
348
|
+
order: -1,
|
|
349
|
+
};
|
|
347
350
|
}
|
|
348
351
|
}
|
|
349
352
|
return itemsByPriority;
|
|
@@ -356,9 +359,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
356
359
|
const newItems = this._handleActionsOverflow();
|
|
357
360
|
this._updateItemsInfo(newItems);
|
|
358
361
|
}
|
|
359
|
-
_toggleActionPopover() {
|
|
362
|
+
async _toggleActionPopover() {
|
|
360
363
|
const overflowButton = this.shadowRoot.querySelector(".ui5-shellbar-overflow-button");
|
|
361
|
-
this.
|
|
364
|
+
const overflowPopover = await this._getOverflowPopover();
|
|
365
|
+
overflowPopover.showAt(overflowButton);
|
|
362
366
|
}
|
|
363
367
|
onEnterDOM() {
|
|
364
368
|
ResizeHandler__default.register(this, this._handleResize);
|
|
@@ -388,9 +392,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
388
392
|
const refItemId = event.target.getAttribute("data-ui5-external-action-item-id");
|
|
389
393
|
if (refItemId) {
|
|
390
394
|
const shellbarItem = this.items.find(item => {
|
|
391
|
-
return item.
|
|
395
|
+
return item._id === refItemId;
|
|
392
396
|
});
|
|
393
|
-
const prevented = !shellbarItem.fireEvent("
|
|
397
|
+
const prevented = !shellbarItem.fireEvent("click", { targetRef: event.target }, true);
|
|
394
398
|
this._defaultItemPressPrevented = prevented;
|
|
395
399
|
}
|
|
396
400
|
}
|
|
@@ -417,6 +421,24 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
417
421
|
targetRef: buttonRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : buttonRef,
|
|
418
422
|
}, true);
|
|
419
423
|
}
|
|
424
|
+
get logoDomRef() {
|
|
425
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="logo"]`);
|
|
426
|
+
}
|
|
427
|
+
get copilotDomRef() {
|
|
428
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="copilot"]`);
|
|
429
|
+
}
|
|
430
|
+
get notificationsDomRef() {
|
|
431
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="notifications"]`);
|
|
432
|
+
}
|
|
433
|
+
get overflowDomRef() {
|
|
434
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="overflow"]`);
|
|
435
|
+
}
|
|
436
|
+
get profileDomRef() {
|
|
437
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="profile"]`);
|
|
438
|
+
}
|
|
439
|
+
get productSwitchDomRef() {
|
|
440
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="product-switch"]`);
|
|
441
|
+
}
|
|
420
442
|
_getAllItems(showOverflowButton) {
|
|
421
443
|
let domOrder = -1;
|
|
422
444
|
const items = [
|
|
@@ -426,12 +448,15 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
426
448
|
classes: `${this.searchField.length ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-search-button ui5-shellbar-button`,
|
|
427
449
|
priority: 4,
|
|
428
450
|
domOrder: this.searchField.length ? (++domOrder) : -1,
|
|
429
|
-
|
|
451
|
+
styles: {
|
|
452
|
+
order: this.searchField.length ? 1 : -10,
|
|
453
|
+
},
|
|
430
454
|
id: `${this._id}-item-${1}`,
|
|
431
455
|
press: this._handleSearchIconPress.bind(this),
|
|
432
456
|
show: !!this.searchField.length,
|
|
433
457
|
},
|
|
434
458
|
...this.items.map((item, index) => {
|
|
459
|
+
item._getRealDomRef = () => this.getDomRef().querySelector(`*[data-ui5-stable=${item.stableDomRef}]`);
|
|
435
460
|
return {
|
|
436
461
|
icon: item.icon,
|
|
437
462
|
id: item._id,
|
|
@@ -441,7 +466,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
441
466
|
classes: "ui5-shellbar-custom-item ui5-shellbar-button",
|
|
442
467
|
priority: 1,
|
|
443
468
|
domOrder: (++domOrder),
|
|
444
|
-
|
|
469
|
+
styles: {
|
|
470
|
+
order: 2,
|
|
471
|
+
},
|
|
445
472
|
show: true,
|
|
446
473
|
press: this._handleCustomActionPress.bind(this),
|
|
447
474
|
custom: true,
|
|
@@ -454,7 +481,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
454
481
|
text: "Notifications",
|
|
455
482
|
classes: `${this.showNotifications ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-bell-button ui5-shellbar-button`,
|
|
456
483
|
priority: 3,
|
|
457
|
-
|
|
484
|
+
styles: {
|
|
485
|
+
order: this.showNotifications ? 3 : -10,
|
|
486
|
+
},
|
|
458
487
|
id: `${this._id}-item-${2}`,
|
|
459
488
|
show: this.showNotifications,
|
|
460
489
|
domOrder: this.showNotifications ? (++domOrder) : -1,
|
|
@@ -466,7 +495,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
466
495
|
classes: `${showOverflowButton ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button ui5-shellbar-button`,
|
|
467
496
|
priority: 5,
|
|
468
497
|
order: 4,
|
|
469
|
-
|
|
498
|
+
styles: {
|
|
499
|
+
order: showOverflowButton ? 4 : -1,
|
|
500
|
+
},
|
|
470
501
|
domOrder: showOverflowButton ? (++domOrder) : -1,
|
|
471
502
|
id: `${this.id}-item-${5}`,
|
|
472
503
|
press: this._handleOverflowPress.bind(this),
|
|
@@ -476,7 +507,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
476
507
|
text: "Person",
|
|
477
508
|
classes: `${this.hasProfile ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-image-button ui5-shellbar-button`,
|
|
478
509
|
priority: 4,
|
|
479
|
-
|
|
510
|
+
styles: {
|
|
511
|
+
order: this.hasProfile ? 5 : -10,
|
|
512
|
+
},
|
|
480
513
|
profile: true,
|
|
481
514
|
id: `${this._id}-item-${3}`,
|
|
482
515
|
domOrder: this.hasProfile ? (++domOrder) : -1,
|
|
@@ -488,7 +521,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
488
521
|
text: "Product Switch",
|
|
489
522
|
classes: `${this.showProductSwitch ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-button ui5-shellbar-button-product-switch`,
|
|
490
523
|
priority: 2,
|
|
491
|
-
|
|
524
|
+
styles: {
|
|
525
|
+
order: this.showProductSwitch ? 6 : -10,
|
|
526
|
+
},
|
|
492
527
|
id: `${this._id}-item-${4}`,
|
|
493
528
|
show: this.showProductSwitch,
|
|
494
529
|
domOrder: this.showProductSwitch ? (++domOrder) : -1,
|
|
@@ -526,6 +561,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
526
561
|
this.overflowPopover = staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
|
|
527
562
|
this.menuPopover = staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
|
|
528
563
|
}
|
|
564
|
+
async _getOverflowPopover() {
|
|
565
|
+
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
566
|
+
return staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
|
|
567
|
+
}
|
|
529
568
|
async _getMenuPopover() {
|
|
530
569
|
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
531
570
|
return staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
|
|
@@ -542,7 +581,6 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
542
581
|
wrapper: {
|
|
543
582
|
"ui5-shellbar-root": true,
|
|
544
583
|
"ui5-shellbar-with-searchfield": this.searchField.length,
|
|
545
|
-
"ui5-shellbar-with-coPilot": this.showCoPilot,
|
|
546
584
|
},
|
|
547
585
|
button: {
|
|
548
586
|
"ui5-shellbar-menu-button--interactive": this.hasMenuItems,
|
|
@@ -635,19 +673,19 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
635
673
|
return this.hasMenuItems ? this._menuPopoverExpanded : undefined;
|
|
636
674
|
}
|
|
637
675
|
get _shellbarText() {
|
|
638
|
-
return
|
|
676
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_LABEL);
|
|
639
677
|
}
|
|
640
678
|
get _logoText() {
|
|
641
|
-
return
|
|
679
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_LOGO);
|
|
642
680
|
}
|
|
643
681
|
get _copilotText() {
|
|
644
|
-
return
|
|
682
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_COPILOT);
|
|
645
683
|
}
|
|
646
684
|
get _notificationsText() {
|
|
647
|
-
return
|
|
685
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_NOTIFICATIONS, this.notificationsCount);
|
|
648
686
|
}
|
|
649
687
|
get _cancelBtnText() {
|
|
650
|
-
return
|
|
688
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_CANCEL);
|
|
651
689
|
}
|
|
652
690
|
get _showFullWidthSearch() {
|
|
653
691
|
const size = this._handleBarBreakpoints();
|
|
@@ -655,16 +693,16 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
655
693
|
return ((size === "S") || searchBtnHidden);
|
|
656
694
|
}
|
|
657
695
|
get _profileText() {
|
|
658
|
-
return
|
|
696
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_PROFILE);
|
|
659
697
|
}
|
|
660
698
|
get _productsText() {
|
|
661
|
-
return
|
|
699
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_PRODUCTS);
|
|
662
700
|
}
|
|
663
701
|
get _searchText() {
|
|
664
|
-
return
|
|
702
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_SEARCH);
|
|
665
703
|
}
|
|
666
704
|
get _overflowText() {
|
|
667
|
-
return
|
|
705
|
+
return ShellBar.i18nBundle.getText(i18nDefaults.SHELLBAR_OVERFLOW);
|
|
668
706
|
}
|
|
669
707
|
get accInfo() {
|
|
670
708
|
return {
|
|
@@ -697,7 +735,7 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
697
735
|
];
|
|
698
736
|
}
|
|
699
737
|
static async onDefine() {
|
|
700
|
-
await i18nBundle.
|
|
738
|
+
ShellBar.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
701
739
|
}
|
|
702
740
|
}
|
|
703
741
|
ShellBar.define();
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/common/thirdparty/base/renderer/LitRenderer'], function (UI5Element, litRender) { 'use strict';
|
|
2
2
|
|
|
3
3
|
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
4
|
|
|
@@ -17,12 +17,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
17
17
|
count: {
|
|
18
18
|
type: String,
|
|
19
19
|
},
|
|
20
|
-
stableDomRef: {
|
|
21
|
-
type: String,
|
|
22
|
-
},
|
|
23
20
|
},
|
|
24
21
|
events: {
|
|
25
|
-
"
|
|
22
|
+
"click": {
|
|
26
23
|
detail: {
|
|
27
24
|
targetRef: { type: HTMLElement },
|
|
28
25
|
},
|
|
@@ -36,8 +33,8 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
36
33
|
static get render() {
|
|
37
34
|
return litRender__default;
|
|
38
35
|
}
|
|
39
|
-
|
|
40
|
-
return
|
|
36
|
+
get stableDomRef() {
|
|
37
|
+
return `${this._id}-stable-dom-ref`;
|
|
41
38
|
}
|
|
42
39
|
}
|
|
43
40
|
ShellBarItem.define();
|
|
@@ -49,6 +49,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
49
49
|
static get metadata() {
|
|
50
50
|
return metadata;
|
|
51
51
|
}
|
|
52
|
+
static get staticAreaStyles() {
|
|
53
|
+
return [SideNavigation_css];
|
|
54
|
+
}
|
|
52
55
|
static get render() {
|
|
53
56
|
return litRender__default;
|
|
54
57
|
}
|
|
@@ -23,6 +23,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element'], function (UI5El
|
|
|
23
23
|
wholeItemToggleable: {
|
|
24
24
|
type: Boolean,
|
|
25
25
|
},
|
|
26
|
+
title: {
|
|
27
|
+
type: String,
|
|
28
|
+
},
|
|
26
29
|
},
|
|
27
30
|
events: {
|
|
28
31
|
},
|
|
@@ -38,6 +41,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element'], function (UI5El
|
|
|
38
41
|
static get metadata() {
|
|
39
42
|
return metadata;
|
|
40
43
|
}
|
|
44
|
+
get _tooltip() {
|
|
45
|
+
return this.title || this.text;
|
|
46
|
+
}
|
|
41
47
|
}
|
|
42
48
|
SideNavigationItem.define();
|
|
43
49
|
|
|
@@ -16,6 +16,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element'], function (UI5El
|
|
|
16
16
|
icon: {
|
|
17
17
|
type: String,
|
|
18
18
|
},
|
|
19
|
+
title: {
|
|
20
|
+
type: String,
|
|
21
|
+
},
|
|
19
22
|
},
|
|
20
23
|
events: {
|
|
21
24
|
},
|
|
@@ -24,6 +27,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element'], function (UI5El
|
|
|
24
27
|
static get metadata() {
|
|
25
28
|
return metadata;
|
|
26
29
|
}
|
|
30
|
+
get _tooltip() {
|
|
31
|
+
return this.title || this.text;
|
|
32
|
+
}
|
|
27
33
|
}
|
|
28
34
|
SideNavigationSubItem.define();
|
|
29
35
|
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element'], function (UI5Element) { 'use strict';
|
|
2
|
+
|
|
3
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
|
+
|
|
5
|
+
var UI5Element__default = /*#__PURE__*/_interopDefaultLegacy(UI5Element);
|
|
6
|
+
|
|
7
|
+
const metadata = {
|
|
8
|
+
tag: "ui5-sort-item",
|
|
9
|
+
properties: {
|
|
10
|
+
text: {
|
|
11
|
+
type: String,
|
|
12
|
+
},
|
|
13
|
+
selected: {
|
|
14
|
+
type: Boolean,
|
|
15
|
+
},
|
|
16
|
+
},
|
|
17
|
+
slots: {
|
|
18
|
+
},
|
|
19
|
+
events: {
|
|
20
|
+
},
|
|
21
|
+
};
|
|
22
|
+
class SortItem extends UI5Element__default {
|
|
23
|
+
static get metadata() {
|
|
24
|
+
return metadata;
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
SortItem.define();
|
|
28
|
+
|
|
29
|
+
return SortItem;
|
|
30
|
+
|
|
31
|
+
});
|
|
@@ -45,16 +45,15 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
45
45
|
this._itemNavigation = new ItemNavigation__default(this, {
|
|
46
46
|
getItemsCallback: () => this.items,
|
|
47
47
|
});
|
|
48
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
49
48
|
}
|
|
50
49
|
static get dependencies() {
|
|
51
50
|
return [TimelineItem];
|
|
52
51
|
}
|
|
53
52
|
static async onDefine() {
|
|
54
|
-
await i18nBundle.
|
|
53
|
+
Timeline.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
55
54
|
}
|
|
56
55
|
get ariaLabel() {
|
|
57
|
-
return
|
|
56
|
+
return Timeline.i18nBundle.getText(i18nDefaults.TIMELINE_ARIA_LABEL);
|
|
58
57
|
}
|
|
59
58
|
_onfocusin(event) {
|
|
60
59
|
const target = event.target;
|
|
@@ -31,6 +31,9 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
31
31
|
type: String,
|
|
32
32
|
defaultValue: UploadCollectionDnDMode.None,
|
|
33
33
|
},
|
|
34
|
+
accessibleName: {
|
|
35
|
+
type: String,
|
|
36
|
+
},
|
|
34
37
|
},
|
|
35
38
|
managedSlots: true,
|
|
36
39
|
slots: {
|
|
@@ -78,11 +81,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
78
81
|
];
|
|
79
82
|
}
|
|
80
83
|
static async onDefine() {
|
|
81
|
-
await i18nBundle.
|
|
84
|
+
UploadCollection.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
82
85
|
}
|
|
83
86
|
constructor() {
|
|
84
87
|
super();
|
|
85
|
-
this.i18nBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
86
88
|
this._bodyDnDHandler = event => {
|
|
87
89
|
if (this._dndOverlayMode !== UploadCollectionDnDMode.Drop) {
|
|
88
90
|
this._dndOverlayMode = event.mode;
|
|
@@ -148,6 +150,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
148
150
|
"uc-drag-overlay": this._dndOverlayMode === UploadCollectionDnDMode.Drag,
|
|
149
151
|
"uc-drop-overlay": this._dndOverlayMode === UploadCollectionDnDMode.Drop,
|
|
150
152
|
},
|
|
153
|
+
noFiles: {
|
|
154
|
+
"uc-no-files": true,
|
|
155
|
+
"uc-no-files-dnd-overlay": this._showDndOverlay,
|
|
156
|
+
},
|
|
151
157
|
};
|
|
152
158
|
}
|
|
153
159
|
get _root() {
|
|
@@ -160,22 +166,22 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/UI5Element', 'sap/ui/webc/com
|
|
|
160
166
|
return this._dndOverlayMode !== UploadCollectionDnDMode.None;
|
|
161
167
|
}
|
|
162
168
|
get _showNoData() {
|
|
163
|
-
return this.items.length === 0
|
|
169
|
+
return this.items.length === 0;
|
|
164
170
|
}
|
|
165
171
|
get _noDataText() {
|
|
166
|
-
return this.noDataText ||
|
|
172
|
+
return this.noDataText || UploadCollection.i18nBundle.getText(i18nDefaults.UPLOADCOLLECTION_NO_DATA_TEXT);
|
|
167
173
|
}
|
|
168
174
|
get _noDataDescription() {
|
|
169
|
-
return this.noDataDescription ||
|
|
175
|
+
return this.noDataDescription || UploadCollection.i18nBundle.getText(i18nDefaults.UPLOADCOLLECTION_NO_DATA_DESCRIPTION);
|
|
170
176
|
}
|
|
171
177
|
get _roleDescription() {
|
|
172
|
-
return
|
|
178
|
+
return UploadCollection.i18nBundle.getText(i18nDefaults.UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION);
|
|
173
179
|
}
|
|
174
180
|
get _dndOverlayText() {
|
|
175
181
|
if (this._dndOverlayMode === UploadCollectionDnDMode.Drag) {
|
|
176
|
-
return
|
|
182
|
+
return UploadCollection.i18nBundle.getText(i18nDefaults.UPLOADCOLLECTION_DRAG_FILE_INDICATOR);
|
|
177
183
|
}
|
|
178
|
-
return
|
|
184
|
+
return UploadCollection.i18nBundle.getText(i18nDefaults.UPLOADCOLLECTION_DROP_FILE_INDICATOR);
|
|
179
185
|
}
|
|
180
186
|
}
|
|
181
187
|
UploadCollection.define();
|
|
@@ -87,11 +87,10 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
87
87
|
];
|
|
88
88
|
}
|
|
89
89
|
static async onDefine() {
|
|
90
|
-
await
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
this.i18nFioriBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
90
|
+
[UploadCollectionItem.i18nFioriBundle] = await Promise.all([
|
|
91
|
+
i18nBundle.getI18nBundle("@ui5/webcomponents-fiori"),
|
|
92
|
+
super.onDefine(),
|
|
93
|
+
]);
|
|
95
94
|
}
|
|
96
95
|
async _initInputField() {
|
|
97
96
|
await Render.renderFinished();
|
|
@@ -207,22 +206,22 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
207
206
|
return getFileExtension__default(this.fileName);
|
|
208
207
|
}
|
|
209
208
|
get _renameBtnText() {
|
|
210
|
-
return
|
|
209
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT);
|
|
211
210
|
}
|
|
212
211
|
get _cancelRenameBtnText() {
|
|
213
|
-
return
|
|
212
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT);
|
|
214
213
|
}
|
|
215
214
|
get _showProgressIndicator() {
|
|
216
215
|
return this.uploadState !== UploadState.Complete;
|
|
217
216
|
}
|
|
218
217
|
get _progressText() {
|
|
219
218
|
if (this.uploadState === UploadState.Uploading) {
|
|
220
|
-
return
|
|
219
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_UPLOADING_STATE);
|
|
221
220
|
}
|
|
222
221
|
if (this.uploadState === UploadState.Error) {
|
|
223
|
-
return
|
|
222
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_ERROR_STATE);
|
|
224
223
|
}
|
|
225
|
-
return
|
|
224
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_READY_STATE);
|
|
226
225
|
}
|
|
227
226
|
get _showRetry() {
|
|
228
227
|
return !this.hideRetryButton && this.uploadState === UploadState.Error;
|
|
@@ -231,13 +230,13 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
231
230
|
return !this.hideTerminateButton && this.uploadState === UploadState.Uploading;
|
|
232
231
|
}
|
|
233
232
|
get _retryButtonTooltip() {
|
|
234
|
-
return
|
|
233
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT);
|
|
235
234
|
}
|
|
236
235
|
get _terminateButtonTooltip() {
|
|
237
|
-
return
|
|
236
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT);
|
|
238
237
|
}
|
|
239
238
|
get _editButtonTooltip() {
|
|
240
|
-
return
|
|
239
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT);
|
|
241
240
|
}
|
|
242
241
|
get valueStateName() {
|
|
243
242
|
if (this.uploadState === UploadState.Error) {
|