@openui5/sap.ui.webc.fiori 1.115.1 → 1.116.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 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +1 -1
- package/src/sap/ui/webc/fiori/Bar.js +1 -1
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +1 -1
- package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItem.js +9 -1
- package/src/sap/ui/webc/fiori/FilterItemOption.js +2 -2
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +3 -3
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +27 -1
- package/src/sap/ui/webc/fiori/MediaGallery.js +2 -2
- package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationAction.js +17 -1
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +9 -2
- package/src/sap/ui/webc/fiori/NotificationListItem.js +10 -3
- package/src/sap/ui/webc/fiori/Page.js +2 -2
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -3
- package/src/sap/ui/webc/fiori/ShellBar.js +49 -1
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +11 -2
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +10 -1
- package/src/sap/ui/webc/fiori/SortItem.js +1 -1
- package/src/sap/ui/webc/fiori/Timeline.js +2 -2
- package/src/sap/ui/webc/fiori/TimelineItem.js +1 -1
- package/src/sap/ui/webc/fiori/UploadCollection.js +2 -2
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +5 -5
- package/src/sap/ui/webc/fiori/Wizard.js +23 -4
- package/src/sap/ui/webc/fiori/WizardStep.js +1 -1
- package/src/sap/ui/webc/fiori/illustrations/AddDimensions.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/AllIllustrations.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/NoColumnsSet.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/NoDimensionsSet.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/Survey.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/UploadToCloud.js +9 -0
- package/src/sap/ui/webc/fiori/library.js +97 -17
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +47 -97
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +86 -105
- package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +93 -225
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +19 -52
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +19 -43
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +196 -333
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +126 -267
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +28 -41
- package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +105 -236
- package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +76 -164
- package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +51 -77
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +53 -90
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +72 -146
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +67 -139
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +42 -126
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +45 -65
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +61 -146
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +288 -418
- package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +41 -67
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +127 -141
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +52 -100
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +30 -62
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +19 -42
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +53 -96
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +63 -135
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +111 -207
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +153 -268
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +154 -244
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +165 -236
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +27 -117
- package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +53 -137
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/DynamicSideContent.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGallery.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGalleryItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationOverflowActionsPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBarPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigationPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/custom-elements.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +25 -55
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +104 -29
- package/src/sap/ui/webc/fiori/thirdparty/generated/js-imports/Illustrations.js +202 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +9 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +28 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +12 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +21 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -9
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +30 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -9
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +73 -24
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationPopoverTemplate.lit.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +30 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +21 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +51 -15
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +48 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +15 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddDimensions.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AllIllustrations.js +3 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoColumnsSet.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoDimensionsSet.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Survey.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadToCloud.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddDimensions.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoColumnsSet.js +45 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoDimensionsSet.js +49 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Survey.js +32 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadToCloud.js +40 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddDimensions.js +44 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoColumnsSet.js +46 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoDimensionsSet.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Survey.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadToCloud.js +34 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddDimensions.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoColumnsSet.js +46 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoDimensionsSet.js +52 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Survey.js +42 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadToCloud.js +40 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +14 -26
- package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +42 -56
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +19 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +128 -110
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +13 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +13 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +14 -26
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +15 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +12 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +11 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +13 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +12 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/WizardContentLayout.js +34 -0
- package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +2 -2
- package/ui5.yaml +5 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +0 -14
|
@@ -12,6 +12,8 @@ sap.ui.define([
|
|
|
12
12
|
], function(WebComponent, library) {
|
|
13
13
|
"use strict";
|
|
14
14
|
|
|
15
|
+
var WizardContentLayout = library.WizardContentLayout;
|
|
16
|
+
|
|
15
17
|
/**
|
|
16
18
|
* Constructor for a new <code>Wizard</code>.
|
|
17
19
|
*
|
|
@@ -28,7 +30,7 @@ sap.ui.define([
|
|
|
28
30
|
* <h3>Structure</h3>
|
|
29
31
|
* <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
32
|
* <ul>
|
|
31
|
-
* <li> Steps can have different visual representations - numbers or icons
|
|
33
|
+
* <li> Steps can have different visual representations - numbers or icons.</li>
|
|
32
34
|
* <li> Steps might have labels for better readability - titleText and subTitleText.</li>
|
|
33
35
|
* <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
36
|
* </ul>
|
|
@@ -36,6 +38,15 @@ sap.ui.define([
|
|
|
36
38
|
* <b>Note:</b> If no selected step is defined, the first step will be auto selected. <br>
|
|
37
39
|
* <b>Note:</b> If multiple selected steps are defined, the last step will be selected.
|
|
38
40
|
*
|
|
41
|
+
* <h3>CSS Shadow Parts</h3>
|
|
42
|
+
*
|
|
43
|
+
* {@link https://developer.mozilla.org/en-US/docs/Web/CSS/::part CSS Shadow Parts} allow developers to style elements inside the Shadow DOM. <br>
|
|
44
|
+
* The <code>sap.ui.webc.fiori.Wizard</code> exposes the following CSS Shadow Parts:
|
|
45
|
+
* <ul>
|
|
46
|
+
* <li>navigator - Used to style the progress navigator of the <code>sap.ui.webc.fiori.Wizard</code>.</li>
|
|
47
|
+
* <li>step-content - Used to style a <code>sap.ui.webc.fiori.WizardStep</code> container.</li>
|
|
48
|
+
* </ul>
|
|
49
|
+
*
|
|
39
50
|
* <h3>Keyboard Handling</h3> The user can navigate using the following keyboard shortcuts: <br>
|
|
40
51
|
*
|
|
41
52
|
*
|
|
@@ -77,7 +88,7 @@ sap.ui.define([
|
|
|
77
88
|
* <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.
|
|
78
89
|
*
|
|
79
90
|
* @author SAP SE
|
|
80
|
-
* @version 1.
|
|
91
|
+
* @version 1.116.0
|
|
81
92
|
*
|
|
82
93
|
* @constructor
|
|
83
94
|
* @public
|
|
@@ -91,6 +102,14 @@ sap.ui.define([
|
|
|
91
102
|
tag: "ui5-wizard-ui5",
|
|
92
103
|
properties: {
|
|
93
104
|
|
|
105
|
+
/**
|
|
106
|
+
* Defines how the content of the <code>sap.ui.webc.fiori.Wizard</code> would be visualized.
|
|
107
|
+
*/
|
|
108
|
+
contentLayout: {
|
|
109
|
+
type: "sap.ui.webc.fiori.WizardContentLayout",
|
|
110
|
+
defaultValue: WizardContentLayout.MultipleSteps
|
|
111
|
+
},
|
|
112
|
+
|
|
94
113
|
/**
|
|
95
114
|
* Defines the height of the control
|
|
96
115
|
*/
|
|
@@ -123,14 +142,14 @@ sap.ui.define([
|
|
|
123
142
|
* The new step.
|
|
124
143
|
*/
|
|
125
144
|
step: {
|
|
126
|
-
type: "
|
|
145
|
+
type: "sap.ui.webc.fiori.IWizardStep"
|
|
127
146
|
},
|
|
128
147
|
|
|
129
148
|
/**
|
|
130
149
|
* The previous step.
|
|
131
150
|
*/
|
|
132
151
|
previousStep: {
|
|
133
|
-
type: "
|
|
152
|
+
type: "sap.ui.webc.fiori.IWizardStep"
|
|
134
153
|
},
|
|
135
154
|
|
|
136
155
|
/**
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* <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.
|
|
38
38
|
*
|
|
39
39
|
* @author SAP SE
|
|
40
|
-
* @version 1.
|
|
40
|
+
* @version 1.116.0
|
|
41
41
|
*
|
|
42
42
|
* @constructor
|
|
43
43
|
* @public
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/webc/fiori/thirdparty/illustrations/AddDimensions"], function() {
|
|
8
|
+
"use strict";
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/webc/fiori/thirdparty/illustrations/AllIllustrations"], function() {
|
|
8
|
+
"use strict";
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/webc/fiori/thirdparty/illustrations/NoColumnsSet"], function() {
|
|
8
|
+
"use strict";
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/webc/fiori/thirdparty/illustrations/NoDimensionsSet"], function() {
|
|
8
|
+
"use strict";
|
|
9
|
+
});
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*!
|
|
2
|
+
* OpenUI5
|
|
3
|
+
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
sap.ui.define(["sap/ui/webc/fiori/thirdparty/illustrations/UploadToCloud"], function() {
|
|
8
|
+
"use strict";
|
|
9
|
+
});
|
|
@@ -23,14 +23,14 @@ sap.ui.define([
|
|
|
23
23
|
* @namespace
|
|
24
24
|
* @alias sap.ui.webc.fiori
|
|
25
25
|
* @author SAP SE
|
|
26
|
-
* @version 1.
|
|
26
|
+
* @version 1.116.0
|
|
27
27
|
* @public
|
|
28
28
|
* @since 1.92.0
|
|
29
29
|
* @experimental Since 1.92.0 This API is experimental and might change significantly.
|
|
30
30
|
*/
|
|
31
31
|
var thisLib = Library.init({
|
|
32
32
|
name: "sap.ui.webc.fiori",
|
|
33
|
-
version: "1.
|
|
33
|
+
version: "1.116.0",
|
|
34
34
|
dependencies: ["sap.ui.core", "sap.ui.webc.common"],
|
|
35
35
|
noLibraryCSS: true,
|
|
36
36
|
designtime: "sap/ui/webc/fiori/designtime/library.designtime",
|
|
@@ -64,7 +64,9 @@ sap.ui.define([
|
|
|
64
64
|
"sap.ui.webc.fiori.SideContentPosition",
|
|
65
65
|
"sap.ui.webc.fiori.SideContentVisibility",
|
|
66
66
|
"sap.ui.webc.fiori.TimelineLayout",
|
|
67
|
-
"sap.ui.webc.fiori.UploadState"
|
|
67
|
+
"sap.ui.webc.fiori.UploadState",
|
|
68
|
+
"sap.ui.webc.fiori.ViewSettingsDialogMode",
|
|
69
|
+
"sap.ui.webc.fiori.WizardContentLayout"
|
|
68
70
|
],
|
|
69
71
|
controls: [
|
|
70
72
|
"sap.ui.webc.fiori.Bar",
|
|
@@ -264,7 +266,7 @@ sap.ui.define([
|
|
|
264
266
|
*/
|
|
265
267
|
|
|
266
268
|
/**
|
|
267
|
-
* Different types of Bar
|
|
269
|
+
* Different types of Bar design
|
|
268
270
|
*
|
|
269
271
|
* @enum {string}
|
|
270
272
|
* @public
|
|
@@ -300,7 +302,7 @@ sap.ui.define([
|
|
|
300
302
|
|
|
301
303
|
|
|
302
304
|
/**
|
|
303
|
-
*
|
|
305
|
+
* Different types of FCLLayout.
|
|
304
306
|
*
|
|
305
307
|
* @enum {string}
|
|
306
308
|
* @public
|
|
@@ -310,7 +312,7 @@ sap.ui.define([
|
|
|
310
312
|
thisLib.FCLLayout = {
|
|
311
313
|
|
|
312
314
|
/**
|
|
313
|
-
* Desktop:
|
|
315
|
+
* Desktop: -- -- 100 only the End column is displayed Tablet: -- -- 100 only the End column is displayed Phone: -- -- 100 only the End column is displayed
|
|
314
316
|
|
|
315
317
|
Use to display a detail-detail page only, when the user should focus entirely on it.
|
|
316
318
|
* @public
|
|
@@ -318,7 +320,7 @@ Use to display a detail-detail page only, when the user should focus entirely on
|
|
|
318
320
|
EndColumnFullScreen: "EndColumnFullScreen",
|
|
319
321
|
|
|
320
322
|
/**
|
|
321
|
-
* Desktop:
|
|
323
|
+
* Desktop: -- 100 -- only the Mid column is displayed Tablet: -- 100 -- only the Mid column is displayed Phone: -- 100 -- only the Mid column is displayed
|
|
322
324
|
|
|
323
325
|
Use to display a detail page only, when the user should focus entirely on it.
|
|
324
326
|
* @public
|
|
@@ -332,7 +334,7 @@ Use to display a detail page only, when the user should focus entirely on it.
|
|
|
332
334
|
OneColumn: "OneColumn",
|
|
333
335
|
|
|
334
336
|
/**
|
|
335
|
-
* Desktop: 25
|
|
337
|
+
* Desktop: 25 - 25 - 50 Start, Mid and End (expanded) columns are displayed Tablet: 0 - 33 - 67 Mid and End (expanded) columns are displayed, Start is accessible by layout arrows Phone: -- -- 100 (only the End column is displayed)
|
|
336
338
|
|
|
337
339
|
Use to display all three pages (list, detail, detail-detail) when the user should focus on the detail-detail.
|
|
338
340
|
* @public
|
|
@@ -340,7 +342,7 @@ Use to display all three pages (list, detail, detail-detail) when the user shoul
|
|
|
340
342
|
ThreeColumnsEndExpanded: "ThreeColumnsEndExpanded",
|
|
341
343
|
|
|
342
344
|
/**
|
|
343
|
-
* Desktop: 25
|
|
345
|
+
* Desktop: 25 - 50 - 25 Start, Mid (expanded) and End columns are displayed Tablet: 0 - 67 - 33 Mid (expanded) and End columns are displayed, Start is accessible by a layout arrow Phone: -- -- 100 only the End column is displayed
|
|
344
346
|
|
|
345
347
|
Use to display all three pages (list, detail, detail-detail) when the user should focus on the detail.
|
|
346
348
|
* @public
|
|
@@ -348,7 +350,7 @@ Use to display all three pages (list, detail, detail-detail) when the user shoul
|
|
|
348
350
|
ThreeColumnsMidExpanded: "ThreeColumnsMidExpanded",
|
|
349
351
|
|
|
350
352
|
/**
|
|
351
|
-
* Desktop: 33
|
|
353
|
+
* Desktop: 33 - 67 - 0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow Tablet: 33 - 67 - 0 Start and Mid (expanded) columns are displayed, End is accessible by a layout arrow Phone: -- -- 100 only the End column is displayed
|
|
352
354
|
|
|
353
355
|
Use to display the list and detail pages when the user should focus on the detail. The detail-detail is still loaded and easily accessible with a layout arrow.
|
|
354
356
|
* @public
|
|
@@ -356,7 +358,7 @@ Use to display the list and detail pages when the user should focus on the detai
|
|
|
356
358
|
ThreeColumnsMidExpandedEndHidden: "ThreeColumnsMidExpandedEndHidden",
|
|
357
359
|
|
|
358
360
|
/**
|
|
359
|
-
* Desktop: 67
|
|
361
|
+
* Desktop: 67 - 33 - 0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows Tablet: 67 - 33 - 0 Start (expanded) and Mid columns are displayed, End is accessible by layout arrows Phone: -- -- 100 only the End column is displayed
|
|
360
362
|
|
|
361
363
|
Use to display the list and detail pages when the user should focus on the list. The detail-detail is still loaded and easily accessible with layout arrows.
|
|
362
364
|
* @public
|
|
@@ -364,7 +366,7 @@ Use to display the list and detail pages when the user should focus on the list.
|
|
|
364
366
|
ThreeColumnsStartExpandedEndHidden: "ThreeColumnsStartExpandedEndHidden",
|
|
365
367
|
|
|
366
368
|
/**
|
|
367
|
-
* Desktop: 33
|
|
369
|
+
* Desktop: 33 - 67 - -- Start and Mid (expanded) columns are displayed Tablet: 33 - 67 - -- Start and Mid (expanded) columns are displayed Phone: -- 100 -- only the Mid column is displayed
|
|
368
370
|
|
|
369
371
|
Use to display both a list and a detail page when the user should focus on the detail page.
|
|
370
372
|
* @public
|
|
@@ -372,7 +374,7 @@ Use to display both a list and a detail page when the user should focus on the d
|
|
|
372
374
|
TwoColumnsMidExpanded: "TwoColumnsMidExpanded",
|
|
373
375
|
|
|
374
376
|
/**
|
|
375
|
-
* Desktop: 67
|
|
377
|
+
* Desktop: 67 - 33 - -- Start (expanded) and Mid columns are displayed Tablet: 67 - 33 - -- Start (expanded) and Mid columns are displayed Phone: -- 100 -- only the Mid column is displayed
|
|
376
378
|
|
|
377
379
|
Use to display both a list and a detail page when the user should focus on the list page.
|
|
378
380
|
* @public
|
|
@@ -443,6 +445,12 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
443
445
|
*/
|
|
444
446
|
AddColumn: "AddColumn",
|
|
445
447
|
|
|
448
|
+
/**
|
|
449
|
+
* "Add Dimensions" illustration type.
|
|
450
|
+
* @public
|
|
451
|
+
*/
|
|
452
|
+
AddDimensions: "AddDimensions",
|
|
453
|
+
|
|
446
454
|
/**
|
|
447
455
|
* "Add People" illustration type.
|
|
448
456
|
* @public
|
|
@@ -509,12 +517,24 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
509
517
|
*/
|
|
510
518
|
NoActivities: "NoActivities",
|
|
511
519
|
|
|
520
|
+
/**
|
|
521
|
+
* "No Columns Set" illustration type.
|
|
522
|
+
* @public
|
|
523
|
+
*/
|
|
524
|
+
NoColumnsSet: "NoColumnsSet",
|
|
525
|
+
|
|
512
526
|
/**
|
|
513
527
|
* "No Data" illustration type.
|
|
514
528
|
* @public
|
|
515
529
|
*/
|
|
516
530
|
NoData: "NoData",
|
|
517
531
|
|
|
532
|
+
/**
|
|
533
|
+
* "No Dimensions Set" illustration type.
|
|
534
|
+
* @public
|
|
535
|
+
*/
|
|
536
|
+
NoDimensionsSet: "NoDimensionsSet",
|
|
537
|
+
|
|
518
538
|
/**
|
|
519
539
|
* "No Entries" illustration type.
|
|
520
540
|
* @public
|
|
@@ -725,6 +745,12 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
725
745
|
*/
|
|
726
746
|
SuccessScreen: "SuccessScreen",
|
|
727
747
|
|
|
748
|
+
/**
|
|
749
|
+
* "Survey" illustration type.
|
|
750
|
+
* @public
|
|
751
|
+
*/
|
|
752
|
+
Survey: "Survey",
|
|
753
|
+
|
|
728
754
|
/**
|
|
729
755
|
* "Tent" illustration type.
|
|
730
756
|
* @public
|
|
@@ -963,7 +989,13 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
963
989
|
* "Upload Collection" illustration type.
|
|
964
990
|
* @public
|
|
965
991
|
*/
|
|
966
|
-
UploadCollection: "UploadCollection"
|
|
992
|
+
UploadCollection: "UploadCollection",
|
|
993
|
+
|
|
994
|
+
/**
|
|
995
|
+
* "Upload To Cloud" illustration type.
|
|
996
|
+
* @public
|
|
997
|
+
*/
|
|
998
|
+
UploadToCloud: "UploadToCloud"
|
|
967
999
|
};
|
|
968
1000
|
|
|
969
1001
|
|
|
@@ -1070,7 +1102,7 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
1070
1102
|
|
|
1071
1103
|
|
|
1072
1104
|
/**
|
|
1073
|
-
*
|
|
1105
|
+
* Available Page Background Design.
|
|
1074
1106
|
*
|
|
1075
1107
|
* @enum {string}
|
|
1076
1108
|
* @public
|
|
@@ -1202,7 +1234,7 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
1202
1234
|
|
|
1203
1235
|
|
|
1204
1236
|
/**
|
|
1205
|
-
*
|
|
1237
|
+
* Available Timeline layout orientation
|
|
1206
1238
|
*
|
|
1207
1239
|
* @enum {string}
|
|
1208
1240
|
* @public
|
|
@@ -1226,7 +1258,7 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
1226
1258
|
|
|
1227
1259
|
|
|
1228
1260
|
/**
|
|
1229
|
-
*
|
|
1261
|
+
* Different types of UploadState.
|
|
1230
1262
|
*
|
|
1231
1263
|
* @enum {string}
|
|
1232
1264
|
* @public
|
|
@@ -1260,6 +1292,54 @@ Use to display both a list and a detail page when the user should focus on the l
|
|
|
1260
1292
|
Uploading: "Uploading"
|
|
1261
1293
|
};
|
|
1262
1294
|
|
|
1295
|
+
|
|
1296
|
+
/**
|
|
1297
|
+
* Different types of Bar.
|
|
1298
|
+
*
|
|
1299
|
+
* @enum {string}
|
|
1300
|
+
* @public
|
|
1301
|
+
* @since 1.115.0
|
|
1302
|
+
* @experimental Since 1.115.0 This API is experimental and might change significantly.
|
|
1303
|
+
*/
|
|
1304
|
+
thisLib.ViewSettingsDialogMode = {
|
|
1305
|
+
|
|
1306
|
+
/**
|
|
1307
|
+
* Filter type
|
|
1308
|
+
* @public
|
|
1309
|
+
*/
|
|
1310
|
+
Filter: "Filter",
|
|
1311
|
+
|
|
1312
|
+
/**
|
|
1313
|
+
* Default type
|
|
1314
|
+
* @public
|
|
1315
|
+
*/
|
|
1316
|
+
Sort: "Sort"
|
|
1317
|
+
};
|
|
1318
|
+
|
|
1319
|
+
|
|
1320
|
+
/**
|
|
1321
|
+
* Enumeration for different content layouts of the <code>ui5-wizard</code>.
|
|
1322
|
+
*
|
|
1323
|
+
* @enum {string}
|
|
1324
|
+
* @public
|
|
1325
|
+
* @since 1.92.0
|
|
1326
|
+
* @experimental Since 1.92.0 This API is experimental and might change significantly.
|
|
1327
|
+
*/
|
|
1328
|
+
thisLib.WizardContentLayout = {
|
|
1329
|
+
|
|
1330
|
+
/**
|
|
1331
|
+
* Display the content of the <code>ui5-wizard</code> as multiple steps in a scroll section.
|
|
1332
|
+
* @public
|
|
1333
|
+
*/
|
|
1334
|
+
MultipleSteps: "MultipleSteps",
|
|
1335
|
+
|
|
1336
|
+
/**
|
|
1337
|
+
* Display the content of the <code>ui5-wizard</code> as single step.
|
|
1338
|
+
* @public
|
|
1339
|
+
*/
|
|
1340
|
+
SingleStep: "SingleStep"
|
|
1341
|
+
};
|
|
1342
|
+
|
|
1263
1343
|
return thisLib;
|
|
1264
1344
|
|
|
1265
1345
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "./generated/templates/BarTemplate.lit", "./
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "./types/BarDesign", "./generated/templates/BarTemplate.lit", "./generated/themes/Bar.css"], function (_exports, _UI5Element, _customElement, _property, _slot, _LitRenderer, _ResizeHandler, _BarDesign, _BarTemplate, _Bar) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,87 +6,22 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
6
6
|
});
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
9
|
+
_customElement = _interopRequireDefault(_customElement);
|
|
10
|
+
_property = _interopRequireDefault(_property);
|
|
11
|
+
_slot = _interopRequireDefault(_slot);
|
|
9
12
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
10
13
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
|
11
|
-
_BarTemplate = _interopRequireDefault(_BarTemplate);
|
|
12
14
|
_BarDesign = _interopRequireDefault(_BarDesign);
|
|
15
|
+
_BarTemplate = _interopRequireDefault(_BarTemplate);
|
|
13
16
|
_Bar = _interopRequireDefault(_Bar);
|
|
14
17
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
tag: "ui5-bar",
|
|
22
|
-
managedSlots: true,
|
|
23
|
-
fastNavigation: true,
|
|
24
|
-
properties: /** @lends sap.ui.webcomponents.fiori.Bar.prototype */{
|
|
25
|
-
/**
|
|
26
|
-
* Defines the component's design.
|
|
27
|
-
*
|
|
28
|
-
* <br><br>
|
|
29
|
-
* <b>Note:</b>
|
|
30
|
-
* Available options are:
|
|
31
|
-
* <ul>
|
|
32
|
-
* <li><code>Header</code></li>
|
|
33
|
-
* <li><code>Subheader</code></li>
|
|
34
|
-
* <li><code>Footer</code></li>
|
|
35
|
-
* <li><code>FloatingFooter</code></li>
|
|
36
|
-
* </ul>
|
|
37
|
-
*
|
|
38
|
-
* @type {BarDesign}
|
|
39
|
-
* @defaultvalue "Header"
|
|
40
|
-
* @public
|
|
41
|
-
*/
|
|
42
|
-
design: {
|
|
43
|
-
type: _BarDesign.default,
|
|
44
|
-
defaultValue: _BarDesign.default.Header
|
|
45
|
-
},
|
|
46
|
-
/**
|
|
47
|
-
* Defines if the component middle area needs to be centered between start and end area
|
|
48
|
-
* @type {boolean}
|
|
49
|
-
* @private
|
|
50
|
-
*/
|
|
51
|
-
_shrinked: {
|
|
52
|
-
type: Boolean
|
|
53
|
-
}
|
|
54
|
-
},
|
|
55
|
-
slots: /** @lends sap.ui.webcomponents.fiori.Bar.prototype */{
|
|
56
|
-
/**
|
|
57
|
-
* Defines the content at the start of the bar
|
|
58
|
-
* @type {HTMLElement[]}
|
|
59
|
-
* @slot
|
|
60
|
-
* @public
|
|
61
|
-
*/
|
|
62
|
-
startContent: {
|
|
63
|
-
type: HTMLElement
|
|
64
|
-
},
|
|
65
|
-
/**
|
|
66
|
-
* Defines the content in the middle of the bar
|
|
67
|
-
* @type {HTMLElement[]}
|
|
68
|
-
* @slot middleContent
|
|
69
|
-
* @public
|
|
70
|
-
*/
|
|
71
|
-
"default": {
|
|
72
|
-
type: HTMLElement,
|
|
73
|
-
propertyName: "middleContent"
|
|
74
|
-
},
|
|
75
|
-
/**
|
|
76
|
-
* Defines the content at the end of the bar
|
|
77
|
-
* @type {HTMLElement[]}
|
|
78
|
-
* @slot
|
|
79
|
-
* @public
|
|
80
|
-
*/
|
|
81
|
-
endContent: {
|
|
82
|
-
type: HTMLElement
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
events: /** @lends sap.ui.webcomponents.fiori.Bar.prototype */{
|
|
86
|
-
//
|
|
87
|
-
}
|
|
18
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
19
|
+
var c = arguments.length,
|
|
20
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
21
|
+
d;
|
|
22
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
23
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
88
24
|
};
|
|
89
|
-
|
|
90
25
|
/**
|
|
91
26
|
* @class
|
|
92
27
|
*
|
|
@@ -128,26 +63,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
128
63
|
*
|
|
129
64
|
* @constructor
|
|
130
65
|
* @author SAP SE
|
|
131
|
-
* @alias sap.ui.
|
|
132
|
-
* @implements sap.ui.
|
|
133
|
-
* @extends UI5Element
|
|
66
|
+
* @alias sap.ui.webc.fiori.Bar
|
|
67
|
+
* @implements sap.ui.webc.fiori.IBar
|
|
68
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
134
69
|
* @tagname ui5-bar
|
|
135
70
|
* @public
|
|
136
71
|
* @since 1.0.0-rc.11
|
|
137
72
|
*/
|
|
138
|
-
class Bar extends _UI5Element.default {
|
|
139
|
-
static get metadata() {
|
|
140
|
-
return metadata;
|
|
141
|
-
}
|
|
142
|
-
static get render() {
|
|
143
|
-
return _LitRenderer.default;
|
|
144
|
-
}
|
|
145
|
-
static get styles() {
|
|
146
|
-
return _Bar.default;
|
|
147
|
-
}
|
|
148
|
-
static get template() {
|
|
149
|
-
return _BarTemplate.default;
|
|
150
|
-
}
|
|
73
|
+
let Bar = class Bar extends _UI5Element.default {
|
|
151
74
|
get accInfo() {
|
|
152
75
|
return {
|
|
153
76
|
"label": this.design
|
|
@@ -160,15 +83,15 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
160
83
|
handleResize() {
|
|
161
84
|
const bar = this.getDomRef();
|
|
162
85
|
const barWidth = bar.offsetWidth;
|
|
163
|
-
|
|
164
|
-
return barWidth / 3
|
|
86
|
+
const needShrinked = Array.from(bar.children).some(child => {
|
|
87
|
+
return child.offsetWidth > barWidth / 3;
|
|
165
88
|
});
|
|
89
|
+
bar.classList.toggle("ui5-bar-root-shrinked", needShrinked);
|
|
166
90
|
}
|
|
167
91
|
get classes() {
|
|
168
92
|
return {
|
|
169
93
|
root: {
|
|
170
|
-
"ui5-bar-root": true
|
|
171
|
-
"ui5-bar-root-shrinked": this._shrinked
|
|
94
|
+
"ui5-bar-root": true
|
|
172
95
|
}
|
|
173
96
|
};
|
|
174
97
|
}
|
|
@@ -178,11 +101,38 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
178
101
|
}
|
|
179
102
|
onEnterDOM() {
|
|
180
103
|
_ResizeHandler.default.register(this, this._handleResizeBound);
|
|
104
|
+
this.getDomRef().querySelectorAll(".ui5-bar-content-container").forEach(child => {
|
|
105
|
+
_ResizeHandler.default.register(child, this._handleResizeBound);
|
|
106
|
+
}, this);
|
|
181
107
|
}
|
|
182
108
|
onExitDOM() {
|
|
183
109
|
_ResizeHandler.default.deregister(this, this._handleResizeBound);
|
|
110
|
+
this.getDomRef().querySelectorAll(".ui5-bar-content-container").forEach(child => {
|
|
111
|
+
_ResizeHandler.default.deregister(child, this._handleResizeBound);
|
|
112
|
+
}, this);
|
|
184
113
|
}
|
|
185
|
-
}
|
|
114
|
+
};
|
|
115
|
+
__decorate([(0, _property.default)({
|
|
116
|
+
type: _BarDesign.default,
|
|
117
|
+
defaultValue: _BarDesign.default.Header
|
|
118
|
+
})], Bar.prototype, "design", void 0);
|
|
119
|
+
__decorate([(0, _slot.default)({
|
|
120
|
+
type: HTMLElement
|
|
121
|
+
})], Bar.prototype, "startContent", void 0);
|
|
122
|
+
__decorate([(0, _slot.default)({
|
|
123
|
+
type: HTMLElement,
|
|
124
|
+
"default": true
|
|
125
|
+
})], Bar.prototype, "middleContent", void 0);
|
|
126
|
+
__decorate([(0, _slot.default)({
|
|
127
|
+
type: HTMLElement
|
|
128
|
+
})], Bar.prototype, "endContent", void 0);
|
|
129
|
+
Bar = __decorate([(0, _customElement.default)({
|
|
130
|
+
tag: "ui5-bar",
|
|
131
|
+
fastNavigation: true,
|
|
132
|
+
renderer: _LitRenderer.default,
|
|
133
|
+
styles: _Bar.default,
|
|
134
|
+
template: _BarTemplate.default
|
|
135
|
+
})], Bar);
|
|
186
136
|
Bar.define();
|
|
187
137
|
var _default = Bar;
|
|
188
138
|
_exports.default = _default;
|