@openui5/sap.ui.webc.fiori 1.105.1 → 1.107.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 -3
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +2 -3
- package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -2
- package/src/sap/ui/webc/fiori/FilterItem.js +1 -2
- package/src/sap/ui/webc/fiori/FilterItemOption.js +1 -2
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +1 -2
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +1 -2
- package/src/sap/ui/webc/fiori/MediaGallery.js +1 -2
- package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -2
- package/src/sap/ui/webc/fiori/NotificationAction.js +2 -3
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -3
- package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -3
- package/src/sap/ui/webc/fiori/Page.js +1 -2
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -2
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -3
- package/src/sap/ui/webc/fiori/ShellBar.js +2 -3
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -2
- package/src/sap/ui/webc/fiori/SideNavigation.js +1 -2
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -3
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -3
- package/src/sap/ui/webc/fiori/SortItem.js +1 -2
- package/src/sap/ui/webc/fiori/Timeline.js +1 -2
- package/src/sap/ui/webc/fiori/TimelineItem.js +2 -3
- package/src/sap/ui/webc/fiori/UploadCollection.js +1 -2
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -2
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +1 -2
- package/src/sap/ui/webc/fiori/Wizard.js +1 -2
- package/src/sap/ui/webc/fiori/WizardStep.js +2 -3
- 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 -34
- 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,431 +1,806 @@
|
|
|
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
|
-
|
|
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/types/Float", "sap/ui/webc/common/thirdparty/base/types/Integer", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/types/AnimationMode", "sap/ui/webc/common/thirdparty/base/config/AnimationMode", "sap/ui/webc/main/thirdparty/Button", "sap/ui/webc/common/thirdparty/icons/slim-arrow-left", "sap/ui/webc/common/thirdparty/icons/slim-arrow-right", "./types/FCLLayout", "./fcl-utils/FCLLayout", "./generated/i18n/i18n-defaults", "./generated/templates/FlexibleColumnLayoutTemplate.lit", "./generated/themes/FlexibleColumnLayout.css"], function (_exports, _UI5Element, _LitRenderer, _ResizeHandler, _Float, _Integer, _i18nBundle, _AnimationMode, _AnimationMode2, _Button, _slimArrowLeft, _slimArrowRight, _FCLLayout, _FCLLayout2, _i18nDefaults, _FlexibleColumnLayoutTemplate, _FlexibleColumnLayout) {
|
|
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
|
+
_Float = _interopRequireDefault(_Float);
|
|
12
|
+
_Integer = _interopRequireDefault(_Integer);
|
|
13
|
+
_AnimationMode = _interopRequireDefault(_AnimationMode);
|
|
14
|
+
_Button = _interopRequireDefault(_Button);
|
|
15
|
+
_FCLLayout = _interopRequireDefault(_FCLLayout);
|
|
16
|
+
_FlexibleColumnLayoutTemplate = _interopRequireDefault(_FlexibleColumnLayoutTemplate);
|
|
17
|
+
_FlexibleColumnLayout = _interopRequireDefault(_FlexibleColumnLayout);
|
|
18
|
+
|
|
19
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
20
|
+
|
|
21
|
+
// Texts
|
|
22
|
+
// Template
|
|
23
|
+
// Styles
|
|
24
|
+
|
|
25
|
+
/**
|
|
26
|
+
* @public
|
|
27
|
+
*/
|
|
28
|
+
const metadata = {
|
|
29
|
+
tag: "ui5-flexible-column-layout",
|
|
30
|
+
fastNavigation: true,
|
|
31
|
+
properties:
|
|
32
|
+
/** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */
|
|
33
|
+
{
|
|
34
|
+
/**
|
|
35
|
+
* Defines the columns layout and their proportion.
|
|
36
|
+
* <br><br>
|
|
37
|
+
* <b>Note:</b> The layout also depends on the screen size - one column for screens smaller than 599px,
|
|
38
|
+
* two columns between 599px and 1023px and three columns for sizes bigger than 1023px.
|
|
39
|
+
* <br><br>
|
|
40
|
+
* Available options are:
|
|
41
|
+
* <ul>
|
|
42
|
+
* <li><code>OneColumn</code></li>
|
|
43
|
+
* <li><code>TwoColumnsStartExpanded</code></li>
|
|
44
|
+
* <li><code>TwoColumnsMidExpanded</code></li>
|
|
45
|
+
* <li><code>ThreeColumnsMidExpanded</code></li>
|
|
46
|
+
* <li><code>ThreeColumnsEndExpanded</code></li>
|
|
47
|
+
* <li><code>ThreeColumnsStartExpandedEndHidden</code></li>
|
|
48
|
+
* <li><code>ThreeColumnsMidExpandedEndHidden</code></li>
|
|
49
|
+
* <li><code>MidColumnFullScreen</code></li>
|
|
50
|
+
* <li><code>EndColumnFullScreen</code></li>
|
|
51
|
+
* </ul>
|
|
52
|
+
* <br><br>
|
|
53
|
+
* <b>For example:</b> layout=<code>TwoColumnsStartExpanded</code> means the layout will display up to two columns
|
|
54
|
+
* in 67%/33% proportion.
|
|
55
|
+
* @type {FCLLayout}
|
|
56
|
+
* @defaultvalue "OneColumn"
|
|
57
|
+
* @public
|
|
58
|
+
*/
|
|
59
|
+
layout: {
|
|
60
|
+
type: _FCLLayout.default,
|
|
61
|
+
defaultValue: _FCLLayout.default.OneColumn
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
/**
|
|
65
|
+
* Defines the visibility of the arrows,
|
|
66
|
+
* used for expanding and shrinking the columns.
|
|
67
|
+
*
|
|
68
|
+
* @type {boolean}
|
|
69
|
+
* @defaultvalue false
|
|
70
|
+
* @public
|
|
71
|
+
* @since 1.0.0-rc.15
|
|
72
|
+
*/
|
|
73
|
+
hideArrows: {
|
|
74
|
+
type: Boolean
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
79
|
+
*
|
|
80
|
+
* It supports the following fields:
|
|
81
|
+
* - <code>startColumnAccessibleName</code>: the accessibility name for the <code>startColumn</code> region
|
|
82
|
+
* - <code>midColumnAccessibleName</code>: the accessibility name for the <code>midColumn</code> region
|
|
83
|
+
* - <code>endColumnAccessibleName</code>: the accessibility name for the <code>endColumn</code> region
|
|
84
|
+
* - <code>startArrowLeftText</code>: the text that the first arrow (between the <code>begin</code> and <code>mid</code> columns) will have when pointing to the left
|
|
85
|
+
* - <code>startArrowRightText</code>: the text that the first arrow (between the <code>begin</code> and <code>mid</code> columns) will have when pointing to the right
|
|
86
|
+
* - <code>endArrowLeftText</code>: the text that the second arrow (between the <code>mid</code> and <code>end</code> columns) will have when pointing to the left
|
|
87
|
+
* - <code>endArrowRightText</code>: the text that the second arrow (between the <code>mid</code> and <code>end</code> columns) will have when pointing to the right
|
|
88
|
+
* - <code>startArrowContainerAccessibleName</code>: the text that the first arrow container (between the <code>begin</code> and <code>mid</code> columns) will have as <code>aria-label</code>
|
|
89
|
+
* - <code>endArrowContainerAccessibleName</code>: the text that the second arrow container (between the <code>mid</code> and <code>end</code> columns) will have as <code>aria-label</code>
|
|
90
|
+
*
|
|
91
|
+
* @type {object}
|
|
92
|
+
* @public
|
|
93
|
+
* @since 1.0.0-rc.11
|
|
94
|
+
*/
|
|
95
|
+
accessibilityTexts: {
|
|
96
|
+
type: Object
|
|
97
|
+
},
|
|
98
|
+
|
|
99
|
+
/**
|
|
100
|
+
* An object of strings that defines additional accessibility roles for further customization.
|
|
101
|
+
*
|
|
102
|
+
* It supports the following fields:
|
|
103
|
+
* - <code>startColumnRole</code>: the accessibility role for the <code>startColumn</code>
|
|
104
|
+
* - <code>startArrowContainerRole</code>: the accessibility role for the first arrow container (between the <code>begin</code> and <code>mid</code> columns)
|
|
105
|
+
* - <code>midColumnRole</code>: the accessibility role for the <code>midColumn</code>
|
|
106
|
+
* - <code>endArrowContainerRole</code>: the accessibility role for the second arrow container (between the <code>mid</code> and <code>end</code> columns)
|
|
107
|
+
* - <code>endColumnRole</code>: the accessibility role for the <code>endColumn</code>
|
|
108
|
+
*
|
|
109
|
+
* @type {object}
|
|
110
|
+
* @public
|
|
111
|
+
* @since 1.1.0
|
|
112
|
+
*/
|
|
113
|
+
accessibilityRoles: {
|
|
114
|
+
type: Object
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
/**
|
|
118
|
+
* Defines the component width in px.
|
|
119
|
+
*
|
|
120
|
+
* @type {Float}
|
|
121
|
+
* @defaultvalue 0
|
|
122
|
+
* @private
|
|
123
|
+
*/
|
|
124
|
+
_width: {
|
|
125
|
+
type: _Float.default,
|
|
126
|
+
defaultValue: 0
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Defines the effective columns layout,
|
|
131
|
+
* based on both the <code>layout</code> property and the screen size.
|
|
132
|
+
* Example: [67%, 33%, 0], [25%, 50%, 25%], etc.
|
|
133
|
+
*
|
|
134
|
+
* @type {Object}
|
|
135
|
+
* @defaultvalue undefined
|
|
136
|
+
* @private
|
|
137
|
+
*/
|
|
138
|
+
_columnLayout: {
|
|
139
|
+
type: Object,
|
|
140
|
+
defaultValue: undefined
|
|
141
|
+
},
|
|
142
|
+
|
|
143
|
+
/**
|
|
144
|
+
* Defines the visible columns count - 1, 2 or 3.
|
|
145
|
+
*
|
|
146
|
+
* @type {Integer}
|
|
147
|
+
* @defaultvalue 1
|
|
148
|
+
* @private
|
|
149
|
+
*/
|
|
150
|
+
_visibleColumns: {
|
|
151
|
+
type: _Integer.default,
|
|
152
|
+
defaultValue: 0
|
|
153
|
+
},
|
|
154
|
+
|
|
155
|
+
/**
|
|
156
|
+
* Allows the user to replace the whole layouts configuration
|
|
157
|
+
*
|
|
158
|
+
* @type {Object}
|
|
159
|
+
* @private
|
|
160
|
+
* @sap-restricted
|
|
161
|
+
*/
|
|
162
|
+
_layoutsConfiguration: {
|
|
163
|
+
type: Object,
|
|
164
|
+
defaultValue: undefined
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
slots:
|
|
168
|
+
/** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */
|
|
169
|
+
{
|
|
170
|
+
/**
|
|
171
|
+
* Defines the content in the start column.
|
|
172
|
+
* @type {HTMLElement}
|
|
173
|
+
* @slot
|
|
174
|
+
* @public
|
|
175
|
+
*/
|
|
176
|
+
startColumn: {
|
|
177
|
+
type: HTMLElement
|
|
178
|
+
},
|
|
179
|
+
|
|
180
|
+
/**
|
|
181
|
+
* Defines the content in the middle column.
|
|
182
|
+
* @type {HTMLElement}
|
|
183
|
+
* @slot
|
|
184
|
+
* @public
|
|
185
|
+
*/
|
|
186
|
+
midColumn: {
|
|
187
|
+
type: HTMLElement
|
|
188
|
+
},
|
|
189
|
+
|
|
190
|
+
/**
|
|
191
|
+
* Defines the content in the end column.
|
|
192
|
+
* @type {HTMLElement}
|
|
193
|
+
* @slot
|
|
194
|
+
* @public
|
|
195
|
+
*/
|
|
196
|
+
endColumn: {
|
|
197
|
+
type: HTMLElement
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
events:
|
|
201
|
+
/** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */
|
|
202
|
+
{
|
|
203
|
+
/**
|
|
204
|
+
* Fired when the layout changes via user interaction by clicking the arrows
|
|
205
|
+
* or by changing the component size due to resizing.
|
|
206
|
+
*
|
|
207
|
+
* @param {FCLLayout} layout The current layout
|
|
208
|
+
* @param {Array} columnLayout The effective column layout, f.e [67%, 33%, 0]
|
|
209
|
+
* @param {boolean} startColumnVisible Indicates if the start column is currently visible
|
|
210
|
+
* @param {boolean} midColumnVisible Indicates if the middle column is currently visible
|
|
211
|
+
* @param {boolean} endColumnVisible Indicates if the end column is currently visible
|
|
212
|
+
* @param {boolean} arrowsUsed Indicates if the layout is changed via the arrows
|
|
213
|
+
* @param {boolean} resize Indicates if the layout is changed via resizing
|
|
214
|
+
* @event sap.ui.webcomponents.fiori.FlexibleColumnLayout#layout-change
|
|
215
|
+
* @public
|
|
216
|
+
*/
|
|
217
|
+
"layout-change": {
|
|
218
|
+
detail: {
|
|
219
|
+
layout: {
|
|
220
|
+
type: _FCLLayout.default
|
|
221
|
+
},
|
|
222
|
+
columnLayout: {
|
|
223
|
+
type: Array
|
|
224
|
+
},
|
|
225
|
+
startColumnVisible: {
|
|
226
|
+
type: Boolean
|
|
227
|
+
},
|
|
228
|
+
midColumnVisible: {
|
|
229
|
+
type: Boolean
|
|
230
|
+
},
|
|
231
|
+
endColumnVisible: {
|
|
232
|
+
type: Boolean
|
|
233
|
+
},
|
|
234
|
+
arrowsUsed: {
|
|
235
|
+
type: Boolean
|
|
236
|
+
},
|
|
237
|
+
resize: {
|
|
238
|
+
type: Boolean
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
}
|
|
242
|
+
}
|
|
243
|
+
};
|
|
244
|
+
/**
|
|
245
|
+
* @class
|
|
246
|
+
*
|
|
247
|
+
* <h3 class="comment-api-title">Overview</h3>
|
|
248
|
+
*
|
|
249
|
+
* The <code>FlexibleColumnLayout</code> implements the list-detail-detail paradigm by displaying up to three pages in separate columns.
|
|
250
|
+
* There are several possible layouts that can be changed either with the component API, or by pressing the arrows, displayed between the columns.
|
|
251
|
+
*
|
|
252
|
+
* <h3>Usage</h3>
|
|
253
|
+
*
|
|
254
|
+
* Use this component for applications that need to display several logical levels of related information side by side (e.g. list of items, item, sub-item, etc.).
|
|
255
|
+
* The Component is flexible in a sense that the application can focus the user's attention on one particular column.
|
|
256
|
+
*
|
|
257
|
+
* <h3>Responsive Behavior</h3>
|
|
258
|
+
*
|
|
259
|
+
* The <code>FlexibleColumnLayout</code> automatically displays the maximum possible number of columns based on <code>layout</code> property and the window size.
|
|
260
|
+
* The component would display 1 column for window size smaller than 599px, up to two columns between 599px and 1023px,
|
|
261
|
+
* and 3 columns for sizes bigger than 1023px.
|
|
262
|
+
*
|
|
263
|
+
* <br><br>
|
|
264
|
+
* <h3>Keyboard Handling</h3>
|
|
265
|
+
*
|
|
266
|
+
* <h4>Basic Navigation</h4>
|
|
267
|
+
* <ul>
|
|
268
|
+
* <li>[SPACE, ENTER, RETURN] - If focus is on the layout toggle button (arrow button), once activated, it triggers the associated action (such as expand/collapse the column).</li>
|
|
269
|
+
* <li>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>.
|
|
270
|
+
* In order to use this functionality, you need to import the following module:
|
|
271
|
+
* <code>import "@ui5/webcomponents-base/dist/features/F6Navigation.js"</code></li>
|
|
272
|
+
* </ul>
|
|
273
|
+
*
|
|
274
|
+
* <h4>Fast Navigation</h4>
|
|
275
|
+
* 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>.
|
|
276
|
+
* In order to use this functionality, you need to import the following module:
|
|
277
|
+
* <code>import "@ui5/webcomponents-base/dist/features/F6Navigation.js"</code>
|
|
278
|
+
* <br><br>
|
|
279
|
+
*
|
|
280
|
+
* <h3>ES6 Module Import</h3>
|
|
281
|
+
*
|
|
282
|
+
* <code>import "@ui5/webcomponents-fiori/dist/FlexibleColumnLayout.js";</code>
|
|
283
|
+
*
|
|
284
|
+
* @constructor
|
|
285
|
+
* @author SAP SE
|
|
286
|
+
* @alias sap.ui.webcomponents.fiori.FlexibleColumnLayout
|
|
287
|
+
* @extends UI5Element
|
|
288
|
+
* @tagname ui5-flexible-column-layout
|
|
289
|
+
* @public
|
|
290
|
+
* @since 1.0.0-rc.8
|
|
291
|
+
*/
|
|
292
|
+
|
|
293
|
+
class FlexibleColumnLayout extends _UI5Element.default {
|
|
294
|
+
constructor() {
|
|
295
|
+
super();
|
|
296
|
+
this._prevLayout = null;
|
|
297
|
+
this.initialRendering = true;
|
|
298
|
+
this._handleResize = this.handleResize.bind(this);
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
static get metadata() {
|
|
302
|
+
return metadata;
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
static get render() {
|
|
306
|
+
return _LitRenderer.default;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
static get styles() {
|
|
310
|
+
return _FlexibleColumnLayout.default;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
static get template() {
|
|
314
|
+
return _FlexibleColumnLayoutTemplate.default;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
static get dependencies() {
|
|
318
|
+
return [_Button.default];
|
|
319
|
+
}
|
|
320
|
+
|
|
321
|
+
static async onDefine() {
|
|
322
|
+
FlexibleColumnLayout.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
static get BREAKPOINTS() {
|
|
326
|
+
return {
|
|
327
|
+
"PHONE": 599,
|
|
328
|
+
"TABLET": 1023
|
|
329
|
+
};
|
|
330
|
+
}
|
|
331
|
+
|
|
332
|
+
static get MEDIA() {
|
|
333
|
+
return {
|
|
334
|
+
PHONE: "phone",
|
|
335
|
+
TABLET: "tablet",
|
|
336
|
+
DESKTOP: "desktop"
|
|
337
|
+
};
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
static get ANIMATION_DURATION() {
|
|
341
|
+
return (0, _AnimationMode2.getAnimationMode)() !== _AnimationMode.default.None ? 560 : 0;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
onEnterDOM() {
|
|
345
|
+
_ResizeHandler.default.register(this, this._handleResize);
|
|
346
|
+
}
|
|
347
|
+
|
|
348
|
+
onExitDOM() {
|
|
349
|
+
_ResizeHandler.default.deregister(this, this._handleResize);
|
|
350
|
+
|
|
351
|
+
["start", "mid", "end"].forEach(column => {
|
|
352
|
+
this[`${column}ColumnDOM`].removeEventListener("transitionend", this.columnResizeHandler);
|
|
353
|
+
});
|
|
354
|
+
}
|
|
355
|
+
|
|
356
|
+
onAfterRendering() {
|
|
357
|
+
if (this.initialRendering) {
|
|
358
|
+
this.handleInitialRendering();
|
|
359
|
+
return;
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
this.syncLayout();
|
|
363
|
+
}
|
|
364
|
+
|
|
365
|
+
handleInitialRendering() {
|
|
366
|
+
this._prevLayout = this.layout;
|
|
367
|
+
this.updateLayout();
|
|
368
|
+
this.initialRendering = false;
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
handleResize() {
|
|
372
|
+
if (this.initialRendering) {
|
|
373
|
+
return;
|
|
374
|
+
} // store the previous layout
|
|
375
|
+
|
|
376
|
+
|
|
377
|
+
const prevLayoutHash = this.columnLayout.join(); // update the column layout, based on the current width
|
|
378
|
+
|
|
379
|
+
this.updateLayout(); // fire layout-change if the column layout changed
|
|
380
|
+
|
|
381
|
+
if (prevLayoutHash !== this.columnLayout.join()) {
|
|
382
|
+
this.fireLayoutChange(false, true);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
startArrowClick() {
|
|
387
|
+
this.arrowClick({
|
|
388
|
+
start: true,
|
|
389
|
+
end: false
|
|
390
|
+
});
|
|
391
|
+
}
|
|
392
|
+
|
|
393
|
+
endArrowClick() {
|
|
394
|
+
this.arrowClick({
|
|
395
|
+
start: false,
|
|
396
|
+
end: true
|
|
397
|
+
});
|
|
398
|
+
}
|
|
399
|
+
|
|
400
|
+
arrowClick({
|
|
401
|
+
start,
|
|
402
|
+
end
|
|
403
|
+
}) {
|
|
404
|
+
// update public property
|
|
405
|
+
this.layout = this.nextLayout(this.layout, {
|
|
406
|
+
start,
|
|
407
|
+
end
|
|
408
|
+
}); // update layout
|
|
409
|
+
|
|
410
|
+
this.updateLayout(); // fire layout-change
|
|
411
|
+
|
|
412
|
+
this.fireLayoutChange(true, false);
|
|
413
|
+
}
|
|
414
|
+
|
|
415
|
+
updateLayout() {
|
|
416
|
+
this._width = this.widthDOM;
|
|
417
|
+
this._columnLayout = this.nextColumnLayout(this.layout);
|
|
418
|
+
this._visibleColumns = this.calcVisibleColumns(this._columnLayout);
|
|
419
|
+
this.toggleColumns();
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
syncLayout() {
|
|
423
|
+
if (this._prevLayout !== this.layout) {
|
|
424
|
+
this.updateLayout();
|
|
425
|
+
this._prevLayout = this.layout;
|
|
426
|
+
}
|
|
427
|
+
}
|
|
428
|
+
|
|
429
|
+
toggleColumns() {
|
|
430
|
+
this.toggleColumn("start");
|
|
431
|
+
this.toggleColumn("mid");
|
|
432
|
+
this.toggleColumn("end");
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
toggleColumn(column) {
|
|
436
|
+
const columnWidth = this[`${column}ColumnWidth`];
|
|
437
|
+
const columnDOM = this[`${column}ColumnDOM`];
|
|
438
|
+
const currentlyHidden = columnWidth === 0;
|
|
439
|
+
const previouslyHidden = columnDOM.style.width === "0px"; // no change
|
|
440
|
+
|
|
441
|
+
if (currentlyHidden && previouslyHidden) {
|
|
442
|
+
return;
|
|
443
|
+
} // column resizing: from 33% to 67%, from 25% to 50%, etc.
|
|
444
|
+
|
|
445
|
+
|
|
446
|
+
if (!currentlyHidden && !previouslyHidden) {
|
|
447
|
+
columnDOM.style.width = columnWidth;
|
|
448
|
+
return;
|
|
449
|
+
} // hide column: 33% to 0, 25% to 0, etc .
|
|
450
|
+
|
|
451
|
+
|
|
452
|
+
if (currentlyHidden) {
|
|
453
|
+
// animate the width
|
|
454
|
+
columnDOM.style.width = columnWidth; // hide column with delay to allow the animation runs entirely
|
|
455
|
+
|
|
456
|
+
columnDOM.addEventListener("transitionend", this.columnResizeHandler);
|
|
457
|
+
return;
|
|
458
|
+
} // show column: from 0 to 33%, from 0 to 25%, etc.
|
|
459
|
+
|
|
460
|
+
|
|
461
|
+
if (previouslyHidden) {
|
|
462
|
+
columnDOM.removeEventListener("transitionend", this.columnResizeHandler);
|
|
463
|
+
columnDOM.classList.remove("ui5-fcl-column--hidden");
|
|
464
|
+
columnDOM.style.width = columnWidth;
|
|
465
|
+
}
|
|
466
|
+
}
|
|
467
|
+
|
|
468
|
+
columnResizeHandler(event) {
|
|
469
|
+
event.target.classList.add("ui5-fcl-column--hidden");
|
|
470
|
+
}
|
|
471
|
+
|
|
472
|
+
nextLayout(layout, arrowsInfo = {}) {
|
|
473
|
+
if (arrowsInfo.start) {
|
|
474
|
+
return (0, _FCLLayout2.getNextLayoutByStartArrow)()[layout];
|
|
475
|
+
}
|
|
476
|
+
|
|
477
|
+
if (arrowsInfo.end) {
|
|
478
|
+
return (0, _FCLLayout2.getNextLayoutByEndArrow)()[layout];
|
|
479
|
+
}
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
nextColumnLayout(layout) {
|
|
483
|
+
return this._effectiveLayoutsByMedia[this.media][layout].layout;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
calcVisibleColumns(colLayot) {
|
|
487
|
+
return colLayot.filter(col => col !== 0).length;
|
|
488
|
+
}
|
|
489
|
+
|
|
490
|
+
fireLayoutChange(arrowUsed, resize) {
|
|
491
|
+
this.fireEvent("layout-change", {
|
|
492
|
+
layout: this.layout,
|
|
493
|
+
columnLayout: this._columnLayout,
|
|
494
|
+
startColumnVisible: this.startColumnVisible,
|
|
495
|
+
midColumnVisible: this.midColumnVisible,
|
|
496
|
+
endColumnVisible: this.endColumnVisible,
|
|
497
|
+
arrowUsed,
|
|
498
|
+
// for backwards compatibility
|
|
499
|
+
arrowsUsed: arrowUsed,
|
|
500
|
+
// as documented
|
|
501
|
+
resize
|
|
502
|
+
});
|
|
503
|
+
}
|
|
504
|
+
/**
|
|
505
|
+
* Returns the current column layout, based on both the <code>layout</code> property and the screen size.
|
|
506
|
+
* <br><br>
|
|
507
|
+
* <b>For example:</b> ["67%", "33%", 0], ["100%", 0, 0], ["25%", "50%", "25%"], etc,
|
|
508
|
+
* where the numbers represents the width of the start, middle and end columns.
|
|
509
|
+
* @readonly
|
|
510
|
+
* @type { Array }
|
|
511
|
+
* @defaultvalue ["100%", 0, 0]
|
|
512
|
+
* @public
|
|
513
|
+
*/
|
|
514
|
+
|
|
515
|
+
|
|
516
|
+
get columnLayout() {
|
|
517
|
+
return this._columnLayout;
|
|
518
|
+
}
|
|
519
|
+
/**
|
|
520
|
+
* Returns if the <code>start</code> column is visible.
|
|
521
|
+
* @readonly
|
|
522
|
+
* @defaultvalue true
|
|
523
|
+
* @type { boolean }
|
|
524
|
+
* @public
|
|
525
|
+
*/
|
|
526
|
+
|
|
527
|
+
|
|
528
|
+
get startColumnVisible() {
|
|
529
|
+
if (this._columnLayout) {
|
|
530
|
+
return this._columnLayout[0] !== 0;
|
|
531
|
+
}
|
|
532
|
+
|
|
533
|
+
return false;
|
|
534
|
+
}
|
|
535
|
+
/**
|
|
536
|
+
* Returns if the <code>middle</code> column is visible.
|
|
537
|
+
* @readonly
|
|
538
|
+
* @type { boolean }
|
|
539
|
+
* @defaultvalue false
|
|
540
|
+
* @public
|
|
541
|
+
*/
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
get midColumnVisible() {
|
|
545
|
+
if (this._columnLayout) {
|
|
546
|
+
return this._columnLayout[1] !== 0;
|
|
547
|
+
}
|
|
548
|
+
|
|
549
|
+
return false;
|
|
550
|
+
}
|
|
551
|
+
/**
|
|
552
|
+
* Returns if the <code>end</code> column is visible.
|
|
553
|
+
* @readonly
|
|
554
|
+
* @type { boolean }
|
|
555
|
+
* @defaultvalue false
|
|
556
|
+
* @public
|
|
557
|
+
*/
|
|
558
|
+
|
|
559
|
+
|
|
560
|
+
get endColumnVisible() {
|
|
561
|
+
if (this._columnLayout) {
|
|
562
|
+
return this._columnLayout[2] !== 0;
|
|
563
|
+
}
|
|
564
|
+
|
|
565
|
+
return false;
|
|
566
|
+
}
|
|
567
|
+
/**
|
|
568
|
+
* Returns the number of currently visible columns.
|
|
569
|
+
* @readonly
|
|
570
|
+
* @type { Integer }
|
|
571
|
+
* @defaultvalue 1
|
|
572
|
+
* @public
|
|
573
|
+
*/
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
get visibleColumns() {
|
|
577
|
+
return this._visibleColumns;
|
|
578
|
+
}
|
|
579
|
+
|
|
580
|
+
get classes() {
|
|
581
|
+
const hasAnimation = (0, _AnimationMode2.getAnimationMode)() !== _AnimationMode.default.None;
|
|
582
|
+
|
|
583
|
+
return {
|
|
584
|
+
root: {
|
|
585
|
+
"ui5-fcl-root": true
|
|
586
|
+
},
|
|
587
|
+
columns: {
|
|
588
|
+
start: {
|
|
589
|
+
"ui5-fcl-column": true,
|
|
590
|
+
"ui5-fcl-column-animation": hasAnimation,
|
|
591
|
+
"ui5-fcl-column--start": true
|
|
592
|
+
},
|
|
593
|
+
middle: {
|
|
594
|
+
"ui5-fcl-column": true,
|
|
595
|
+
"ui5-fcl-column-animation": hasAnimation,
|
|
596
|
+
"ui5-fcl-column--middle": true
|
|
597
|
+
},
|
|
598
|
+
end: {
|
|
599
|
+
"ui5-fcl-column": true,
|
|
600
|
+
"ui5-fcl-column-animation": hasAnimation,
|
|
601
|
+
"ui5-fcl-column--end": true
|
|
602
|
+
}
|
|
603
|
+
}
|
|
604
|
+
};
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
get styles() {
|
|
608
|
+
return {
|
|
609
|
+
arrowsContainer: {
|
|
610
|
+
start: {
|
|
611
|
+
display: this.showStartSeparator ? "flex" : "none"
|
|
612
|
+
},
|
|
613
|
+
end: {
|
|
614
|
+
display: this.showEndSeparator ? "flex" : "none"
|
|
615
|
+
}
|
|
616
|
+
},
|
|
617
|
+
arrows: {
|
|
618
|
+
start: {
|
|
619
|
+
display: this.showStartArrow ? "inline-block" : "none",
|
|
620
|
+
transform: this.startArrowDirection === "mirror" ? "rotate(180deg)" : ""
|
|
621
|
+
},
|
|
622
|
+
end: {
|
|
623
|
+
display: this.showEndArrow ? "inline-block" : "none",
|
|
624
|
+
transform: this.endArrowDirection === "mirror" ? "rotate(180deg)" : ""
|
|
625
|
+
}
|
|
626
|
+
}
|
|
627
|
+
};
|
|
628
|
+
}
|
|
629
|
+
|
|
630
|
+
get startColumnWidth() {
|
|
631
|
+
return this._columnLayout ? this._columnLayout[0] : "100%";
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
get midColumnWidth() {
|
|
635
|
+
return this._columnLayout ? this._columnLayout[1] : 0;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
get endColumnWidth() {
|
|
639
|
+
return this._columnLayout ? this._columnLayout[2] : 0;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
get showStartSeparator() {
|
|
643
|
+
return this.effectiveArrowsInfo[0].separator || this.startArrowVisibility;
|
|
644
|
+
}
|
|
645
|
+
|
|
646
|
+
get showEndSeparator() {
|
|
647
|
+
return this.effectiveArrowsInfo[1].separator || this.endArrowVisibility;
|
|
648
|
+
}
|
|
649
|
+
|
|
650
|
+
get showStartArrow() {
|
|
651
|
+
return this.hideArrows ? false : this.startArrowVisibility;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
get showEndArrow() {
|
|
655
|
+
return this.hideArrows ? false : this.endArrowVisibility;
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
get startArrowVisibility() {
|
|
659
|
+
return this.effectiveArrowsInfo[0].visible;
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
get endArrowVisibility() {
|
|
663
|
+
return this.effectiveArrowsInfo[1].visible;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
get startArrowDirection() {
|
|
667
|
+
return this.effectiveArrowsInfo[0].dir;
|
|
668
|
+
}
|
|
669
|
+
|
|
670
|
+
get endArrowDirection() {
|
|
671
|
+
return this.effectiveArrowsInfo[1].dir;
|
|
672
|
+
}
|
|
673
|
+
|
|
674
|
+
get effectiveArrowsInfo() {
|
|
675
|
+
return this._effectiveLayoutsByMedia[this.media][this.layout].arrows;
|
|
676
|
+
}
|
|
677
|
+
|
|
678
|
+
get media() {
|
|
679
|
+
if (this._width <= FlexibleColumnLayout.BREAKPOINTS.PHONE) {
|
|
680
|
+
return FlexibleColumnLayout.MEDIA.PHONE;
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
if (this._width <= FlexibleColumnLayout.BREAKPOINTS.TABLET) {
|
|
684
|
+
return FlexibleColumnLayout.MEDIA.TABLET;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
return FlexibleColumnLayout.MEDIA.DESKTOP;
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
get widthDOM() {
|
|
691
|
+
return this.getBoundingClientRect().width;
|
|
692
|
+
}
|
|
693
|
+
|
|
694
|
+
get startColumnDOM() {
|
|
695
|
+
return this.shadowRoot.querySelector(".ui5-fcl-column--start");
|
|
696
|
+
}
|
|
697
|
+
|
|
698
|
+
get midColumnDOM() {
|
|
699
|
+
return this.shadowRoot.querySelector(".ui5-fcl-column--middle");
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
get endColumnDOM() {
|
|
703
|
+
return this.shadowRoot.querySelector(".ui5-fcl-column--end");
|
|
704
|
+
}
|
|
705
|
+
|
|
706
|
+
get accStartColumnText() {
|
|
707
|
+
return this.accessibilityTexts.startColumnAccessibleName || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_TXT);
|
|
708
|
+
}
|
|
709
|
+
|
|
710
|
+
get accMiddleColumnText() {
|
|
711
|
+
return this.accessibilityTexts.midColumnAccessibleName || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_MIDDLE_COLUMN_TXT);
|
|
712
|
+
}
|
|
713
|
+
|
|
714
|
+
get accEndColumnText() {
|
|
715
|
+
return this.accessibilityTexts.endColumnAccessibleName || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_TXT);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
get accStartArrowContainerText() {
|
|
719
|
+
return this.accessibilityTexts.startArrowContainerAccessibleName || undefined;
|
|
720
|
+
}
|
|
721
|
+
|
|
722
|
+
get accEndArrowContainerText() {
|
|
723
|
+
return this.accessibilityTexts.endArrowContainerAccessibleName || undefined;
|
|
724
|
+
}
|
|
725
|
+
|
|
726
|
+
get accStartColumnRole() {
|
|
727
|
+
if (this.startColumnVisible) {
|
|
728
|
+
return this.accessibilityRoles.startColumnRole || "region";
|
|
729
|
+
}
|
|
730
|
+
|
|
731
|
+
return undefined;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
get accMiddleColumnRole() {
|
|
735
|
+
if (this.midColumnVisible) {
|
|
736
|
+
return this.accessibilityRoles.midColumnRole || "region";
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
return undefined;
|
|
740
|
+
}
|
|
741
|
+
|
|
742
|
+
get accEndColumnRole() {
|
|
743
|
+
if (this.endColumnVisible) {
|
|
744
|
+
return this.accessibilityRoles.endColumnRole || "region";
|
|
745
|
+
}
|
|
746
|
+
|
|
747
|
+
return undefined;
|
|
748
|
+
}
|
|
749
|
+
|
|
750
|
+
get accStartArrowContainerRole() {
|
|
751
|
+
return this.accessibilityRoles.startArrowContainerRole || undefined;
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
get accEndArrowContainerRole() {
|
|
755
|
+
return this.accessibilityRoles.endArrowContainerRole || undefined;
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
get _effectiveLayoutsByMedia() {
|
|
759
|
+
return this._layoutsConfiguration || (0, _FCLLayout2.getLayoutsByMedia)();
|
|
760
|
+
}
|
|
761
|
+
|
|
762
|
+
get _accAttributes() {
|
|
763
|
+
return {
|
|
764
|
+
columns: {
|
|
765
|
+
start: {
|
|
766
|
+
role: this.accStartColumnRole,
|
|
767
|
+
ariaHidden: !this.startColumnVisible || undefined
|
|
768
|
+
},
|
|
769
|
+
middle: {
|
|
770
|
+
role: this.accMiddleColumnRole,
|
|
771
|
+
ariaHidden: !this.midColumnVisible || undefined
|
|
772
|
+
},
|
|
773
|
+
end: {
|
|
774
|
+
role: this.accEndColumnRole,
|
|
775
|
+
ariaHidden: !this.endColumnVisible || undefined
|
|
776
|
+
}
|
|
777
|
+
}
|
|
778
|
+
};
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
get accStartArrowText() {
|
|
782
|
+
const customTexts = this.accessibilityTexts;
|
|
783
|
+
|
|
784
|
+
if (this.startArrowDirection === "mirror") {
|
|
785
|
+
return customTexts.startArrowLeftText || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
return customTexts.startArrowRightText || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP);
|
|
789
|
+
}
|
|
790
|
+
|
|
791
|
+
get accEndArrowText() {
|
|
792
|
+
const customTexts = this.accessibilityTexts;
|
|
793
|
+
|
|
794
|
+
if (this.endArrowDirection === "mirror") {
|
|
795
|
+
return customTexts.endArrowRightText || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP);
|
|
796
|
+
}
|
|
797
|
+
|
|
798
|
+
return customTexts.endArrowLeftText || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP);
|
|
799
|
+
}
|
|
800
|
+
|
|
801
|
+
}
|
|
802
|
+
|
|
803
|
+
FlexibleColumnLayout.define();
|
|
804
|
+
var _default = FlexibleColumnLayout;
|
|
805
|
+
_exports.default = _default;
|
|
806
|
+
});
|