@openui5/sap.ui.webc.fiori 1.105.0 → 1.106.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 +20 -17
- package/THIRDPARTY.txt +31 -21
- package/package.json +8 -4
- package/src/sap/ui/webc/fiori/.library +9 -2
- package/src/sap/ui/webc/fiori/Bar.js +2 -2
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +2 -2
- package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItem.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItemOption.js +1 -1
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +1 -1
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +1 -1
- package/src/sap/ui/webc/fiori/MediaGallery.js +1 -1
- package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationAction.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -2
- package/src/sap/ui/webc/fiori/Page.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +2 -2
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -2
- package/src/sap/ui/webc/fiori/SortItem.js +1 -1
- package/src/sap/ui/webc/fiori/Timeline.js +1 -1
- package/src/sap/ui/webc/fiori/TimelineItem.js +2 -2
- package/src/sap/ui/webc/fiori/UploadCollection.js +1 -1
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +1 -1
- package/src/sap/ui/webc/fiori/Wizard.js +1 -1
- package/src/sap/ui/webc/fiori/WizardStep.js +2 -2
- package/src/sap/ui/webc/fiori/lib/zxing.js +24247 -0
- package/src/sap/ui/webc/fiori/library.config.js +16 -1
- package/src/sap/ui/webc/fiori/library.js +3 -6
- package/src/sap/ui/webc/fiori/thirdparty/Assets.js +3 -5
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +211 -88
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +239 -18952
- package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +571 -293
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +89 -30
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +79 -26
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +806 -431
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +458 -174
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +148 -35
- package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +631 -342
- package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +354 -193
- package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +115 -40
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +251 -127
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +407 -224
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +280 -144
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +234 -97
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +206 -116
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +265 -121
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +1186 -737
- package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +107 -44
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +319 -178
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +150 -52
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +107 -38
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +78 -26
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +195 -107
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +210 -96
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +381 -191
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +507 -263
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +757 -451
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +1022 -567
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +171 -46
- package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +230 -106
- package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +342 -244
- package/src/sap/ui/webc/fiori/thirdparty/features/CoPilotAnimation.js +8 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_in.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +588 -123
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +58 -30
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +169 -115
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +17 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +32 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +60 -30
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +32 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +42 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +44 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +19 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddPeople.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BalloonSky.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Connection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyList.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyPlanningCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ErrorScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/FilterTable.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/GroupTable.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoFilterResults.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/PageNotFound.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ReloadScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ResizeColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchEarth.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchFolder.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBalloon.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBell.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCheckMark.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleConnection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyDoc.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyList.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleError.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMagnifier.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMail.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNoSavedItems.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNotFoundMagnifier.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleReload.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleTask.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SleepingBell.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SortColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessBalloon.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessCheckMark.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessHighFive.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Tent.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoadImage.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadCollection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea2.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBPMNFlow.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBar.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBullet.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartDoughnut.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartFlow.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartGantt.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartOrg.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartPie.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Components.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Secrets.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Systems.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Teams.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Tools.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnableToLoad.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/User2.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea2.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBar.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBullet.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartFlow.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartGantt.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartOrg.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartPie.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Components.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Secrets.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Systems.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Teams.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Tools.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnableToLoad.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-User2.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea2.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBar.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBullet.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartDoughnut.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartFlow.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartGantt.js +33 -30
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartOrg.js +34 -31
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartPie.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +37 -34
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Components.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +42 -39
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Secrets.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Systems.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Teams.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Tools.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnableToLoad.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-User2.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea2.js +14 -11
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBar.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBullet.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartDoughnut.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartFlow.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartGantt.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartOrg.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartPie.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Components.js +12 -9
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Secrets.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Systems.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Teams.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Tools.js +14 -11
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnableToLoad.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-User2.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +60 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +145 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +73 -18
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +653 -106
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +49 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +53 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +46 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +46 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +58 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +60 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +48 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +67 -18
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +48 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +55 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +62 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +49 -15
- package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +92 -65
- package/ui5.yaml +141 -4
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ar.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_bg.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ca.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cs.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cy.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_da.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_de.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_el.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_GB.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_sappsd.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saprigi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saptrc.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es_MX.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_et.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr_CA.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hu.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_in.js +0 -53
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_it.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_iw.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ja.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_kk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ko.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lt.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lv.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ms.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_nl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_no.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt_PT.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ro.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ru.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sh.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sv.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_th.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_tr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_uk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_vi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_CN.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_TW.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css10.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css11.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css12.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css2.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css3.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css4.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css5.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css6.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css7.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css8.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css9.js +0 -13
|
@@ -1,737 +1,1186 @@
|
|
|
1
|
-
sap.ui.define([
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
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
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/delegate/ResizeHandler", "sap/ui/webc/common/thirdparty/base/FeaturesRegistry", "sap/ui/webc/common/thirdparty/base/types/AnimationMode", "sap/ui/webc/common/thirdparty/base/config/AnimationMode", "sap/ui/webc/common/thirdparty/base/Keys", "sap/ui/webc/common/thirdparty/base/Render", "sap/ui/webc/main/thirdparty/StandardListItem", "sap/ui/webc/main/thirdparty/List", "sap/ui/webc/main/thirdparty/Popover", "sap/ui/webc/main/thirdparty/Button", "sap/ui/webc/main/thirdparty/types/HasPopup", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/icons/search", "sap/ui/webc/common/thirdparty/icons/bell", "sap/ui/webc/common/thirdparty/icons/overflow", "sap/ui/webc/common/thirdparty/icons/grid", "./generated/i18n/i18n-defaults", "./generated/templates/ShellBarTemplate.lit", "./generated/templates/ShellBarPopoverTemplate.lit", "./generated/themes/ShellBar.css", "./generated/themes/ShellBarPopover.css"], function (_exports, _UI5Element, _LitRenderer, _ResizeHandler, _FeaturesRegistry, _AnimationMode, _AnimationMode2, _Keys, _Render, _StandardListItem, _List, _Popover, _Button, _HasPopup, _i18nBundle, _search, _bell, _overflow, _grid, _i18nDefaults, _ShellBarTemplate, _ShellBarPopoverTemplate, _ShellBar, _ShellBarPopover) {
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
_exports.default = void 0;
|
|
8
|
+
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
9
|
+
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
10
|
+
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
|
11
|
+
_AnimationMode = _interopRequireDefault(_AnimationMode);
|
|
12
|
+
_StandardListItem = _interopRequireDefault(_StandardListItem);
|
|
13
|
+
_List = _interopRequireDefault(_List);
|
|
14
|
+
_Popover = _interopRequireDefault(_Popover);
|
|
15
|
+
_Button = _interopRequireDefault(_Button);
|
|
16
|
+
_HasPopup = _interopRequireDefault(_HasPopup);
|
|
17
|
+
_ShellBarTemplate = _interopRequireDefault(_ShellBarTemplate);
|
|
18
|
+
_ShellBarPopoverTemplate = _interopRequireDefault(_ShellBarPopoverTemplate);
|
|
19
|
+
_ShellBar = _interopRequireDefault(_ShellBar);
|
|
20
|
+
_ShellBarPopover = _interopRequireDefault(_ShellBarPopover);
|
|
21
|
+
|
|
22
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
23
|
+
|
|
24
|
+
// Templates
|
|
25
|
+
// Styles
|
|
26
|
+
const HANDLE_RESIZE_DEBOUNCE_RATE = 200; // ms
|
|
27
|
+
|
|
28
|
+
/**
|
|
29
|
+
* @public
|
|
30
|
+
*/
|
|
31
|
+
|
|
32
|
+
const metadata = {
|
|
33
|
+
tag: "ui5-shellbar",
|
|
34
|
+
languageAware: true,
|
|
35
|
+
fastNavigation: true,
|
|
36
|
+
properties:
|
|
37
|
+
/** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
|
|
38
|
+
{
|
|
39
|
+
/**
|
|
40
|
+
* Defines the <code>primaryTitle</code>.
|
|
41
|
+
* <br><br>
|
|
42
|
+
* <b>Note:</b> The <code>primaryTitle</code> would be hidden on S screen size (less than approx. 700px).
|
|
43
|
+
* @type {string}
|
|
44
|
+
* @defaultvalue ""
|
|
45
|
+
* @public
|
|
46
|
+
*/
|
|
47
|
+
primaryTitle: {
|
|
48
|
+
type: String
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
/**
|
|
52
|
+
* Defines the <code>secondaryTitle</code>.
|
|
53
|
+
* <br><br>
|
|
54
|
+
* <b>Note:</b> The <code>secondaryTitle</code> would be hidden on S and M screen sizes (less than approx. 1300px).
|
|
55
|
+
* @type {string}
|
|
56
|
+
* @defaultvalue ""
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
secondaryTitle: {
|
|
60
|
+
type: String
|
|
61
|
+
},
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Defines the <code>notificationsCount</code>,
|
|
65
|
+
* displayed in the notification icon top-right corner.
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @defaultvalue ""
|
|
68
|
+
* @public
|
|
69
|
+
*/
|
|
70
|
+
notificationsCount: {
|
|
71
|
+
type: String
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
/**
|
|
75
|
+
* Defines, if the notification icon would be displayed.
|
|
76
|
+
* @type {boolean}
|
|
77
|
+
* @defaultvalue false
|
|
78
|
+
* @public
|
|
79
|
+
*/
|
|
80
|
+
showNotifications: {
|
|
81
|
+
type: Boolean
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
/**
|
|
85
|
+
* Defines, if the product switch icon would be displayed.
|
|
86
|
+
* @type {boolean}
|
|
87
|
+
* @defaultvalue false
|
|
88
|
+
* @public
|
|
89
|
+
*/
|
|
90
|
+
showProductSwitch: {
|
|
91
|
+
type: Boolean
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Defines, if the product CoPilot icon would be displayed.
|
|
96
|
+
* <br><b>Note:</b> By default the co-pilot is displayed as static SVG.
|
|
97
|
+
* If you need an animated co-pilot, you can import the <code>"@ui5/webcomponents-fiori/dist/features/CoPilotAnimation.js"</code> module as add-on feature.
|
|
98
|
+
* @type {boolean}
|
|
99
|
+
* @defaultvalue false
|
|
100
|
+
* @public
|
|
101
|
+
*/
|
|
102
|
+
showCoPilot: {
|
|
103
|
+
type: Boolean
|
|
104
|
+
},
|
|
105
|
+
|
|
106
|
+
/**
|
|
107
|
+
* An object of strings that defines several additional accessibility texts
|
|
108
|
+
* for even further customization.
|
|
109
|
+
*
|
|
110
|
+
* It supports the following fields:
|
|
111
|
+
* - <code>profileButtonTitle</code>: defines the tooltip for the profile button
|
|
112
|
+
* - <code>logoTitle</code>: defines the tooltip for the logo
|
|
113
|
+
*
|
|
114
|
+
* @type {object}
|
|
115
|
+
* @public
|
|
116
|
+
* @since 1.1.0
|
|
117
|
+
*/
|
|
118
|
+
accessibilityTexts: {
|
|
119
|
+
type: Object
|
|
120
|
+
},
|
|
121
|
+
|
|
122
|
+
/**
|
|
123
|
+
* @private
|
|
124
|
+
*/
|
|
125
|
+
breakpointSize: {
|
|
126
|
+
type: String
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* @private
|
|
131
|
+
*/
|
|
132
|
+
showSearchField: {
|
|
133
|
+
type: Boolean
|
|
134
|
+
},
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* @private
|
|
138
|
+
*/
|
|
139
|
+
coPilotActive: {
|
|
140
|
+
type: Boolean
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* @private
|
|
145
|
+
*/
|
|
146
|
+
withLogo: {
|
|
147
|
+
type: Boolean
|
|
148
|
+
},
|
|
149
|
+
_itemsInfo: {
|
|
150
|
+
type: Object
|
|
151
|
+
},
|
|
152
|
+
_header: {
|
|
153
|
+
type: Object
|
|
154
|
+
},
|
|
155
|
+
_menuPopoverItems: {
|
|
156
|
+
type: String,
|
|
157
|
+
multiple: true
|
|
158
|
+
},
|
|
159
|
+
_menuPopoverExpanded: {
|
|
160
|
+
type: Boolean,
|
|
161
|
+
noAttribute: true
|
|
162
|
+
},
|
|
163
|
+
_overflowPopoverExpanded: {
|
|
164
|
+
type: Boolean,
|
|
165
|
+
noAttribute: true
|
|
166
|
+
},
|
|
167
|
+
_fullWidthSearch: {
|
|
168
|
+
type: Boolean,
|
|
169
|
+
noAttribute: true
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
managedSlots: true,
|
|
173
|
+
slots:
|
|
174
|
+
/** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
|
|
175
|
+
{
|
|
176
|
+
/**
|
|
177
|
+
* Defines the <code>ui5-shellbar</code> aditional items.
|
|
178
|
+
* <br><br>
|
|
179
|
+
* <b>Note:</b>
|
|
180
|
+
* You can use the <ui5-shellbar-item></ui5-shellbar-item>.
|
|
181
|
+
*
|
|
182
|
+
* @type {sap.ui.webcomponents.fiori.IShellBarItem[]}
|
|
183
|
+
* @slot items
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
"default": {
|
|
187
|
+
propertyName: "items",
|
|
188
|
+
type: HTMLElement,
|
|
189
|
+
invalidateOnChildChange: true
|
|
190
|
+
},
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* You can pass <code>ui5-avatar</code> to set the profile image/icon.
|
|
194
|
+
* If no profile slot is set - profile will be excluded from actions.
|
|
195
|
+
*
|
|
196
|
+
* Note: We recommend not using the <code>size</code> attribute of <code>ui5-avatar</code> because
|
|
197
|
+
* it should have specific size by design in the context of <code>ui5-shellbar</code> profile.
|
|
198
|
+
* @type {sap.ui.webcomponents.main.IAvatar}
|
|
199
|
+
* @slot
|
|
200
|
+
* @since 1.0.0-rc.6
|
|
201
|
+
* @public
|
|
202
|
+
*/
|
|
203
|
+
profile: {
|
|
204
|
+
type: HTMLElement
|
|
205
|
+
},
|
|
206
|
+
|
|
207
|
+
/**
|
|
208
|
+
* Defines the logo of the <code>ui5-shellbar</code>.
|
|
209
|
+
* For example, you can use <code>ui5-avatar</code> or <code>img</code> elements as logo.
|
|
210
|
+
* @type {sap.ui.webcomponents.main.IAvatar}
|
|
211
|
+
* @slot
|
|
212
|
+
* @since 1.0.0-rc.8
|
|
213
|
+
* @public
|
|
214
|
+
*/
|
|
215
|
+
logo: {
|
|
216
|
+
type: HTMLElement
|
|
217
|
+
},
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Defines the items displayed in menu after a click on the primary title.
|
|
221
|
+
* <br><br>
|
|
222
|
+
* <b>Note:</b>
|
|
223
|
+
* You can use the <ui5-li></ui5-li> and its ancestors.
|
|
224
|
+
*
|
|
225
|
+
* @type {sap.ui.webcomponents.main.IListItem[]}
|
|
226
|
+
* @slot
|
|
227
|
+
* @since 0.10
|
|
228
|
+
* @public
|
|
229
|
+
*/
|
|
230
|
+
menuItems: {
|
|
231
|
+
type: HTMLElement
|
|
232
|
+
},
|
|
233
|
+
|
|
234
|
+
/**
|
|
235
|
+
* Defines the <code>ui5-input</code>, that will be used as a search field.
|
|
236
|
+
*
|
|
237
|
+
* @type {sap.ui.webcomponents.main.IInput}
|
|
238
|
+
* @slot
|
|
239
|
+
* @public
|
|
240
|
+
*/
|
|
241
|
+
searchField: {
|
|
242
|
+
type: HTMLElement
|
|
243
|
+
},
|
|
244
|
+
|
|
245
|
+
/**
|
|
246
|
+
* Defines a <code>ui5-button</code> in the bar that will be placed in the beginning.
|
|
247
|
+
* We encourage this slot to be used for a back or home button.
|
|
248
|
+
* It gets overstyled to match ShellBar's styling.
|
|
249
|
+
*
|
|
250
|
+
* @type {sap.ui.webcomponents.main.IButton}
|
|
251
|
+
* @slot
|
|
252
|
+
* @public
|
|
253
|
+
*/
|
|
254
|
+
startButton: {
|
|
255
|
+
type: HTMLElement
|
|
256
|
+
}
|
|
257
|
+
},
|
|
258
|
+
events:
|
|
259
|
+
/** @lends sap.ui.webcomponents.fiori.ShellBar.prototype */
|
|
260
|
+
{
|
|
261
|
+
/**
|
|
262
|
+
*
|
|
263
|
+
* Fired, when the notification icon is activated.
|
|
264
|
+
*
|
|
265
|
+
*
|
|
266
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#notifications-click
|
|
267
|
+
* @allowPreventDefault
|
|
268
|
+
* @param {HTMLElement} targetRef dom ref of the activated element
|
|
269
|
+
* @public
|
|
270
|
+
*/
|
|
271
|
+
"notifications-click": {
|
|
272
|
+
detail: {
|
|
273
|
+
targetRef: {
|
|
274
|
+
type: HTMLElement
|
|
275
|
+
}
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
|
|
279
|
+
/**
|
|
280
|
+
* Fired, when the profile slot is present.
|
|
281
|
+
*
|
|
282
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#profile-click
|
|
283
|
+
* @param {HTMLElement} targetRef dom ref of the activated element
|
|
284
|
+
* @public
|
|
285
|
+
*/
|
|
286
|
+
"profile-click": {
|
|
287
|
+
detail: {
|
|
288
|
+
targetRef: {
|
|
289
|
+
type: HTMLElement
|
|
290
|
+
}
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* Fired, when the product switch icon is activated.
|
|
296
|
+
* <b>Note:</b> You can prevent closing of overflow popover by calling <code>event.preventDefault()</code>.
|
|
297
|
+
*
|
|
298
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#product-switch-click
|
|
299
|
+
* @allowPreventDefault
|
|
300
|
+
* @param {HTMLElement} targetRef dom ref of the activated element
|
|
301
|
+
* @public
|
|
302
|
+
*/
|
|
303
|
+
"product-switch-click": {
|
|
304
|
+
detail: {
|
|
305
|
+
targetRef: {
|
|
306
|
+
type: HTMLElement
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
},
|
|
310
|
+
|
|
311
|
+
/**
|
|
312
|
+
* Fired, when the logo is activated.
|
|
313
|
+
*
|
|
314
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#logo-click
|
|
315
|
+
* @param {HTMLElement} targetRef dom ref of the activated element
|
|
316
|
+
* @since 0.10
|
|
317
|
+
* @public
|
|
318
|
+
*/
|
|
319
|
+
"logo-click": {
|
|
320
|
+
detail: {
|
|
321
|
+
targetRef: {
|
|
322
|
+
type: HTMLElement
|
|
323
|
+
}
|
|
324
|
+
}
|
|
325
|
+
},
|
|
326
|
+
|
|
327
|
+
/**
|
|
328
|
+
* Fired, when the co pilot is activated.
|
|
329
|
+
*
|
|
330
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#co-pilot-click
|
|
331
|
+
* @param {HTMLElement} targetRef dom ref of the activated element
|
|
332
|
+
* @since 0.10
|
|
333
|
+
* @public
|
|
334
|
+
*/
|
|
335
|
+
"co-pilot-click": {
|
|
336
|
+
detail: {
|
|
337
|
+
targetRef: {
|
|
338
|
+
type: HTMLElement
|
|
339
|
+
}
|
|
340
|
+
}
|
|
341
|
+
},
|
|
342
|
+
|
|
343
|
+
/**
|
|
344
|
+
* Fired, when a menu item is activated
|
|
345
|
+
* <b>Note:</b> You can prevent closing of overflow popover by calling <code>event.preventDefault()</code>.
|
|
346
|
+
*
|
|
347
|
+
* @event sap.ui.webcomponents.fiori.ShellBar#menu-item-click
|
|
348
|
+
* @param {HTMLElement} item DOM ref of the activated list item
|
|
349
|
+
* @since 0.10
|
|
350
|
+
* @public
|
|
351
|
+
*/
|
|
352
|
+
"menu-item-click": {
|
|
353
|
+
detail: {
|
|
354
|
+
item: {
|
|
355
|
+
type: HTMLElement
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
};
|
|
361
|
+
/**
|
|
362
|
+
* @class
|
|
363
|
+
* <h3 class="comment-api-title">Overview</h3>
|
|
364
|
+
*
|
|
365
|
+
* The <code>ui5-shellbar</code> is meant to serve as an application header
|
|
366
|
+
* and includes numerous built-in features, such as: logo, profile image/icon, title, search field, notifications and so on.
|
|
367
|
+
* <br><br>
|
|
368
|
+
*
|
|
369
|
+
* <h3>Stable DOM Refs</h3>
|
|
370
|
+
*
|
|
371
|
+
* You can use the following stable DOM refs for the <code>ui5-shellbar</code>:
|
|
372
|
+
* <ul>
|
|
373
|
+
* <li>logo</li>
|
|
374
|
+
* <li>copilot</li>
|
|
375
|
+
* <li>notifications</li>
|
|
376
|
+
* <li>overflow</li>
|
|
377
|
+
* <li>profile</li>
|
|
378
|
+
* <li>product-switch</li>
|
|
379
|
+
* </ul>
|
|
380
|
+
*
|
|
381
|
+
* <h3>CSS Shadow Parts</h3>
|
|
382
|
+
*
|
|
383
|
+
* <ui5-link target="_blank" href="https://developer.mozilla.org/en-US/docs/Web/CSS/::part">CSS Shadow Parts</ui5-link> allow developers to style elements inside the Shadow DOM.
|
|
384
|
+
* <br>
|
|
385
|
+
* The <code>ui5-shellbar</code> exposes the following CSS Shadow Parts:
|
|
386
|
+
* <ul>
|
|
387
|
+
* <li>root - Used to style the outermost wrapper of the <code>ui5-shellbar</code></li>
|
|
388
|
+
* </ul>
|
|
389
|
+
*
|
|
390
|
+
* <h3>Keyboard Handling</h3>
|
|
391
|
+
*
|
|
392
|
+
* <h4>Fast Navigation</h4>
|
|
393
|
+
* This component provides a build in fast navigation group which can be used via <code>F6 / Shift + F6</code> or <code> Ctrl + Alt(Option) + Down / Ctrl + Alt(Option) + Up</code>.
|
|
394
|
+
* In order to use this functionality, you need to import the following module:
|
|
395
|
+
* <code>import "@ui5/webcomponents-base/dist/features/F6Navigation.js"</code>
|
|
396
|
+
* <br><br>
|
|
397
|
+
*
|
|
398
|
+
* <h3>ES6 Module Import</h3>
|
|
399
|
+
* <code>import "@ui5/webcomponents-fiori/dist/ShellBar";</code>
|
|
400
|
+
*
|
|
401
|
+
* @constructor
|
|
402
|
+
* @author SAP SE
|
|
403
|
+
* @alias sap.ui.webcomponents.fiori.ShellBar
|
|
404
|
+
* @extends sap.ui.webcomponents.base.UI5Element
|
|
405
|
+
* @tagname ui5-shellbar
|
|
406
|
+
* @appenddocs ShellBarItem
|
|
407
|
+
* @public
|
|
408
|
+
* @since 0.8.0
|
|
409
|
+
*/
|
|
410
|
+
|
|
411
|
+
class ShellBar extends _UI5Element.default {
|
|
412
|
+
static get metadata() {
|
|
413
|
+
return metadata;
|
|
414
|
+
}
|
|
415
|
+
|
|
416
|
+
static get render() {
|
|
417
|
+
return _LitRenderer.default;
|
|
418
|
+
}
|
|
419
|
+
|
|
420
|
+
static get template() {
|
|
421
|
+
return _ShellBarTemplate.default;
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
static get staticAreaTemplate() {
|
|
425
|
+
return _ShellBarPopoverTemplate.default;
|
|
426
|
+
}
|
|
427
|
+
|
|
428
|
+
static get styles() {
|
|
429
|
+
return _ShellBar.default;
|
|
430
|
+
}
|
|
431
|
+
|
|
432
|
+
static get staticAreaStyles() {
|
|
433
|
+
return [_ShellBarPopover.default];
|
|
434
|
+
}
|
|
435
|
+
|
|
436
|
+
static get FIORI_3_BREAKPOINTS() {
|
|
437
|
+
return [599, 1023, 1439, 1919, 10000];
|
|
438
|
+
}
|
|
439
|
+
|
|
440
|
+
static get FIORI_3_BREAKPOINTS_MAP() {
|
|
441
|
+
return {
|
|
442
|
+
"599": "S",
|
|
443
|
+
"1023": "M",
|
|
444
|
+
"1439": "L",
|
|
445
|
+
"1919": "XL",
|
|
446
|
+
"10000": "XXL"
|
|
447
|
+
};
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
constructor() {
|
|
451
|
+
super();
|
|
452
|
+
this._itemsInfo = [];
|
|
453
|
+
this._isInitialRendering = true;
|
|
454
|
+
this._focusedItem = null; // marks if preventDefault() is called in item's press handler
|
|
455
|
+
|
|
456
|
+
this._defaultItemPressPrevented = false;
|
|
457
|
+
this.menuItemsObserver = new MutationObserver(() => {
|
|
458
|
+
this._updateClonedMenuItems();
|
|
459
|
+
});
|
|
460
|
+
this._header = {
|
|
461
|
+
press: async () => {
|
|
462
|
+
this._updateClonedMenuItems();
|
|
463
|
+
|
|
464
|
+
if (this.hasMenuItems) {
|
|
465
|
+
const menuPopover = await this._getMenuPopover();
|
|
466
|
+
menuPopover.showAt(this.shadowRoot.querySelector(".ui5-shellbar-menu-button"));
|
|
467
|
+
}
|
|
468
|
+
}
|
|
469
|
+
};
|
|
470
|
+
|
|
471
|
+
this._handleResize = async event => {
|
|
472
|
+
this._debounce(async () => {
|
|
473
|
+
await this._getResponsivePopover();
|
|
474
|
+
this.overflowPopover.close();
|
|
475
|
+
|
|
476
|
+
this._overflowActions();
|
|
477
|
+
}, HANDLE_RESIZE_DEBOUNCE_RATE);
|
|
478
|
+
};
|
|
479
|
+
}
|
|
480
|
+
|
|
481
|
+
_debounce(fn, delay) {
|
|
482
|
+
clearTimeout(this._debounceInterval);
|
|
483
|
+
this._debounceInterval = setTimeout(() => {
|
|
484
|
+
this._debounceInterval = null;
|
|
485
|
+
fn();
|
|
486
|
+
}, delay);
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
_menuItemPress(event) {
|
|
490
|
+
this.menuPopover.close();
|
|
491
|
+
this.fireEvent("menu-item-click", {
|
|
492
|
+
item: event.detail.selectedItems[0]
|
|
493
|
+
}, true);
|
|
494
|
+
}
|
|
495
|
+
|
|
496
|
+
_logoPress() {
|
|
497
|
+
this.fireEvent("logo-click", {
|
|
498
|
+
targetRef: this.shadowRoot.querySelector(".ui5-shellbar-logo")
|
|
499
|
+
});
|
|
500
|
+
}
|
|
501
|
+
|
|
502
|
+
_menuPopoverBeforeOpen() {
|
|
503
|
+
this._menuPopoverExpanded = true;
|
|
504
|
+
}
|
|
505
|
+
|
|
506
|
+
_menuPopoverAfterClose() {
|
|
507
|
+
this._menuPopoverExpanded = false;
|
|
508
|
+
}
|
|
509
|
+
|
|
510
|
+
_overflowPopoverBeforeOpen() {
|
|
511
|
+
this._overflowPopoverExpanded = true;
|
|
512
|
+
}
|
|
513
|
+
|
|
514
|
+
_overflowPopoverAfterClose() {
|
|
515
|
+
this._overflowPopoverExpanded = false;
|
|
516
|
+
}
|
|
517
|
+
|
|
518
|
+
_logoKeyup(event) {
|
|
519
|
+
if ((0, _Keys.isSpace)(event)) {
|
|
520
|
+
this._logoPress();
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
|
|
524
|
+
_logoKeydown(event) {
|
|
525
|
+
if ((0, _Keys.isSpace)(event)) {
|
|
526
|
+
event.preventDefault();
|
|
527
|
+
return;
|
|
528
|
+
}
|
|
529
|
+
|
|
530
|
+
if ((0, _Keys.isEnter)(event)) {
|
|
531
|
+
this._logoPress();
|
|
532
|
+
}
|
|
533
|
+
}
|
|
534
|
+
|
|
535
|
+
_fireCoPilotClick() {
|
|
536
|
+
this.fireEvent("co-pilot-click", {
|
|
537
|
+
targetRef: this.shadowRoot.querySelector(".ui5-shellbar-coPilot")
|
|
538
|
+
});
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
_coPilotClick() {
|
|
542
|
+
this._fireCoPilotClick();
|
|
543
|
+
}
|
|
544
|
+
|
|
545
|
+
_coPilotKeydown(event) {
|
|
546
|
+
if ((0, _Keys.isSpace)(event)) {
|
|
547
|
+
this.coPilotActive = true;
|
|
548
|
+
event.preventDefault();
|
|
549
|
+
return;
|
|
550
|
+
}
|
|
551
|
+
|
|
552
|
+
if ((0, _Keys.isEnter)(event)) {
|
|
553
|
+
this.coPilotActive = true;
|
|
554
|
+
|
|
555
|
+
this._fireCoPilotClick();
|
|
556
|
+
}
|
|
557
|
+
}
|
|
558
|
+
|
|
559
|
+
_coPilotKeyup(event) {
|
|
560
|
+
if ((0, _Keys.isSpace)(event)) {
|
|
561
|
+
this._fireCoPilotClick();
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
this.coPilotActive = false;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
onBeforeRendering() {
|
|
568
|
+
const animationsOn = (0, _AnimationMode2.getAnimationMode)() === _AnimationMode.default.Full;
|
|
569
|
+
|
|
570
|
+
const coPilotAnimation = (0, _FeaturesRegistry.getFeature)("CoPilotAnimation");
|
|
571
|
+
this.coPilot = coPilotAnimation && animationsOn ? coPilotAnimation : {
|
|
572
|
+
animated: false
|
|
573
|
+
};
|
|
574
|
+
this.withLogo = this.hasLogo;
|
|
575
|
+
this._hiddenIcons = this._itemsInfo.filter(info => {
|
|
576
|
+
const isHidden = info.classes.indexOf("ui5-shellbar-hidden-button") !== -1;
|
|
577
|
+
const isSet = info.classes.indexOf("ui5-shellbar-invisible-button") === -1;
|
|
578
|
+
const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
|
|
579
|
+
const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
|
|
580
|
+
const shouldStayOnScreen = isOverflowIcon || isImageIcon && this.hasProfile;
|
|
581
|
+
return isHidden && isSet && !shouldStayOnScreen;
|
|
582
|
+
});
|
|
583
|
+
|
|
584
|
+
this._observeMenuItems();
|
|
585
|
+
}
|
|
586
|
+
|
|
587
|
+
onAfterRendering() {
|
|
588
|
+
this._overflowActions();
|
|
589
|
+
|
|
590
|
+
this._fullWidthSearch = this._showFullWidthSearch;
|
|
591
|
+
}
|
|
592
|
+
/**
|
|
593
|
+
* Closes the overflow area.
|
|
594
|
+
* Useful to manually close the overflow after having suppressed automatic closing with preventDefault() of ShellbarItem's press event
|
|
595
|
+
* @public
|
|
596
|
+
*/
|
|
597
|
+
|
|
598
|
+
|
|
599
|
+
closeOverflow() {
|
|
600
|
+
if (this.overflowPopover) {
|
|
601
|
+
this.overflowPopover.close();
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
|
|
605
|
+
_handleBarBreakpoints() {
|
|
606
|
+
const width = this.getBoundingClientRect().width;
|
|
607
|
+
const breakpoints = ShellBar.FIORI_3_BREAKPOINTS;
|
|
608
|
+
const size = breakpoints.find(bp1 => width < bp1) || ShellBar.FIORI_3_BREAKPOINTS[ShellBar.FIORI_3_BREAKPOINTS.length - 1];
|
|
609
|
+
const mappedSize = ShellBar.FIORI_3_BREAKPOINTS_MAP[size];
|
|
610
|
+
|
|
611
|
+
if (this.breakpointSize !== mappedSize) {
|
|
612
|
+
this.breakpointSize = mappedSize;
|
|
613
|
+
}
|
|
614
|
+
|
|
615
|
+
return mappedSize;
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
_handleSizeS() {
|
|
619
|
+
const hasIcons = this.showNotifications || this.showProductSwitch || this.searchField.length || this.items.length;
|
|
620
|
+
|
|
621
|
+
const newItems = this._getAllItems(hasIcons).map(info => {
|
|
622
|
+
const isOverflowIcon = info.classes.indexOf("ui5-shellbar-overflow-button") !== -1;
|
|
623
|
+
const isImageIcon = info.classes.indexOf("ui5-shellbar-image-button") !== -1;
|
|
624
|
+
const shouldStayOnScreen = isOverflowIcon || isImageIcon && this.hasProfile;
|
|
625
|
+
return { ...info,
|
|
626
|
+
classes: `${info.classes} ${shouldStayOnScreen ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-button`,
|
|
627
|
+
styles: {
|
|
628
|
+
order: shouldStayOnScreen ? 1 : -1
|
|
629
|
+
}
|
|
630
|
+
};
|
|
631
|
+
});
|
|
632
|
+
|
|
633
|
+
this._updateItemsInfo(newItems);
|
|
634
|
+
}
|
|
635
|
+
|
|
636
|
+
_handleActionsOverflow() {
|
|
637
|
+
const rightContainerRect = this.shadowRoot.querySelector(".ui5-shellbar-overflow-container-right").getBoundingClientRect();
|
|
638
|
+
let overflowSelector = ".ui5-shellbar-button:not(.ui5-shellbar-overflow-button):not(.ui5-shellbar-invisible-button)";
|
|
639
|
+
|
|
640
|
+
if (this.showSearchField) {
|
|
641
|
+
overflowSelector += ",.ui5-shellbar-search-field";
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
const elementsToOverflow = this.shadowRoot.querySelectorAll(overflowSelector);
|
|
645
|
+
const isRTL = this.effectiveDir === "rtl";
|
|
646
|
+
let overflowCount = [].filter.call(elementsToOverflow, icon => {
|
|
647
|
+
const iconRect = icon.getBoundingClientRect();
|
|
648
|
+
|
|
649
|
+
if (isRTL) {
|
|
650
|
+
return iconRect.left + iconRect.width > rightContainerRect.left + rightContainerRect.width;
|
|
651
|
+
}
|
|
652
|
+
|
|
653
|
+
return iconRect.left < rightContainerRect.left;
|
|
654
|
+
});
|
|
655
|
+
overflowCount = overflowCount.length;
|
|
656
|
+
|
|
657
|
+
const items = this._getAllItems(!!overflowCount).filter(item => item.show);
|
|
658
|
+
|
|
659
|
+
const itemsByPriority = items.sort((item1, item2) => {
|
|
660
|
+
if (item1.priority > item2.priority) {
|
|
661
|
+
return 1;
|
|
662
|
+
}
|
|
663
|
+
|
|
664
|
+
if (item1.priority < item2.priority) {
|
|
665
|
+
return -1;
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
return 0;
|
|
669
|
+
});
|
|
670
|
+
|
|
671
|
+
for (let i = 0; i < itemsByPriority.length; i++) {
|
|
672
|
+
if (i < overflowCount) {
|
|
673
|
+
itemsByPriority[i].classes = `${itemsByPriority[i].classes} ui5-shellbar-hidden-button`;
|
|
674
|
+
itemsByPriority[i].styles = {
|
|
675
|
+
order: -1
|
|
676
|
+
};
|
|
677
|
+
}
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
return itemsByPriority;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
_overflowActions() {
|
|
684
|
+
const size = this._handleBarBreakpoints();
|
|
685
|
+
|
|
686
|
+
if (size === "S") {
|
|
687
|
+
return this._handleSizeS();
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
const newItems = this._handleActionsOverflow();
|
|
691
|
+
|
|
692
|
+
this._updateItemsInfo(newItems);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
async _toggleActionPopover() {
|
|
696
|
+
const overflowButton = this.shadowRoot.querySelector(".ui5-shellbar-overflow-button");
|
|
697
|
+
const overflowPopover = await this._getOverflowPopover();
|
|
698
|
+
overflowPopover.showAt(overflowButton);
|
|
699
|
+
}
|
|
700
|
+
|
|
701
|
+
onEnterDOM() {
|
|
702
|
+
_ResizeHandler.default.register(this, this._handleResize);
|
|
703
|
+
}
|
|
704
|
+
|
|
705
|
+
onExitDOM() {
|
|
706
|
+
this.menuItemsObserver.disconnect();
|
|
707
|
+
|
|
708
|
+
_ResizeHandler.default.deregister(this, this._handleResize);
|
|
709
|
+
|
|
710
|
+
clearTimeout(this._debounceInterval);
|
|
711
|
+
this._debounceInterval = null;
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
_handleSearchIconPress(event) {
|
|
715
|
+
this.showSearchField = !this.showSearchField;
|
|
716
|
+
|
|
717
|
+
if (!this.showSearchField) {
|
|
718
|
+
return;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
const input = this.searchField[0]; // update the state immediately
|
|
722
|
+
|
|
723
|
+
if (input) {
|
|
724
|
+
input.focused = true;
|
|
725
|
+
} // move the focus later
|
|
726
|
+
|
|
727
|
+
|
|
728
|
+
setTimeout(() => {
|
|
729
|
+
if (input) {
|
|
730
|
+
input.focus();
|
|
731
|
+
}
|
|
732
|
+
}, 100);
|
|
733
|
+
}
|
|
734
|
+
|
|
735
|
+
async _handleActionListClick(event) {
|
|
736
|
+
if (!this._defaultItemPressPrevented) {
|
|
737
|
+
this.closeOverflow(); // wait for DOM to be updated when ui5-popover is closed, otherwise if Enter key is hold
|
|
738
|
+
// there will be no visual indication that this has happened
|
|
739
|
+
|
|
740
|
+
await (0, _Render.renderFinished)();
|
|
741
|
+
}
|
|
742
|
+
|
|
743
|
+
this._defaultItemPressPrevented = false;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
_handleCustomActionPress(event) {
|
|
747
|
+
const refItemId = event.target.getAttribute("data-ui5-external-action-item-id");
|
|
748
|
+
|
|
749
|
+
if (refItemId) {
|
|
750
|
+
const shellbarItem = this.items.find(item => {
|
|
751
|
+
return item._id === refItemId;
|
|
752
|
+
});
|
|
753
|
+
const prevented = !shellbarItem.fireEvent("click", {
|
|
754
|
+
targetRef: event.target
|
|
755
|
+
}, true);
|
|
756
|
+
this._defaultItemPressPrevented = prevented;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
_handleOverflowPress(event) {
|
|
761
|
+
this._toggleActionPopover();
|
|
762
|
+
}
|
|
763
|
+
|
|
764
|
+
_handleNotificationsPress(event) {
|
|
765
|
+
const notificationIconRef = this.shadowRoot.querySelector(".ui5-shellbar-bell-button");
|
|
766
|
+
this._defaultItemPressPrevented = !this.fireEvent("notifications-click", {
|
|
767
|
+
targetRef: notificationIconRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : notificationIconRef
|
|
768
|
+
}, true);
|
|
769
|
+
}
|
|
770
|
+
|
|
771
|
+
_handleProfilePress(event) {
|
|
772
|
+
this.fireEvent("profile-click", {
|
|
773
|
+
targetRef: this.shadowRoot.querySelector(".ui5-shellbar-image-button")
|
|
774
|
+
});
|
|
775
|
+
}
|
|
776
|
+
|
|
777
|
+
_handleCancelButtonPress() {
|
|
778
|
+
this.showSearchField = false;
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
_handleProductSwitchPress(event) {
|
|
782
|
+
const buttonRef = this.shadowRoot.querySelector(".ui5-shellbar-button-product-switch");
|
|
783
|
+
this._defaultItemPressPrevented = !this.fireEvent("product-switch-click", {
|
|
784
|
+
targetRef: buttonRef.classList.contains("ui5-shellbar-hidden-button") ? event.target : buttonRef
|
|
785
|
+
}, true);
|
|
786
|
+
}
|
|
787
|
+
/**
|
|
788
|
+
* Returns the <code>logo</code> DOM ref.
|
|
789
|
+
* @type { HTMLElement }
|
|
790
|
+
* @public
|
|
791
|
+
* @readonly
|
|
792
|
+
* @since 1.0.0-rc.16
|
|
793
|
+
*/
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
get logoDomRef() {
|
|
797
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="logo"]`);
|
|
798
|
+
}
|
|
799
|
+
/**
|
|
800
|
+
* Returns the <code>copilot</code> DOM ref.
|
|
801
|
+
* @type { HTMLElement }
|
|
802
|
+
* @public
|
|
803
|
+
* @readonly
|
|
804
|
+
* @since 1.0.0-rc.16
|
|
805
|
+
*/
|
|
806
|
+
|
|
807
|
+
|
|
808
|
+
get copilotDomRef() {
|
|
809
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="copilot"]`);
|
|
810
|
+
}
|
|
811
|
+
/**
|
|
812
|
+
* Returns the <code>notifications</code> icon DOM ref.
|
|
813
|
+
* @type { HTMLElement }
|
|
814
|
+
* @public
|
|
815
|
+
* @readonly
|
|
816
|
+
* @since 1.0.0-rc.16
|
|
817
|
+
*/
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
get notificationsDomRef() {
|
|
821
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="notifications"]`);
|
|
822
|
+
}
|
|
823
|
+
/**
|
|
824
|
+
* Returns the <code>overflow</code> icon DOM ref.
|
|
825
|
+
* @type { HTMLElement }
|
|
826
|
+
* @public
|
|
827
|
+
* @readonly
|
|
828
|
+
* @since 1.0.0-rc.16
|
|
829
|
+
*/
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
get overflowDomRef() {
|
|
833
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="overflow"]`);
|
|
834
|
+
}
|
|
835
|
+
/**
|
|
836
|
+
* Returns the <code>profile</code> icon DOM ref.
|
|
837
|
+
* @type { HTMLElement }
|
|
838
|
+
* @public
|
|
839
|
+
* @readonly
|
|
840
|
+
* @since 1.0.0-rc.16
|
|
841
|
+
*/
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
get profileDomRef() {
|
|
845
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="profile"]`);
|
|
846
|
+
}
|
|
847
|
+
/**
|
|
848
|
+
* Returns the <code>product-switch</code> icon DOM ref.
|
|
849
|
+
* @type { HTMLElement }
|
|
850
|
+
* @public
|
|
851
|
+
* @readonly
|
|
852
|
+
* @since 1.0.0-rc.16
|
|
853
|
+
*/
|
|
854
|
+
|
|
855
|
+
|
|
856
|
+
get productSwitchDomRef() {
|
|
857
|
+
return this.shadowRoot.querySelector(`*[data-ui5-stable="product-switch"]`);
|
|
858
|
+
}
|
|
859
|
+
/**
|
|
860
|
+
* Returns all items that will be placed in the right of the bar as icons / dom elements.
|
|
861
|
+
* @param {boolean} showOverflowButton Determines if overflow button should be visible (not overflowing)
|
|
862
|
+
*/
|
|
863
|
+
|
|
864
|
+
|
|
865
|
+
_getAllItems(showOverflowButton) {
|
|
866
|
+
let domOrder = -1;
|
|
867
|
+
const items = [{
|
|
868
|
+
icon: "search",
|
|
869
|
+
text: "Search",
|
|
870
|
+
classes: `${this.searchField.length ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-search-button ui5-shellbar-button`,
|
|
871
|
+
priority: 4,
|
|
872
|
+
domOrder: this.searchField.length ? ++domOrder : -1,
|
|
873
|
+
styles: {
|
|
874
|
+
order: this.searchField.length ? 1 : -10
|
|
875
|
+
},
|
|
876
|
+
id: `${this._id}-item-${1}`,
|
|
877
|
+
press: this._handleSearchIconPress.bind(this),
|
|
878
|
+
show: !!this.searchField.length
|
|
879
|
+
}, ...this.items.map((item, index) => {
|
|
880
|
+
item._getRealDomRef = () => this.getDomRef().querySelector(`*[data-ui5-stable=${item.stableDomRef}]`);
|
|
881
|
+
|
|
882
|
+
return {
|
|
883
|
+
icon: item.icon,
|
|
884
|
+
id: item._id,
|
|
885
|
+
count: item.count || undefined,
|
|
886
|
+
refItemid: item._id,
|
|
887
|
+
text: item.text,
|
|
888
|
+
classes: "ui5-shellbar-custom-item ui5-shellbar-button",
|
|
889
|
+
priority: 1,
|
|
890
|
+
domOrder: ++domOrder,
|
|
891
|
+
styles: {
|
|
892
|
+
order: 2
|
|
893
|
+
},
|
|
894
|
+
show: true,
|
|
895
|
+
press: this._handleCustomActionPress.bind(this),
|
|
896
|
+
custom: true,
|
|
897
|
+
title: item.title,
|
|
898
|
+
stableDomRef: item.stableDomRef
|
|
899
|
+
};
|
|
900
|
+
}), {
|
|
901
|
+
icon: "bell",
|
|
902
|
+
text: "Notifications",
|
|
903
|
+
classes: `${this.showNotifications ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-bell-button ui5-shellbar-button`,
|
|
904
|
+
priority: 3,
|
|
905
|
+
styles: {
|
|
906
|
+
order: this.showNotifications ? 3 : -10
|
|
907
|
+
},
|
|
908
|
+
id: `${this._id}-item-${2}`,
|
|
909
|
+
show: this.showNotifications,
|
|
910
|
+
domOrder: this.showNotifications ? ++domOrder : -1,
|
|
911
|
+
press: this._handleNotificationsPress.bind(this)
|
|
912
|
+
}, {
|
|
913
|
+
icon: "overflow",
|
|
914
|
+
text: "Overflow",
|
|
915
|
+
classes: `${showOverflowButton ? "" : "ui5-shellbar-hidden-button"} ui5-shellbar-overflow-button-shown ui5-shellbar-overflow-button ui5-shellbar-button`,
|
|
916
|
+
priority: 5,
|
|
917
|
+
order: 4,
|
|
918
|
+
styles: {
|
|
919
|
+
order: showOverflowButton ? 4 : -1
|
|
920
|
+
},
|
|
921
|
+
domOrder: showOverflowButton ? ++domOrder : -1,
|
|
922
|
+
id: `${this.id}-item-${5}`,
|
|
923
|
+
press: this._handleOverflowPress.bind(this),
|
|
924
|
+
show: true
|
|
925
|
+
}, {
|
|
926
|
+
text: "Person",
|
|
927
|
+
classes: `${this.hasProfile ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-image-button ui5-shellbar-button`,
|
|
928
|
+
priority: 4,
|
|
929
|
+
styles: {
|
|
930
|
+
order: this.hasProfile ? 5 : -10
|
|
931
|
+
},
|
|
932
|
+
profile: true,
|
|
933
|
+
id: `${this._id}-item-${3}`,
|
|
934
|
+
domOrder: this.hasProfile ? ++domOrder : -1,
|
|
935
|
+
show: this.hasProfile,
|
|
936
|
+
press: this._handleProfilePress.bind(this)
|
|
937
|
+
}, {
|
|
938
|
+
icon: "grid",
|
|
939
|
+
text: "Product Switch",
|
|
940
|
+
classes: `${this.showProductSwitch ? "" : "ui5-shellbar-invisible-button"} ui5-shellbar-button ui5-shellbar-button-product-switch`,
|
|
941
|
+
priority: 2,
|
|
942
|
+
styles: {
|
|
943
|
+
order: this.showProductSwitch ? 6 : -10
|
|
944
|
+
},
|
|
945
|
+
id: `${this._id}-item-${4}`,
|
|
946
|
+
show: this.showProductSwitch,
|
|
947
|
+
domOrder: this.showProductSwitch ? ++domOrder : -1,
|
|
948
|
+
press: this._handleProductSwitchPress.bind(this)
|
|
949
|
+
}];
|
|
950
|
+
return items;
|
|
951
|
+
}
|
|
952
|
+
|
|
953
|
+
_updateItemsInfo(newItems) {
|
|
954
|
+
const isDifferent = JSON.stringify(this._itemsInfo) !== JSON.stringify(newItems);
|
|
955
|
+
|
|
956
|
+
if (isDifferent) {
|
|
957
|
+
this._itemsInfo = newItems;
|
|
958
|
+
}
|
|
959
|
+
}
|
|
960
|
+
|
|
961
|
+
_updateClonedMenuItems() {
|
|
962
|
+
this._menuPopoverItems = [];
|
|
963
|
+
this.menuItems.forEach(item => {
|
|
964
|
+
// clone the menuItem and remove the slot="menuItems",
|
|
965
|
+
// otherwise would not be slotted in the internal ui5-li
|
|
966
|
+
const clonedItem = item.cloneNode(true);
|
|
967
|
+
clonedItem.removeAttribute("slot");
|
|
968
|
+
|
|
969
|
+
this._menuPopoverItems.push(clonedItem);
|
|
970
|
+
});
|
|
971
|
+
}
|
|
972
|
+
|
|
973
|
+
_observeMenuItems() {
|
|
974
|
+
this.menuItems.forEach(item => {
|
|
975
|
+
this.menuItemsObserver.observe(item, {
|
|
976
|
+
characterData: true,
|
|
977
|
+
childList: true,
|
|
978
|
+
subtree: true,
|
|
979
|
+
attributes: true
|
|
980
|
+
});
|
|
981
|
+
});
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
async _getResponsivePopover() {
|
|
985
|
+
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
986
|
+
this.overflowPopover = staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
|
|
987
|
+
this.menuPopover = staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
async _getOverflowPopover() {
|
|
991
|
+
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
992
|
+
return staticAreaItem.querySelector(".ui5-shellbar-overflow-popover");
|
|
993
|
+
}
|
|
994
|
+
|
|
995
|
+
async _getMenuPopover() {
|
|
996
|
+
const staticAreaItem = await this.getStaticAreaItemDomRef();
|
|
997
|
+
return staticAreaItem.querySelector(".ui5-shellbar-menu-popover");
|
|
998
|
+
}
|
|
999
|
+
|
|
1000
|
+
isIconHidden(name) {
|
|
1001
|
+
const itemInfo = this._itemsInfo.find(item => item.icon === name);
|
|
1002
|
+
|
|
1003
|
+
if (!itemInfo) {
|
|
1004
|
+
return false;
|
|
1005
|
+
}
|
|
1006
|
+
|
|
1007
|
+
return itemInfo.classes.indexOf("ui5-shellbar-hidden-button") !== -1;
|
|
1008
|
+
}
|
|
1009
|
+
|
|
1010
|
+
get classes() {
|
|
1011
|
+
return {
|
|
1012
|
+
wrapper: {
|
|
1013
|
+
"ui5-shellbar-root": true,
|
|
1014
|
+
"ui5-shellbar-with-searchfield": this.searchField.length
|
|
1015
|
+
},
|
|
1016
|
+
button: {
|
|
1017
|
+
"ui5-shellbar-menu-button--interactive": this.hasMenuItems,
|
|
1018
|
+
"ui5-shellbar-menu-button": true
|
|
1019
|
+
},
|
|
1020
|
+
items: {
|
|
1021
|
+
notification: {
|
|
1022
|
+
"ui5-shellbar-hidden-button": this.isIconHidden("bell")
|
|
1023
|
+
},
|
|
1024
|
+
product: {
|
|
1025
|
+
"ui5-shellbar-hidden-button": this.isIconHidden("grid")
|
|
1026
|
+
},
|
|
1027
|
+
search: {
|
|
1028
|
+
"ui5-shellbar-hidden-button": this.isIconHidden("search")
|
|
1029
|
+
},
|
|
1030
|
+
overflow: {
|
|
1031
|
+
"ui5-shellbar-hidden-button": this.isIconHidden("overflow")
|
|
1032
|
+
}
|
|
1033
|
+
}
|
|
1034
|
+
};
|
|
1035
|
+
}
|
|
1036
|
+
|
|
1037
|
+
get styles() {
|
|
1038
|
+
return {
|
|
1039
|
+
items: {
|
|
1040
|
+
notification: {
|
|
1041
|
+
"order": this.isIconHidden("bell") ? "-1" : "3"
|
|
1042
|
+
},
|
|
1043
|
+
overflow: {
|
|
1044
|
+
"order": this.isIconHidden("overflow") ? "-1" : "4"
|
|
1045
|
+
},
|
|
1046
|
+
profile: {
|
|
1047
|
+
"order": this.hasProfile ? "5" : "-1"
|
|
1048
|
+
},
|
|
1049
|
+
product: {
|
|
1050
|
+
"order": this.isIconHidden("grid") ? "-1" : "6"
|
|
1051
|
+
}
|
|
1052
|
+
},
|
|
1053
|
+
searchField: {
|
|
1054
|
+
"display": this.correctSearchFieldStyles
|
|
1055
|
+
}
|
|
1056
|
+
};
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
get correctSearchFieldStyles() {
|
|
1060
|
+
if (this.showSearchField) {
|
|
1061
|
+
return "flex";
|
|
1062
|
+
}
|
|
1063
|
+
|
|
1064
|
+
return "none";
|
|
1065
|
+
}
|
|
1066
|
+
|
|
1067
|
+
get customItemsInfo() {
|
|
1068
|
+
return this._itemsInfo.filter(itemInfo => !!itemInfo.custom);
|
|
1069
|
+
}
|
|
1070
|
+
|
|
1071
|
+
get hasLogo() {
|
|
1072
|
+
return !!this.logo.length;
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
get showLogoInMenuButton() {
|
|
1076
|
+
return this.hasLogo && this.breakpointSize === "S";
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
get showTitleInMenuButton() {
|
|
1080
|
+
return this.primaryTitle && !this.showLogoInMenuButton;
|
|
1081
|
+
}
|
|
1082
|
+
|
|
1083
|
+
get showMenuButton() {
|
|
1084
|
+
return this.primaryTitle || this.showLogoInMenuButton;
|
|
1085
|
+
}
|
|
1086
|
+
|
|
1087
|
+
get popoverHorizontalAlign() {
|
|
1088
|
+
return this.effectiveDir === "rtl" ? "Left" : "Right";
|
|
1089
|
+
}
|
|
1090
|
+
|
|
1091
|
+
get hasSearchField() {
|
|
1092
|
+
return !!this.searchField.length;
|
|
1093
|
+
}
|
|
1094
|
+
|
|
1095
|
+
get hasProfile() {
|
|
1096
|
+
return !!this.profile.length;
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
get hasMenuItems() {
|
|
1100
|
+
return this.menuItems.length > 0;
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
get _shellbarText() {
|
|
1104
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_LABEL);
|
|
1105
|
+
}
|
|
1106
|
+
|
|
1107
|
+
get _logoText() {
|
|
1108
|
+
return this.accessibilityTexts.logoTitle || ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_LOGO);
|
|
1109
|
+
}
|
|
1110
|
+
|
|
1111
|
+
get _copilotText() {
|
|
1112
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_COPILOT);
|
|
1113
|
+
}
|
|
1114
|
+
|
|
1115
|
+
get _notificationsText() {
|
|
1116
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_NOTIFICATIONS, this.notificationsCount);
|
|
1117
|
+
}
|
|
1118
|
+
|
|
1119
|
+
get _cancelBtnText() {
|
|
1120
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_CANCEL);
|
|
1121
|
+
}
|
|
1122
|
+
|
|
1123
|
+
get _showFullWidthSearch() {
|
|
1124
|
+
const size = this._handleBarBreakpoints();
|
|
1125
|
+
|
|
1126
|
+
const searchBtnHidden = !!this.shadowRoot.querySelector(".ui5-shellbar-search-button.ui5-shellbar-hidden-button");
|
|
1127
|
+
return size === "S" || searchBtnHidden;
|
|
1128
|
+
}
|
|
1129
|
+
|
|
1130
|
+
get _profileText() {
|
|
1131
|
+
return this.accessibilityTexts.profileButtonTitle || ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_PROFILE);
|
|
1132
|
+
}
|
|
1133
|
+
|
|
1134
|
+
get _productsText() {
|
|
1135
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_PRODUCTS);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
get _searchText() {
|
|
1139
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_SEARCH);
|
|
1140
|
+
}
|
|
1141
|
+
|
|
1142
|
+
get _overflowText() {
|
|
1143
|
+
return ShellBar.i18nBundle.getText(_i18nDefaults.SHELLBAR_OVERFLOW);
|
|
1144
|
+
}
|
|
1145
|
+
|
|
1146
|
+
get accInfo() {
|
|
1147
|
+
return {
|
|
1148
|
+
notifications: {
|
|
1149
|
+
"title": this._notificationsText
|
|
1150
|
+
},
|
|
1151
|
+
profile: {
|
|
1152
|
+
"title": this._profileText
|
|
1153
|
+
},
|
|
1154
|
+
products: {
|
|
1155
|
+
"title": this._productsText
|
|
1156
|
+
},
|
|
1157
|
+
search: {
|
|
1158
|
+
"title": this._searchText,
|
|
1159
|
+
"accessibilityAttributes": {
|
|
1160
|
+
expanded: this.showSearchField
|
|
1161
|
+
}
|
|
1162
|
+
},
|
|
1163
|
+
overflow: {
|
|
1164
|
+
"title": this._overflowText,
|
|
1165
|
+
"accessibilityAttributes": {
|
|
1166
|
+
hasPopup: _HasPopup.default.Menu,
|
|
1167
|
+
expanded: this._overflowPopoverExpanded
|
|
1168
|
+
}
|
|
1169
|
+
}
|
|
1170
|
+
};
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
static get dependencies() {
|
|
1174
|
+
return [_Button.default, _List.default, _Popover.default, _StandardListItem.default];
|
|
1175
|
+
}
|
|
1176
|
+
|
|
1177
|
+
static async onDefine() {
|
|
1178
|
+
ShellBar.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
1179
|
+
}
|
|
1180
|
+
|
|
1181
|
+
}
|
|
1182
|
+
|
|
1183
|
+
ShellBar.define();
|
|
1184
|
+
var _default = ShellBar;
|
|
1185
|
+
_exports.default = _default;
|
|
1186
|
+
});
|