@openui5/sap.ui.webc.fiori 1.94.0 → 1.97.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +1 -1
- package/src/sap/ui/webc/fiori/Bar.js +18 -10
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +104 -0
- 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 +2 -2
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +114 -0
- package/src/sap/ui/webc/fiori/NotificationAction.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +26 -14
- package/src/sap/ui/webc/fiori/NotificationListItem.js +31 -20
- package/src/sap/ui/webc/fiori/Page.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +4 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +1 -1
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +1 -1
- package/src/sap/ui/webc/fiori/SortItem.js +68 -0
- package/src/sap/ui/webc/fiori/Timeline.js +19 -1
- package/src/sap/ui/webc/fiori/TimelineItem.js +9 -7
- package/src/sap/ui/webc/fiori/UploadCollection.js +13 -3
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +24 -16
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +132 -0
- package/src/sap/ui/webc/fiori/Wizard.js +17 -9
- package/src/sap/ui/webc/fiori/WizardStep.js +25 -11
- package/src/sap/ui/webc/fiori/library.js +264 -5
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +32 -2
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +18996 -0
- 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 +16 -12
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +147 -0
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +14 -17
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +33 -34
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +13 -9
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +20 -1
- 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 +52 -24
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +2 -1
- 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 +47 -4
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +29 -6
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +16 -10
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +77 -79
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +376 -0
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +29 -16
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +2 -2
- 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/generated/i18n/i18n-defaults.js +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +9 -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 +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +7 -0
- 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 +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotifactionOverflowActionsPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +21 -29
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +9 -17
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +22 -31
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +5 -15
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +7 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +5 -14
- 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 +13 -0
- 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 +13 -0
- 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 +13 -0
- 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/illustrations/BeforeSearch.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +38 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +35 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +39 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +43 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +42 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +17 -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-59619ddd.js → messagebundle_ar-f55bd0d9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_bg-b36e00fa.js → messagebundle_bg-eb73ad77.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ca-a103fc34.js → messagebundle_ca-18554b48.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cs-d56df98c.js → messagebundle_cs-7c21900b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cy-e28cac51.js → messagebundle_cy-04ebca8d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_da-7f08bcaa.js → messagebundle_da-49bb0a1c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_de-a43e24f9.js → messagebundle_de-ba618d63.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_el-8b1bd7a2.js → messagebundle_el-7db9c5fd.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en-502be1f9.js → messagebundle_en-d099f44a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_GB-d28c7c2d.js → messagebundle_en_GB-4887b667.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_sappsd-f0f7ff12.js → messagebundle_en_US_sappsd-65b99ab9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saprigi-f136d08a.js → messagebundle_en_US_saprigi-617e6535.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saptrc-ea579165.js → messagebundle_en_US_saptrc-6d0883b2.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es-cf460452.js → messagebundle_es-f7558331.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es_MX-b588b49c.js → messagebundle_es_MX-82bc00a1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_et-33a3c1a9.js → messagebundle_et-24b4540a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fi-05999936.js → messagebundle_fi-8dc53cb0.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr-6b78c685.js → messagebundle_fr-7e340939.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr_CA-5cd1bb21.js → messagebundle_fr_CA-d3853c9b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-78b175f0.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hr-1d544b5e.js → messagebundle_hr-3ed6353c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hu-d9824d87.js → messagebundle_hu-9af2b64b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_it-590c03c0.js → messagebundle_it-7968f555.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_iw-2a4cd300.js → messagebundle_iw-30a93e6c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ja-a2be15f9.js → messagebundle_ja-2b23c18f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_kk-d1344aab.js → messagebundle_kk-847a0b84.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ko-0da72c2c.js → messagebundle_ko-eaabc5f5.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lt-fe9461f4.js → messagebundle_lt-ac869899.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lv-217ab319.js → messagebundle_lv-ff63b614.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ms-a35de2b8.js → messagebundle_ms-e844b95d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_nl-9be8eb5b.js → messagebundle_nl-b644fdd4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_no-73f4a816.js → messagebundle_no-aedb265f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pl-c579e301.js → messagebundle_pl-3f303622.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt-407551a4.js → messagebundle_pt-541e1fa1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt_PT-7d09f65f.js → messagebundle_pt_PT-196ce616.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ro-c9bda608.js → messagebundle_ro-cbff6cf1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ru-f4dac468.js → messagebundle_ru-ff1b077c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sh-c66bf858.js → messagebundle_sh-88cafb2d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sk-8df875ec.js → messagebundle_sk-877257e4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sl-b18551b8.js → messagebundle_sl-0504465e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sv-7db1ca43.js → messagebundle_sv-30172f15.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-1e8f0c20.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_tr-b6eee8da.js → messagebundle_tr-1739cd9a.js} +38 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_uk-6fcd6591.js → messagebundle_uk-b933c172.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_vi-db4b5291.js → messagebundle_vi-329c5bac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_CN-6b87b448.js → messagebundle_zh_CN-4936266e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_TW-8b6411cf.js → messagebundle_zh_TW-87ecd6ac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-1b65841f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7ad9af9f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7cb04d8d.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-9b078ef8.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-aed8d630.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-becae35f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e0121de4.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e4fed822.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +47 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +20 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-71f54fc7.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-9445e465.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-062fdbb6.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-17f8bf4e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-196ef17d.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-8a5a5c79.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-90786b8e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d48b31a7.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-dc5c99d6.js +0 -9
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2021 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
// Provides control sap.ui.webc.fiori.ViewSettingsDialog.
|
|
8
|
+
sap.ui.define([
|
|
9
|
+
"sap/ui/webc/common/WebComponent",
|
|
10
|
+
"./library",
|
|
11
|
+
"./thirdparty/ViewSettingsDialog"
|
|
12
|
+
], function(WebComponent, library) {
|
|
13
|
+
"use strict";
|
|
14
|
+
|
|
15
|
+
/**
|
|
16
|
+
* Constructor for a new <code>ViewSettingsDialog</code>.
|
|
17
|
+
*
|
|
18
|
+
* @param {string} [sId] ID for the new control, generated automatically if no ID is given
|
|
19
|
+
* @param {object} [mSettings] Initial settings for the new control
|
|
20
|
+
*
|
|
21
|
+
* @extends sap.ui.webc.common.WebComponent
|
|
22
|
+
* @class
|
|
23
|
+
*
|
|
24
|
+
* <h3>Overview</h3> The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> component helps the user to sort data within a list or a table. It consists of several lists like <code>Sort order</code> which is built-in and <code>Sort By</code> and <code>Filter By</code> lists, for which you must be provide items(<code>sap.ui.webc.fiori.SortItem</code> & <code>sap.ui.webc.fiori.FilterItem</code> respectively) These options can be used to create sorters for a table.
|
|
25
|
+
*
|
|
26
|
+
* The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> interrupts the current application processing as it is the only focused UI element and the main screen is dimmed/blocked. The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> is modal, which means that user action is required before returning to the parent window is possible.
|
|
27
|
+
*
|
|
28
|
+
* <h3>Structure</h3> A <code>sap.ui.webc.fiori.ViewSettingsDialog</code> consists of a header, content, and a footer for action buttons. The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> is usually displayed at the center of the screen.
|
|
29
|
+
*
|
|
30
|
+
* <h3>Responsive Behavior</h3> <code>sap.ui.webc.fiori.ViewSettingsDialog</code> stretches on full screen on phones.
|
|
31
|
+
*
|
|
32
|
+
* @author SAP SE
|
|
33
|
+
* @version 1.97.0
|
|
34
|
+
*
|
|
35
|
+
* @constructor
|
|
36
|
+
* @public
|
|
37
|
+
* @since 1.95.0
|
|
38
|
+
* @experimental Since 1.95.0 This control is experimental and its API might change significantly.
|
|
39
|
+
* @alias sap.ui.webc.fiori.ViewSettingsDialog
|
|
40
|
+
* @ui5-metamodel This control/element also will be described in the UI5 (legacy) designtime metamodel
|
|
41
|
+
*/
|
|
42
|
+
var ViewSettingsDialog = WebComponent.extend("sap.ui.webc.fiori.ViewSettingsDialog", {
|
|
43
|
+
metadata: {
|
|
44
|
+
library: "sap.ui.webc.fiori",
|
|
45
|
+
tag: "ui5-view-settings-dialog-ui5",
|
|
46
|
+
properties: {
|
|
47
|
+
|
|
48
|
+
/**
|
|
49
|
+
* Defines the initial sort order.
|
|
50
|
+
*/
|
|
51
|
+
sortDescending: {
|
|
52
|
+
type: "boolean",
|
|
53
|
+
defaultValue: false
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
aggregations: {
|
|
57
|
+
|
|
58
|
+
/**
|
|
59
|
+
*
|
|
60
|
+
*/
|
|
61
|
+
filterItems: {
|
|
62
|
+
type: "sap.ui.webc.fiori.IFilterItem",
|
|
63
|
+
multiple: true,
|
|
64
|
+
slot: "filterItems"
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
*
|
|
69
|
+
*/
|
|
70
|
+
sortItems: {
|
|
71
|
+
type: "sap.ui.webc.fiori.ISortItem",
|
|
72
|
+
multiple: true,
|
|
73
|
+
slot: "sortItems"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
events: {
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Fired when cancel button is activated.
|
|
80
|
+
*/
|
|
81
|
+
cancel: {
|
|
82
|
+
parameters: {
|
|
83
|
+
/**
|
|
84
|
+
* The current sort order selected.
|
|
85
|
+
*/
|
|
86
|
+
sortOrder: {
|
|
87
|
+
type: "string"
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* The currently selected <code>sap.ui.webc.fiori.SortItem</code> text attribute.
|
|
92
|
+
*/
|
|
93
|
+
sortBy: {
|
|
94
|
+
type: "string"
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* Fired when confirmation button is activated.
|
|
101
|
+
*/
|
|
102
|
+
confirm: {
|
|
103
|
+
parameters: {
|
|
104
|
+
/**
|
|
105
|
+
* The current sort order selected.
|
|
106
|
+
*/
|
|
107
|
+
sortOrder: {
|
|
108
|
+
type: "string"
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* The currently selected <code>sap.ui.webc.fiori.SortItem</code> text attribute.
|
|
113
|
+
*/
|
|
114
|
+
sortBy: {
|
|
115
|
+
type: "string"
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}
|
|
119
|
+
},
|
|
120
|
+
methods: ["show"]
|
|
121
|
+
}
|
|
122
|
+
});
|
|
123
|
+
|
|
124
|
+
/**
|
|
125
|
+
* Shows the dialog.
|
|
126
|
+
* @public
|
|
127
|
+
* @name sap.ui.webc.fiori.ViewSettingsDialog#show
|
|
128
|
+
* @function
|
|
129
|
+
*/
|
|
130
|
+
|
|
131
|
+
return ViewSettingsDialog;
|
|
132
|
+
});
|
|
@@ -23,14 +23,14 @@ sap.ui.define([
|
|
|
23
23
|
*
|
|
24
24
|
* <h3>Overview</h3>
|
|
25
25
|
*
|
|
26
|
-
* The <code>sap.ui.webc.fiori.Wizard</code> helps users complete a complex task by dividing it into sections and guiding
|
|
26
|
+
* The <code>sap.ui.webc.fiori.Wizard</code> helps users to complete a complex task by dividing it into sections and guiding them through it. It has two main areas - a navigation area at the top showing the step sequence and a content area below it.
|
|
27
27
|
*
|
|
28
28
|
* <h3>Structure</h3>
|
|
29
29
|
* <h4>Navigation area</h4> The top most area of the <code>sap.ui.webc.fiori.Wizard</code> is occupied by the navigation area. It shows the sequence of steps, where the recommended number of steps is between 3 and 8 steps.
|
|
30
30
|
* <ul>
|
|
31
31
|
* <li> Steps can have different visual representations - numbers or icons.
|
|
32
32
|
* <li> Steps might have labels for better readability - titleText and subTitleText.</li>
|
|
33
|
-
* <li> Steps are defined by using the <code>sap.ui.webc.fiori.WizardStep</code> as slotted element within the <code>sap.ui.webc.fiori.Wizard</code
|
|
33
|
+
* <li> Steps are defined by using the <code>sap.ui.webc.fiori.WizardStep</code> as slotted element within the <code>sap.ui.webc.fiori.Wizard</code>.</li>
|
|
34
34
|
* </ul>
|
|
35
35
|
*
|
|
36
36
|
* <b>Note:</b> If no selected step is defined, the first step will be auto selected. <br>
|
|
@@ -50,21 +50,21 @@ sap.ui.define([
|
|
|
50
50
|
* </code> <code>	<ui5-wizard></ui5-wizard><br>
|
|
51
51
|
* </code> <code></ui5-dialog></code>
|
|
52
52
|
*
|
|
53
|
-
* <h4>Moving to next step</h4> The <code>sap.ui.webc.fiori.WizardStep</code> provides the necessary API and it's up to the user of the component to use it to move to the next step. You have to set its <code>selected</code> property (and remove the <code>disabled</code> one if set) to <code>true</code>.
|
|
53
|
+
* <h4>Moving to next step</h4> The <code>sap.ui.webc.fiori.WizardStep</code> provides the necessary API and it's up to the user of the component to use it to move to the next step. You have to set its <code>selected</code> property (and remove the <code>disabled</code> one if set) to <code>true</code>. The <code>sap.ui.webc.fiori.Wizard</code> will automatically scroll to the content of the newly selected step. <br>
|
|
54
54
|
* <br>
|
|
55
55
|
*
|
|
56
56
|
*
|
|
57
57
|
* The Fiori 3 guidelines recommends having a "nextStep" button in the content area. You can place a button, or any other type of element to trigger step change, inside the <code>sap.ui.webc.fiori.WizardStep</code>, and show/hide it when certain fields are filled or user defined criteria is met.
|
|
58
58
|
*
|
|
59
59
|
* <h3>Usage</h3>
|
|
60
|
-
* <h4>When to use:</h4> When the user has to accomplish a long
|
|
60
|
+
* <h4>When to use:</h4> When the user has to accomplish a long or unfamiliar task.
|
|
61
61
|
*
|
|
62
62
|
* <h4>When not to use:</h4> When the task has less than 3 steps.
|
|
63
63
|
*
|
|
64
|
-
* <h3>Responsive Behavior</h3> On small widths the step's titleText, subtitleText and separators in the navigation area
|
|
64
|
+
* <h3>Responsive Behavior</h3> On small widths the step's titleText, subtitleText and separators in the navigation area shrink and from particular point the steps are grouped together and overlap. Tapping on them will show a popover to select the step to navigate to. On mobile device, the grouped steps are presented within a dialog.
|
|
65
65
|
*
|
|
66
66
|
* @author SAP SE
|
|
67
|
-
* @version 1.
|
|
67
|
+
* @version 1.97.0
|
|
68
68
|
*
|
|
69
69
|
* @constructor
|
|
70
70
|
* @public
|
|
@@ -79,6 +79,14 @@ sap.ui.define([
|
|
|
79
79
|
tag: "ui5-wizard-ui5",
|
|
80
80
|
properties: {
|
|
81
81
|
|
|
82
|
+
/**
|
|
83
|
+
* Sets the accessible aria name of the component.
|
|
84
|
+
*/
|
|
85
|
+
accessibleName: {
|
|
86
|
+
type: "string",
|
|
87
|
+
defaultValue: undefined
|
|
88
|
+
},
|
|
89
|
+
|
|
82
90
|
/**
|
|
83
91
|
* Defines the height of the control
|
|
84
92
|
*/
|
|
@@ -109,21 +117,21 @@ sap.ui.define([
|
|
|
109
117
|
stepChange: {
|
|
110
118
|
parameters: {
|
|
111
119
|
/**
|
|
112
|
-
*
|
|
120
|
+
* The new step.
|
|
113
121
|
*/
|
|
114
122
|
step: {
|
|
115
123
|
type: "HTMLElement"
|
|
116
124
|
},
|
|
117
125
|
|
|
118
126
|
/**
|
|
119
|
-
*
|
|
127
|
+
* The previous step.
|
|
120
128
|
*/
|
|
121
129
|
previousStep: {
|
|
122
130
|
type: "HTMLElement"
|
|
123
131
|
},
|
|
124
132
|
|
|
125
133
|
/**
|
|
126
|
-
*
|
|
134
|
+
* The step change occurs due to user's click or 'Enter'/'Space' key press on step within the navigation.
|
|
127
135
|
*/
|
|
128
136
|
changeWithClick: {
|
|
129
137
|
type: "boolean"
|
|
@@ -23,20 +23,20 @@ sap.ui.define([
|
|
|
23
23
|
*
|
|
24
24
|
* <h3>Overview</h3>
|
|
25
25
|
*
|
|
26
|
-
* A component that represents a logical step as part of the <code>sap.ui.webc.fiori.Wizard</code>. It is meant to aggregate arbitrary HTML elements that
|
|
26
|
+
* A component that represents a logical step as part of the <code>sap.ui.webc.fiori.Wizard</code>. It is meant to aggregate arbitrary HTML elements that form the content of a single step.
|
|
27
27
|
*
|
|
28
28
|
* <h3>Structure</h3>
|
|
29
29
|
* <ul>
|
|
30
|
-
* <li>Each wizard step has arbitrary content
|
|
31
|
-
* <li>Each wizard step might have texts - defined by the <code>titleText</code> and <code>subtitleText</code> properties
|
|
32
|
-
* <li>Each wizard step might have an icon - defined by the <code>icon</code> property
|
|
33
|
-
* <li>Each wizard step might display a number in place of the <code>icon</code>, when it's missing
|
|
30
|
+
* <li>Each wizard step has arbitrary content.</li>
|
|
31
|
+
* <li>Each wizard step might have texts - defined by the <code>titleText</code> and <code>subtitleText</code> properties.</li>
|
|
32
|
+
* <li>Each wizard step might have an icon - defined by the <code>icon</code> property.</li>
|
|
33
|
+
* <li>Each wizard step might display a number in place of the <code>icon</code>, when it's missing.</li>
|
|
34
34
|
* </ul>
|
|
35
35
|
*
|
|
36
36
|
* <h3>Usage</h3> The <code>sap.ui.webc.fiori.WizardStep</code> component should be used only as slot of the <code>sap.ui.webc.fiori.Wizard</code> component and should not be used standalone.
|
|
37
37
|
*
|
|
38
38
|
* @author SAP SE
|
|
39
|
-
* @version 1.
|
|
39
|
+
* @version 1.97.0
|
|
40
40
|
*
|
|
41
41
|
* @constructor
|
|
42
42
|
* @public
|
|
@@ -55,6 +55,22 @@ sap.ui.define([
|
|
|
55
55
|
],
|
|
56
56
|
properties: {
|
|
57
57
|
|
|
58
|
+
/**
|
|
59
|
+
* Sets the accessible aria name of the component.
|
|
60
|
+
*/
|
|
61
|
+
accessibleName: {
|
|
62
|
+
type: "string",
|
|
63
|
+
defaultValue: ""
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
/**
|
|
67
|
+
* Defines the aria-labelledby of the step.
|
|
68
|
+
*/
|
|
69
|
+
accessibleNameRef: {
|
|
70
|
+
type: "string",
|
|
71
|
+
defaultValue: ""
|
|
72
|
+
},
|
|
73
|
+
|
|
58
74
|
/**
|
|
59
75
|
* When <code>branching</code> is enabled a dashed line would be displayed after the step, meant to indicate that the next step is not yet known and depends on user choice in the current step. <br>
|
|
60
76
|
* <br>
|
|
@@ -84,7 +100,7 @@ sap.ui.define([
|
|
|
84
100
|
* <br>
|
|
85
101
|
*
|
|
86
102
|
*
|
|
87
|
-
* <b>Note:</b>
|
|
103
|
+
* <b>Note:</b> The icon is displayed in the <code>sap.ui.webc.fiori.Wizard</code> navigation header. <br>
|
|
88
104
|
* <br>
|
|
89
105
|
*
|
|
90
106
|
*
|
|
@@ -112,8 +128,7 @@ sap.ui.define([
|
|
|
112
128
|
* <br>
|
|
113
129
|
*
|
|
114
130
|
*
|
|
115
|
-
* <b>Note:</b> the text is displayed in the <code>sap.ui.webc.fiori.Wizard</code> navigation header.
|
|
116
|
-
* <b>Note:</b> the text will hide on small sizes (about 559 px).
|
|
131
|
+
* <b>Note:</b> the text is displayed in the <code>sap.ui.webc.fiori.Wizard</code> navigation header.
|
|
117
132
|
*/
|
|
118
133
|
subtitleText: {
|
|
119
134
|
type: "string",
|
|
@@ -125,8 +140,7 @@ sap.ui.define([
|
|
|
125
140
|
* <br>
|
|
126
141
|
*
|
|
127
142
|
*
|
|
128
|
-
* <b>Note:</b>
|
|
129
|
-
* <b>Note:</b> the text will hide on small sizes (about 559 px).
|
|
143
|
+
* <b>Note:</b> The text is displayed in the <code>sap.ui.webc.fiori.Wizard</code> navigation header.
|
|
130
144
|
*/
|
|
131
145
|
titleText: {
|
|
132
146
|
type: "string",
|
|
@@ -9,26 +9,30 @@
|
|
|
9
9
|
*/
|
|
10
10
|
sap.ui.define([
|
|
11
11
|
"sap/ui/webc/common/library",
|
|
12
|
+
"sap/ui/webc/common/thirdparty/base/CSP",
|
|
12
13
|
"./thirdparty/Assets"
|
|
13
14
|
], // library dependency
|
|
14
|
-
function() {
|
|
15
|
+
function(commonLibrary, CSP) {
|
|
15
16
|
|
|
16
17
|
"use strict";
|
|
17
18
|
|
|
18
19
|
// delegate further initialization of this library to the Core
|
|
19
20
|
sap.ui.getCore().initLibrary({
|
|
20
21
|
name: "sap.ui.webc.fiori",
|
|
21
|
-
version: "1.
|
|
22
|
+
version: "1.97.0",
|
|
22
23
|
dependencies: ["sap.ui.core", "sap.ui.webc.common"],
|
|
23
24
|
noLibraryCSS: true,
|
|
24
25
|
designtime: "sap/ui/webc/main/designtime/library.designtime",
|
|
25
26
|
interfaces: [
|
|
27
|
+
"sap.ui.webc.fiori.IFilterItem",
|
|
28
|
+
"sap.ui.webc.fiori.IFilterItemOption",
|
|
26
29
|
"sap.ui.webc.fiori.INotificationAction",
|
|
27
30
|
"sap.ui.webc.fiori.INotificationListItem",
|
|
28
31
|
"sap.ui.webc.fiori.IProductSwitchItem",
|
|
29
32
|
"sap.ui.webc.fiori.IShellBarItem",
|
|
30
33
|
"sap.ui.webc.fiori.ISideNavigationItem",
|
|
31
34
|
"sap.ui.webc.fiori.ISideNavigationSubItem",
|
|
35
|
+
"sap.ui.webc.fiori.ISortItem",
|
|
32
36
|
"sap.ui.webc.fiori.ITimelineItem",
|
|
33
37
|
"sap.ui.webc.fiori.IUploadCollectionItem",
|
|
34
38
|
"sap.ui.webc.fiori.IWizardStep"
|
|
@@ -36,12 +40,18 @@ sap.ui.define([
|
|
|
36
40
|
types: [
|
|
37
41
|
"sap.ui.webc.fiori.BarDesign",
|
|
38
42
|
"sap.ui.webc.fiori.FCLLayout",
|
|
43
|
+
"sap.ui.webc.fiori.IllustrationMessageType",
|
|
39
44
|
"sap.ui.webc.fiori.PageBackgroundDesign",
|
|
45
|
+
"sap.ui.webc.fiori.TimelineLayout",
|
|
40
46
|
"sap.ui.webc.fiori.UploadState"
|
|
41
47
|
],
|
|
42
48
|
controls: [
|
|
43
49
|
"sap.ui.webc.fiori.Bar",
|
|
50
|
+
"sap.ui.webc.fiori.BarcodeScannerDialog",
|
|
51
|
+
"sap.ui.webc.fiori.FilterItem",
|
|
52
|
+
"sap.ui.webc.fiori.FilterItemOption",
|
|
44
53
|
"sap.ui.webc.fiori.FlexibleColumnLayout",
|
|
54
|
+
"sap.ui.webc.fiori.IllustratedMessage",
|
|
45
55
|
"sap.ui.webc.fiori.NotificationAction",
|
|
46
56
|
"sap.ui.webc.fiori.NotificationListGroupItem",
|
|
47
57
|
"sap.ui.webc.fiori.NotificationListItem",
|
|
@@ -53,10 +63,12 @@ sap.ui.define([
|
|
|
53
63
|
"sap.ui.webc.fiori.SideNavigation",
|
|
54
64
|
"sap.ui.webc.fiori.SideNavigationItem",
|
|
55
65
|
"sap.ui.webc.fiori.SideNavigationSubItem",
|
|
66
|
+
"sap.ui.webc.fiori.SortItem",
|
|
56
67
|
"sap.ui.webc.fiori.Timeline",
|
|
57
68
|
"sap.ui.webc.fiori.TimelineItem",
|
|
58
69
|
"sap.ui.webc.fiori.UploadCollection",
|
|
59
70
|
"sap.ui.webc.fiori.UploadCollectionItem",
|
|
71
|
+
"sap.ui.webc.fiori.ViewSettingsDialog",
|
|
60
72
|
"sap.ui.webc.fiori.Wizard",
|
|
61
73
|
"sap.ui.webc.fiori.WizardStep"
|
|
62
74
|
],
|
|
@@ -65,12 +77,12 @@ sap.ui.define([
|
|
|
65
77
|
});
|
|
66
78
|
|
|
67
79
|
/**
|
|
68
|
-
*
|
|
80
|
+
* SAPUI5 library with controls based on UI5 Web Components
|
|
69
81
|
*
|
|
70
82
|
* @namespace
|
|
71
83
|
* @alias sap.ui.webc.fiori
|
|
72
84
|
* @author SAP SE
|
|
73
|
-
* @version 1.
|
|
85
|
+
* @version 1.97.0
|
|
74
86
|
* @public
|
|
75
87
|
* @since 1.92.0
|
|
76
88
|
* @experimental Since 1.92.0 This API is experimental and might change significantly.
|
|
@@ -78,6 +90,28 @@ sap.ui.define([
|
|
|
78
90
|
var thisLib = sap.ui.webc.fiori;
|
|
79
91
|
|
|
80
92
|
|
|
93
|
+
/**
|
|
94
|
+
* Interface for components that may be slotted inside <code>ui5-view-settings-dialog</code> as filter items
|
|
95
|
+
*
|
|
96
|
+
* @name sap.ui.webc.fiori.IFilterItem
|
|
97
|
+
* @interface
|
|
98
|
+
* @public
|
|
99
|
+
* @since 1.97.0
|
|
100
|
+
* @experimental Since 1.97.0 This API is experimental and might change significantly.
|
|
101
|
+
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
102
|
+
*/
|
|
103
|
+
|
|
104
|
+
/**
|
|
105
|
+
* Interface for components that may be slotted inside <code>ui5-filter-item</code> as values
|
|
106
|
+
*
|
|
107
|
+
* @name sap.ui.webc.fiori.IFilterItemOption
|
|
108
|
+
* @interface
|
|
109
|
+
* @public
|
|
110
|
+
* @since 1.97.0
|
|
111
|
+
* @experimental Since 1.97.0 This API is experimental and might change significantly.
|
|
112
|
+
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
113
|
+
*/
|
|
114
|
+
|
|
81
115
|
/**
|
|
82
116
|
* Interface for components that may be slotted as an action inside <code>ui5-li-notification</code> and <code>ui5-li-notification-group</code>
|
|
83
117
|
*
|
|
@@ -144,6 +178,17 @@ sap.ui.define([
|
|
|
144
178
|
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
145
179
|
*/
|
|
146
180
|
|
|
181
|
+
/**
|
|
182
|
+
* Interface for components that may be slotted inside <code>ui5-view-settings-dialog</code> as sort items
|
|
183
|
+
*
|
|
184
|
+
* @name sap.ui.webc.fiori.ISortItem
|
|
185
|
+
* @interface
|
|
186
|
+
* @public
|
|
187
|
+
* @since 1.97.0
|
|
188
|
+
* @experimental Since 1.97.0 This API is experimental and might change significantly.
|
|
189
|
+
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
190
|
+
*/
|
|
191
|
+
|
|
147
192
|
/**
|
|
148
193
|
* Interface for components that may be slotted inside <code>ui5-timeline</code> as items
|
|
149
194
|
*
|
|
@@ -297,6 +342,193 @@ Use to display both a master and a detail page when the user should focus on the
|
|
|
297
342
|
};
|
|
298
343
|
|
|
299
344
|
|
|
345
|
+
/**
|
|
346
|
+
* Different illustration types of Illustrated Message.
|
|
347
|
+
*
|
|
348
|
+
* @enum {string}
|
|
349
|
+
* @public
|
|
350
|
+
* @since 1.95.0
|
|
351
|
+
* @experimental Since 1.95.0 This API is experimental and might change significantly.
|
|
352
|
+
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
353
|
+
*/
|
|
354
|
+
thisLib.IllustrationMessageType = {
|
|
355
|
+
|
|
356
|
+
/**
|
|
357
|
+
* "BeforeSearch" illustration type.
|
|
358
|
+
* @public
|
|
359
|
+
*/
|
|
360
|
+
BeforeSearch: "BeforeSearch",
|
|
361
|
+
|
|
362
|
+
/**
|
|
363
|
+
* "NoActivities" illustration type.
|
|
364
|
+
* @public
|
|
365
|
+
*/
|
|
366
|
+
NoActivities: "NoActivities",
|
|
367
|
+
|
|
368
|
+
/**
|
|
369
|
+
* "NoData" illustration type.
|
|
370
|
+
* @public
|
|
371
|
+
*/
|
|
372
|
+
NoData: "NoData",
|
|
373
|
+
|
|
374
|
+
/**
|
|
375
|
+
* "NoEntries" illustration type.
|
|
376
|
+
* @public
|
|
377
|
+
*/
|
|
378
|
+
NoEntries: "NoEntries",
|
|
379
|
+
|
|
380
|
+
/**
|
|
381
|
+
* "NoMail" illustration type.
|
|
382
|
+
* @public
|
|
383
|
+
*/
|
|
384
|
+
NoMail: "NoMail",
|
|
385
|
+
|
|
386
|
+
/**
|
|
387
|
+
* "NoNotifications" illustration type.
|
|
388
|
+
* @public
|
|
389
|
+
*/
|
|
390
|
+
NoNotifications: "NoNotifications",
|
|
391
|
+
|
|
392
|
+
/**
|
|
393
|
+
* "NoSavedItems" illustration type.
|
|
394
|
+
* @public
|
|
395
|
+
*/
|
|
396
|
+
NoSavedItems: "NoSavedItems",
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* "NoSearchResults" illustration type.
|
|
400
|
+
* @public
|
|
401
|
+
*/
|
|
402
|
+
NoSearchResults: "NoSearchResults",
|
|
403
|
+
|
|
404
|
+
/**
|
|
405
|
+
* "NoTasks" illustration type.
|
|
406
|
+
* @public
|
|
407
|
+
*/
|
|
408
|
+
NoTasks: "NoTasks",
|
|
409
|
+
|
|
410
|
+
/**
|
|
411
|
+
* "TntCodePlaceholder" illustration type.
|
|
412
|
+
* @public
|
|
413
|
+
*/
|
|
414
|
+
TntCodePlaceholder: "TntCodePlaceholder",
|
|
415
|
+
|
|
416
|
+
/**
|
|
417
|
+
* "TntCompany" illustration type.
|
|
418
|
+
* @public
|
|
419
|
+
*/
|
|
420
|
+
TntCompany: "TntCompany",
|
|
421
|
+
|
|
422
|
+
/**
|
|
423
|
+
* "TntExternalLink" illustration type.
|
|
424
|
+
* @public
|
|
425
|
+
*/
|
|
426
|
+
TntExternalLink: "TntExternalLink",
|
|
427
|
+
|
|
428
|
+
/**
|
|
429
|
+
* "TntFaceID" illustration type.
|
|
430
|
+
* @public
|
|
431
|
+
*/
|
|
432
|
+
TntFaceID: "TntFaceID",
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* "TntFingerprint" illustration type.
|
|
436
|
+
* @public
|
|
437
|
+
*/
|
|
438
|
+
TntFingerprint: "TntFingerprint",
|
|
439
|
+
|
|
440
|
+
/**
|
|
441
|
+
* "TntLock" illustration type.
|
|
442
|
+
* @public
|
|
443
|
+
*/
|
|
444
|
+
TntLock: "TntLock",
|
|
445
|
+
|
|
446
|
+
/**
|
|
447
|
+
* "TntMission" illustration type.
|
|
448
|
+
* @public
|
|
449
|
+
*/
|
|
450
|
+
TntMission: "TntMission",
|
|
451
|
+
|
|
452
|
+
/**
|
|
453
|
+
* "TntNoApplications" illustration type.
|
|
454
|
+
* @public
|
|
455
|
+
*/
|
|
456
|
+
TntNoApplications: "TntNoApplications",
|
|
457
|
+
|
|
458
|
+
/**
|
|
459
|
+
* "TntNoFlows" illustration type.
|
|
460
|
+
* @public
|
|
461
|
+
*/
|
|
462
|
+
TntNoFlows: "TntNoFlows",
|
|
463
|
+
|
|
464
|
+
/**
|
|
465
|
+
* "TntNoUsers" illustration type.
|
|
466
|
+
* @public
|
|
467
|
+
*/
|
|
468
|
+
TntNoUsers: "TntNoUsers",
|
|
469
|
+
|
|
470
|
+
/**
|
|
471
|
+
* "TntRadar" illustration type.
|
|
472
|
+
* @public
|
|
473
|
+
*/
|
|
474
|
+
TntRadar: "TntRadar",
|
|
475
|
+
|
|
476
|
+
/**
|
|
477
|
+
* "TntServices" illustration type.
|
|
478
|
+
* @public
|
|
479
|
+
*/
|
|
480
|
+
TntServices: "TntServices",
|
|
481
|
+
|
|
482
|
+
/**
|
|
483
|
+
* "TntSessionExpired" illustration type.
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
TntSessionExpired: "TntSessionExpired",
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* "TntSessionExpiring" illustration type.
|
|
490
|
+
* @public
|
|
491
|
+
*/
|
|
492
|
+
TntSessionExpiring: "TntSessionExpiring",
|
|
493
|
+
|
|
494
|
+
/**
|
|
495
|
+
* "TntSuccess" illustration type.
|
|
496
|
+
* @public
|
|
497
|
+
*/
|
|
498
|
+
TntSuccess: "TntSuccess",
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* "TntSuccessfulAuth" illustration type.
|
|
502
|
+
* @public
|
|
503
|
+
*/
|
|
504
|
+
TntSuccessfulAuth: "TntSuccessfulAuth",
|
|
505
|
+
|
|
506
|
+
/**
|
|
507
|
+
* "TntUnlock" illustration type.
|
|
508
|
+
* @public
|
|
509
|
+
*/
|
|
510
|
+
TntUnlock: "TntUnlock",
|
|
511
|
+
|
|
512
|
+
/**
|
|
513
|
+
* "TntUnsuccessfulAuth" illustration type.
|
|
514
|
+
* @public
|
|
515
|
+
*/
|
|
516
|
+
TntUnsuccessfulAuth: "TntUnsuccessfulAuth",
|
|
517
|
+
|
|
518
|
+
/**
|
|
519
|
+
* "UnableToLoad" illustration type.
|
|
520
|
+
* @public
|
|
521
|
+
*/
|
|
522
|
+
UnableToLoad: "UnableToLoad",
|
|
523
|
+
|
|
524
|
+
/**
|
|
525
|
+
* "UnableToUpload" illustration type.
|
|
526
|
+
* @public
|
|
527
|
+
*/
|
|
528
|
+
UnableToUpload: "UnableToUpload"
|
|
529
|
+
};
|
|
530
|
+
|
|
531
|
+
|
|
300
532
|
/**
|
|
301
533
|
* undefined
|
|
302
534
|
*
|
|
@@ -328,6 +560,31 @@ Use to display both a master and a detail page when the user should focus on the
|
|
|
328
560
|
};
|
|
329
561
|
|
|
330
562
|
|
|
563
|
+
/**
|
|
564
|
+
* Different types of Timeline.
|
|
565
|
+
*
|
|
566
|
+
* @enum {string}
|
|
567
|
+
* @public
|
|
568
|
+
* @since 1.92.0
|
|
569
|
+
* @experimental Since 1.92.0 This API is experimental and might change significantly.
|
|
570
|
+
* @ui5-metamodel This enumeration also will be described in the UI5 (legacy) designtime metamodel
|
|
571
|
+
*/
|
|
572
|
+
thisLib.TimelineLayout = {
|
|
573
|
+
|
|
574
|
+
/**
|
|
575
|
+
* Horizontal layout
|
|
576
|
+
* @public
|
|
577
|
+
*/
|
|
578
|
+
Horizontal: "Horizontal",
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* Vertical layout Default type
|
|
582
|
+
* @public
|
|
583
|
+
*/
|
|
584
|
+
Vertical: "Vertical"
|
|
585
|
+
};
|
|
586
|
+
|
|
587
|
+
|
|
331
588
|
/**
|
|
332
589
|
* undefined
|
|
333
590
|
*
|
|
@@ -364,6 +621,8 @@ Use to display both a master and a detail page when the user should focus on the
|
|
|
364
621
|
Uploading: "Uploading"
|
|
365
622
|
};
|
|
366
623
|
|
|
624
|
+
CSP.setPackageCSSRoot("@ui5/webcomponents-fiori", sap.ui.require.toUrl("sap/ui/webc/fiori/thirdparty/css/"));
|
|
625
|
+
|
|
367
626
|
return thisLib;
|
|
368
627
|
|
|
369
|
-
});
|
|
628
|
+
});
|