@openui5/sap.ui.webc.fiori 1.115.1 → 1.117.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/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 +10 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +0 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "./types/SideContentPosition", "./types/SideContentVisibility", "./types/SideContentFallDown", "./generated/templates/DynamicSideContentTemplate.lit", "./generated/themes/DynamicSideContent.css", "./generated/i18n/i18n-defaults"], function (_exports, _UI5Element, _i18nBundle, _LitRenderer, _ResizeHandler, _SideContentPosition, _SideContentVisibility, _SideContentFallDown, _DynamicSideContentTemplate, _DynamicSideContent, _i18nDefaults) {
|
|
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/event", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "./types/SideContentPosition", "./types/SideContentVisibility", "./types/SideContentFallDown", "./generated/templates/DynamicSideContentTemplate.lit", "./generated/themes/DynamicSideContent.css", "./generated/i18n/i18n-defaults"], function (_exports, _UI5Element, _customElement, _event, _property, _slot, _i18nBundle, _LitRenderer, _ResizeHandler, _SideContentPosition, _SideContentVisibility, _SideContentFallDown, _DynamicSideContentTemplate, _DynamicSideContent, _i18nDefaults) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,6 +6,10 @@ 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
|
+
_event = _interopRequireDefault(_event);
|
|
11
|
+
_property = _interopRequireDefault(_property);
|
|
12
|
+
_slot = _interopRequireDefault(_slot);
|
|
9
13
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
10
14
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
|
11
15
|
_SideContentPosition = _interopRequireDefault(_SideContentPosition);
|
|
@@ -14,10 +18,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
14
18
|
_DynamicSideContentTemplate = _interopRequireDefault(_DynamicSideContentTemplate);
|
|
15
19
|
_DynamicSideContent = _interopRequireDefault(_DynamicSideContent);
|
|
16
20
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
22
|
+
var c = arguments.length,
|
|
23
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
24
|
+
d;
|
|
25
|
+
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;
|
|
26
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
27
|
+
};
|
|
28
|
+
var DynamicSideContent_1;
|
|
21
29
|
// Breakpoint-related constants
|
|
22
30
|
const S_M_BREAKPOINT = 720,
|
|
23
31
|
// Breakpoint between S and M screen sizes
|
|
@@ -26,198 +34,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
26
34
|
L_XL_BREAKPOINT = 1440,
|
|
27
35
|
// Breakpoint between L and XL screen sizes
|
|
28
36
|
MINIMUM_WIDTH_BREAKPOINT = 960; // Minimum width of the control where main and side contents are side by side
|
|
29
|
-
|
|
30
|
-
/**
|
|
31
|
-
* @public
|
|
32
|
-
*/
|
|
33
|
-
const metadata = {
|
|
34
|
-
tag: "ui5-dynamic-side-content",
|
|
35
|
-
managedSlots: true,
|
|
36
|
-
properties: /** @lends sap.ui.webcomponents.fiori.DynamicSideContent.prototype */{
|
|
37
|
-
/**
|
|
38
|
-
* Defines the visibility of the main content.
|
|
39
|
-
*
|
|
40
|
-
* @type {boolean}
|
|
41
|
-
* @defaultvalue false
|
|
42
|
-
* @public
|
|
43
|
-
*
|
|
44
|
-
*/
|
|
45
|
-
hideMainContent: {
|
|
46
|
-
type: Boolean
|
|
47
|
-
},
|
|
48
|
-
/**
|
|
49
|
-
* Defines the visibility of the side content.
|
|
50
|
-
*
|
|
51
|
-
* @type {boolean}
|
|
52
|
-
* @defaultvalue false
|
|
53
|
-
* @public
|
|
54
|
-
*
|
|
55
|
-
*/
|
|
56
|
-
hideSideContent: {
|
|
57
|
-
type: Boolean
|
|
58
|
-
},
|
|
59
|
-
/**
|
|
60
|
-
* Defines whether the side content is positioned before the main content (left side
|
|
61
|
-
* in LTR mode), or after the the main content (right side in LTR mode).
|
|
62
|
-
*
|
|
63
|
-
* <br><br>
|
|
64
|
-
* <b>The available values are:</b>
|
|
65
|
-
*
|
|
66
|
-
* <ul>
|
|
67
|
-
* <li><code>Start</code></li>
|
|
68
|
-
* <li><code>End</code></li>
|
|
69
|
-
* </ul>
|
|
70
|
-
*
|
|
71
|
-
* @type {SideContentPosition}
|
|
72
|
-
* @defaultvalue "End"
|
|
73
|
-
* @public
|
|
74
|
-
*
|
|
75
|
-
*/
|
|
76
|
-
sideContentPosition: {
|
|
77
|
-
type: _SideContentPosition.default,
|
|
78
|
-
defaultValue: _SideContentPosition.default.End
|
|
79
|
-
},
|
|
80
|
-
/**
|
|
81
|
-
* Defines on which breakpoints the side content is visible.
|
|
82
|
-
*
|
|
83
|
-
* <br><br>
|
|
84
|
-
* <b>The available values are:</b>
|
|
85
|
-
*
|
|
86
|
-
* <ul>
|
|
87
|
-
* <li><code>AlwaysShow</code></li>
|
|
88
|
-
* <li><code>ShowAboveL</code></li>
|
|
89
|
-
* <li><code>ShowAboveM</code></li>
|
|
90
|
-
* <li><code>ShowAboveS</code></li>
|
|
91
|
-
* <li><code>NeverShow</code></li>
|
|
92
|
-
* </ul>
|
|
93
|
-
*
|
|
94
|
-
* @type {SideContentVisibility}
|
|
95
|
-
* @defaultvalue "ShowAboveS"
|
|
96
|
-
* @public
|
|
97
|
-
*
|
|
98
|
-
*/
|
|
99
|
-
sideContentVisibility: {
|
|
100
|
-
type: _SideContentVisibility.default,
|
|
101
|
-
defaultValue: _SideContentVisibility.default.ShowAboveS
|
|
102
|
-
},
|
|
103
|
-
/**
|
|
104
|
-
* Defines on which breakpoints the side content falls down below the main content.
|
|
105
|
-
*
|
|
106
|
-
* <br><br>
|
|
107
|
-
* <b>The available values are:</b>
|
|
108
|
-
*
|
|
109
|
-
* <ul>
|
|
110
|
-
* <li><code>BelowXL</code></li>
|
|
111
|
-
* <li><code>BelowL</code></li>
|
|
112
|
-
* <li><code>BelowM</code></li>
|
|
113
|
-
* <li><code>OnMinimumWidth</code></li>
|
|
114
|
-
* </ul>
|
|
115
|
-
*
|
|
116
|
-
* @type {SideContentFallDown}
|
|
117
|
-
* @defaultvalue "OnMinimumWidth"
|
|
118
|
-
* @public
|
|
119
|
-
*
|
|
120
|
-
*/
|
|
121
|
-
sideContentFallDown: {
|
|
122
|
-
type: _SideContentFallDown.default,
|
|
123
|
-
defaultValue: _SideContentFallDown.default.OnMinimumWidth
|
|
124
|
-
},
|
|
125
|
-
/**
|
|
126
|
-
* Defines whether the component is in equal split mode. In this mode, the side and
|
|
127
|
-
* the main content take 50:50 percent of the container on all screen sizes
|
|
128
|
-
* except for phone, where the main and side contents are switching visibility
|
|
129
|
-
* using the toggle method.
|
|
130
|
-
*
|
|
131
|
-
* @type {boolean}
|
|
132
|
-
* @defaultvalue false
|
|
133
|
-
* @public
|
|
134
|
-
*
|
|
135
|
-
*/
|
|
136
|
-
equalSplit: {
|
|
137
|
-
type: Boolean
|
|
138
|
-
},
|
|
139
|
-
/**
|
|
140
|
-
* @private
|
|
141
|
-
*/
|
|
142
|
-
_mcSpan: {
|
|
143
|
-
type: String,
|
|
144
|
-
defaultValue: "0",
|
|
145
|
-
noAttribute: true
|
|
146
|
-
},
|
|
147
|
-
/**
|
|
148
|
-
* @private
|
|
149
|
-
*/
|
|
150
|
-
_scSpan: {
|
|
151
|
-
type: String,
|
|
152
|
-
defaultValue: "0",
|
|
153
|
-
noAttribute: true
|
|
154
|
-
},
|
|
155
|
-
/**
|
|
156
|
-
* @private
|
|
157
|
-
*/
|
|
158
|
-
_toggled: {
|
|
159
|
-
type: Boolean,
|
|
160
|
-
noAttribute: true
|
|
161
|
-
},
|
|
162
|
-
/**
|
|
163
|
-
* @private
|
|
164
|
-
*/
|
|
165
|
-
_currentBreakpoint: {
|
|
166
|
-
type: String,
|
|
167
|
-
noAttribute: true
|
|
168
|
-
}
|
|
169
|
-
},
|
|
170
|
-
slots: /** @lends sap.ui.webcomponents.fiori.DynamicSideContent.prototype */{
|
|
171
|
-
/**
|
|
172
|
-
* Defines the main content.
|
|
173
|
-
*
|
|
174
|
-
* @type {HTMLElement[]}
|
|
175
|
-
* @slot
|
|
176
|
-
* @public
|
|
177
|
-
*/
|
|
178
|
-
"default": {
|
|
179
|
-
type: HTMLElement
|
|
180
|
-
},
|
|
181
|
-
/**
|
|
182
|
-
* Defines the side content.
|
|
183
|
-
*
|
|
184
|
-
* @type {HTMLElement[]}
|
|
185
|
-
* @slot
|
|
186
|
-
* @public
|
|
187
|
-
*/
|
|
188
|
-
"sideContent": {
|
|
189
|
-
type: HTMLElement
|
|
190
|
-
}
|
|
191
|
-
},
|
|
192
|
-
events: /** @lends sap.ui.webcomponents.fiori.DynamicSideContent.prototype */{
|
|
193
|
-
/**
|
|
194
|
-
* Fires when the current breakpoint has been changed.
|
|
195
|
-
* @event sap.ui.webcomponents.fiori.DynamicSideContent#layout-change
|
|
196
|
-
* @param {string} currentBreakpoint the current breakpoint.
|
|
197
|
-
* @param {string} previousBreakpoint the breakpoint that was active before change to current breakpoint.
|
|
198
|
-
* @param {boolean} mainContentVisible visibility of the main content.
|
|
199
|
-
* @param {boolean} sideContentVisible visibility of the side content.
|
|
200
|
-
* @public
|
|
201
|
-
*/
|
|
202
|
-
"layout-change": {
|
|
203
|
-
detail: {
|
|
204
|
-
currentBreakpoint: {
|
|
205
|
-
type: String
|
|
206
|
-
},
|
|
207
|
-
previousBreakpoint: {
|
|
208
|
-
type: String
|
|
209
|
-
},
|
|
210
|
-
mainContentVisible: {
|
|
211
|
-
type: Boolean
|
|
212
|
-
},
|
|
213
|
-
sideContentVisible: {
|
|
214
|
-
type: Boolean
|
|
215
|
-
}
|
|
216
|
-
}
|
|
217
|
-
}
|
|
218
|
-
}
|
|
219
|
-
};
|
|
220
|
-
|
|
221
37
|
/**
|
|
222
38
|
* @class
|
|
223
39
|
*
|
|
@@ -289,31 +105,19 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
289
105
|
*
|
|
290
106
|
* @constructor
|
|
291
107
|
* @author SAP SE
|
|
292
|
-
* @alias sap.ui.
|
|
293
|
-
* @extends UI5Element
|
|
108
|
+
* @alias sap.ui.webc.fiori.DynamicSideContent
|
|
109
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
294
110
|
* @tagname ui5-dynamic-side-content
|
|
295
111
|
* @public
|
|
296
112
|
* @since 1.1.0
|
|
297
113
|
*/
|
|
298
|
-
class DynamicSideContent extends _UI5Element.default {
|
|
114
|
+
let DynamicSideContent = DynamicSideContent_1 = class DynamicSideContent extends _UI5Element.default {
|
|
299
115
|
constructor() {
|
|
300
116
|
super();
|
|
301
117
|
this._handleResizeBound = this.handleResize.bind(this);
|
|
302
118
|
}
|
|
303
|
-
static get metadata() {
|
|
304
|
-
return metadata;
|
|
305
|
-
}
|
|
306
|
-
static get styles() {
|
|
307
|
-
return _DynamicSideContent.default;
|
|
308
|
-
}
|
|
309
|
-
static get render() {
|
|
310
|
-
return _LitRenderer.default;
|
|
311
|
-
}
|
|
312
|
-
static get template() {
|
|
313
|
-
return _DynamicSideContentTemplate.default;
|
|
314
|
-
}
|
|
315
119
|
static async onDefine() {
|
|
316
|
-
|
|
120
|
+
DynamicSideContent_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
317
121
|
}
|
|
318
122
|
onAfterRendering() {
|
|
319
123
|
this._resizeContents();
|
|
@@ -324,10 +128,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
324
128
|
onExitDOM() {
|
|
325
129
|
_ResizeHandler.default.deregister(this, this._handleResizeBound);
|
|
326
130
|
}
|
|
327
|
-
|
|
328
131
|
/**
|
|
329
132
|
* Toggles visibility of main and side contents on S screen size (mobile device).
|
|
330
133
|
* @public
|
|
134
|
+
* @method
|
|
135
|
+
* @name sap.ui.webc.fiori.DynamicSideContent#toggleContents
|
|
331
136
|
*/
|
|
332
137
|
toggleContents() {
|
|
333
138
|
if (this.breakpoint === this.sizeS && this.sideContentVisibility !== _SideContentVisibility.default.AlwaysShow) {
|
|
@@ -360,18 +165,16 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
360
165
|
"flex-wrap": this._mcSpan === "12" ? "wrap" : "nowrap"
|
|
361
166
|
},
|
|
362
167
|
main: {
|
|
363
|
-
"height": mcSpan === this.span12 ? contentHeight : "100%"
|
|
364
|
-
"order": this.sideContentPosition === _SideContentPosition.default.Start ? 2 : 1
|
|
168
|
+
"height": mcSpan === this.span12 ? contentHeight : "100%"
|
|
365
169
|
},
|
|
366
170
|
side: {
|
|
367
|
-
"height": scSpan === this.span12 ? contentHeight : "100%"
|
|
368
|
-
"order": this.sideContentPosition === _SideContentPosition.default.Start ? 1 : 2
|
|
171
|
+
"height": scSpan === this.span12 ? contentHeight : "100%"
|
|
369
172
|
}
|
|
370
173
|
};
|
|
371
174
|
}
|
|
372
175
|
get accInfo() {
|
|
373
176
|
return {
|
|
374
|
-
"label":
|
|
177
|
+
"label": DynamicSideContent_1.i18nBundle.getText(_i18nDefaults.DSC_SIDE_ARIA_LABEL)
|
|
375
178
|
};
|
|
376
179
|
}
|
|
377
180
|
get sizeS() {
|
|
@@ -426,12 +229,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
426
229
|
}
|
|
427
230
|
return size;
|
|
428
231
|
}
|
|
232
|
+
get _isSideContentFirst() {
|
|
233
|
+
return this.sideContentPosition === _SideContentPosition.default.Start;
|
|
234
|
+
}
|
|
429
235
|
handleResize() {
|
|
430
236
|
this._resizeContents();
|
|
431
237
|
}
|
|
432
238
|
_resizeContents() {
|
|
433
239
|
let mainSize, sideSize, sideVisible;
|
|
434
|
-
|
|
435
240
|
// initial set contents sizes
|
|
436
241
|
switch (this.breakpoint) {
|
|
437
242
|
case this.sizeS:
|
|
@@ -466,7 +271,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
466
271
|
if (this.sideContentVisibility === _SideContentVisibility.default.AlwaysShow) {
|
|
467
272
|
sideVisible = true;
|
|
468
273
|
}
|
|
469
|
-
|
|
470
274
|
// modify sizes of the contents depending on hideMainContent and hideSideContent properties
|
|
471
275
|
if (this.hideSideContent) {
|
|
472
276
|
mainSize = this.hideMainContent ? this.span0 : this.span12;
|
|
@@ -478,13 +282,11 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
478
282
|
sideSize = this.hideSideContent ? this.span0 : this.span12;
|
|
479
283
|
sideVisible = true;
|
|
480
284
|
}
|
|
481
|
-
|
|
482
285
|
// set final sizes of the contents
|
|
483
286
|
if (!sideVisible) {
|
|
484
287
|
mainSize = this.span12;
|
|
485
288
|
sideSize = this.span0;
|
|
486
289
|
}
|
|
487
|
-
|
|
488
290
|
// fire "layout-change" event
|
|
489
291
|
if (this._currentBreakpoint !== this.breakpoint) {
|
|
490
292
|
const eventParams = {
|
|
@@ -496,7 +298,6 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
496
298
|
this.fireEvent("layout-change", eventParams);
|
|
497
299
|
this._currentBreakpoint = this.breakpoint;
|
|
498
300
|
}
|
|
499
|
-
|
|
500
301
|
// update contents sizes
|
|
501
302
|
this._setSpanSizes(mainSize, sideSize);
|
|
502
303
|
}
|
|
@@ -507,7 +308,74 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
507
308
|
this._toggled = false;
|
|
508
309
|
}
|
|
509
310
|
}
|
|
510
|
-
}
|
|
311
|
+
};
|
|
312
|
+
__decorate([(0, _property.default)({
|
|
313
|
+
type: Boolean
|
|
314
|
+
})], DynamicSideContent.prototype, "hideMainContent", void 0);
|
|
315
|
+
__decorate([(0, _property.default)({
|
|
316
|
+
type: Boolean
|
|
317
|
+
})], DynamicSideContent.prototype, "hideSideContent", void 0);
|
|
318
|
+
__decorate([(0, _property.default)({
|
|
319
|
+
type: _SideContentPosition.default,
|
|
320
|
+
defaultValue: _SideContentPosition.default.End
|
|
321
|
+
})], DynamicSideContent.prototype, "sideContentPosition", void 0);
|
|
322
|
+
__decorate([(0, _property.default)({
|
|
323
|
+
type: _SideContentVisibility.default,
|
|
324
|
+
defaultValue: _SideContentVisibility.default.ShowAboveS
|
|
325
|
+
})], DynamicSideContent.prototype, "sideContentVisibility", void 0);
|
|
326
|
+
__decorate([(0, _property.default)({
|
|
327
|
+
type: _SideContentFallDown.default,
|
|
328
|
+
defaultValue: _SideContentFallDown.default.OnMinimumWidth
|
|
329
|
+
})], DynamicSideContent.prototype, "sideContentFallDown", void 0);
|
|
330
|
+
__decorate([(0, _property.default)({
|
|
331
|
+
type: Boolean
|
|
332
|
+
})], DynamicSideContent.prototype, "equalSplit", void 0);
|
|
333
|
+
__decorate([(0, _property.default)({
|
|
334
|
+
defaultValue: "0",
|
|
335
|
+
noAttribute: true
|
|
336
|
+
})], DynamicSideContent.prototype, "_mcSpan", void 0);
|
|
337
|
+
__decorate([(0, _property.default)({
|
|
338
|
+
defaultValue: "0",
|
|
339
|
+
noAttribute: true
|
|
340
|
+
})], DynamicSideContent.prototype, "_scSpan", void 0);
|
|
341
|
+
__decorate([(0, _property.default)({
|
|
342
|
+
type: Boolean,
|
|
343
|
+
noAttribute: true
|
|
344
|
+
})], DynamicSideContent.prototype, "_toggled", void 0);
|
|
345
|
+
__decorate([(0, _property.default)({
|
|
346
|
+
noAttribute: true
|
|
347
|
+
})], DynamicSideContent.prototype, "_currentBreakpoint", void 0);
|
|
348
|
+
__decorate([(0, _slot.default)()], DynamicSideContent.prototype, "sideContent", void 0);
|
|
349
|
+
DynamicSideContent = DynamicSideContent_1 = __decorate([(0, _customElement.default)({
|
|
350
|
+
tag: "ui5-dynamic-side-content",
|
|
351
|
+
renderer: _LitRenderer.default,
|
|
352
|
+
styles: _DynamicSideContent.default,
|
|
353
|
+
template: _DynamicSideContentTemplate.default
|
|
354
|
+
})
|
|
355
|
+
/**
|
|
356
|
+
* Fires when the current breakpoint has been changed.
|
|
357
|
+
* @event sap.ui.webc.fiori.DynamicSideContent#layout-change
|
|
358
|
+
* @param {string} currentBreakpoint the current breakpoint.
|
|
359
|
+
* @param {string} previousBreakpoint the breakpoint that was active before change to current breakpoint.
|
|
360
|
+
* @param {boolean} mainContentVisible visibility of the main content.
|
|
361
|
+
* @param {boolean} sideContentVisible visibility of the side content.
|
|
362
|
+
* @public
|
|
363
|
+
*/, (0, _event.default)("layout-change", {
|
|
364
|
+
detail: {
|
|
365
|
+
currentBreakpoint: {
|
|
366
|
+
type: String
|
|
367
|
+
},
|
|
368
|
+
previousBreakpoint: {
|
|
369
|
+
type: String
|
|
370
|
+
},
|
|
371
|
+
mainContentVisible: {
|
|
372
|
+
type: Boolean
|
|
373
|
+
},
|
|
374
|
+
sideContentVisible: {
|
|
375
|
+
type: Boolean
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
})], DynamicSideContent);
|
|
511
379
|
DynamicSideContent.define();
|
|
512
380
|
var _default = DynamicSideContent;
|
|
513
381
|
_exports.default = _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], function (_exports, _UI5Element) {
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/decorators/customElement"], function (_exports, _UI5Element, _property, _slot, _customElement) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,51 +6,17 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
|
|
|
6
6
|
});
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
9
|
+
_property = _interopRequireDefault(_property);
|
|
10
|
+
_slot = _interopRequireDefault(_slot);
|
|
11
|
+
_customElement = _interopRequireDefault(_customElement);
|
|
9
12
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
properties: /** @lends sap.ui.webcomponents.fiori.FilterItem.prototype */{
|
|
17
|
-
/**
|
|
18
|
-
* Defines the text of the component.
|
|
19
|
-
*
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @defaultvalue ""
|
|
22
|
-
* @public
|
|
23
|
-
*/
|
|
24
|
-
text: {
|
|
25
|
-
type: String
|
|
26
|
-
},
|
|
27
|
-
/**
|
|
28
|
-
* Defines the additional text of the component.
|
|
29
|
-
*
|
|
30
|
-
* @type {string}
|
|
31
|
-
* @defaultvalue ""
|
|
32
|
-
* @private
|
|
33
|
-
*/
|
|
34
|
-
additionalText: {
|
|
35
|
-
type: String
|
|
36
|
-
}
|
|
37
|
-
},
|
|
38
|
-
slots: /** @lends sap.ui.webcomponents.fiori.FilterItem.prototype */{
|
|
39
|
-
/**
|
|
40
|
-
* Defines the <code>values</code> list.
|
|
41
|
-
* @type {sap.ui.webcomponents.fiori.IFilterItemOption[]}
|
|
42
|
-
* @slot values
|
|
43
|
-
* @public
|
|
44
|
-
*/
|
|
45
|
-
values: {
|
|
46
|
-
type: HTMLElement
|
|
47
|
-
}
|
|
48
|
-
},
|
|
49
|
-
events: /** @lends sap.ui.webcomponents.fiori.FilterItem.prototype */{
|
|
50
|
-
//
|
|
51
|
-
}
|
|
13
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
14
|
+
var c = arguments.length,
|
|
15
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
16
|
+
d;
|
|
17
|
+
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;
|
|
18
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
52
19
|
};
|
|
53
|
-
|
|
54
20
|
/**
|
|
55
21
|
* @class
|
|
56
22
|
*
|
|
@@ -66,18 +32,19 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
|
|
|
66
32
|
*
|
|
67
33
|
* @constructor
|
|
68
34
|
* @author SAP SE
|
|
69
|
-
* @alias sap.ui.
|
|
70
|
-
* @extends UI5Element
|
|
35
|
+
* @alias sap.ui.webc.fiori.FilterItem
|
|
36
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
37
|
+
* @abstract
|
|
71
38
|
* @since 1.0.0-rc.16
|
|
72
39
|
* @tagname ui5-filter-item
|
|
73
|
-
* @implements sap.ui.
|
|
40
|
+
* @implements sap.ui.webc.fiori.IFilterItem
|
|
74
41
|
* @public
|
|
75
42
|
*/
|
|
76
|
-
class FilterItem extends _UI5Element.default {
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
43
|
+
let FilterItem = class FilterItem extends _UI5Element.default {};
|
|
44
|
+
__decorate([(0, _property.default)()], FilterItem.prototype, "text", void 0);
|
|
45
|
+
__decorate([(0, _property.default)()], FilterItem.prototype, "additionalText", void 0);
|
|
46
|
+
__decorate([(0, _slot.default)()], FilterItem.prototype, "values", void 0);
|
|
47
|
+
FilterItem = __decorate([(0, _customElement.default)("ui5-filter-item")], FilterItem);
|
|
81
48
|
FilterItem.define();
|
|
82
49
|
var _default = FilterItem;
|
|
83
50
|
_exports.default = _default;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], function (_exports, _UI5Element) {
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/customElement"], function (_exports, _UI5Element, _property, _customElement) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,42 +6,16 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
|
|
|
6
6
|
});
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
9
|
+
_property = _interopRequireDefault(_property);
|
|
10
|
+
_customElement = _interopRequireDefault(_customElement);
|
|
9
11
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Defines the text of the component.
|
|
18
|
-
*
|
|
19
|
-
* @public
|
|
20
|
-
* @type {string}
|
|
21
|
-
* @defaultvalue ""
|
|
22
|
-
*/
|
|
23
|
-
text: {
|
|
24
|
-
type: String
|
|
25
|
-
},
|
|
26
|
-
/**
|
|
27
|
-
* Defines whether the option is selected
|
|
28
|
-
*
|
|
29
|
-
* @public
|
|
30
|
-
* @type {boolean}
|
|
31
|
-
* @defaultvalue false
|
|
32
|
-
*/
|
|
33
|
-
selected: {
|
|
34
|
-
type: Boolean
|
|
35
|
-
}
|
|
36
|
-
},
|
|
37
|
-
slots: /** @lends sap.ui.webcomponents.fiori.FilterItemOption.prototype */{
|
|
38
|
-
//
|
|
39
|
-
},
|
|
40
|
-
events: /** @lends sap.ui.webcomponents.fiori.FilterItemOption.prototype */{
|
|
41
|
-
//
|
|
42
|
-
}
|
|
12
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
13
|
+
var c = arguments.length,
|
|
14
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
15
|
+
d;
|
|
16
|
+
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;
|
|
17
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
43
18
|
};
|
|
44
|
-
|
|
45
19
|
/**
|
|
46
20
|
* @class
|
|
47
21
|
*
|
|
@@ -57,18 +31,20 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element"], func
|
|
|
57
31
|
*
|
|
58
32
|
* @constructor
|
|
59
33
|
* @author SAP SE
|
|
60
|
-
* @alias sap.ui.
|
|
61
|
-
* @extends UI5Element
|
|
34
|
+
* @alias sap.ui.webc.fiori.FilterItemOption
|
|
35
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
36
|
+
* @abstract
|
|
62
37
|
* @since 1.0.0-rc.16
|
|
63
38
|
* @tagname ui5-filter-item-option
|
|
64
|
-
* @implements sap.ui.
|
|
39
|
+
* @implements sap.ui.webc.fiori.IFilterItemOption
|
|
65
40
|
* @public
|
|
66
41
|
*/
|
|
67
|
-
class FilterItemOption extends _UI5Element.default {
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
}
|
|
42
|
+
let FilterItemOption = class FilterItemOption extends _UI5Element.default {};
|
|
43
|
+
__decorate([(0, _property.default)()], FilterItemOption.prototype, "text", void 0);
|
|
44
|
+
__decorate([(0, _property.default)({
|
|
45
|
+
type: Boolean
|
|
46
|
+
})], FilterItemOption.prototype, "selected", void 0);
|
|
47
|
+
FilterItemOption = __decorate([(0, _customElement.default)("ui5-filter-item-option")], FilterItemOption);
|
|
72
48
|
FilterItemOption.define();
|
|
73
49
|
var _default = FilterItemOption;
|
|
74
50
|
_exports.default = _default;
|