@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,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-BeforeSearch', './sapIllus-Scene-BeforeSearch', './sapIllus-Spot-BeforeSearch', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogBeforeSearch, sapIllusSceneBeforeSearch, sapIllusSpotBeforeSearch, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "BeforeSearch";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_BEFORESEARCH;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_BEFORESEARCH;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotBeforeSearch,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogBeforeSearch;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoActivities', './sapIllus-Scene-NoActivities', './sapIllus-Spot-NoActivities', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoActivities, sapIllusSceneNoActivities, sapIllusSpotNoActivities, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoActivities";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOACTIVITIES;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOACTIVITIES;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoActivities,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoActivities;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoData', './sapIllus-Scene-NoData', './sapIllus-Spot-NoData', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoData, sapIllusSceneNoData, sapIllusSpotNoData, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoData";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NODATA;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NODATA;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoData,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoData;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoEntries', './sapIllus-Scene-NoEntries', './sapIllus-Spot-NoEntries', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoEntries, sapIllusSceneNoEntries, sapIllusSpotNoEntries, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoEntries";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOENTRIES;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOENTRIES;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoEntries,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoEntries;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoMail', './sapIllus-Scene-NoMail', './sapIllus-Spot-NoMail', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoMail, sapIllusSceneNoMail, sapIllusSpotNoMail, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoMail";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOMAIL;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOMAIL;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoMail,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoMail;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoNotifications', './sapIllus-Scene-NoNotifications', './sapIllus-Spot-NoNotifications', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoNotifications, sapIllusSceneNoNotifications, sapIllusSpotNoNotifications, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoNotifications";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NONOTIFICATIONS;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NONOTIFICATIONS;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoNotifications,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoNotifications;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoSavedItems', './sapIllus-Scene-NoSavedItems', './sapIllus-Spot-NoSavedItems', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoSavedItems, sapIllusSceneNoSavedItems, sapIllusSpotNoSavedItems, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoSavedItems";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOSAVEDITEMS;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOSAVEDITEMS;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoSavedItems,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoSavedItems;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoSearchResults', './sapIllus-Scene-NoSearchResults', './sapIllus-Spot-NoSearchResults', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoSearchResults, sapIllusSceneNoSearchResults, sapIllusSpotNoSearchResults, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoSearchResults";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOSEARCHRESULTS;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOSEARCHRESULTS;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoSearchResults,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoSearchResults;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-NoTasks', './sapIllus-Scene-NoTasks', './sapIllus-Spot-NoTasks', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogNoTasks, sapIllusSceneNoTasks, sapIllusSpotNoTasks, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "NoTasks";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_NOTASKS;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_NOTASKS;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotNoTasks,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogNoTasks;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-UnableToLoad', './sapIllus-Scene-UnableToLoad', './sapIllus-Spot-UnableToLoad', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogUnableToLoad, sapIllusSceneUnableToLoad, sapIllusSpotUnableToLoad, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "UnableToLoad";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_UNABLETOLOAD;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_UNABLETOLOAD;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotUnableToLoad,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogUnableToLoad;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './sapIllus-Dialog-UnableToUpload', './sapIllus-Scene-UnableToUpload', './sapIllus-Spot-UnableToUpload', '../generated/i18n/i18n-defaults'], function (exports, Illustrations, sapIllusDialogUnableToUpload, sapIllusSceneUnableToUpload, sapIllusSpotUnableToUpload, i18nDefaults) { 'use strict';
|
|
2
2
|
|
|
3
3
|
const name = "UnableToUpload";
|
|
4
|
+
const set = "fiori";
|
|
4
5
|
const title = i18nDefaults.IM_TITLE_UNABLETOUPLOAD;
|
|
5
6
|
const subtitle = i18nDefaults.IM_SUBTITLE_UNABLETOUPLOAD;
|
|
6
7
|
Illustrations.registerIllustration(name, {
|
|
@@ -9,6 +10,7 @@ sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/I
|
|
|
9
10
|
spotSvg: sapIllusSpotUnableToUpload,
|
|
10
11
|
title,
|
|
11
12
|
subtitle,
|
|
13
|
+
set,
|
|
12
14
|
});
|
|
13
15
|
|
|
14
16
|
exports.dialogSvg = sapIllusDialogUnableToUpload;
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-CodePlaceholder', './tnt-Scene-CodePlaceholder', './tnt-Spot-CodePlaceholder'], function (exports, Illustrations, tntDialogCodePlaceholder, tntSceneCodePlaceholder, tntSpotCodePlaceholder) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "CodePlaceholder";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogCodePlaceholder,
|
|
7
|
+
sceneSvg: tntSceneCodePlaceholder,
|
|
8
|
+
spotSvg: tntSpotCodePlaceholder,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogCodePlaceholder;
|
|
13
|
+
exports.sceneSvg = tntSceneCodePlaceholder;
|
|
14
|
+
exports.spotSvg = tntSpotCodePlaceholder;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Company', './tnt-Scene-Company', './tnt-Spot-Company'], function (exports, Illustrations, tntDialogCompany, tntSceneCompany, tntSpotCompany) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Company";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogCompany,
|
|
7
|
+
sceneSvg: tntSceneCompany,
|
|
8
|
+
spotSvg: tntSpotCompany,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogCompany;
|
|
13
|
+
exports.sceneSvg = tntSceneCompany;
|
|
14
|
+
exports.spotSvg = tntSpotCompany;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-ExternalLink', './tnt-Scene-ExternalLink', './tnt-Spot-ExternalLink'], function (exports, Illustrations, tntDialogExternalLink, tntSceneExternalLink, tntSpotExternalLink) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "ExternalLink";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogExternalLink,
|
|
7
|
+
sceneSvg: tntSceneExternalLink,
|
|
8
|
+
spotSvg: tntSpotExternalLink,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogExternalLink;
|
|
13
|
+
exports.sceneSvg = tntSceneExternalLink;
|
|
14
|
+
exports.spotSvg = tntSpotExternalLink;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-FaceID', './tnt-Scene-FaceID', './tnt-Spot-FaceID'], function (exports, Illustrations, tntDialogFaceID, tntSceneFaceID, tntSpotFaceID) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "FaceID";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogFaceID,
|
|
7
|
+
sceneSvg: tntSceneFaceID,
|
|
8
|
+
spotSvg: tntSpotFaceID,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogFaceID;
|
|
13
|
+
exports.sceneSvg = tntSceneFaceID;
|
|
14
|
+
exports.spotSvg = tntSpotFaceID;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Fingerprint', './tnt-Scene-Fingerprint', './tnt-Spot-Fingerprint'], function (exports, Illustrations, tntDialogFingerprint, tntSceneFingerprint, tntSpotFingerprint) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Fingerprint";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogFingerprint,
|
|
7
|
+
sceneSvg: tntSceneFingerprint,
|
|
8
|
+
spotSvg: tntSpotFingerprint,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogFingerprint;
|
|
13
|
+
exports.sceneSvg = tntSceneFingerprint;
|
|
14
|
+
exports.spotSvg = tntSpotFingerprint;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Lock', './tnt-Scene-Lock', './tnt-Spot-Lock'], function (exports, Illustrations, tntDialogLock, tntSceneLock, tntSpotLock) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Lock";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogLock,
|
|
7
|
+
sceneSvg: tntSceneLock,
|
|
8
|
+
spotSvg: tntSpotLock,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogLock;
|
|
13
|
+
exports.sceneSvg = tntSceneLock;
|
|
14
|
+
exports.spotSvg = tntSpotLock;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Mission', './tnt-Scene-Mission', './tnt-Spot-Mission'], function (exports, Illustrations, tntDialogMission, tntSceneMission, tntSpotMission) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Mission";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogMission,
|
|
7
|
+
sceneSvg: tntSceneMission,
|
|
8
|
+
spotSvg: tntSpotMission,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogMission;
|
|
13
|
+
exports.sceneSvg = tntSceneMission;
|
|
14
|
+
exports.spotSvg = tntSpotMission;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-NoApplications', './tnt-Scene-NoApplications', './tnt-Spot-NoApplications'], function (exports, Illustrations, tntDialogNoApplications, tntSceneNoApplications, tntSpotNoApplications) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "NoApplications";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogNoApplications,
|
|
7
|
+
sceneSvg: tntSceneNoApplications,
|
|
8
|
+
spotSvg: tntSpotNoApplications,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogNoApplications;
|
|
13
|
+
exports.sceneSvg = tntSceneNoApplications;
|
|
14
|
+
exports.spotSvg = tntSpotNoApplications;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-NoFlows', './tnt-Scene-NoFlows', './tnt-Spot-NoFlows'], function (exports, Illustrations, tntDialogNoFlows, tntSceneNoFlows, tntSpotNoFlows) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "NoFlows";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogNoFlows,
|
|
7
|
+
sceneSvg: tntSceneNoFlows,
|
|
8
|
+
spotSvg: tntSpotNoFlows,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogNoFlows;
|
|
13
|
+
exports.sceneSvg = tntSceneNoFlows;
|
|
14
|
+
exports.spotSvg = tntSpotNoFlows;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-NoUsers', './tnt-Scene-NoUsers', './tnt-Spot-NoUsers'], function (exports, Illustrations, tntDialogNoUsers, tntSceneNoUsers, tntSpotNoUsers) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "NoUsers";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogNoUsers,
|
|
7
|
+
sceneSvg: tntSceneNoUsers,
|
|
8
|
+
spotSvg: tntSpotNoUsers,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogNoUsers;
|
|
13
|
+
exports.sceneSvg = tntSceneNoUsers;
|
|
14
|
+
exports.spotSvg = tntSpotNoUsers;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Radar', './tnt-Scene-Radar', './tnt-Spot-Radar'], function (exports, Illustrations, tntDialogRadar, tntSceneRadar, tntSpotRadar) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Radar";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogRadar,
|
|
7
|
+
sceneSvg: tntSceneRadar,
|
|
8
|
+
spotSvg: tntSpotRadar,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogRadar;
|
|
13
|
+
exports.sceneSvg = tntSceneRadar;
|
|
14
|
+
exports.spotSvg = tntSpotRadar;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Services', './tnt-Scene-Services', './tnt-Spot-Services'], function (exports, Illustrations, tntDialogServices, tntSceneServices, tntSpotServices) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Services";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogServices,
|
|
7
|
+
sceneSvg: tntSceneServices,
|
|
8
|
+
spotSvg: tntSpotServices,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogServices;
|
|
13
|
+
exports.sceneSvg = tntSceneServices;
|
|
14
|
+
exports.spotSvg = tntSpotServices;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-SessionExpired', './tnt-Scene-SessionExpired', './tnt-Spot-SessionExpired'], function (exports, Illustrations, tntDialogSessionExpired, tntSceneSessionExpired, tntSpotSessionExpired) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "SessionExpired";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogSessionExpired,
|
|
7
|
+
sceneSvg: tntSceneSessionExpired,
|
|
8
|
+
spotSvg: tntSpotSessionExpired,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogSessionExpired;
|
|
13
|
+
exports.sceneSvg = tntSceneSessionExpired;
|
|
14
|
+
exports.spotSvg = tntSpotSessionExpired;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-SessionExpiring', './tnt-Scene-SessionExpiring', './tnt-Spot-SessionExpiring'], function (exports, Illustrations, tntDialogSessionExpiring, tntSceneSessionExpiring, tntSpotSessionExpiring) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "SessionExpiring";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogSessionExpiring,
|
|
7
|
+
sceneSvg: tntSceneSessionExpiring,
|
|
8
|
+
spotSvg: tntSpotSessionExpiring,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogSessionExpiring;
|
|
13
|
+
exports.sceneSvg = tntSceneSessionExpiring;
|
|
14
|
+
exports.spotSvg = tntSpotSessionExpiring;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Success', './tnt-Scene-Success', './tnt-Spot-Success'], function (exports, Illustrations, tntDialogSuccess, tntSceneSuccess, tntSpotSuccess) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Success";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogSuccess,
|
|
7
|
+
sceneSvg: tntSceneSuccess,
|
|
8
|
+
spotSvg: tntSpotSuccess,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogSuccess;
|
|
13
|
+
exports.sceneSvg = tntSceneSuccess;
|
|
14
|
+
exports.spotSvg = tntSpotSuccess;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-SuccessfulAuth', './tnt-Scene-SuccessfulAuth', './tnt-Spot-SuccessfulAuth'], function (exports, Illustrations, tntDialogSuccessfulAuth, tntSceneSuccessfulAuth, tntSpotSuccessfulAuth) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "SuccessfulAuth";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogSuccessfulAuth,
|
|
7
|
+
sceneSvg: tntSceneSuccessfulAuth,
|
|
8
|
+
spotSvg: tntSpotSuccessfulAuth,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogSuccessfulAuth;
|
|
13
|
+
exports.sceneSvg = tntSceneSuccessfulAuth;
|
|
14
|
+
exports.spotSvg = tntSpotSuccessfulAuth;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-Unlock', './tnt-Scene-Unlock', './tnt-Spot-Unlock'], function (exports, Illustrations, tntDialogUnlock, tntSceneUnlock, tntSpotUnlock) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "Unlock";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogUnlock,
|
|
7
|
+
sceneSvg: tntSceneUnlock,
|
|
8
|
+
spotSvg: tntSpotUnlock,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogUnlock;
|
|
13
|
+
exports.sceneSvg = tntSceneUnlock;
|
|
14
|
+
exports.spotSvg = tntSpotUnlock;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(['exports', 'sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations', './tnt-Dialog-UnsuccessfulAuth', './tnt-Scene-UnsuccessfulAuth', './tnt-Spot-UnsuccessfulAuth'], function (exports, Illustrations, tntDialogUnsuccessfulAuth, tntSceneUnsuccessfulAuth, tntSpotUnsuccessfulAuth) { 'use strict';
|
|
2
|
+
|
|
3
|
+
const name = "UnsuccessfulAuth";
|
|
4
|
+
const set = "tnt";
|
|
5
|
+
Illustrations.registerIllustration(name, {
|
|
6
|
+
dialogSvg: tntDialogUnsuccessfulAuth,
|
|
7
|
+
sceneSvg: tntSceneUnsuccessfulAuth,
|
|
8
|
+
spotSvg: tntSpotUnsuccessfulAuth,
|
|
9
|
+
set,
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
exports.dialogSvg = tntDialogUnsuccessfulAuth;
|
|
13
|
+
exports.sceneSvg = tntSceneUnsuccessfulAuth;
|
|
14
|
+
exports.spotSvg = tntSpotUnsuccessfulAuth;
|
|
15
|
+
|
|
16
|
+
Object.defineProperty(exports, '__esModule', { value: true });
|
|
17
|
+
|
|
18
|
+
});
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
sap.ui.define(function () { 'use strict';
|
|
2
|
+
|
|
3
|
+
var dialogSvg = `<svg width="160" height="160" viewBox="0 0 160 160" id="tnt-Dialog-CodePlaceholder">
|
|
4
|
+
<path fill="var(--sapIllus_PatternShadow)" d="M151.0156,19 L148.3576,19 L148.3576,144.219 C148.3576,146.419 146.5736,148.203 144.3726,148.203 L18.9996,148.203 L18.9996,151.016 C18.9996,153.217 20.7836,155 22.9836,155 L151.0156,155 C153.2166,155 154.9996,153.217 154.9996,151.016 L154.9996,22.984 C154.9996,20.783 153.2166,19 151.0156,19" class="sapIllus_PatternShadow"/>
|
|
5
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M144.5161,148.5 L16.4841,148.5 C14.2841,148.5 12.5001,146.716 12.5001,144.516 L12.5001,16.483 C12.5001,14.283 14.2841,12.5 16.4841,12.5 L144.5161,12.5 C146.7161,12.5 148.5001,14.283 148.5001,16.483 L148.5001,144.516 C148.5001,146.716 146.7161,148.5 144.5161,148.5" class="sapIllus_ObjectFillColor"/>
|
|
6
|
+
<path fill="var(--sapIllus_StrokeDetailColor)" d="M16.4839,13 C14.5629,13 12.9999,14.562 12.9999,16.483 L12.9999,144.516 C12.9999,146.437 14.5629,148 16.4839,148 L144.5159,148 C146.4369,148 148.0009,146.437 148.0009,144.516 L148.0009,16.483 C148.0009,14.562 146.4369,13 144.5159,13 L16.4839,13 Z M144.5159,149 L16.4839,149 C14.0109,149 11.9999,146.988 11.9999,144.516 L11.9999,16.483 C11.9999,14.012 14.0109,12 16.4839,12 L144.5159,12 C146.9889,12 149.0009,14.012 149.0009,16.483 L149.0009,144.516 C149.0009,146.988 146.9889,149 144.5159,149 L144.5159,149 Z" class="sapIllus_StrokeDetailColor"/>
|
|
7
|
+
<path fill="var(--sapIllus_BackgroundColor)" d="M143.5005 144L137.5005 144C137.2245 144 137.0005 143.776 137.0005 143.5 137.0005 143.224 137.2245 143 137.5005 143L143.0005 143 143.0005 137.5C143.0005 137.224 143.2245 137 143.5005 137 143.7765 137 144.0005 137.224 144.0005 137.5L144.0005 143.5C144.0005 143.776 143.7765 144 143.5005 144M124.7222 144L111.9452 144C111.6682 144 111.4452 143.776 111.4452 143.5 111.4452 143.224 111.6682 143 111.9452 143L124.7222 143C124.9982 143 125.2222 143.224 125.2222 143.5 125.2222 143.776 124.9982 144 124.7222 144M99.1665 144L86.3895 144C86.1125 144 85.8895 143.776 85.8895 143.5 85.8895 143.224 86.1125 143 86.3895 143L99.1665 143C99.4425 143 99.6665 143.224 99.6665 143.5 99.6665 143.776 99.4425 144 99.1665 144M73.6108 144L60.8338 144C60.5568 144 60.3338 143.776 60.3338 143.5 60.3338 143.224 60.5568 143 60.8338 143L73.6108 143C73.8868 143 74.1108 143.224 74.1108 143.5 74.1108 143.776 73.8868 144 73.6108 144M48.0557 144L35.2777 144C35.0017 144 34.7777 143.776 34.7777 143.5 34.7777 143.224 35.0017 143 35.2777 143L48.0557 143C48.3317 143 48.5557 143.224 48.5557 143.5 48.5557 143.776 48.3317 144 48.0557 144M22.5 144L16.5 144C16.224 144 16 143.776 16 143.5L16 137.5C16 137.224 16.224 137 16.5 137 16.776 137 17 137.224 17 137.5L17 143 22.5 143C22.776 143 23 143.224 23 143.5 23 143.776 22.776 144 22.5 144M16.5 125.2217C16.224 125.2217 16 124.9977 16 124.7217L16 111.9447C16 111.6677 16.224 111.4447 16.5 111.4447 16.776 111.4447 17 111.6677 17 111.9447L17 124.7217C17 124.9977 16.776 125.2217 16.5 125.2217M16.5 99.666C16.224 99.666 16 99.442 16 99.166L16 86.389C16 86.112 16.224 85.889 16.5 85.889 16.776 85.889 17 86.112 17 86.389L17 99.166C17 99.442 16.776 99.666 16.5 99.666M16.5 74.1104C16.224 74.1104 16 73.8864 16 73.6104L16 60.8334C16 60.5564 16.224 60.3334 16.5 60.3334 16.776 60.3334 17 60.5564 17 60.8334L17 73.6104C17 73.8864 16.776 74.1104 16.5 74.1104M16.5 48.5547C16.224 48.5547 16 48.3307 16 48.0547L16 35.2777C16 35.0007 16.224 34.7777 16.5 34.7777 16.776 34.7777 17 35.0007 17 35.2777L17 48.0547C17 48.3307 16.776 48.5547 16.5 48.5547M16.5 23C16.224 23 16 22.776 16 22.5L16 16.5C16 16.224 16.224 16 16.5 16L22.5 16C22.776 16 23 16.224 23 16.5 23 16.776 22.776 17 22.5 17L17 17 17 22.5C17 22.776 16.776 23 16.5 23M124.7222 17L111.9452 17C111.6682 17 111.4452 16.776 111.4452 16.5 111.4452 16.224 111.6682 16 111.9452 16L124.7222 16C124.9982 16 125.2222 16.224 125.2222 16.5 125.2222 16.776 124.9982 17 124.7222 17M99.1665 17L86.3895 17C86.1125 17 85.8895 16.776 85.8895 16.5 85.8895 16.224 86.1125 16 86.3895 16L99.1665 16C99.4425 16 99.6665 16.224 99.6665 16.5 99.6665 16.776 99.4425 17 99.1665 17M73.6113 17L60.8333 17C60.5573 17 60.3333 16.776 60.3333 16.5 60.3333 16.224 60.5573 16 60.8333 16L73.6113 16C73.8873 16 74.1113 16.224 74.1113 16.5 74.1113 16.776 73.8873 17 73.6113 17M48.0557 17L35.2777 17C35.0017 17 34.7777 16.776 34.7777 16.5 34.7777 16.224 35.0017 16 35.2777 16L48.0557 16C48.3317 16 48.5557 16.224 48.5557 16.5 48.5557 16.776 48.3317 17 48.0557 17M143.5005 23C143.2245 23 143.0005 22.776 143.0005 22.5L143.0005 17 137.5005 17C137.2245 17 137.0005 16.776 137.0005 16.5 137.0005 16.224 137.2245 16 137.5005 16L143.5005 16C143.7765 16 144.0005 16.224 144.0005 16.5L144.0005 22.5C144.0005 22.776 143.7765 23 143.5005 23M143.5005 125.2217C143.2245 125.2217 143.0005 124.9977 143.0005 124.7217L143.0005 111.9447C143.0005 111.6677 143.2245 111.4447 143.5005 111.4447 143.7765 111.4447 144.0005 111.6677 144.0005 111.9447L144.0005 124.7217C144.0005 124.9977 143.7765 125.2217 143.5005 125.2217M143.5005 99.666C143.2245 99.666 143.0005 99.442 143.0005 99.166L143.0005 86.389C143.0005 86.112 143.2245 85.889 143.5005 85.889 143.7765 85.889 144.0005 86.112 144.0005 86.389L144.0005 99.166C144.0005 99.442 143.7765 99.666 143.5005 99.666M143.5005 74.1104C143.2245 74.1104 143.0005 73.8864 143.0005 73.6104L143.0005 60.8334C143.0005 60.5564 143.2245 60.3334 143.5005 60.3334 143.7765 60.3334 144.0005 60.5564 144.0005 60.8334L144.0005 73.6104C144.0005 73.8864 143.7765 74.1104 143.5005 74.1104M143.5005 48.5547C143.2245 48.5547 143.0005 48.3307 143.0005 48.0547L143.0005 35.2777C143.0005 35.0007 143.2245 34.7777 143.5005 34.7777 143.7765 34.7777 144.0005 35.0007 144.0005 35.2777L144.0005 48.0547C144.0005 48.3307 143.7765 48.5547 143.5005 48.5547" class="sapIllus_BackgroundColor"/>
|
|
8
|
+
</svg>`;
|
|
9
|
+
|
|
10
|
+
return dialogSvg;
|
|
11
|
+
|
|
12
|
+
});
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
sap.ui.define(function () { 'use strict';
|
|
2
|
+
|
|
3
|
+
var dialogSvg = `<svg width="160" height="160" viewBox="0 0 160 160" id="tnt-Dialog-Company">
|
|
4
|
+
<path fill="var(--sapIllus_BackgroundColor)" d="M38.1847,139.791 L127.1847,139.791 C145.0777,139.791 156.3477,100.79 151.1897,77.434 C141.9327,35.507 103.4597,17.651 68.6257,22.89 C52.5167,25.312 37.1227,32.826 25.4207,44.345 C9.3107,60.201 1.2417,95.745 11.6907,120.442 C18.1847,135.791 29.1847,139.791 38.1847,139.791" class="sapIllus_BackgroundColor"/>
|
|
5
|
+
<path fill="var(--sapIllus_BrandColorSecondary)" d="M109.1852,50.0049 L109.1852,40.1639 C109.1852,39.8639 108.8532,39.2539 108.2142,39.2919 L79.5592,39.2919 C78.9412,39.2919 78.7662,39.6509 78.7662,40.2069 L78.7662,139.6389 L109.1852,139.6539 L109.1852,50.0079 L109.1852,50.0049 Z" class="sapIllus_BrandColorSecondary"/>
|
|
6
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M85.7057,117.876 L85.7057,67.491 L85.7057,62.215 C85.7057,61.927 85.5157,61.674 85.2387,61.594 L54.1517,52.562 C53.7367,52.44 53.3227,52.75 53.3247,53.183 C53.3307,54.854 53.3457,58.383 53.3457,58.509 L53.3457,114.463 C53.3457,114.672 53.2447,114.868 53.0747,114.989 L39.8587,124.429 C39.7927,124.476 39.7537,124.551 39.7537,124.632 L39.7537,139.04 C39.7537,139.177 39.8657,139.289 40.0037,139.291 L85.4527,139.271 C85.5927,139.272 85.7057,139.16 85.7057,139.021 L85.7057,117.876 Z" class="sapIllus_ObjectFillColor"/>
|
|
7
|
+
<path fill="var(--sapIllus_PatternShadow)" d="M85.8395,117.876 L85.8395,67.491 L85.8395,62.215 C85.8395,61.927 85.6505,61.674 85.3735,61.594 L82.5685,60.779 L59.9225,139.282 L85.5865,139.271 C85.7265,139.272 85.8395,139.16 85.8395,139.021 L85.8395,117.876 Z" class="sapIllus_PatternShadow"/>
|
|
8
|
+
<path fill="var(--sapIllus_Layering2)" d="M79.2614 98.4541L70.2714 98.4541C69.7154 98.4541 69.2654 98.0041 69.2654 97.4481L69.2654 73.5761C69.2654 73.0201 69.7154 72.5691 70.2714 72.5691L79.2614 72.5691C79.8174 72.5691 80.2674 73.0201 80.2674 73.5761L80.2674 97.4481C80.2674 98.0041 79.8174 98.4541 79.2614 98.4541M57.3043 138.791L50.1843 138.791 50.1843 126.657C50.1843 126.212 50.5453 125.852 50.9903 125.852L56.4983 125.852C56.9433 125.852 57.3043 126.212 57.3043 126.657L57.3043 138.791z" class="sapIllus_Layering2"/>
|
|
9
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M51.4694 132.7558C51.4694 132.2198 51.9044 131.7848 52.4404 131.7848 52.9764 131.7848 53.4104 132.2198 53.4104 132.7558 53.4104 133.2918 52.9764 133.7268 52.4404 133.7268 51.9044 133.7268 51.4694 133.2918 51.4694 132.7558M124.8141 139.291L101.4111 139.291 101.4111 102.837C101.4111 102.62 101.6041 102.349 101.8121 102.206L124.0301 91.159C124.2591 91.043 124.8141 91.129 124.8141 91.745L124.8141 139.291z" class="sapIllus_ObjectFillColor"/>
|
|
10
|
+
<path fill="var(--sapIllus_AccentColor)" d="M113.4664,117.5762 L106.5644,117.5762 C106.3784,117.5762 106.2294,117.4262 106.2294,117.2412 L106.2294,110.2442 C106.2294,108.2112 107.8774,106.5632 109.9094,106.5632 L110.1194,106.5632 C112.1534,106.5632 113.8004,108.2112 113.8004,110.2442 L113.8004,117.2412 C113.8004,117.4262 113.6514,117.5762 113.4664,117.5762" class="sapIllus_AccentColor"/>
|
|
11
|
+
<path fill="var(--sapIllus_StrokeDetailColor)" d="M40.254 124.7607L53.364 115.3967C53.666 115.1817 53.845 114.8327 53.845 114.4627L53.845 58.5087C53.845 58.3827 53.831 54.8527 53.824 53.1807 53.824 53.1197 53.855 53.0847 53.881 53.0647 53.903 53.0487 53.951 53.0267 54.012 53.0417L85.1 62.0737C85.163 62.0917 85.206 62.1487 85.206 62.2147L85.206 138.7707 57.379 138.7827 40.254 138.7827 40.254 124.7607zM94.23 138.7827L86.206 138.7827 86.206 62.2147C86.206 61.7067 85.866 61.2547 85.379 61.1137L54.292 52.0807C53.941 51.9787 53.571 52.0457 53.279 52.2667 52.988 52.4857 52.823 52.8207 52.824 53.1847 52.831 54.8547 52.845 58.3827 52.845 58.5087L52.845 114.4627C52.845 114.5097 52.822 114.5547 52.784 114.5817L39.569 124.0217C39.372 124.1607 39.254 124.3897 39.254 124.6317L39.254 138.7827 33.007 138.7827C32.731 138.7827 32.507 139.0067 32.507 139.2827 32.507 139.5597 32.731 139.7827 33.007 139.7827L39.967 139.7827C39.98 139.7837 39.991 139.7907 40.004 139.7907L57.316 139.7827 94.23 139.7827C94.506 139.7827 94.73 139.5597 94.73 139.2827 94.73 139.0067 94.506 138.7827 94.23 138.7827L94.23 138.7827zM101.9098 102.8515C101.9188 102.8085 101.9958 102.6865 102.0348 102.6535L124.2908 91.6285C124.2998 91.6355 124.3138 91.6745 124.3138 91.7455L124.3138 138.7835 101.9108 138.7835 101.9098 102.8515zM130.2618 138.7835L125.3138 138.7835 125.3138 91.7455C125.3138 91.1695 124.9988 90.8895 124.8108 90.7745 124.5068 90.5875 124.1008 90.5615 123.8068 90.7115L101.5298 101.7935C101.2218 102.0045 100.9108 102.4095 100.9108 102.8365L100.9108 138.7835 98.7638 138.7835C98.4878 138.7835 98.2638 139.0065 98.2638 139.2835 98.2638 139.5595 98.4878 139.7835 98.7638 139.7835L100.9108 139.7835 100.9108 139.7905 125.3138 139.7905 125.3138 139.7835 130.2618 139.7835C130.5378 139.7835 130.7618 139.5595 130.7618 139.2835 130.7618 139.0065 130.5378 138.7835 130.2618 138.7835L130.2618 138.7835z" class="sapIllus_StrokeDetailColor"/>
|
|
12
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M126.2467 76.418C126.2817 76.401 126.3167 76.385 126.3517 76.367 128.2627 75.397 128.3927 73.089 129.8307 71.686 130.8497 70.69 132.4637 70.358 133.7917 70.872 135.1207 71.385 136.0927 72.716 136.1787 74.137 136.2267 74.95 136.0117 75.782 136.2037 76.574 136.8617 79.289 140.0597 76.754 141.4317 76.386 142.5317 76.091 143.9547 76.414 144.3357 77.488 144.6157 78.276 144.3317 79.374 145.0477 79.809 145.4567 80.058 145.9787 79.92 146.4447 79.807 147.5227 79.545 148.7177 79.467 149.6887 80.003 150.6597 80.538 151.2517 81.857 150.6867 82.813 150.4687 83.182 150.1127 83.451 149.7447 83.673 145.9247 85.969 141.3557 83.386 137.3807 83.007 133.6397 82.649 130.0287 83.891 126.3227 84.033 124.6887 84.096 122.9427 83.755 121.7617 82.624 120.5807 81.492 120.2257 79.421 121.3327 78.216 122.5287 76.913 124.6447 77.173 126.2467 76.418M44.0758 100.2754C43.6498 100.2404 43.2178 100.2624 42.7918 100.3494 43.2448 100.2564 42.2798 98.0844 42.1298 97.8284 41.6148 96.9444 40.8478 96.2004 39.9108 95.7784 38.1808 94.9974 36.4528 95.5244 35.0708 96.7184 33.7488 97.8614 32.9398 99.6224 31.3298 100.4204 31.2618 100.4544 31.1868 100.4864 31.1128 100.4694 31.0558 100.4574 31.0098 100.4194 30.9658 100.3804 30.1108 99.6494 29.1568 99.1614 28.0138 99.0834 26.0258 98.9474 23.9828 100.1294 23.3228 102.0494 23.1868 102.4424 23.1078 102.8614 22.8818 103.2104 22.0268 104.5324 20.3518 103.9074 19.1958 103.4854 14.4648 101.7584 12.1048 110.9614 18.8028 109.8694 20.5888 109.5784 22.4438 109.0974 24.2478 108.9814 25.9238 108.8744 27.6748 108.9554 29.3588 109.0694 33.0308 109.3184 36.6618 109.9414 40.3208 110.3224 42.8678 110.5884 45.9888 110.0914 47.5958 107.8774 48.6148 106.4724 48.7838 104.4994 48.0208 102.9414 47.2788 101.4284 45.7258 100.4144 44.0758 100.2754M103.3659 50.7881L99.4569 50.7881 99.4569 47.8841C99.4569 47.3321 99.9039 46.8851 100.4559 46.8851L102.3659 46.8851C102.9189 46.8851 103.3659 47.3321 103.3659 47.8841L103.3659 50.7881zM103.3659 59.3584L99.4569 59.3584 99.4569 56.4544C99.4569 55.9014 99.9039 55.4544 100.4559 55.4544L102.3659 55.4544C102.9189 55.4544 103.3659 55.9014 103.3659 56.4544L103.3659 59.3584zM103.3659 67.9277L99.4569 67.9277 99.4569 65.0237C99.4569 64.4717 99.9039 64.0247 100.4559 64.0247L102.3659 64.0247C102.9189 64.0247 103.3659 64.4717 103.3659 65.0237L103.3659 67.9277z" class="sapIllus_ObjectFillColor"/>
|
|
13
|
+
<polygon fill="var(--sapIllus_StrokeDetailColor)" points="106.161 118.342 113.873 118.342 113.873 119.213 106.161 118.469" class="sapIllus_StrokeDetailColor"/>
|
|
14
|
+
<polygon fill="var(--sapIllus_StrokeDetailColor)" points="69.338 99.244 80.34 99.244 80.34 100.487 69.338 99.425" class="sapIllus_StrokeDetailColor"/>
|
|
15
|
+
</svg>`;
|
|
16
|
+
|
|
17
|
+
return dialogSvg;
|
|
18
|
+
|
|
19
|
+
});
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
sap.ui.define(function () { 'use strict';
|
|
2
|
+
|
|
3
|
+
var dialogSvg = `<svg width="160" height="160" viewBox="0 0 160 160" id="tnt-Dialog-ExternalLink">
|
|
4
|
+
<path fill="var(--sapIllus_PatternShadow)" d="M136.0742,25.2483 L134.2732,25.2483 L134.2732,43.0833 C134.2732,44.5283 132.5072,45.2173 131.5312,44.1503 L127.6652,39.9043 C127.6142,39.8503 127.5562,39.8073 127.5002,39.7613 L127.5002,46.0553 L127.5002,114.6943 C127.5002,116.8263 125.7712,118.5553 123.6392,118.5553 L31.5562,118.5553 L31.5582,121.6063 C31.5582,123.7373 33.2842,125.4653 35.4142,125.4653 L129.6392,125.4653 C131.7712,125.4653 133.5002,123.7363 133.5002,121.6043 L133.5002,45.3563 L134.9042,46.8973 C135.8792,47.9653 137.6462,47.2763 137.6462,45.8313 L137.6462,26.8203 C137.6462,25.9483 136.9462,25.2483 136.0742,25.2483" class="sapIllus_PatternShadow"/>
|
|
5
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M25.5581,114.6973 C25.5581,116.8273 27.2851,118.5543 29.4141,118.5543 L123.6401,118.5543 C125.7711,118.5543 127.5001,116.8263 127.5001,114.6943 L127.5001,46.0543 L25.5101,46.0543 L25.5581,114.6973 Z" class="sapIllus_ObjectFillColor"/>
|
|
6
|
+
<path fill="var(--sapIllus_Layering2)" d="M127.5,46.0547 L25.5,46.0547 L25.5,32.2867 C25.5,30.2257 27.171,28.5547 29.232,28.5547 L124.272,28.5547 C126.055,28.5547 127.5,29.9997 127.5,31.7827 L127.5,46.0547 Z" class="sapIllus_Layering2"/>
|
|
7
|
+
<path fill="var(--sapIllus_BrandColorSecondary)" d="M132.7012,22.5 L113.4272,22.5 C112.0152,22.5 111.3152,24.198 112.3132,25.185 L116.4902,29.373 C117.0972,29.98 117.1092,30.968 116.5132,31.587 L107.7412,40.669 C107.6952,40.715 107.6382,40.761 107.5922,40.817 L106.5942,41.827 C106.4562,41.977 106.3302,42.137 106.1922,42.298 C104.0232,44.925 102.7272,48.298 102.7272,51.981 C102.7272,58.865 107.2822,64.682 113.5352,66.609 C112.1242,64.579 111.2982,62.101 111.2982,59.438 C111.2982,55.985 112.6852,52.854 114.9462,50.581 C115.0032,50.513 115.0722,50.443 115.1412,50.387 L123.0072,42.28 L125.3582,39.87 C126.0012,39.228 127.0452,39.239 127.6652,39.905 L131.5312,44.15 C132.5072,45.217 134.2732,44.528 134.2732,43.083 L134.2732,24.072 C134.2732,23.2 133.5732,22.5 132.7012,22.5" class="sapIllus_BrandColorSecondary"/>
|
|
8
|
+
<path fill="var(--sapIllus_StrokeDetailColor)" d="M113.4268,23 C112.8918,23 112.5598,23.344 112.4278,23.666 C112.2578,24.08 112.3468,24.515 112.6648,24.829 L116.8448,29.02 C117.6408,29.816 117.6538,31.124 116.8728,31.934 L108.1008,41.017 C108.0908,41.029 107.9588,41.157 107.9478,41.169 L106.9488,42.179 C106.8768,42.258 106.7978,42.354 106.7168,42.451 L106.5728,42.623 C104.4168,45.233 103.2278,48.559 103.2278,51.981 C103.2278,58.046 106.8448,63.379 112.3628,65.657 C111.3348,63.759 110.7978,61.635 110.7978,59.438 C110.7978,55.959 112.1458,52.687 114.5918,50.229 C114.6378,50.17 114.7318,50.076 114.8248,49.999 L125.0008,39.521 C125.4058,39.116 125.9338,38.896 126.4958,38.896 C126.5098,38.896 126.5228,38.896 126.5348,38.897 C127.1088,38.907 127.6398,39.145 128.0308,39.564 L131.9018,43.813 C132.2668,44.215 132.7518,44.222 133.0858,44.093 C133.4178,43.964 133.7738,43.631 133.7738,43.083 L133.7738,24.072 C133.7738,23.481 133.2918,23 132.7008,23 L113.4268,23 Z M113.5348,67.109 C113.4868,67.109 113.4368,67.103 113.3878,67.087 C106.7128,65.029 102.2278,58.959 102.2278,51.981 C102.2278,48.327 103.4988,44.775 105.8068,41.979 L105.9478,41.812 C106.0398,41.701 106.1298,41.593 106.2258,41.488 L107.2368,40.466 C107.2488,40.445 107.3018,40.395 107.3538,40.348 L116.1538,31.239 C116.5578,30.819 116.5508,30.141 116.1368,29.727 L111.9588,25.538 C111.3548,24.939 111.1788,24.076 111.5028,23.286 C111.8278,22.493 112.5658,22 113.4268,22 L132.7008,22 C133.8438,22 134.7738,22.93 134.7738,24.072 L134.7738,43.083 C134.7738,43.95 134.2528,44.713 133.4478,45.025 C132.6448,45.337 131.7468,45.127 131.1618,44.488 L127.2948,40.242 C127.0948,40.026 126.8178,39.902 126.5178,39.897 C126.2048,39.86 125.9278,40.008 125.7118,40.224 L115.4998,50.735 C115.4128,50.811 115.3678,50.855 115.3308,50.9 C113.0418,53.204 111.7978,56.225 111.7978,59.438 C111.7978,61.921 112.5408,64.303 113.9458,66.324 C114.0678,66.499 114.0648,66.732 113.9388,66.904 C113.8428,67.035 113.6918,67.109 113.5348,67.109 L113.5348,67.109 Z" class="sapIllus_StrokeDetailColor"/>
|
|
9
|
+
<path fill="var(--sapIllus_ObjectFillColor)" d="M36.1528 37.3565C36.1528 38.5965 35.1468 39.6025 33.9068 39.6025 32.6658 39.6025 31.6598 38.5965 31.6598 37.3565 31.6598 36.1165 32.6658 35.1105 33.9068 35.1105 35.1468 35.1105 36.1528 36.1165 36.1528 37.3565M49.9702 37.3565C49.9702 38.5965 48.9642 39.6025 47.7232 39.6025 46.4832 39.6025 45.4772 38.5965 45.4772 37.3565 45.4772 36.1165 46.4832 35.1105 47.7232 35.1105 48.9642 35.1105 49.9702 36.1165 49.9702 37.3565M43.0615 37.3565C43.0615 38.5965 42.0555 39.6025 40.8145 39.6025 39.5745 39.6025 38.5685 38.5965 38.5685 37.3565 38.5685 36.1165 39.5745 35.1105 40.8145 35.1105 42.0555 35.1105 43.0615 36.1165 43.0615 37.3565" class="sapIllus_ObjectFillColor"/>
|
|
10
|
+
<path fill="var(--sapIllus_StrokeDetailColor)" d="M127.5,43.3604 C127.224,43.3604 127,43.5844 127,43.8604 L127,45.5544 L123.159,45.5544 C122.883,45.5544 122.659,45.7784 122.659,46.0544 C122.659,46.3314 122.883,46.5544 123.159,46.5544 L127,46.5544 L127,114.6964 C127,116.5484 125.494,118.0544 123.643,118.0544 L29.358,118.0544 C27.506,118.0544 26,116.5484 26,114.6964 L26,46.5544 L26,46.5544 L100.429,46.5544 C100.705,46.5544 100.929,46.3314 100.929,46.0544 C100.929,45.7784 100.705,45.5544 100.429,45.5544 L26,45.5544 L26,45.5544 L26,32.4134 C26,30.5614 27.506,29.0544 29.358,29.0544 L110.245,29.0544 C110.521,29.0544 110.745,28.8314 110.745,28.5544 C110.745,28.2784 110.521,28.0544 110.245,28.0544 L29.358,28.0544 C26.955,28.0544 25,30.0094 25,32.4134 L25,114.6964 C25,117.0994 26.955,119.0544 29.358,119.0544 L123.643,119.0544 C126.045,119.0544 128,117.0994 128,114.6964 L128,46.0544 L128,43.8604 C128,43.5844 127.776,43.3604 127.5,43.3604" class="sapIllus_StrokeDetailColor"/>
|
|
11
|
+
<path fill="var(--sapIllus_StrokeDetailColor)" d="M39.2007,109.0498 C37.0017,109.0498 35.3447,107.2828 35.3447,104.9398 L35.3447,55.9688 C35.3447,55.8358 35.3967,55.7078 35.4917,55.6138 C35.5857,55.5208 35.7247,55.4408 35.8467,55.4688 L99.3237,55.7228 C99.5997,55.7238 99.8227,55.9478 99.8217,56.2248 C99.8207,56.5008 99.6187,56.7538 99.3197,56.7228 L36.3447,56.4708 L36.3447,104.9398 C36.3447,106.7128 37.5727,108.0498 39.2007,108.0498 L113.7317,108.0058 C115.3797,108.0058 116.7207,106.6648 116.7207,105.0178 L116.7207,56.4308 C116.7207,56.1538 116.9447,55.9308 117.2207,55.9308 C117.4967,55.9308 117.7207,56.1538 117.7207,56.4308 L117.7207,105.0178 C117.7207,107.2168 115.9307,109.0058 113.7317,109.0058 L39.2007,109.0498 Z" class="sapIllus_StrokeDetailColor"/>
|
|
12
|
+
<path fill="var(--sapIllus_BackgroundColor)" d="M129.5,144.0549 C129.5,146.5399 106.891,148.5549 79,148.5549 C51.11,148.5549 28.5,146.5399 28.5,144.0549 C28.5,141.5699 51.11,139.5549 79,139.5549 C106.891,139.5549 129.5,141.5699 129.5,144.0549" class="sapIllus_BackgroundColor"/>
|
|
13
|
+
</svg>`;
|
|
14
|
+
|
|
15
|
+
return dialogSvg;
|
|
16
|
+
|
|
17
|
+
});
|