@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/main/thirdparty/Title", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "./
|
|
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/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/asset-registries/Illustrations", "sap/ui/webc/common/thirdparty/base/util/AriaLabelHelper", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/main/thirdparty/Title", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "./types/IllustrationMessageSize", "./types/IllustrationMessageType", "./illustrations/BeforeSearch", "./generated/themes/IllustratedMessage.css", "./generated/templates/IllustratedMessageTemplate.lit"], function (_exports, _UI5Element, _customElement, _property, _slot, _ResizeHandler, _Illustrations, _AriaLabelHelper, _i18nBundle, _Title, _LitRenderer, _IllustrationMessageSize, _IllustrationMessageType, _BeforeSearch, _IllustratedMessage, _IllustratedMessageTemplate) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,231 +6,25 @@ 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
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
|
10
13
|
_Title = _interopRequireDefault(_Title);
|
|
11
14
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
12
|
-
_IllustratedMessageTemplate = _interopRequireDefault(_IllustratedMessageTemplate);
|
|
13
15
|
_IllustrationMessageSize = _interopRequireDefault(_IllustrationMessageSize);
|
|
14
16
|
_IllustrationMessageType = _interopRequireDefault(_IllustrationMessageType);
|
|
15
17
|
_IllustratedMessage = _interopRequireDefault(_IllustratedMessage);
|
|
18
|
+
_IllustratedMessageTemplate = _interopRequireDefault(_IllustratedMessageTemplate);
|
|
16
19
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
*/
|
|
24
|
-
const metadata = {
|
|
25
|
-
tag: "ui5-illustrated-message",
|
|
26
|
-
languageAware: true,
|
|
27
|
-
managedSlots: true,
|
|
28
|
-
properties: /** @lends sap.ui.webcomponents.fiori.IllustratedMessage.prototype */{
|
|
29
|
-
/**
|
|
30
|
-
* Defines the title of the component.
|
|
31
|
-
* <br><br>
|
|
32
|
-
* <b>Note:</b> Using this property, the default title text of illustration will be overwritten.
|
|
33
|
-
* @type {string}
|
|
34
|
-
* @defaultvalue ""
|
|
35
|
-
* @public
|
|
36
|
-
*/
|
|
37
|
-
titleText: {
|
|
38
|
-
type: String
|
|
39
|
-
},
|
|
40
|
-
/**
|
|
41
|
-
* Defines the subtitle of the component.
|
|
42
|
-
* <br><br>
|
|
43
|
-
* <b>Note:</b> Using this property, the default subtitle text of illustration will be overwritten.
|
|
44
|
-
* <br><br>
|
|
45
|
-
* <b>Note:</b> Using <code>subtitle</code> slot, the default of this property will be overwritten.
|
|
46
|
-
* @type {string}
|
|
47
|
-
* @defaultvalue ""
|
|
48
|
-
* @public
|
|
49
|
-
*/
|
|
50
|
-
subtitleText: {
|
|
51
|
-
type: String
|
|
52
|
-
},
|
|
53
|
-
/**
|
|
54
|
-
* Determinates what is the current media of the component based on its width.
|
|
55
|
-
* @private
|
|
56
|
-
*/
|
|
57
|
-
media: {
|
|
58
|
-
type: String
|
|
59
|
-
},
|
|
60
|
-
/**
|
|
61
|
-
* Determinates whether illustration is invalid.
|
|
62
|
-
* @private
|
|
63
|
-
*/
|
|
64
|
-
invalid: {
|
|
65
|
-
type: Boolean
|
|
66
|
-
},
|
|
67
|
-
/**
|
|
68
|
-
* Defines the illustration name that will be displayed in the component.
|
|
69
|
-
* <br><br>
|
|
70
|
-
* Available illustrations are:
|
|
71
|
-
* <ul>
|
|
72
|
-
* <li><code>AddColumn</code></li>
|
|
73
|
-
* <li><code>AddPeople</code></li>
|
|
74
|
-
* <li><code>BalloonSky</code></li>
|
|
75
|
-
* <li><code>BeforeSearch</code></li>
|
|
76
|
-
* <li><code>Connection</code></li>
|
|
77
|
-
* <li><code>EmptyCalendar</code></li>
|
|
78
|
-
* <li><code>EmptyList</code></li>
|
|
79
|
-
* <li><code>EmptyPlanningCalendar</code></li>
|
|
80
|
-
* <li><code>ErrorScreen</code></li>
|
|
81
|
-
* <li><code>FilterTable</code></li>
|
|
82
|
-
* <li><code>GroupTable</code></li>
|
|
83
|
-
* <li><code>NoActivities</code></li>
|
|
84
|
-
* <li><code>NoData</code></li>
|
|
85
|
-
* <li><code>NoEntries</code></li>
|
|
86
|
-
* <li><code>NoFilterResults</code></li>
|
|
87
|
-
* <li><code>NoMail_v1</code></li>
|
|
88
|
-
* <li><code>NoMail</code></li>
|
|
89
|
-
* <li><code>NoNotifications</code></li>
|
|
90
|
-
* <li><code>NoSavedItems_v1</code></li>
|
|
91
|
-
* <li><code>NoSavedItems</code></li>
|
|
92
|
-
* <li><code>NoSearchResults</code></li>
|
|
93
|
-
* <li><code>NoTasks_v1</code></li>
|
|
94
|
-
* <li><code>NoTasks</code></li>
|
|
95
|
-
* <li><code>PageNotFound</code></li>
|
|
96
|
-
* <li><code>ReloadScreen</code></li>
|
|
97
|
-
* <li><code>ResizeColumn</code></li>
|
|
98
|
-
* <li><code>SearchEarth</code></li>
|
|
99
|
-
* <li><code>SearchFolder</code></li>
|
|
100
|
-
* <li><code>SimpleBalloon</code></li>
|
|
101
|
-
* <li><code>SimpleBell</code></li>
|
|
102
|
-
* <li><code>SimpleCalendar</code></li>
|
|
103
|
-
* <li><code>SimpleCheckMark</code></li>
|
|
104
|
-
* <li><code>SimpleConnection</code></li>
|
|
105
|
-
* <li><code>SimpleEmptyDoc</code></li>
|
|
106
|
-
* <li><code>SimpleEmptyList</code></li>
|
|
107
|
-
* <li><code>SimpleError</code></li>
|
|
108
|
-
* <li><code>SimpleMagnifier</code></li>
|
|
109
|
-
* <li><code>SimpleMail</code></li>
|
|
110
|
-
* <li><code>SimpleNoSavedItems</code></li>
|
|
111
|
-
* <li><code>SimpleNotFoundMagnifier</code></li>
|
|
112
|
-
* <li><code>SimpleReload</code></li>
|
|
113
|
-
* <li><code>SimpleTask</code></li>
|
|
114
|
-
* <li><code>SleepingBell</code></li>
|
|
115
|
-
* <li><code>SortColumn</code></li>
|
|
116
|
-
* <li><code>SuccessBalloon</code></li>
|
|
117
|
-
* <li><code>SuccessCheckMark</code></li>
|
|
118
|
-
* <li><code>SuccessHighFive</code></li>
|
|
119
|
-
* <li><code>SuccessScreen</code></li>
|
|
120
|
-
* <li><code>Tent</code></li>
|
|
121
|
-
* <li><code>UnableToLoad</code></li>
|
|
122
|
-
* <li><code>UnableToLoadImage</code></li>
|
|
123
|
-
* <li><code>UnableToUpload</code></li>
|
|
124
|
-
* <li><code>UploadCollection</code></li>
|
|
125
|
-
* <li><code>TntChartArea</code></li>
|
|
126
|
-
* <li><code>TntChartArea2</code></li>
|
|
127
|
-
* <li><code>TntChartBar</code></li>
|
|
128
|
-
* <li><code>TntChartBPMNFlow</code></li>
|
|
129
|
-
* <li><code>TntChartBullet</code></li>
|
|
130
|
-
* <li><code>TntChartDoughnut</code></li>
|
|
131
|
-
* <li><code>TntChartFlow</code></li>
|
|
132
|
-
* <li><code>TntChartGantt</code></li>
|
|
133
|
-
* <li><code>TntChartOrg</code></li>
|
|
134
|
-
* <li><code>TntChartPie</code></li>
|
|
135
|
-
* <li><code>TntCodePlaceholder</code></li>
|
|
136
|
-
* <li><code>TntCompany</code></li>
|
|
137
|
-
* <li><code>TntComponents</code></li>
|
|
138
|
-
* <li><code>TntExternalLink</code></li>
|
|
139
|
-
* <li><code>TntFaceID</code></li>
|
|
140
|
-
* <li><code>TntFingerprint</code></li>
|
|
141
|
-
* <li><code>TntLock</code></li>
|
|
142
|
-
* <li><code>TntMission</code></li>
|
|
143
|
-
* <li><code>TntNoApplications</code></li>
|
|
144
|
-
* <li><code>TntNoFlows</code></li>
|
|
145
|
-
* <li><code>TntNoUsers</code></li>
|
|
146
|
-
* <li><code>TntRadar</code></li>
|
|
147
|
-
* <li><code>TntSecrets</code></li>
|
|
148
|
-
* <li><code>TntServices</code></li>
|
|
149
|
-
* <li><code>TntSessionExpired</code></li>
|
|
150
|
-
* <li><code>TntSessionExpiring</code></li>
|
|
151
|
-
* <li><code>TntSuccess</code></li>
|
|
152
|
-
* <li><code>TntSuccessfulAuth</code></li>
|
|
153
|
-
* <li><code>TntSystems</code></li>
|
|
154
|
-
* <li><code>TntTeams</code></li>
|
|
155
|
-
* <li><code>TntTools</code></li>
|
|
156
|
-
* <li><code>TntUnableToLoad</code></li>
|
|
157
|
-
* <li><code>TntUnlock</code></li>
|
|
158
|
-
* <li><code>TntUnsuccessfulAuth</code></li>
|
|
159
|
-
* <li><code>TntUser2</code></li>
|
|
160
|
-
* </ul>
|
|
161
|
-
* <br><br>
|
|
162
|
-
* <b>Note:</b> By default the <code>BeforeSearch</code> illustration is loaded.
|
|
163
|
-
* <br>
|
|
164
|
-
* When using an illustration type, other than the default, it should be loaded in addition:
|
|
165
|
-
* <br>
|
|
166
|
-
* <code>import "@ui5/webcomponents-fiori/dist/illustrations/NoData.js";</code>
|
|
167
|
-
* <br><br>
|
|
168
|
-
* <b>Note:</b> TNT illustrations cointain <code>Tnt</code> prefix in their name.
|
|
169
|
-
* You can import them removing the <code>Tnt</code> prefix like this:
|
|
170
|
-
* <br>
|
|
171
|
-
* <code>import "@ui5/webcomponents-fiori/dist/illustrations/tnt/SessionExpired.js";</code>
|
|
172
|
-
* @type {IllustrationMessageType}
|
|
173
|
-
* @defaultvalue "BeforeSearch"
|
|
174
|
-
* @public
|
|
175
|
-
*/
|
|
176
|
-
name: {
|
|
177
|
-
type: _IllustrationMessageType.default,
|
|
178
|
-
defaultValue: _IllustrationMessageType.default.BeforeSearch
|
|
179
|
-
},
|
|
180
|
-
/**
|
|
181
|
-
* Determines which illustration breakpoint variant is used.
|
|
182
|
-
* <br><br>
|
|
183
|
-
* Available options are:
|
|
184
|
-
* <ul>
|
|
185
|
-
* <li><code>Auto</code></li>
|
|
186
|
-
* <li><code>Base</code></li>
|
|
187
|
-
* <li><code>Spot</code></li>
|
|
188
|
-
* <li><code>Dialog</code></li>
|
|
189
|
-
* <li><code>Scene</code></li>
|
|
190
|
-
* </ul>
|
|
191
|
-
*
|
|
192
|
-
* As <code>IllustratedMessage</code> adapts itself around the <code>Illustration</code>, the other
|
|
193
|
-
* elements of the component are displayed differently on the different breakpoints/illustration sizes.
|
|
194
|
-
*
|
|
195
|
-
* @type {IllustrationMessageSize}
|
|
196
|
-
* @defaultvalue "Auto"
|
|
197
|
-
* @public
|
|
198
|
-
* @since 1.5.0
|
|
199
|
-
*/
|
|
200
|
-
size: {
|
|
201
|
-
type: _IllustrationMessageSize.default,
|
|
202
|
-
defaultValue: _IllustrationMessageSize.default.Auto
|
|
203
|
-
}
|
|
204
|
-
},
|
|
205
|
-
slots: /** @lends sap.ui.webcomponents.fiori.IllustratedMessage.prototype */{
|
|
206
|
-
/**
|
|
207
|
-
* Defines the component actions.
|
|
208
|
-
* @type {sap.ui.webcomponents.main.IButton[]}
|
|
209
|
-
* @slot actions
|
|
210
|
-
* @public
|
|
211
|
-
*/
|
|
212
|
-
"default": {
|
|
213
|
-
propertyName: "actions",
|
|
214
|
-
type: HTMLElement
|
|
215
|
-
},
|
|
216
|
-
/**
|
|
217
|
-
* Defines the subtitle of the component.
|
|
218
|
-
* <br><br>
|
|
219
|
-
* <b>Note:</b> Using this slot, the default subtitle text of illustration and the value of <code>subtitleText</code> property will be overwritten.
|
|
220
|
-
* @type {HTMLElement}
|
|
221
|
-
* @slot subtitle
|
|
222
|
-
* @public
|
|
223
|
-
* @since 1.0.0-rc.16
|
|
224
|
-
*/
|
|
225
|
-
subtitle: {
|
|
226
|
-
type: HTMLElement
|
|
227
|
-
}
|
|
228
|
-
},
|
|
229
|
-
events: /** @lends sap.ui.webcomponents.fiori.IllustratedMessage.prototype */{
|
|
230
|
-
//
|
|
231
|
-
}
|
|
20
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
21
|
+
var c = arguments.length,
|
|
22
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
23
|
+
d;
|
|
24
|
+
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;
|
|
25
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
232
26
|
};
|
|
233
|
-
|
|
27
|
+
var IllustratedMessage_1;
|
|
234
28
|
/**
|
|
235
29
|
* @class
|
|
236
30
|
*
|
|
@@ -272,31 +66,23 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
272
66
|
*
|
|
273
67
|
* @constructor
|
|
274
68
|
* @author SAP SE
|
|
275
|
-
* @alias sap.ui.
|
|
276
|
-
* @extends UI5Element
|
|
69
|
+
* @alias sap.ui.webc.fiori.IllustratedMessage
|
|
70
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
277
71
|
* @tagname ui5-illustrated-message
|
|
278
72
|
* @public
|
|
279
73
|
* @since 1.0.0-rc.15
|
|
280
74
|
*/
|
|
281
|
-
class IllustratedMessage extends _UI5Element.default {
|
|
75
|
+
let IllustratedMessage = IllustratedMessage_1 = class IllustratedMessage extends _UI5Element.default {
|
|
282
76
|
constructor() {
|
|
283
77
|
super();
|
|
284
78
|
this._handleResize = this.handleResize.bind(this);
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
static get render() {
|
|
290
|
-
return _LitRenderer.default;
|
|
291
|
-
}
|
|
292
|
-
static get styles() {
|
|
293
|
-
return _IllustratedMessage.default;
|
|
294
|
-
}
|
|
295
|
-
static get template() {
|
|
296
|
-
return _IllustratedMessageTemplate.default;
|
|
79
|
+
// this will store the last known offsetWidth of the IllustratedMessage DOM node for a given media (e.g. "Spot")
|
|
80
|
+
this._lastKnownOffsetWidthForMedia = {};
|
|
81
|
+
// this will store the last known media, in order to detect if IllustratedMessage has been hidden by expand/collapse container
|
|
82
|
+
this._lastKnownMedia = "base";
|
|
297
83
|
}
|
|
298
84
|
static async onDefine() {
|
|
299
|
-
|
|
85
|
+
IllustratedMessage_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
300
86
|
}
|
|
301
87
|
static get BREAKPOINTS() {
|
|
302
88
|
return {
|
|
@@ -313,24 +99,22 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
313
99
|
SCENE: "scene"
|
|
314
100
|
};
|
|
315
101
|
}
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
return console.warn(`Required illustration is not registered. You can either import the illustration as a module in order to use it e.g. "@ui5/webcomponents-fiori/dist/illustrations/${illustrationPath}.js".`);
|
|
102
|
+
async onBeforeRendering() {
|
|
103
|
+
let illustrationData = (0, _Illustrations.getIllustrationDataSync)(this.name);
|
|
104
|
+
// Gets the current illustration name given in the "name" attribute
|
|
105
|
+
const currentIllustration = this.getAttribute("name");
|
|
106
|
+
if (this.hasAttribute("name") && !this.isValidIllustration(currentIllustration)) {
|
|
107
|
+
// eslint-disable-next-line
|
|
108
|
+
console.warn(`The illustration "${currentIllustration}" does not exist. The default illustration "${_IllustrationMessageType.default.BeforeSearch}" is loaded instead.`);
|
|
109
|
+
}
|
|
110
|
+
if (illustrationData === undefined) {
|
|
111
|
+
illustrationData = await (0, _Illustrations.getIllustrationData)(this.name);
|
|
327
112
|
}
|
|
328
|
-
this.invalid = false;
|
|
329
113
|
this.spotSvg = illustrationData.spotSvg;
|
|
330
114
|
this.dialogSvg = illustrationData.dialogSvg;
|
|
331
115
|
this.sceneSvg = illustrationData.sceneSvg;
|
|
332
|
-
this.illustrationTitle =
|
|
333
|
-
this.illustrationSubtitle =
|
|
116
|
+
this.illustrationTitle = IllustratedMessage_1.i18nBundle.getText(illustrationData.title);
|
|
117
|
+
this.illustrationSubtitle = IllustratedMessage_1.i18nBundle.getText(illustrationData.subtitle);
|
|
334
118
|
if (this.size !== _IllustrationMessageSize.default.Auto) {
|
|
335
119
|
this._handleCustomSize();
|
|
336
120
|
}
|
|
@@ -345,17 +129,42 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
345
129
|
if (this.size !== _IllustrationMessageSize.default.Auto) {
|
|
346
130
|
return;
|
|
347
131
|
}
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
132
|
+
this._applyMedia();
|
|
133
|
+
}
|
|
134
|
+
_applyMedia() {
|
|
135
|
+
const currOffsetWidth = this.offsetWidth;
|
|
136
|
+
let newMedia = "";
|
|
137
|
+
if (this.offsetWidth <= IllustratedMessage_1.BREAKPOINTS.BASE) {
|
|
138
|
+
newMedia = IllustratedMessage_1.MEDIA.BASE;
|
|
139
|
+
} else if (this.offsetWidth <= IllustratedMessage_1.BREAKPOINTS.SPOT) {
|
|
140
|
+
newMedia = IllustratedMessage_1.MEDIA.SPOT;
|
|
141
|
+
} else if (this.offsetWidth <= IllustratedMessage_1.BREAKPOINTS.DIALOG) {
|
|
142
|
+
newMedia = IllustratedMessage_1.MEDIA.DIALOG;
|
|
354
143
|
} else {
|
|
355
|
-
|
|
144
|
+
newMedia = IllustratedMessage_1.MEDIA.SCENE;
|
|
145
|
+
}
|
|
146
|
+
const lastKnownOffsetWidth = this._lastKnownOffsetWidthForMedia[newMedia];
|
|
147
|
+
// prevents infinite resizing, when same width is detected for the same media,
|
|
148
|
+
// excluding the case in which, the control is placed inside expand/collapse container
|
|
149
|
+
if (!(lastKnownOffsetWidth && currOffsetWidth === lastKnownOffsetWidth) || this._lastKnownOffsetWidthForMedia[this._lastKnownMedia] === 0) {
|
|
150
|
+
this.media = newMedia;
|
|
151
|
+
this._lastKnownOffsetWidthForMedia[newMedia] = currOffsetWidth;
|
|
152
|
+
this._lastKnownMedia = newMedia;
|
|
356
153
|
}
|
|
357
154
|
}
|
|
358
|
-
|
|
155
|
+
_setSVGAccAttrs() {
|
|
156
|
+
const svg = this.shadowRoot.querySelector(".ui5-illustrated-message-illustration svg");
|
|
157
|
+
if (svg) {
|
|
158
|
+
if (this.ariaLabelText) {
|
|
159
|
+
svg.setAttribute("aria-label", this.ariaLabelText);
|
|
160
|
+
} else {
|
|
161
|
+
svg.removeAttribute("aria-label");
|
|
162
|
+
}
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
onAfterRendering() {
|
|
166
|
+
this._setSVGAccAttrs();
|
|
167
|
+
}
|
|
359
168
|
/**
|
|
360
169
|
* Modifies the IM styles in accordance to the `size` property's value.
|
|
361
170
|
* Note: The resize handler has no effect when size is different than "Auto".
|
|
@@ -365,25 +174,28 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
365
174
|
_handleCustomSize() {
|
|
366
175
|
switch (this.size) {
|
|
367
176
|
case _IllustrationMessageSize.default.Base:
|
|
368
|
-
this.media =
|
|
177
|
+
this.media = IllustratedMessage_1.MEDIA.BASE;
|
|
369
178
|
return;
|
|
370
179
|
case _IllustrationMessageSize.default.Spot:
|
|
371
|
-
this.media =
|
|
180
|
+
this.media = IllustratedMessage_1.MEDIA.SPOT;
|
|
372
181
|
return;
|
|
373
182
|
case _IllustrationMessageSize.default.Dialog:
|
|
374
|
-
this.media =
|
|
183
|
+
this.media = IllustratedMessage_1.MEDIA.DIALOG;
|
|
375
184
|
return;
|
|
376
185
|
default:
|
|
377
|
-
this.media =
|
|
186
|
+
this.media = IllustratedMessage_1.MEDIA.SCENE;
|
|
378
187
|
}
|
|
379
188
|
}
|
|
189
|
+
get ariaLabelText() {
|
|
190
|
+
return (0, _AriaLabelHelper.getEffectiveAriaLabelText)(this);
|
|
191
|
+
}
|
|
380
192
|
get effectiveIllustration() {
|
|
381
193
|
switch (this.media) {
|
|
382
|
-
case
|
|
194
|
+
case IllustratedMessage_1.MEDIA.SPOT:
|
|
383
195
|
return this.spotSvg;
|
|
384
|
-
case
|
|
196
|
+
case IllustratedMessage_1.MEDIA.DIALOG:
|
|
385
197
|
return this.dialogSvg;
|
|
386
|
-
case
|
|
198
|
+
case IllustratedMessage_1.MEDIA.SCENE:
|
|
387
199
|
return this.sceneSvg;
|
|
388
200
|
default:
|
|
389
201
|
return "";
|
|
@@ -392,6 +204,9 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
392
204
|
get hasFormattedSubtitle() {
|
|
393
205
|
return !!this.subtitle.length;
|
|
394
206
|
}
|
|
207
|
+
get hasFormattedTitle() {
|
|
208
|
+
return !!this.title.length;
|
|
209
|
+
}
|
|
395
210
|
get effectiveTitleText() {
|
|
396
211
|
return this.titleText ? this.titleText : this.illustrationTitle;
|
|
397
212
|
}
|
|
@@ -399,15 +214,59 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
399
214
|
return this.subtitleText ? this.subtitleText : this.illustrationSubtitle;
|
|
400
215
|
}
|
|
401
216
|
get hasTitle() {
|
|
402
|
-
return this.titleText || this.illustrationTitle;
|
|
217
|
+
return !!(this.hasFormattedTitle || this.titleText || this.illustrationTitle);
|
|
403
218
|
}
|
|
404
219
|
get hasSubtitle() {
|
|
405
|
-
return this.subtitleText || this.illustrationSubtitle;
|
|
220
|
+
return !!(this.hasFormattedSubtitle || this.subtitleText || this.illustrationSubtitle);
|
|
406
221
|
}
|
|
407
222
|
get hasActions() {
|
|
408
|
-
return !!this.actions.length && this.media !==
|
|
223
|
+
return !!this.actions.length && this.media !== IllustratedMessage_1.MEDIA.BASE;
|
|
409
224
|
}
|
|
410
|
-
|
|
225
|
+
isValidIllustration(currentIllustration) {
|
|
226
|
+
return currentIllustration in _IllustrationMessageType.default;
|
|
227
|
+
}
|
|
228
|
+
};
|
|
229
|
+
__decorate([(0, _property.default)({
|
|
230
|
+
type: _IllustrationMessageType.default,
|
|
231
|
+
defaultValue: _IllustrationMessageType.default.BeforeSearch
|
|
232
|
+
})], IllustratedMessage.prototype, "name", void 0);
|
|
233
|
+
__decorate([(0, _property.default)({
|
|
234
|
+
type: _IllustrationMessageSize.default,
|
|
235
|
+
defaultValue: _IllustrationMessageSize.default.Auto
|
|
236
|
+
})], IllustratedMessage.prototype, "size", void 0);
|
|
237
|
+
__decorate([(0, _property.default)()], IllustratedMessage.prototype, "subtitleText", void 0);
|
|
238
|
+
__decorate([(0, _property.default)()], IllustratedMessage.prototype, "titleText", void 0);
|
|
239
|
+
__decorate([(0, _property.default)({
|
|
240
|
+
defaultValue: ""
|
|
241
|
+
})], IllustratedMessage.prototype, "accessibleNameRef", void 0);
|
|
242
|
+
__decorate([(0, _property.default)({
|
|
243
|
+
noAttribute: true
|
|
244
|
+
})], IllustratedMessage.prototype, "spotSvg", void 0);
|
|
245
|
+
__decorate([(0, _property.default)({
|
|
246
|
+
noAttribute: true
|
|
247
|
+
})], IllustratedMessage.prototype, "sceneSvg", void 0);
|
|
248
|
+
__decorate([(0, _property.default)({
|
|
249
|
+
noAttribute: true
|
|
250
|
+
})], IllustratedMessage.prototype, "dialogSvg", void 0);
|
|
251
|
+
__decorate([(0, _property.default)()], IllustratedMessage.prototype, "media", void 0);
|
|
252
|
+
__decorate([(0, _slot.default)({
|
|
253
|
+
type: HTMLElement
|
|
254
|
+
})], IllustratedMessage.prototype, "title", void 0);
|
|
255
|
+
__decorate([(0, _slot.default)({
|
|
256
|
+
type: HTMLElement
|
|
257
|
+
})], IllustratedMessage.prototype, "subtitle", void 0);
|
|
258
|
+
__decorate([(0, _slot.default)({
|
|
259
|
+
type: HTMLElement,
|
|
260
|
+
"default": true
|
|
261
|
+
})], IllustratedMessage.prototype, "actions", void 0);
|
|
262
|
+
IllustratedMessage = IllustratedMessage_1 = __decorate([(0, _customElement.default)({
|
|
263
|
+
tag: "ui5-illustrated-message",
|
|
264
|
+
languageAware: true,
|
|
265
|
+
renderer: _LitRenderer.default,
|
|
266
|
+
styles: _IllustratedMessage.default,
|
|
267
|
+
template: _IllustratedMessageTemplate.default,
|
|
268
|
+
dependencies: [_Title.default]
|
|
269
|
+
})], IllustratedMessage);
|
|
411
270
|
IllustratedMessage.define();
|
|
412
271
|
var _default = IllustratedMessage;
|
|
413
272
|
_exports.default = _default;
|
|
@@ -8,140 +8,127 @@ sap.ui.define(["exports"], function (_exports) {
|
|
|
8
8
|
/**
|
|
9
9
|
* Interface for components that may be slotted inside <code>ui5-page</code> as header and footer.
|
|
10
10
|
*
|
|
11
|
-
* @name sap.ui.
|
|
11
|
+
* @name sap.ui.webc.fiori.IBar
|
|
12
12
|
* @interface
|
|
13
13
|
* @public
|
|
14
14
|
*/
|
|
15
|
-
const IBar = "sap.ui.
|
|
16
|
-
|
|
15
|
+
const IBar = "sap.ui.webc.fiori.IBar";
|
|
17
16
|
/**
|
|
18
17
|
* Interface for components that may be slotted inside <code>ui5-view-settings-dialog</code> as filter items
|
|
19
18
|
*
|
|
20
|
-
* @name sap.ui.
|
|
19
|
+
* @name sap.ui.webc.fiori.IFilterItem
|
|
21
20
|
* @interface
|
|
22
21
|
* @public
|
|
23
22
|
*/
|
|
24
23
|
_exports.IBar = IBar;
|
|
25
|
-
const IFilterItem = "sap.ui.
|
|
26
|
-
|
|
24
|
+
const IFilterItem = "sap.ui.webc.fiori.IFilterItem";
|
|
27
25
|
/**
|
|
28
26
|
* Interface for components that may be slotted inside <code>ui5-filter-item</code> as values
|
|
29
27
|
*
|
|
30
|
-
* @name sap.ui.
|
|
28
|
+
* @name sap.ui.webc.fiori.IFilterItemOption
|
|
31
29
|
* @interface
|
|
32
30
|
* @public
|
|
33
31
|
*/
|
|
34
32
|
_exports.IFilterItem = IFilterItem;
|
|
35
|
-
const IFilterItemOption = "sap.ui.
|
|
36
|
-
|
|
33
|
+
const IFilterItemOption = "sap.ui.webc.fiori.IFilterItemOption";
|
|
37
34
|
/**
|
|
38
35
|
* Interface for components that can be slotted inside <code>ui5-media-gallery</code> as items.
|
|
39
36
|
*
|
|
40
|
-
* @name sap.ui.
|
|
37
|
+
* @name sap.ui.webc.fiori.IMediaGalleryItem
|
|
41
38
|
* @interface
|
|
42
39
|
* @public
|
|
43
40
|
*/
|
|
44
41
|
_exports.IFilterItemOption = IFilterItemOption;
|
|
45
|
-
const IMediaGalleryItem = "sap.ui.
|
|
46
|
-
|
|
42
|
+
const IMediaGalleryItem = "sap.ui.webc.fiori.IMediaGalleryItem";
|
|
47
43
|
/**
|
|
48
44
|
* Interface for components that may be slotted as an action inside <code>ui5-li-notification</code> and <code>ui5-li-notification-group</code>
|
|
49
45
|
*
|
|
50
|
-
* @name sap.ui.
|
|
46
|
+
* @name sap.ui.webc.fiori.INotificationAction
|
|
51
47
|
* @interface
|
|
52
48
|
* @public
|
|
53
49
|
*/
|
|
54
50
|
_exports.IMediaGalleryItem = IMediaGalleryItem;
|
|
55
|
-
const INotificationAction = "sap.ui.
|
|
56
|
-
|
|
51
|
+
const INotificationAction = "sap.ui.webc.fiori.INotificationAction";
|
|
57
52
|
/**
|
|
58
53
|
* Interface for components that may be slotted inside a notification list
|
|
59
54
|
*
|
|
60
|
-
* @name sap.ui.
|
|
55
|
+
* @name sap.ui.webc.fiori.INotificationListItem
|
|
61
56
|
* @interface
|
|
62
57
|
* @public
|
|
63
58
|
*/
|
|
64
59
|
_exports.INotificationAction = INotificationAction;
|
|
65
|
-
const INotificationListItem = "sap.ui.
|
|
66
|
-
|
|
60
|
+
const INotificationListItem = "sap.ui.webc.fiori.INotificationListItem";
|
|
67
61
|
/**
|
|
68
62
|
* Interface for components that may be slotted inside <code>ui5-product-switch</code> as items
|
|
69
63
|
*
|
|
70
|
-
* @name sap.ui.
|
|
64
|
+
* @name sap.ui.webc.fiori.IProductSwitchItem
|
|
71
65
|
* @interface
|
|
72
66
|
* @public
|
|
73
67
|
*/
|
|
74
68
|
_exports.INotificationListItem = INotificationListItem;
|
|
75
|
-
const IProductSwitchItem = "sap.ui.
|
|
76
|
-
|
|
69
|
+
const IProductSwitchItem = "sap.ui.webc.fiori.IProductSwitchItem";
|
|
77
70
|
/**
|
|
78
71
|
* Interface for components that may be slotted inside <code>ui5-shellbar</code> as items
|
|
79
72
|
*
|
|
80
|
-
* @name sap.ui.
|
|
73
|
+
* @name sap.ui.webc.fiori.IShellBarItem
|
|
81
74
|
* @interface
|
|
82
75
|
* @public
|
|
83
76
|
*/
|
|
84
77
|
_exports.IProductSwitchItem = IProductSwitchItem;
|
|
85
|
-
const IShellBarItem = "sap.ui.
|
|
86
|
-
|
|
78
|
+
const IShellBarItem = "sap.ui.webc.fiori.IShellBarItem";
|
|
87
79
|
/**
|
|
88
80
|
* Interface for components that may be slotted inside <code>ui5-side-navigation</code> as items
|
|
89
81
|
*
|
|
90
|
-
* @name sap.ui.
|
|
82
|
+
* @name sap.ui.webc.fiori.ISideNavigationItem
|
|
91
83
|
* @interface
|
|
92
84
|
* @public
|
|
93
85
|
*/
|
|
94
86
|
_exports.IShellBarItem = IShellBarItem;
|
|
95
|
-
const ISideNavigationItem = "sap.ui.
|
|
96
|
-
|
|
87
|
+
const ISideNavigationItem = "sap.ui.webc.fiori.ISideNavigationItem";
|
|
97
88
|
/**
|
|
98
89
|
* Interface for components that may be slotted inside <code>ui5-side-navigation-item</code> as sub-items
|
|
99
90
|
*
|
|
100
|
-
* @name sap.ui.
|
|
91
|
+
* @name sap.ui.webc.fiori.ISideNavigationSubItem
|
|
101
92
|
* @interface
|
|
102
93
|
* @public
|
|
103
94
|
*/
|
|
104
95
|
_exports.ISideNavigationItem = ISideNavigationItem;
|
|
105
|
-
const ISideNavigationSubItem = "sap.ui.
|
|
106
|
-
|
|
96
|
+
const ISideNavigationSubItem = "sap.ui.webc.fiori.ISideNavigationSubItem";
|
|
107
97
|
/**
|
|
108
98
|
* Interface for components that may be slotted inside <code>ui5-view-settings-dialog</code> as sort items
|
|
109
99
|
*
|
|
110
|
-
* @name sap.ui.
|
|
100
|
+
* @name sap.ui.webc.fiori.ISortItem
|
|
111
101
|
* @interface
|
|
112
102
|
* @public
|
|
113
103
|
*/
|
|
114
104
|
_exports.ISideNavigationSubItem = ISideNavigationSubItem;
|
|
115
|
-
const ISortItem = "sap.ui.
|
|
116
|
-
|
|
105
|
+
const ISortItem = "sap.ui.webc.fiori.ISortItem";
|
|
117
106
|
/**
|
|
118
107
|
* Interface for components that may be slotted inside <code>ui5-timeline</code> as items
|
|
119
108
|
*
|
|
120
|
-
* @name sap.ui.
|
|
109
|
+
* @name sap.ui.webc.fiori.ITimelineItem
|
|
121
110
|
* @interface
|
|
122
111
|
* @public
|
|
123
112
|
*/
|
|
124
113
|
_exports.ISortItem = ISortItem;
|
|
125
|
-
const ITimelineItem = "sap.ui.
|
|
126
|
-
|
|
114
|
+
const ITimelineItem = "sap.ui.webc.fiori.ITimelineItem";
|
|
127
115
|
/**
|
|
128
116
|
* Interface for components that may be slotted inside <code>ui5-upload-collection</code> as items
|
|
129
117
|
*
|
|
130
|
-
* @name sap.ui.
|
|
118
|
+
* @name sap.ui.webc.fiori.IUploadCollectionItem
|
|
131
119
|
* @interface
|
|
132
120
|
* @public
|
|
133
121
|
*/
|
|
134
122
|
_exports.ITimelineItem = ITimelineItem;
|
|
135
|
-
const IUploadCollectionItem = "sap.ui.
|
|
136
|
-
|
|
123
|
+
const IUploadCollectionItem = "sap.ui.webc.fiori.IUploadCollectionItem";
|
|
137
124
|
/**
|
|
138
125
|
* Interface for components that may be slotted inside <code>ui5-wizard</code> as wizard steps
|
|
139
126
|
*
|
|
140
|
-
* @name sap.ui.
|
|
127
|
+
* @name sap.ui.webc.fiori.IWizardStep
|
|
141
128
|
* @interface
|
|
142
129
|
* @public
|
|
143
130
|
*/
|
|
144
131
|
_exports.IUploadCollectionItem = IUploadCollectionItem;
|
|
145
|
-
const IWizardStep = "sap.ui.
|
|
132
|
+
const IWizardStep = "sap.ui.webc.fiori.IWizardStep";
|
|
146
133
|
_exports.IWizardStep = IWizardStep;
|
|
147
134
|
});
|