@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
|
@@ -7,30 +7,79 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<header class="${(0, _LitRenderer.classMap)(this.classes.wrapper)}" aria-label="${(0, _LitRenderer.ifDefined)(this._shellbarText)}" part="root"><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-left">${this.startButton.length ? block1.call(this, context, tags, suffix) : undefined}${this.hasMenuItems ? block2.call(this, context, tags, suffix) : undefined}${!this.hasMenuItems ? block8.call(this, context, tags, suffix) : undefined}${this.secondaryTitle ? block11.call(this, context, tags, suffix) : undefined}</div><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-middle">${this.showCoPilot ? block12.call(this, context, tags, suffix) : block15.call(this, context, tags, suffix)}</div><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-right"><div class="ui5-shellbar-overflow-container-right-child">${this.hasSearchField ? block16.call(this, context, tags, suffix) : undefined}${(0, _LitRenderer.repeat)(this.customItemsInfo, (item, index) => item._id || index, (item, index) => block19.call(this, context, tags, suffix, item, index))}${this.showNotifications ? block20.call(this, context, tags, suffix) : undefined}<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-item-5" style="${(0, _LitRenderer.styleMap)(this.styles.items.overflow)}" class="${(0, _LitRenderer.classMap)(this.classes.items.overflow)} ui5-shellbar-button ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button" icon="sap-icon://overflow" @click="${this._handleOverflowPress}" tooltip="${(0, _LitRenderer.ifDefined)(this._overflowText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.overflow.accessibilityAttributes)} data-ui5-stable="overflow"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>${this.hasProfile ? block21.call(this, context, tags, suffix) : undefined}${this.showProductSwitch ? block22.call(this, context, tags, suffix) : undefined}</div></div></header> ` : (0, _LitRenderer.html)`<header class="${(0, _LitRenderer.classMap)(this.classes.wrapper)}" aria-label="${(0, _LitRenderer.ifDefined)(this._shellbarText)}" part="root"><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-left">${this.startButton.length ? block1.call(this, context, tags, suffix) : undefined}${this.hasMenuItems ? block2.call(this, context, tags, suffix) : undefined}${!this.hasMenuItems ? block8.call(this, context, tags, suffix) : undefined}${this.secondaryTitle ? block11.call(this, context, tags, suffix) : undefined}</div><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-middle">${this.showCoPilot ? block12.call(this, context, tags, suffix) : block15.call(this, context, tags, suffix)}</div><div class="ui5-shellbar-overflow-container ui5-shellbar-overflow-container-right"><div class="ui5-shellbar-overflow-container-right-child">${this.hasSearchField ? block16.call(this, context, tags, suffix) : undefined}${(0, _LitRenderer.repeat)(this.customItemsInfo, (item, index) => item._id || index, (item, index) => block19.call(this, context, tags, suffix, item, index))}${this.showNotifications ? block20.call(this, context, tags, suffix) : undefined}<ui5-button id="${(0, _LitRenderer.ifDefined)(this._id)}-item-5" style="${(0, _LitRenderer.styleMap)(this.styles.items.overflow)}" class="${(0, _LitRenderer.classMap)(this.classes.items.overflow)} ui5-shellbar-button ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button" icon="sap-icon://overflow" @click="${this._handleOverflowPress}" tooltip="${(0, _LitRenderer.ifDefined)(this._overflowText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.overflow.accessibilityAttributes)} data-ui5-stable="overflow"></ui5-button>${this.hasProfile ? block21.call(this, context, tags, suffix) : undefined}${this.showProductSwitch ? block22.call(this, context, tags, suffix) : undefined}</div></div></header> `;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix) {
|
|
14
|
+
return (0, _LitRenderer.html)`<slot name="startButton"></slot>`;
|
|
15
|
+
}
|
|
16
|
+
function block2(context, tags, suffix) {
|
|
17
|
+
return (0, _LitRenderer.html)`${!this.showLogoInMenuButton ? block3.call(this, context, tags, suffix) : undefined}${this.showTitleInMenuButton ? block4.call(this, context, tags, suffix) : undefined}${this.showMenuButton ? block5.call(this, context, tags, suffix) : undefined}`;
|
|
18
|
+
}
|
|
19
|
+
function block3(context, tags, suffix) {
|
|
20
|
+
return (0, _LitRenderer.html)`<span class="ui5-shellbar-logo" role="${(0, _LitRenderer.ifDefined)(this.accLogoRole)}" aria-label="${(0, _LitRenderer.ifDefined)(this._logoText)}" title="${(0, _LitRenderer.ifDefined)(this._logoText)}" @click="${this._logoPress}" @keydown="${this._logoKeydown}" @keyup="${this._logoKeyup}" tabindex="0" data-ui5-stable="logo"><slot name="logo"></slot></span>`;
|
|
21
|
+
}
|
|
22
|
+
function block4(context, tags, suffix) {
|
|
23
|
+
return (0, _LitRenderer.html)`<h1 class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.primaryTitle)}</h1>`;
|
|
24
|
+
}
|
|
25
|
+
function block5(context, tags, suffix) {
|
|
26
|
+
return (0, _LitRenderer.html)`<button class="${(0, _LitRenderer.classMap)(this.classes.button)}" @click="${this._headerPress}" aria-haspopup="menu" aria-expanded="${(0, _LitRenderer.ifDefined)(this._menuPopoverExpanded)}" data-ui5-stable="menu">${this.showLogoInMenuButton ? block6.call(this, context, tags, suffix) : undefined}${this.showTitleInMenuButton ? block7.call(this, context, tags, suffix) : undefined}<span class="ui5-shellbar-menu-button-arrow"></span></button>`;
|
|
27
|
+
}
|
|
28
|
+
function block6(context, tags, suffix) {
|
|
29
|
+
return (0, _LitRenderer.html)`<span class="ui5-shellbar-logo" role="${(0, _LitRenderer.ifDefined)(this.accLogoRole)}" aria-label="${(0, _LitRenderer.ifDefined)(this._logoText)}" title="${(0, _LitRenderer.ifDefined)(this._logoText)}"><slot name="logo"></slot></span>`;
|
|
30
|
+
}
|
|
31
|
+
function block7(context, tags, suffix) {
|
|
32
|
+
return (0, _LitRenderer.html)`<div class="ui5-shellbar-menu-button-title">${(0, _LitRenderer.ifDefined)(this.primaryTitle)}</div>`;
|
|
33
|
+
}
|
|
34
|
+
function block8(context, tags, suffix) {
|
|
35
|
+
return (0, _LitRenderer.html)`${this.hasLogo ? block9.call(this, context, tags, suffix) : undefined}${this.primaryTitle ? block10.call(this, context, tags, suffix) : undefined}`;
|
|
36
|
+
}
|
|
37
|
+
function block9(context, tags, suffix) {
|
|
38
|
+
return (0, _LitRenderer.html)`<span class="ui5-shellbar-logo" role="${(0, _LitRenderer.ifDefined)(this.accLogoRole)}" aria-label="${(0, _LitRenderer.ifDefined)(this._logoText)}" title="${(0, _LitRenderer.ifDefined)(this._logoText)}" @click="${this._logoPress}" @keydown="${this._logoKeydown}" @keyup="${this._logoKeyup}" tabindex="0" data-ui5-stable="logo"><slot name="logo"></slot></span>`;
|
|
39
|
+
}
|
|
40
|
+
function block10(context, tags, suffix) {
|
|
41
|
+
return (0, _LitRenderer.html)`<h1 class="ui5-shellbar-title"><bdi>${(0, _LitRenderer.ifDefined)(this.primaryTitle)}</bdi></h1>`;
|
|
42
|
+
}
|
|
43
|
+
function block11(context, tags, suffix) {
|
|
44
|
+
return (0, _LitRenderer.html)`<h2 class="ui5-shellbar-secondary-title" data-ui5-stable="secondary-title">${(0, _LitRenderer.ifDefined)(this.secondaryTitle)}</h2>`;
|
|
45
|
+
}
|
|
46
|
+
function block12(context, tags, suffix) {
|
|
47
|
+
return (0, _LitRenderer.html)`<div class="ui5-shellbar-copilot-wrapper" tabindex="0" aria-label="${(0, _LitRenderer.ifDefined)(this._copilotText)}" role="button" title="${(0, _LitRenderer.ifDefined)(this._copilotText)}" @keydown="${this._coPilotKeydown}" @keyup="${this._coPilotKeyup}" ?active="${this.coPilotActive}" data-ui5-stable="copilot"><svg @click="${this._coPilotClick}" focusable="false" width="48" role="presentation" aria-hidden="true" height="48" viewBox="-150 -150 300 300" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" class="ui5-shellbar-coPilot">${blockSVG1.call(this, context, tags, suffix)}</svg></div>`;
|
|
48
|
+
}
|
|
49
|
+
function block13(context, tags, suffix) {
|
|
50
|
+
return (0, _LitRenderer.svg)`<animateTransform attributeName="transform" type="rotate" from="54" to="416" dur="15s" repeatCount="indefinite"/>`;
|
|
51
|
+
}
|
|
52
|
+
function block14(context, tags, suffix) {
|
|
53
|
+
return (0, _LitRenderer.svg)`<animateTransform attributeName="transform" type="rotate" from="90" to="450" dur="30s" repeatCount="indefinite"/>`;
|
|
54
|
+
}
|
|
55
|
+
function block15(context, tags, suffix) {
|
|
56
|
+
return (0, _LitRenderer.html)`<span class="ui5-shellbar-co-pilot-placeholder"></span>`;
|
|
57
|
+
}
|
|
58
|
+
function block16(context, tags, suffix) {
|
|
59
|
+
return suffix ? (0, _LitRenderer.html)`${this._fullWidthSearch ? block17.call(this, context, tags, suffix) : undefined}<div class="ui5-shellbar-search-field" style="${(0, _LitRenderer.styleMap)(this.styles.searchField)}">${!this._fullWidthSearch ? block18.call(this, context, tags, suffix) : undefined}</div><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-item-1" class="${(0, _LitRenderer.classMap)(this.classes.items.search)} ui5-shellbar-button ui5-shellbar-search-button" icon="sap-icon://search" data-ui5-text="Search" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" data-ui5-stable="toggle-search" @click=${this._handleSearchIconPress} tooltip="${(0, _LitRenderer.ifDefined)(this._searchText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.search.accessibilityAttributes)}></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`${this._fullWidthSearch ? block17.call(this, context, tags, suffix) : undefined}<div class="ui5-shellbar-search-field" style="${(0, _LitRenderer.styleMap)(this.styles.searchField)}">${!this._fullWidthSearch ? block18.call(this, context, tags, suffix) : undefined}</div><ui5-button id="${(0, _LitRenderer.ifDefined)(this._id)}-item-1" class="${(0, _LitRenderer.classMap)(this.classes.items.search)} ui5-shellbar-button ui5-shellbar-search-button" icon="sap-icon://search" data-ui5-text="Search" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" data-ui5-stable="toggle-search" @click=${this._handleSearchIconPress} tooltip="${(0, _LitRenderer.ifDefined)(this._searchText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.search.accessibilityAttributes)}></ui5-button>`;
|
|
60
|
+
}
|
|
61
|
+
function block17(context, tags, suffix) {
|
|
62
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-shellbar-search-full-width-wrapper" style="${(0, _LitRenderer.styleMap)(this.styles.searchField)}"><div class="ui5-shellbar-search-full-field"><slot name="searchField"></slot></div><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} @click=${this._handleCancelButtonPress} class="ui5-shellbar-button" data-ui5-stable="cancel-search">${(0, _LitRenderer.ifDefined)(this._cancelBtnText)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-shellbar-search-full-width-wrapper" style="${(0, _LitRenderer.styleMap)(this.styles.searchField)}"><div class="ui5-shellbar-search-full-field"><slot name="searchField"></slot></div><ui5-button @click=${this._handleCancelButtonPress} class="ui5-shellbar-button" data-ui5-stable="cancel-search">${(0, _LitRenderer.ifDefined)(this._cancelBtnText)}</ui5-button></div>`;
|
|
63
|
+
}
|
|
64
|
+
function block18(context, tags, suffix) {
|
|
65
|
+
return (0, _LitRenderer.html)`<slot name="searchField"></slot>`;
|
|
66
|
+
}
|
|
67
|
+
function block19(context, tags, suffix, item, index) {
|
|
68
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(item.id)}" style="${(0, _LitRenderer.styleMap)(item.styles)}" class="${(0, _LitRenderer.ifDefined)(item.classes)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" tooltip="${(0, _LitRenderer.ifDefined)(item.title)}" data-count="${(0, _LitRenderer.ifDefined)(item.count)}" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}" @click=${item.press}></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button id="${(0, _LitRenderer.ifDefined)(item.id)}" style="${(0, _LitRenderer.styleMap)(item.styles)}" class="${(0, _LitRenderer.ifDefined)(item.classes)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" tooltip="${(0, _LitRenderer.ifDefined)(item.title)}" data-count="${(0, _LitRenderer.ifDefined)(item.count)}" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" data-ui5-external-action-item-id="${(0, _LitRenderer.ifDefined)(item.refItemid)}" data-ui5-stable="${(0, _LitRenderer.ifDefined)(item.stableDomRef)}" @click=${item.press}></ui5-button>`;
|
|
69
|
+
}
|
|
70
|
+
function block20(context, tags, suffix) {
|
|
71
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-item-2" style="${(0, _LitRenderer.styleMap)(this.styles.items.notification)}" class="${(0, _LitRenderer.classMap)(this.classes.items.notification)} ui5-shellbar-button ui5-shellbar-bell-button" icon="sap-icon://bell" data-ui5-text="Notifications" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" @click=${this._handleNotificationsPress} tooltip="${(0, _LitRenderer.ifDefined)(this._notificationsText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.notifications.accessibilityAttributes)} data-ui5-stable="notifications"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button id="${(0, _LitRenderer.ifDefined)(this._id)}-item-2" style="${(0, _LitRenderer.styleMap)(this.styles.items.notification)}" class="${(0, _LitRenderer.classMap)(this.classes.items.notification)} ui5-shellbar-button ui5-shellbar-bell-button" icon="sap-icon://bell" data-ui5-text="Notifications" data-ui5-notifications-count="${(0, _LitRenderer.ifDefined)(this.notificationsCount)}" @click=${this._handleNotificationsPress} tooltip="${(0, _LitRenderer.ifDefined)(this._notificationsText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.notifications.accessibilityAttributes)} data-ui5-stable="notifications"></ui5-button>`;
|
|
72
|
+
}
|
|
73
|
+
function block21(context, tags, suffix) {
|
|
74
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} profile-btn id="${(0, _LitRenderer.ifDefined)(this._id)}-item-3" @click=${this._handleProfilePress} style="${(0, _LitRenderer.styleMap)(this.styles.items.profile)}" tooltip="${(0, _LitRenderer.ifDefined)(this._profileText)}" class="ui5-shellbar-button ui5-shellbar-image-button" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.profile.accessibilityAttributes)} data-ui5-stable="profile"><slot name="profile"></slot></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button profile-btn id="${(0, _LitRenderer.ifDefined)(this._id)}-item-3" @click=${this._handleProfilePress} style="${(0, _LitRenderer.styleMap)(this.styles.items.profile)}" tooltip="${(0, _LitRenderer.ifDefined)(this._profileText)}" class="ui5-shellbar-button ui5-shellbar-image-button" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.profile.accessibilityAttributes)} data-ui5-stable="profile"><slot name="profile"></slot></ui5-button>`;
|
|
75
|
+
}
|
|
76
|
+
function block22(context, tags, suffix) {
|
|
77
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-item-4" style="${(0, _LitRenderer.styleMap)(this.styles.items.product)}" class="${(0, _LitRenderer.classMap)(this.classes.items.product)} ui5-shellbar-button ui5-shellbar-button-product-switch" icon="sap-icon://grid" data-ui5-text="Product Switch" @click=${this._handleProductSwitchPress} tooltip="${(0, _LitRenderer.ifDefined)(this._productsText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.products.accessibilityAttributes)} data-ui5-stable="product-switch"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button id="${(0, _LitRenderer.ifDefined)(this._id)}-item-4" style="${(0, _LitRenderer.styleMap)(this.styles.items.product)}" class="${(0, _LitRenderer.classMap)(this.classes.items.product)} ui5-shellbar-button ui5-shellbar-button-product-switch" icon="sap-icon://grid" data-ui5-text="Product Switch" @click=${this._handleProductSwitchPress} tooltip="${(0, _LitRenderer.ifDefined)(this._productsText)}" .accessibilityAttributes=${(0, _LitRenderer.ifDefined)(this.accInfo.products.accessibilityAttributes)} data-ui5-stable="product-switch"></ui5-button>`;
|
|
78
|
+
}
|
|
79
|
+
function blockSVG1(context, tags, suffix) {
|
|
80
|
+
return (0, _LitRenderer.svg)`<defs><linearGradient id="f" x1="0%" x2="100%" y1="100%" y2="0%"><stop offset="0%" class="ui5-shellbar-co-pilot-color1 ui5-shellbar-co-pilot-opaicty7"/><stop offset="80%" class="ui5-shellbar-co-pilot-color2 ui5-shellbar-co-pilot-opaicty7"/></linearGradient><linearGradient id="e" x1="0%" x2="100%" y1="100%" y2="0%"><stop offset="0%" class="ui5-shellbar-co-pilot-color1 ui5-shellbar-co-pilot-opaicty36"/><stop offset="80%" class="ui5-shellbar-co-pilot-color2 ui5-shellbar-co-pilot-opaicty36"/></linearGradient><linearGradient id="c" x1="0%" x2="100%" y1="100%" y2="0%"><stop offset="0%" class="ui5-shellbar-co-pilot-color1 ui5-shellbar-co-pilot-opaicty2"/><stop offset="80%" class="ui5-shellbar-co-pilot-color2 ui5-shellbar-co-pilot-opaicty2"/></linearGradient><path id="d" d="M98.158 0c.158 17.395-9.107 31.335-18.609 45.928-9.21 14.153-18.933 25.29-33.377 34.045C31.427 88.918 17.25 94.39 0 94.273c-17.155-.115-30.823-6.582-45.798-14.949-15.216-8.497-27.76-16.77-37.253-31.375C-92.668 33.158-98.487 17.571-97.179 0c1.233-16.978 12.691-29.086 21.044-43.957 8.456-15.059 12.272-32.152 26.873-41.367 14.76-9.322 31.83-7.68 49.262-6.77 16.897.88 31.86 3.06 46.42 11.693 14.452 8.568 23.18 20.866 32.26 34.976C88.05-30.91 98.014-17.277 98.157 0z"><animate attributeName="d" values="${(0, _LitRenderer.ifDefined)(this.coPilot.animationValues)}" dur="30s" repeatCount="indefinite"/><animateTransform attributeName="transform" type="scale" values="1;1.05;1.05;1.02;1" dur="0.15s" begin="a.mousedown" repeatCount="1" additive="sum"/></path><mask id="b"><circle r="120" fill="#fff"/><circle r="76"/></mask></defs><g mask="url(#b)"><g transform="rotate(54)"><use xlink:href="#d" fill="url(#c)">${this.coPilot.animated ? block13.call(this, context, tags, suffix) : undefined}</use></g><use xlink:href="#d" fill="url(#e)" transform="rotate(74)"/><g transform="rotate(90)"><use xlink:href="#d" fill="url(#f)">${this.coPilot.animated ? block14.call(this, context, tags, suffix) : undefined}</use></g></g><circle cx="0" cy="0" r="76" class="ui5-shellbar-co-pilot-circle" id="a"/>`;
|
|
81
|
+
}
|
|
82
|
+
;
|
|
34
83
|
var _default = block0;
|
|
35
84
|
_exports.default = _default;
|
|
36
85
|
});
|
package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationPopoverTemplate.lit.js
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer"], function (_exports, _LitRenderer) {
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
_exports.default = void 0;
|
|
8
|
+
/* eslint no-unused-vars: 0 */
|
|
9
|
+
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-responsive-popover", tags, suffix)} vertical-align="Top" class="ui5-side-navigation-popover" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._id)}-sideNavigationPopoverText" aria-modal="true" @ui5-after-open="${(0, _LitRenderer.ifDefined)(this._onAfterOpen)}"><span id="${(0, _LitRenderer.ifDefined)(this._id)}-sideNavigationPopoverText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accSideNavigationPopoverHiddenText)}</span><${(0, _LitRenderer.scopeTag)("ui5-side-navigation", tags, suffix)} class="ui5-side-navigation-in-popover" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this.handleInnerSelectionChange)}"><${(0, _LitRenderer.scopeTag)("ui5-side-navigation-item", tags, suffix)} title="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem._tooltip)}" text="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem.text)}" expanded="true" _fixed="true" ?selected="${this._popoverContents.mainItem.selected}" .associatedItem="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem)}">${(0, _LitRenderer.repeat)(this._popoverContents.subItems, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-side-navigation-item", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-side-navigation", tags, suffix)}></${(0, _LitRenderer.scopeTag)("ui5-responsive-popover", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-responsive-popover vertical-align="Top" class="ui5-side-navigation-popover" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._id)}-sideNavigationPopoverText" aria-modal="true" @ui5-after-open="${(0, _LitRenderer.ifDefined)(this._onAfterOpen)}"><span id="${(0, _LitRenderer.ifDefined)(this._id)}-sideNavigationPopoverText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this.accSideNavigationPopoverHiddenText)}</span><ui5-side-navigation class="ui5-side-navigation-in-popover" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this.handleInnerSelectionChange)}"><ui5-side-navigation-item title="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem._tooltip)}" text="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem.text)}" expanded="true" _fixed="true" ?selected="${this._popoverContents.mainItem.selected}" .associatedItem="${(0, _LitRenderer.ifDefined)(this._popoverContents.mainItem)}">${(0, _LitRenderer.repeat)(this._popoverContents.subItems, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</ui5-side-navigation-item></ui5-side-navigation></ui5-responsive-popover>`;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix, item, index) {
|
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-side-navigation-sub-item", tags, suffix)} title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" ?selected="${item.selected}" .associatedItem="${(0, _LitRenderer.ifDefined)(item)}"></${(0, _LitRenderer.scopeTag)("ui5-side-navigation-sub-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-side-navigation-sub-item title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" ?selected="${item.selected}" .associatedItem="${(0, _LitRenderer.ifDefined)(item)}"></ui5-side-navigation-sub-item>`;
|
|
15
|
+
}
|
|
16
|
+
var _default = block0;
|
|
17
|
+
_exports.default = _default;
|
|
18
|
+
});
|
|
@@ -7,16 +7,36 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return (0, _LitRenderer.html)`<div class="ui5-sn-root" role="navigation">${this.showHeader ? block1.call(this, context, tags, suffix) : undefined}${this.items.length ? block2.call(this, context, tags, suffix) : undefined}<div class="ui5-sn-spacer"></div>${this.fixedItems.length ? block6.call(this, context, tags, suffix) : undefined}</div> `;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix) {
|
|
14
|
+
return (0, _LitRenderer.html)`<slot name="header"></slot>`;
|
|
15
|
+
}
|
|
16
|
+
function block2(context, tags, suffix) {
|
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree", tags, suffix)} id="ui5-sn-items-tree" class="ui5-sn-items-tree" mode="None" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationList)}" ?_minimal="${(0, _LitRenderer.ifDefined)(this.collapsed)}" _toggle-button-end @ui5-item-click="${(0, _LitRenderer.ifDefined)(this.handleTreeItemClick)}">${(0, _LitRenderer.repeat)(this._items, (item, index) => item._id || index, (item, index) => block3.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-tree", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree id="ui5-sn-items-tree" class="ui5-sn-items-tree" mode="None" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationList)}" ?_minimal="${(0, _LitRenderer.ifDefined)(this.collapsed)}" _toggle-button-end @ui5-item-click="${(0, _LitRenderer.ifDefined)(this.handleTreeItemClick)}">${(0, _LitRenderer.repeat)(this._items, (item, index) => item._id || index, (item, index) => block3.call(this, context, tags, suffix, item, index))}</ui5-tree>`;
|
|
18
|
+
}
|
|
19
|
+
function block3(context, tags, suffix, item, index) {
|
|
20
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.item.icon)}" .associatedItem="${(0, _LitRenderer.ifDefined)(item.item)}" text="${(0, _LitRenderer.ifDefined)(item.item.text)}" title="${(0, _LitRenderer.ifDefined)(item.item._tooltip)}" ?has-children="${item.item.items.length}" ?expanded="${item.item.expanded}" ?selected="${item.selected}" .ariaHaspopup="${(0, _LitRenderer.ifDefined)(item.item._ariaHasPopup)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}" ._fixed="${(0, _LitRenderer.ifDefined)(item.item._fixed)}">${!this.collapsed ? block4.call(this, context, tags, suffix, item, index) : undefined}</${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree-item icon="${(0, _LitRenderer.ifDefined)(item.item.icon)}" .associatedItem="${(0, _LitRenderer.ifDefined)(item.item)}" text="${(0, _LitRenderer.ifDefined)(item.item.text)}" title="${(0, _LitRenderer.ifDefined)(item.item._tooltip)}" ?has-children="${item.item.items.length}" ?expanded="${item.item.expanded}" ?selected="${item.selected}" .ariaHaspopup="${(0, _LitRenderer.ifDefined)(item.item._ariaHasPopup)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}" ._fixed="${(0, _LitRenderer.ifDefined)(item.item._fixed)}">${!this.collapsed ? block4.call(this, context, tags, suffix, item, index) : undefined}</ui5-tree-item>`;
|
|
21
|
+
}
|
|
22
|
+
function block4(context, tags, suffix, item, index) {
|
|
23
|
+
return (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(item.item.items, (item, index) => item._id || index, (item, index) => block5.call(this, context, tags, suffix, item, index))}`;
|
|
24
|
+
}
|
|
25
|
+
function block5(context, tags, suffix, item, index) {
|
|
26
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)} .associatedItem="${(0, _LitRenderer.ifDefined)(item)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" ?selected="${item.selected}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}"></${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree-item .associatedItem="${(0, _LitRenderer.ifDefined)(item)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" icon="${(0, _LitRenderer.ifDefined)(item.icon)}" ?selected="${item.selected}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}"></ui5-tree-item>`;
|
|
27
|
+
}
|
|
28
|
+
function block6(context, tags, suffix) {
|
|
29
|
+
return suffix ? (0, _LitRenderer.html)`<div><div class="ui5-sn-bottom-content-border"><span></span></div><${(0, _LitRenderer.scopeTag)("ui5-tree", tags, suffix)} id="ui5-sn-fixed-items-tree" mode="None" ?_minimal="${(0, _LitRenderer.ifDefined)(this.collapsed)}" _toggle-button-end @ui5-item-click="${(0, _LitRenderer.ifDefined)(this.handleTreeItemClick)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationList)}">${(0, _LitRenderer.repeat)(this._fixedItems, (item, index) => item._id || index, (item, index) => block7.call(this, context, tags, suffix, item, index))}</${(0, _LitRenderer.scopeTag)("ui5-tree", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div><div class="ui5-sn-bottom-content-border"><span></span></div><ui5-tree id="ui5-sn-fixed-items-tree" mode="None" ?_minimal="${(0, _LitRenderer.ifDefined)(this.collapsed)}" _toggle-button-end @ui5-item-click="${(0, _LitRenderer.ifDefined)(this.handleTreeItemClick)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationList)}">${(0, _LitRenderer.repeat)(this._fixedItems, (item, index) => item._id || index, (item, index) => block7.call(this, context, tags, suffix, item, index))}</ui5-tree></div>`;
|
|
30
|
+
}
|
|
31
|
+
function block7(context, tags, suffix, item, index) {
|
|
32
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)} icon="${(0, _LitRenderer.ifDefined)(item.item.icon)}" .associatedItem="${(0, _LitRenderer.ifDefined)(item.item)}" text="${(0, _LitRenderer.ifDefined)(item.item.text)}" title="${(0, _LitRenderer.ifDefined)(item.item._tooltip)}" ?has-children="${item.item.items.length}" ?expanded="${item.item.expanded}" ?selected="${item.selected}" .ariaHaspopup="${(0, _LitRenderer.ifDefined)(item.item._ariaHasPopup)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}">${!this.collapsed ? block8.call(this, context, tags, suffix, item, index) : undefined}</${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree-item icon="${(0, _LitRenderer.ifDefined)(item.item.icon)}" .associatedItem="${(0, _LitRenderer.ifDefined)(item.item)}" text="${(0, _LitRenderer.ifDefined)(item.item.text)}" title="${(0, _LitRenderer.ifDefined)(item.item._tooltip)}" ?has-children="${item.item.items.length}" ?expanded="${item.item.expanded}" ?selected="${item.selected}" .ariaHaspopup="${(0, _LitRenderer.ifDefined)(item.item._ariaHasPopup)}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}">${!this.collapsed ? block8.call(this, context, tags, suffix, item, index) : undefined}</ui5-tree-item>`;
|
|
33
|
+
}
|
|
34
|
+
function block8(context, tags, suffix, item, index) {
|
|
35
|
+
return (0, _LitRenderer.html)`${(0, _LitRenderer.repeat)(item.item.items, (item, index) => item._id || index, (item, index) => block9.call(this, context, tags, suffix, item, index))}`;
|
|
36
|
+
}
|
|
37
|
+
function block9(context, tags, suffix, item, index) {
|
|
38
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)} .associatedItem="${(0, _LitRenderer.ifDefined)(item)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" ?selected="${item.selected}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}"></${(0, _LitRenderer.scopeTag)("ui5-tree-item", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-tree-item .associatedItem="${(0, _LitRenderer.ifDefined)(item)}" text="${(0, _LitRenderer.ifDefined)(item.text)}" title="${(0, _LitRenderer.ifDefined)(item._tooltip)}" ?selected="${item.selected}" .accessibleRoleDescription="${(0, _LitRenderer.ifDefined)(this.ariaRoleDescNavigationListItem)}"></ui5-tree-item>`;
|
|
39
|
+
}
|
|
20
40
|
var _default = block0;
|
|
21
41
|
_exports.default = _default;
|
|
22
42
|
});
|
|
@@ -7,13 +7,27 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return (0, _LitRenderer.html)`<div class="ui5-tli-root" dir="${(0, _LitRenderer.ifDefined)(this.effectiveDir)}"><div class="${(0, _LitRenderer.classMap)(this.classes.indicator)}"><div class="ui5-tli-icon-outer">${this.icon ? block1.call(this, context, tags, suffix) : block2.call(this, context, tags, suffix)}</div></div><div class="ui5-tli-bubble" tabindex="${(0, _LitRenderer.ifDefined)(this._tabIndex)}" data-sap-focus-ref><div class="ui5-tli-title">${this.name ? block3.call(this, context, tags, suffix) : undefined}<span>${(0, _LitRenderer.ifDefined)(this.titleText)}</span></div><div class="ui5-tli-subtitle">${(0, _LitRenderer.ifDefined)(this.subtitleText)}</div>${this.textContent ? block6.call(this, context, tags, suffix) : undefined}<span class="${(0, _LitRenderer.classMap)(this.classes.bubbleArrowPosition)}"></span></div></div>`;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix) {
|
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} class="ui5-tli-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon class="ui5-tli-icon" name="${(0, _LitRenderer.ifDefined)(this.icon)}"></ui5-icon>`;
|
|
15
|
+
}
|
|
16
|
+
function block2(context, tags, suffix) {
|
|
17
|
+
return (0, _LitRenderer.html)`<div class="ui5-tli-dummy-icon-container"></div>`;
|
|
18
|
+
}
|
|
19
|
+
function block3(context, tags, suffix) {
|
|
20
|
+
return (0, _LitRenderer.html)`${this.nameClickable ? block4.call(this, context, tags, suffix) : block5.call(this, context, tags, suffix)}`;
|
|
21
|
+
}
|
|
22
|
+
function block4(context, tags, suffix) {
|
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} @ui5-click="${(0, _LitRenderer.ifDefined)(this.onNamePress)}" class="ui5-tli-title-name-clickable">${(0, _LitRenderer.ifDefined)(this.name)} </${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-link @ui5-click="${(0, _LitRenderer.ifDefined)(this.onNamePress)}" class="ui5-tli-title-name-clickable">${(0, _LitRenderer.ifDefined)(this.name)} </ui5-link>`;
|
|
24
|
+
}
|
|
25
|
+
function block5(context, tags, suffix) {
|
|
26
|
+
return (0, _LitRenderer.html)`<span class="ui5-tli-title-name">${(0, _LitRenderer.ifDefined)(this.name)} </span>`;
|
|
27
|
+
}
|
|
28
|
+
function block6(context, tags, suffix) {
|
|
29
|
+
return (0, _LitRenderer.html)`<div class="ui5-tli-desc"><slot></slot></div>`;
|
|
30
|
+
}
|
|
17
31
|
var _default = block0;
|
|
18
32
|
_exports.default = _default;
|
|
19
33
|
});
|
|
@@ -7,8 +7,12 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return (0, _LitRenderer.html)`<div class="ui5-timeline-root" @focusin=${this._onfocusin} @keydown=${this._onkeydown}><div class="ui5-timeline-scroll-container"><ul class="ui5-timeline-list" aria-live="polite" aria-label="${(0, _LitRenderer.ifDefined)(this.ariaLabel)}">${(0, _LitRenderer.repeat)(this.items, (item, index) => item._id || index, (item, index) => block1.call(this, context, tags, suffix, item, index))}</ul></div></div>`;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix, item, index) {
|
|
14
|
+
return (0, _LitRenderer.html)`<li class="ui5-timeline-list-item"><slot name="${(0, _LitRenderer.ifDefined)(item._individualSlot)}"></slot></li>`;
|
|
15
|
+
}
|
|
12
16
|
var _default = block0;
|
|
13
17
|
_exports.default = _default;
|
|
14
18
|
});
|
package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js
CHANGED
|
@@ -7,21 +7,57 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return (0, _LitRenderer.html)`<li part="native-li" data-sap-focus-ref tabindex="${(0, _LitRenderer.ifDefined)(this._effectiveTabIndex)}" class="${(0, _LitRenderer.classMap)(this.classes.main)}" @focusin="${this._onfocusin}" @focusout="${this._onfocusout}" @keyup="${this._onkeyup}" @keydown="${this._onkeydown}" @mouseup="${this._onmouseup}" @mousedown="${this._onmousedown}" @touchstart="${this._ontouchstart}" @touchend="${this._ontouchend}" @click="${this._onclick}" role="${(0, _LitRenderer.ifDefined)(this._accInfo.role)}" aria-expanded="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaExpanded)}" title="${(0, _LitRenderer.ifDefined)(this.title)}" aria-level="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaLevel)}" aria-haspopup="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaHaspopup)}" aria-posinset="${(0, _LitRenderer.ifDefined)(this._accInfo.posinset)}" aria-roledescription="${(0, _LitRenderer.ifDefined)(this.accessibleRoleDescription)}" aria-setsize="${(0, _LitRenderer.ifDefined)(this._accInfo.setsize)}" aria-describedby="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" aria-labelledby="${(0, _LitRenderer.ifDefined)(this._accessibleNameRef)}" aria-disabled="${(0, _LitRenderer.ifDefined)(this._ariaDisabled)}" aria-selected="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelected)}" aria-checked="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaChecked)}" aria-owns="${(0, _LitRenderer.ifDefined)(this._accInfo.ariaOwns)}">${this.placeSelectionElementBefore ? block1.call(this, context, tags, suffix) : undefined}<div id="${(0, _LitRenderer.ifDefined)(this._id)}-content" class="ui5-li-content"><div class="ui5-uci-thumbnail"><slot name="thumbnail"></slot></div><div class="ui5-uci-content-and-edit-container"><div class="ui5-uci-content-and-progress"><div class="ui5-uci-content">${this._editing ? block2.call(this, context, tags, suffix) : block3.call(this, context, tags, suffix)}<div class="ui5-uci-description"><slot></slot></div></div>${this._showProgressIndicator ? block6.call(this, context, tags, suffix) : undefined}</div><div class="ui5-uci-edit-buttons">${this._editing ? block7.call(this, context, tags, suffix) : block8.call(this, context, tags, suffix)}</div></div></div>${this.typeDetail ? block13.call(this, context, tags, suffix) : undefined}${this.typeNavigation ? block14.call(this, context, tags, suffix) : undefined}${this.navigated ? block15.call(this, context, tags, suffix) : undefined}${this.placeSelectionElementAfter ? block16.call(this, context, tags, suffix) : undefined}<span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.listItemAriaLabel)}${(0, _LitRenderer.ifDefined)(this.accessibleName)}</span><span id="${(0, _LitRenderer.ifDefined)(this._id)}-invisibleText-describedby" class="ui5-hidden-text">${(0, _LitRenderer.ifDefined)(this._accInfo.ariaSelectedText)}</span></li>`;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix) {
|
|
14
|
+
return (0, _LitRenderer.html)``;
|
|
15
|
+
}
|
|
16
|
+
function block2(context, tags, suffix) {
|
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-uci-edit-container"><${(0, _LitRenderer.scopeTag)("ui5-input", tags, suffix)} id="ui5-uci-edit-input" data-sap-focus-ref @focusin="${this._onInputFocusin}" @keydown="${this._onInputKeyDown}"></${(0, _LitRenderer.scopeTag)("ui5-input", tags, suffix)}><span class="ui5-uci-file-extension">${(0, _LitRenderer.ifDefined)(this._fileExtension)}</span></div>` : (0, _LitRenderer.html)`<div class="ui5-uci-edit-container"><ui5-input id="ui5-uci-edit-input" data-sap-focus-ref @focusin="${this._onInputFocusin}" @keydown="${this._onInputKeyDown}"></ui5-input><span class="ui5-uci-file-extension">${(0, _LitRenderer.ifDefined)(this._fileExtension)}</span></div>`;
|
|
18
|
+
}
|
|
19
|
+
function block3(context, tags, suffix) {
|
|
20
|
+
return (0, _LitRenderer.html)`${this.fileNameClickable ? block4.call(this, context, tags, suffix) : block5.call(this, context, tags, suffix)}`;
|
|
21
|
+
}
|
|
22
|
+
function block4(context, tags, suffix) {
|
|
23
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)} class="ui5-uci-file-name" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onFileNameClick)}">${(0, _LitRenderer.ifDefined)(this.fileName)}</${(0, _LitRenderer.scopeTag)("ui5-link", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-link class="ui5-uci-file-name" @ui5-click="${(0, _LitRenderer.ifDefined)(this._onFileNameClick)}">${(0, _LitRenderer.ifDefined)(this.fileName)}</ui5-link>`;
|
|
24
|
+
}
|
|
25
|
+
function block5(context, tags, suffix) {
|
|
26
|
+
return (0, _LitRenderer.html)`<span class="ui5-uci-file-name ui5-uci-file-name-text">${(0, _LitRenderer.ifDefined)(this.fileName)}</span>`;
|
|
27
|
+
}
|
|
28
|
+
function block6(context, tags, suffix) {
|
|
29
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-uci-progress-box"><${(0, _LitRenderer.scopeTag)("ui5-progress-indicator", tags, suffix)} class="ui5-uci-progress-indicator" hide-value value="${(0, _LitRenderer.ifDefined)(this.progress)}" value-state="${(0, _LitRenderer.ifDefined)(this.valueStateName)}"></${(0, _LitRenderer.scopeTag)("ui5-progress-indicator", tags, suffix)}><div class="ui5-uci-progress-labels"><${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)} show-colon>${(0, _LitRenderer.ifDefined)(this._progressText)}</${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}>${(0, _LitRenderer.ifDefined)(this.progress)}%</${(0, _LitRenderer.scopeTag)("ui5-label", tags, suffix)}></div></div>` : (0, _LitRenderer.html)`<div class="ui5-uci-progress-box"><ui5-progress-indicator class="ui5-uci-progress-indicator" hide-value value="${(0, _LitRenderer.ifDefined)(this.progress)}" value-state="${(0, _LitRenderer.ifDefined)(this.valueStateName)}"></ui5-progress-indicator><div class="ui5-uci-progress-labels"><ui5-label show-colon>${(0, _LitRenderer.ifDefined)(this._progressText)}</ui5-label><ui5-label>${(0, _LitRenderer.ifDefined)(this.progress)}%</ui5-label></div></div>`;
|
|
30
|
+
}
|
|
31
|
+
function block7(context, tags, suffix) {
|
|
32
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" class="ui5-uci-edit-rename-btn" @click="${this._onRename}" @keyup="${this._onRenameKeyup}">${(0, _LitRenderer.ifDefined)(this._renameBtnText)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" id="ui5-uci-edit-cancel" @click="${this._onRenameCancel}" @keyup="${this._onRenameCancelKeyup}">${(0, _LitRenderer.ifDefined)(this._cancelRenameBtnText)}</${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button design="Transparent" class="ui5-uci-edit-rename-btn" @click="${this._onRename}" @keyup="${this._onRenameKeyup}">${(0, _LitRenderer.ifDefined)(this._renameBtnText)}</ui5-button><ui5-button design="Transparent" id="ui5-uci-edit-cancel" @click="${this._onRenameCancel}" @keyup="${this._onRenameCancelKeyup}">${(0, _LitRenderer.ifDefined)(this._cancelRenameBtnText)}</ui5-button>`;
|
|
33
|
+
}
|
|
34
|
+
function block8(context, tags, suffix) {
|
|
35
|
+
return (0, _LitRenderer.html)`${this._showRetry ? block9.call(this, context, tags, suffix) : undefined}${this._showTerminate ? block10.call(this, context, tags, suffix) : undefined}${this.showEditButton ? block11.call(this, context, tags, suffix) : undefined}${this.renderDeleteButton ? block12.call(this, context, tags, suffix) : undefined}`;
|
|
36
|
+
}
|
|
37
|
+
function block9(context, tags, suffix) {
|
|
38
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="refresh" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._retryButtonTooltip)}" @click="${this._onRetry}" @keyup="${this._onRetryKeyup}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="refresh" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._retryButtonTooltip)}" @click="${this._onRetry}" @keyup="${this._onRetryKeyup}"></ui5-button>`;
|
|
39
|
+
}
|
|
40
|
+
function block10(context, tags, suffix) {
|
|
41
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} icon="stop" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._terminateButtonTooltip)}" @click="${this._onTerminate}" @keyup="${this._onTerminateKeyup}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button icon="stop" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._terminateButtonTooltip)}" @click="${this._onTerminate}" @keyup="${this._onTerminateKeyup}"></ui5-button>`;
|
|
42
|
+
}
|
|
43
|
+
function block11(context, tags, suffix) {
|
|
44
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} id="${(0, _LitRenderer.ifDefined)(this._id)}-editing-button" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._editButtonTooltip)}" icon="edit" @click="${this.onDetailClick}" @keyup="${this._onDetailKeyup}" class="ui5-li-detailbtn ui5-uci-edit"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button id="${(0, _LitRenderer.ifDefined)(this._id)}-editing-button" design="Transparent" tooltip="${(0, _LitRenderer.ifDefined)(this._editButtonTooltip)}" icon="edit" @click="${this.onDetailClick}" @keyup="${this._onDetailKeyup}" class="ui5-li-detailbtn ui5-uci-edit"></ui5-button>`;
|
|
45
|
+
}
|
|
46
|
+
function block12(context, tags, suffix) {
|
|
47
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} class="ui5-li-deletebtn" tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-button class="ui5-li-deletebtn" tabindex="-1" data-sap-no-tab-ref id="${(0, _LitRenderer.ifDefined)(this._id)}-deleteSelectionElement" design="Transparent" icon="decline" ?disabled="${this.disableDeleteButton}" @click="${this.onDelete}" tooltip="${(0, _LitRenderer.ifDefined)(this.deleteText)}"></ui5-button>`;
|
|
48
|
+
}
|
|
49
|
+
function block13(context, tags, suffix) {
|
|
50
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)} design="Transparent" icon="edit" @click="${this.onDetailClick}"></${(0, _LitRenderer.scopeTag)("ui5-button", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="ui5-li-detailbtn"><ui5-button design="Transparent" icon="edit" @click="${this.onDetailClick}"></ui5-button></div>`;
|
|
51
|
+
}
|
|
52
|
+
function block14(context, tags, suffix) {
|
|
53
|
+
return suffix ? (0, _LitRenderer.html)`<${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name ="slim-arrow-right"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}>` : (0, _LitRenderer.html)`<ui5-icon name ="slim-arrow-right"></ui5-icon>`;
|
|
54
|
+
}
|
|
55
|
+
function block15(context, tags, suffix) {
|
|
56
|
+
return (0, _LitRenderer.html)`<div class="ui5-li-navigated"></div>`;
|
|
57
|
+
}
|
|
58
|
+
function block16(context, tags, suffix) {
|
|
59
|
+
return (0, _LitRenderer.html)``;
|
|
60
|
+
}
|
|
25
61
|
var _default = block0;
|
|
26
62
|
_exports.default = _default;
|
|
27
63
|
});
|
package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js
CHANGED
|
@@ -7,9 +7,15 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/renderer/LitRender
|
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
/* eslint no-unused-vars: 0 */
|
|
9
9
|
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
10
|
+
function block0(context, tags, suffix) {
|
|
11
|
+
return suffix ? (0, _LitRenderer.html)`<div class="ui5-uc-root" role="region" aria-roledescription="${(0, _LitRenderer.ifDefined)(this._roleDescription)}" @drop="${this._ondrop}"><div class="${(0, _LitRenderer.classMap)(this.classes.content)}"><${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)} accessible-name="${(0, _LitRenderer.ifDefined)(this.accessibleName)}" mode="${(0, _LitRenderer.ifDefined)(this.mode)}" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onSelectionChange)}" @ui5-item-delete="${(0, _LitRenderer.ifDefined)(this._onItemDelete)}"><slot slot="header" name="header"></slot><slot></slot></${(0, _LitRenderer.scopeTag)("ui5-list", tags, suffix)}>${this._showNoData ? block1.call(this, context, tags, suffix) : undefined}${this._showDndOverlay ? block2.call(this, context, tags, suffix) : undefined}</div></div>` : (0, _LitRenderer.html)`<div class="ui5-uc-root" role="region" aria-roledescription="${(0, _LitRenderer.ifDefined)(this._roleDescription)}" @drop="${this._ondrop}"><div class="${(0, _LitRenderer.classMap)(this.classes.content)}"><ui5-list accessible-name="${(0, _LitRenderer.ifDefined)(this.accessibleName)}" mode="${(0, _LitRenderer.ifDefined)(this.mode)}" @ui5-selection-change="${(0, _LitRenderer.ifDefined)(this._onSelectionChange)}" @ui5-item-delete="${(0, _LitRenderer.ifDefined)(this._onItemDelete)}"><slot slot="header" name="header"></slot><slot></slot></ui5-list>${this._showNoData ? block1.call(this, context, tags, suffix) : undefined}${this._showDndOverlay ? block2.call(this, context, tags, suffix) : undefined}</div></div>`;
|
|
12
|
+
}
|
|
13
|
+
function block1(context, tags, suffix) {
|
|
14
|
+
return suffix ? (0, _LitRenderer.html)`<div class="${(0, _LitRenderer.classMap)(this.classes.noFiles)}"><${(0, _LitRenderer.scopeTag)("ui5-illustrated-message", tags, suffix)} name="Tent" size="Scene"><${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)} slot="title" class="title" level="H2">${(0, _LitRenderer.ifDefined)(this._noDataText)}</${(0, _LitRenderer.scopeTag)("ui5-title", tags, suffix)}><span slot="subtitle" class="subtitle">${(0, _LitRenderer.ifDefined)(this._noDataDescription)}</span></${(0, _LitRenderer.scopeTag)("ui5-illustrated-message", tags, suffix)}></div>` : (0, _LitRenderer.html)`<div class="${(0, _LitRenderer.classMap)(this.classes.noFiles)}"><ui5-illustrated-message name="Tent" size="Scene"><ui5-title slot="title" class="title" level="H2">${(0, _LitRenderer.ifDefined)(this._noDataText)}</ui5-title><span slot="subtitle" class="subtitle">${(0, _LitRenderer.ifDefined)(this._noDataDescription)}</span></ui5-illustrated-message></div>`;
|
|
15
|
+
}
|
|
16
|
+
function block2(context, tags, suffix) {
|
|
17
|
+
return suffix ? (0, _LitRenderer.html)`<div class="${(0, _LitRenderer.classMap)(this.classes.dndOverlay)}" @dragenter="${this._ondragenter}" @dragleave="${this._ondragleave}" @dragover="${this._ondragover}"><${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)} name="upload-to-cloud"></${(0, _LitRenderer.scopeTag)("ui5-icon", tags, suffix)}><span class="dnd-overlay-text">${(0, _LitRenderer.ifDefined)(this._dndOverlayText)}</span></div>` : (0, _LitRenderer.html)`<div class="${(0, _LitRenderer.classMap)(this.classes.dndOverlay)}" @dragenter="${this._ondragenter}" @dragleave="${this._ondragleave}" @dragover="${this._ondragover}"><ui5-icon name="upload-to-cloud"></ui5-icon><span class="dnd-overlay-text">${(0, _LitRenderer.ifDefined)(this._dndOverlayText)}</span></div>`;
|
|
18
|
+
}
|
|
13
19
|
var _default = block0;
|
|
14
20
|
_exports.default = _default;
|
|
15
21
|
});
|