@openui5/sap.ui.webc.fiori 1.115.1 → 1.117.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +0 -5
- package/THIRDPARTY.txt +1 -7
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +1 -1
- package/src/sap/ui/webc/fiori/Bar.js +1 -1
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +1 -1
- package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItem.js +9 -1
- package/src/sap/ui/webc/fiori/FilterItemOption.js +2 -2
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +3 -3
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +27 -1
- package/src/sap/ui/webc/fiori/MediaGallery.js +2 -2
- package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationAction.js +17 -1
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +9 -2
- package/src/sap/ui/webc/fiori/NotificationListItem.js +10 -3
- package/src/sap/ui/webc/fiori/Page.js +2 -2
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -3
- package/src/sap/ui/webc/fiori/ShellBar.js +49 -1
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +11 -2
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +10 -1
- package/src/sap/ui/webc/fiori/SortItem.js +1 -1
- package/src/sap/ui/webc/fiori/Timeline.js +2 -2
- package/src/sap/ui/webc/fiori/TimelineItem.js +1 -1
- package/src/sap/ui/webc/fiori/UploadCollection.js +2 -2
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +5 -5
- package/src/sap/ui/webc/fiori/Wizard.js +23 -4
- package/src/sap/ui/webc/fiori/WizardStep.js +1 -1
- package/src/sap/ui/webc/fiori/illustrations/AddDimensions.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/AllIllustrations.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/NoColumnsSet.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/NoDimensionsSet.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/Survey.js +9 -0
- package/src/sap/ui/webc/fiori/illustrations/UploadToCloud.js +9 -0
- package/src/sap/ui/webc/fiori/library.js +97 -17
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +47 -97
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +86 -105
- package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +93 -225
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +19 -52
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +19 -43
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +196 -333
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +126 -267
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +28 -41
- package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +105 -236
- package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +76 -164
- package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +51 -77
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +53 -90
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +72 -146
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +67 -139
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +42 -126
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +45 -65
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +61 -146
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +288 -418
- package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +41 -67
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +127 -141
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +52 -100
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +30 -62
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +19 -42
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +53 -96
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +63 -135
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +111 -207
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +153 -268
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +154 -244
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +165 -236
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +27 -117
- package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +53 -137
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/DynamicSideContent.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGallery.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/MediaGalleryItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationOverflowActionsPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBarPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigationPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_dark/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_exp/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcb/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon_hcw/parameters-bundle.css +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +25 -55
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +104 -29
- package/src/sap/ui/webc/fiori/thirdparty/generated/js-imports/Illustrations.js +202 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +9 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +28 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +12 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +21 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -9
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +30 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -9
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +73 -24
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationPopoverTemplate.lit.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +30 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +21 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +51 -15
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +48 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +6 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +15 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +9 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +5 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +3 -2
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddDimensions.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AllIllustrations.js +3 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoColumnsSet.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoDimensionsSet.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Survey.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadToCloud.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddDimensions.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoColumnsSet.js +45 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoDimensionsSet.js +49 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Survey.js +32 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadToCloud.js +40 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddDimensions.js +44 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoColumnsSet.js +46 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoDimensionsSet.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Survey.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadToCloud.js +34 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddDimensions.js +48 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoColumnsSet.js +46 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoDimensionsSet.js +52 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Survey.js +42 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadToCloud.js +40 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +14 -26
- package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +42 -56
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +19 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +128 -110
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +13 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +13 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +14 -26
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +12 -24
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +15 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +12 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +11 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +13 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +12 -25
- package/src/sap/ui/webc/fiori/thirdparty/types/WizardContentLayout.js +34 -0
- package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +2 -2
- package/ui5.yaml +10 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +0 -14
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/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) {
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/common/thirdparty/base/decorators/customElement", "sap/ui/webc/common/thirdparty/base/decorators/property", "sap/ui/webc/common/thirdparty/base/decorators/slot", "sap/ui/webc/common/thirdparty/base/decorators/event", "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, _customElement, _property, _slot, _event, _LitRenderer, _ResizeHandler, _Float, _Integer, _i18nBundle, _AnimationMode, _AnimationMode2, _Button, _slimArrowLeft, _slimArrowRight, _FCLLayout, _FCLLayout2, _i18nDefaults, _FlexibleColumnLayoutTemplate, _FlexibleColumnLayout) {
|
|
2
2
|
"use strict";
|
|
3
3
|
|
|
4
4
|
Object.defineProperty(_exports, "__esModule", {
|
|
@@ -6,6 +6,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
6
6
|
});
|
|
7
7
|
_exports.default = void 0;
|
|
8
8
|
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
9
|
+
_customElement = _interopRequireDefault(_customElement);
|
|
10
|
+
_property = _interopRequireDefault(_property);
|
|
11
|
+
_slot = _interopRequireDefault(_slot);
|
|
12
|
+
_event = _interopRequireDefault(_event);
|
|
9
13
|
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
10
14
|
_ResizeHandler = _interopRequireDefault(_ResizeHandler);
|
|
11
15
|
_Float = _interopRequireDefault(_Float);
|
|
@@ -16,217 +20,25 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
16
20
|
_FlexibleColumnLayoutTemplate = _interopRequireDefault(_FlexibleColumnLayoutTemplate);
|
|
17
21
|
_FlexibleColumnLayout = _interopRequireDefault(_FlexibleColumnLayout);
|
|
18
22
|
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
/**
|
|
26
|
-
* @public
|
|
27
|
-
*/
|
|
28
|
-
const metadata = {
|
|
29
|
-
tag: "ui5-flexible-column-layout",
|
|
30
|
-
fastNavigation: true,
|
|
31
|
-
properties: /** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */{
|
|
32
|
-
/**
|
|
33
|
-
* Defines the columns layout and their proportion.
|
|
34
|
-
* <br><br>
|
|
35
|
-
* <b>Note:</b> The layout also depends on the screen size - one column for screens smaller than 599px,
|
|
36
|
-
* two columns between 599px and 1023px and three columns for sizes bigger than 1023px.
|
|
37
|
-
* <br><br>
|
|
38
|
-
* Available options are:
|
|
39
|
-
* <ul>
|
|
40
|
-
* <li><code>OneColumn</code></li>
|
|
41
|
-
* <li><code>TwoColumnsStartExpanded</code></li>
|
|
42
|
-
* <li><code>TwoColumnsMidExpanded</code></li>
|
|
43
|
-
* <li><code>ThreeColumnsMidExpanded</code></li>
|
|
44
|
-
* <li><code>ThreeColumnsEndExpanded</code></li>
|
|
45
|
-
* <li><code>ThreeColumnsStartExpandedEndHidden</code></li>
|
|
46
|
-
* <li><code>ThreeColumnsMidExpandedEndHidden</code></li>
|
|
47
|
-
* <li><code>MidColumnFullScreen</code></li>
|
|
48
|
-
* <li><code>EndColumnFullScreen</code></li>
|
|
49
|
-
* </ul>
|
|
50
|
-
* <br><br>
|
|
51
|
-
* <b>For example:</b> layout=<code>TwoColumnsStartExpanded</code> means the layout will display up to two columns
|
|
52
|
-
* in 67%/33% proportion.
|
|
53
|
-
* @type {FCLLayout}
|
|
54
|
-
* @defaultvalue "OneColumn"
|
|
55
|
-
* @public
|
|
56
|
-
*/
|
|
57
|
-
layout: {
|
|
58
|
-
type: _FCLLayout.default,
|
|
59
|
-
defaultValue: _FCLLayout.default.OneColumn
|
|
60
|
-
},
|
|
61
|
-
/**
|
|
62
|
-
* Defines the visibility of the arrows,
|
|
63
|
-
* used for expanding and shrinking the columns.
|
|
64
|
-
*
|
|
65
|
-
* @type {boolean}
|
|
66
|
-
* @defaultvalue false
|
|
67
|
-
* @public
|
|
68
|
-
* @since 1.0.0-rc.15
|
|
69
|
-
*/
|
|
70
|
-
hideArrows: {
|
|
71
|
-
type: Boolean
|
|
72
|
-
},
|
|
73
|
-
/**
|
|
74
|
-
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
75
|
-
*
|
|
76
|
-
* It supports the following fields:
|
|
77
|
-
* - <code>startColumnAccessibleName</code>: the accessibility name for the <code>startColumn</code> region
|
|
78
|
-
* - <code>midColumnAccessibleName</code>: the accessibility name for the <code>midColumn</code> region
|
|
79
|
-
* - <code>endColumnAccessibleName</code>: the accessibility name for the <code>endColumn</code> region
|
|
80
|
-
* - <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
|
|
81
|
-
* - <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
|
|
82
|
-
* - <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
|
|
83
|
-
* - <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
|
|
84
|
-
* - <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>
|
|
85
|
-
* - <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>
|
|
86
|
-
*
|
|
87
|
-
* @type {object}
|
|
88
|
-
* @public
|
|
89
|
-
* @since 1.0.0-rc.11
|
|
90
|
-
*/
|
|
91
|
-
accessibilityTexts: {
|
|
92
|
-
type: Object
|
|
93
|
-
},
|
|
94
|
-
/**
|
|
95
|
-
* An object of strings that defines additional accessibility roles for further customization.
|
|
96
|
-
*
|
|
97
|
-
* It supports the following fields:
|
|
98
|
-
* - <code>startColumnRole</code>: the accessibility role for the <code>startColumn</code>
|
|
99
|
-
* - <code>startArrowContainerRole</code>: the accessibility role for the first arrow container (between the <code>begin</code> and <code>mid</code> columns)
|
|
100
|
-
* - <code>midColumnRole</code>: the accessibility role for the <code>midColumn</code>
|
|
101
|
-
* - <code>endArrowContainerRole</code>: the accessibility role for the second arrow container (between the <code>mid</code> and <code>end</code> columns)
|
|
102
|
-
* - <code>endColumnRole</code>: the accessibility role for the <code>endColumn</code>
|
|
103
|
-
*
|
|
104
|
-
* @type {object}
|
|
105
|
-
* @public
|
|
106
|
-
* @since 1.1.0
|
|
107
|
-
*/
|
|
108
|
-
accessibilityRoles: {
|
|
109
|
-
type: Object
|
|
110
|
-
},
|
|
111
|
-
/**
|
|
112
|
-
* Defines the component width in px.
|
|
113
|
-
*
|
|
114
|
-
* @type {Float}
|
|
115
|
-
* @defaultvalue 0
|
|
116
|
-
* @private
|
|
117
|
-
*/
|
|
118
|
-
_width: {
|
|
119
|
-
type: _Float.default,
|
|
120
|
-
defaultValue: 0
|
|
121
|
-
},
|
|
122
|
-
/**
|
|
123
|
-
* Defines the effective columns layout,
|
|
124
|
-
* based on both the <code>layout</code> property and the screen size.
|
|
125
|
-
* Example: [67%, 33%, 0], [25%, 50%, 25%], etc.
|
|
126
|
-
*
|
|
127
|
-
* @type {Object}
|
|
128
|
-
* @defaultvalue undefined
|
|
129
|
-
* @private
|
|
130
|
-
*/
|
|
131
|
-
_columnLayout: {
|
|
132
|
-
type: Object,
|
|
133
|
-
defaultValue: undefined
|
|
134
|
-
},
|
|
135
|
-
/**
|
|
136
|
-
* Defines the visible columns count - 1, 2 or 3.
|
|
137
|
-
*
|
|
138
|
-
* @type {Integer}
|
|
139
|
-
* @defaultvalue 1
|
|
140
|
-
* @private
|
|
141
|
-
*/
|
|
142
|
-
_visibleColumns: {
|
|
143
|
-
type: _Integer.default,
|
|
144
|
-
defaultValue: 0
|
|
145
|
-
},
|
|
146
|
-
/**
|
|
147
|
-
* Allows the user to replace the whole layouts configuration
|
|
148
|
-
*
|
|
149
|
-
* @type {Object}
|
|
150
|
-
* @private
|
|
151
|
-
* @sap-restricted
|
|
152
|
-
*/
|
|
153
|
-
_layoutsConfiguration: {
|
|
154
|
-
type: Object,
|
|
155
|
-
defaultValue: undefined
|
|
156
|
-
}
|
|
157
|
-
},
|
|
158
|
-
slots: /** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */{
|
|
159
|
-
/**
|
|
160
|
-
* Defines the content in the start column.
|
|
161
|
-
* @type {HTMLElement}
|
|
162
|
-
* @slot
|
|
163
|
-
* @public
|
|
164
|
-
*/
|
|
165
|
-
startColumn: {
|
|
166
|
-
type: HTMLElement
|
|
167
|
-
},
|
|
168
|
-
/**
|
|
169
|
-
* Defines the content in the middle column.
|
|
170
|
-
* @type {HTMLElement}
|
|
171
|
-
* @slot
|
|
172
|
-
* @public
|
|
173
|
-
*/
|
|
174
|
-
midColumn: {
|
|
175
|
-
type: HTMLElement
|
|
176
|
-
},
|
|
177
|
-
/**
|
|
178
|
-
* Defines the content in the end column.
|
|
179
|
-
* @type {HTMLElement}
|
|
180
|
-
* @slot
|
|
181
|
-
* @public
|
|
182
|
-
*/
|
|
183
|
-
endColumn: {
|
|
184
|
-
type: HTMLElement
|
|
185
|
-
}
|
|
186
|
-
},
|
|
187
|
-
events: /** @lends sap.ui.webcomponents.fiori.FlexibleColumnLayout.prototype */{
|
|
188
|
-
/**
|
|
189
|
-
* Fired when the layout changes via user interaction by clicking the arrows
|
|
190
|
-
* or by changing the component size due to resizing.
|
|
191
|
-
*
|
|
192
|
-
* @param {FCLLayout} layout The current layout
|
|
193
|
-
* @param {Array} columnLayout The effective column layout, f.e [67%, 33%, 0]
|
|
194
|
-
* @param {boolean} startColumnVisible Indicates if the start column is currently visible
|
|
195
|
-
* @param {boolean} midColumnVisible Indicates if the middle column is currently visible
|
|
196
|
-
* @param {boolean} endColumnVisible Indicates if the end column is currently visible
|
|
197
|
-
* @param {boolean} arrowsUsed Indicates if the layout is changed via the arrows
|
|
198
|
-
* @param {boolean} resize Indicates if the layout is changed via resizing
|
|
199
|
-
* @event sap.ui.webcomponents.fiori.FlexibleColumnLayout#layout-change
|
|
200
|
-
* @public
|
|
201
|
-
*/
|
|
202
|
-
"layout-change": {
|
|
203
|
-
detail: {
|
|
204
|
-
layout: {
|
|
205
|
-
type: _FCLLayout.default
|
|
206
|
-
},
|
|
207
|
-
columnLayout: {
|
|
208
|
-
type: Array
|
|
209
|
-
},
|
|
210
|
-
startColumnVisible: {
|
|
211
|
-
type: Boolean
|
|
212
|
-
},
|
|
213
|
-
midColumnVisible: {
|
|
214
|
-
type: Boolean
|
|
215
|
-
},
|
|
216
|
-
endColumnVisible: {
|
|
217
|
-
type: Boolean
|
|
218
|
-
},
|
|
219
|
-
arrowsUsed: {
|
|
220
|
-
type: Boolean
|
|
221
|
-
},
|
|
222
|
-
resize: {
|
|
223
|
-
type: Boolean
|
|
224
|
-
}
|
|
225
|
-
}
|
|
226
|
-
}
|
|
227
|
-
}
|
|
23
|
+
var __decorate = void 0 && (void 0).__decorate || function (decorators, target, key, desc) {
|
|
24
|
+
var c = arguments.length,
|
|
25
|
+
r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc,
|
|
26
|
+
d;
|
|
27
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
28
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
228
29
|
};
|
|
229
|
-
|
|
30
|
+
var FlexibleColumnLayout_1;
|
|
31
|
+
var MEDIA;
|
|
32
|
+
(function (MEDIA) {
|
|
33
|
+
MEDIA["PHONE"] = "phone";
|
|
34
|
+
MEDIA["TABLET"] = "tablet";
|
|
35
|
+
MEDIA["DESKTOP"] = "desktop";
|
|
36
|
+
})(MEDIA || (MEDIA = {}));
|
|
37
|
+
var BREAKPOINTS;
|
|
38
|
+
(function (BREAKPOINTS) {
|
|
39
|
+
BREAKPOINTS[BREAKPOINTS["PHONE"] = 599] = "PHONE";
|
|
40
|
+
BREAKPOINTS[BREAKPOINTS["TABLET"] = 1023] = "TABLET";
|
|
41
|
+
})(BREAKPOINTS || (BREAKPOINTS = {}));
|
|
230
42
|
/**
|
|
231
43
|
* @class
|
|
232
44
|
*
|
|
@@ -269,61 +81,33 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
269
81
|
*
|
|
270
82
|
* @constructor
|
|
271
83
|
* @author SAP SE
|
|
272
|
-
* @alias sap.ui.
|
|
273
|
-
* @extends UI5Element
|
|
84
|
+
* @alias sap.ui.webc.fiori.FlexibleColumnLayout
|
|
85
|
+
* @extends sap.ui.webc.base.UI5Element
|
|
274
86
|
* @tagname ui5-flexible-column-layout
|
|
275
87
|
* @public
|
|
276
88
|
* @since 1.0.0-rc.8
|
|
277
89
|
*/
|
|
278
|
-
class FlexibleColumnLayout extends _UI5Element.default {
|
|
90
|
+
let FlexibleColumnLayout = FlexibleColumnLayout_1 = class FlexibleColumnLayout extends _UI5Element.default {
|
|
279
91
|
constructor() {
|
|
280
92
|
super();
|
|
93
|
+
this.columnResizeHandler = e => {
|
|
94
|
+
e.target.classList.add("ui5-fcl-column--hidden");
|
|
95
|
+
};
|
|
281
96
|
this._prevLayout = null;
|
|
282
97
|
this.initialRendering = true;
|
|
283
98
|
this._handleResize = this.handleResize.bind(this);
|
|
284
99
|
}
|
|
285
|
-
static get metadata() {
|
|
286
|
-
return metadata;
|
|
287
|
-
}
|
|
288
|
-
static get render() {
|
|
289
|
-
return _LitRenderer.default;
|
|
290
|
-
}
|
|
291
|
-
static get styles() {
|
|
292
|
-
return _FlexibleColumnLayout.default;
|
|
293
|
-
}
|
|
294
|
-
static get template() {
|
|
295
|
-
return _FlexibleColumnLayoutTemplate.default;
|
|
296
|
-
}
|
|
297
|
-
static get dependencies() {
|
|
298
|
-
return [_Button.default];
|
|
299
|
-
}
|
|
300
100
|
static async onDefine() {
|
|
301
|
-
|
|
302
|
-
}
|
|
303
|
-
static get BREAKPOINTS() {
|
|
304
|
-
return {
|
|
305
|
-
"PHONE": 599,
|
|
306
|
-
"TABLET": 1023
|
|
307
|
-
};
|
|
308
|
-
}
|
|
309
|
-
static get MEDIA() {
|
|
310
|
-
return {
|
|
311
|
-
PHONE: "phone",
|
|
312
|
-
TABLET: "tablet",
|
|
313
|
-
DESKTOP: "desktop"
|
|
314
|
-
};
|
|
101
|
+
FlexibleColumnLayout_1.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
315
102
|
}
|
|
316
103
|
static get ANIMATION_DURATION() {
|
|
317
104
|
return (0, _AnimationMode2.getAnimationMode)() !== _AnimationMode.default.None ? 560 : 0;
|
|
318
105
|
}
|
|
319
106
|
onEnterDOM() {
|
|
320
|
-
_ResizeHandler.default.register(this, this._handleResize);
|
|
107
|
+
_ResizeHandler.default.register(this, this._handleResize.bind(this));
|
|
321
108
|
}
|
|
322
109
|
onExitDOM() {
|
|
323
110
|
_ResizeHandler.default.deregister(this, this._handleResize);
|
|
324
|
-
["start", "mid", "end"].forEach(column => {
|
|
325
|
-
this[`${column}ColumnDOM`].removeEventListener("transitionend", this.columnResizeHandler);
|
|
326
|
-
});
|
|
327
111
|
}
|
|
328
112
|
onAfterRendering() {
|
|
329
113
|
if (this.initialRendering) {
|
|
@@ -341,13 +125,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
341
125
|
if (this.initialRendering) {
|
|
342
126
|
return;
|
|
343
127
|
}
|
|
344
|
-
|
|
345
128
|
// store the previous layout
|
|
346
129
|
const prevLayoutHash = this.columnLayout.join();
|
|
347
|
-
|
|
348
130
|
// update the column layout, based on the current width
|
|
349
131
|
this.updateLayout();
|
|
350
|
-
|
|
351
132
|
// fire layout-change if the column layout changed
|
|
352
133
|
if (prevLayoutHash !== this.columnLayout.join()) {
|
|
353
134
|
this.fireLayoutChange(false, true);
|
|
@@ -365,19 +146,14 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
365
146
|
end: true
|
|
366
147
|
});
|
|
367
148
|
}
|
|
368
|
-
arrowClick({
|
|
369
|
-
start,
|
|
370
|
-
end
|
|
371
|
-
}) {
|
|
149
|
+
arrowClick(options) {
|
|
372
150
|
// update public property
|
|
373
151
|
this.layout = this.nextLayout(this.layout, {
|
|
374
|
-
start,
|
|
375
|
-
end
|
|
152
|
+
start: options.start,
|
|
153
|
+
end: options.end
|
|
376
154
|
});
|
|
377
|
-
|
|
378
155
|
// update layout
|
|
379
156
|
this.updateLayout();
|
|
380
|
-
|
|
381
157
|
// fire layout-change
|
|
382
158
|
this.fireLayoutChange(true, false);
|
|
383
159
|
}
|
|
@@ -399,43 +175,48 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
399
175
|
this.toggleColumn("end");
|
|
400
176
|
}
|
|
401
177
|
toggleColumn(column) {
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
178
|
+
let columnWidth;
|
|
179
|
+
let columnDOM;
|
|
180
|
+
if (column === "start") {
|
|
181
|
+
columnWidth = this.startColumnWidth;
|
|
182
|
+
columnDOM = this.startColumnDOM;
|
|
183
|
+
} else if (column === "mid") {
|
|
184
|
+
columnWidth = this.midColumnWidth;
|
|
185
|
+
columnDOM = this.midColumnDOM;
|
|
186
|
+
} else {
|
|
187
|
+
columnWidth = this.endColumnWidth;
|
|
188
|
+
columnDOM = this.endColumnDOM;
|
|
189
|
+
}
|
|
190
|
+
const currentlyHidden = this._isColumnHidden(columnWidth);
|
|
191
|
+
const previouslyHidden = this._isColumnHidden(columnDOM.style.width);
|
|
407
192
|
// no change
|
|
408
193
|
if (currentlyHidden && previouslyHidden) {
|
|
409
194
|
return;
|
|
410
195
|
}
|
|
411
|
-
|
|
412
196
|
// column resizing: from 33% to 67%, from 25% to 50%, etc.
|
|
413
197
|
if (!currentlyHidden && !previouslyHidden) {
|
|
414
|
-
columnDOM.style.width = columnWidth;
|
|
198
|
+
columnDOM.style.width = typeof columnWidth === "number" ? `${columnWidth}px` : columnWidth;
|
|
415
199
|
return;
|
|
416
200
|
}
|
|
417
|
-
|
|
418
201
|
// hide column: 33% to 0, 25% to 0, etc .
|
|
419
202
|
if (currentlyHidden) {
|
|
420
203
|
// animate the width
|
|
421
|
-
columnDOM.style.width = columnWidth;
|
|
422
|
-
|
|
204
|
+
columnDOM.style.width = typeof columnWidth === "number" ? `${columnWidth}px` : columnWidth;
|
|
423
205
|
// hide column with delay to allow the animation runs entirely
|
|
424
206
|
columnDOM.addEventListener("transitionend", this.columnResizeHandler);
|
|
425
207
|
return;
|
|
426
208
|
}
|
|
427
|
-
|
|
428
209
|
// show column: from 0 to 33%, from 0 to 25%, etc.
|
|
429
210
|
if (previouslyHidden) {
|
|
430
211
|
columnDOM.removeEventListener("transitionend", this.columnResizeHandler);
|
|
431
212
|
columnDOM.classList.remove("ui5-fcl-column--hidden");
|
|
432
|
-
columnDOM.style.width = columnWidth;
|
|
213
|
+
columnDOM.style.width = typeof columnWidth === "number" ? `${columnWidth}px` : columnWidth;
|
|
433
214
|
}
|
|
434
215
|
}
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
216
|
+
nextLayout(layout, arrowsInfo) {
|
|
217
|
+
if (!arrowsInfo) {
|
|
218
|
+
return;
|
|
219
|
+
}
|
|
439
220
|
if (arrowsInfo.start) {
|
|
440
221
|
return (0, _FCLLayout2.getNextLayoutByStartArrow)()[layout];
|
|
441
222
|
}
|
|
@@ -446,8 +227,8 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
446
227
|
nextColumnLayout(layout) {
|
|
447
228
|
return this._effectiveLayoutsByMedia[this.media][layout].layout;
|
|
448
229
|
}
|
|
449
|
-
calcVisibleColumns(
|
|
450
|
-
return
|
|
230
|
+
calcVisibleColumns(colLayout) {
|
|
231
|
+
return colLayout.filter(colWidth => !this._isColumnHidden(colWidth)).length;
|
|
451
232
|
}
|
|
452
233
|
fireLayoutChange(arrowUsed, resize) {
|
|
453
234
|
this.fireEvent("layout-change", {
|
|
@@ -457,76 +238,80 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
457
238
|
midColumnVisible: this.midColumnVisible,
|
|
458
239
|
endColumnVisible: this.endColumnVisible,
|
|
459
240
|
arrowUsed,
|
|
460
|
-
// for backwards compatibility
|
|
461
241
|
arrowsUsed: arrowUsed,
|
|
462
|
-
// as documented
|
|
463
242
|
resize
|
|
464
243
|
});
|
|
465
244
|
}
|
|
466
|
-
|
|
467
245
|
/**
|
|
468
|
-
*
|
|
469
|
-
* <br><br>
|
|
470
|
-
* <b>For example:</b> ["67%", "33%", 0], ["100%", 0, 0], ["25%", "50%", "25%"], etc,
|
|
471
|
-
* where the numbers represents the width of the start, middle and end columns.
|
|
472
|
-
* @readonly
|
|
473
|
-
* @type { Array }
|
|
474
|
-
* @defaultvalue ["100%", 0, 0]
|
|
475
|
-
* @public
|
|
246
|
+
* Checks if a column is hidden based on its width.
|
|
476
247
|
*/
|
|
248
|
+
_isColumnHidden(columnWidth) {
|
|
249
|
+
return columnWidth === 0 || columnWidth === "0px";
|
|
250
|
+
}
|
|
251
|
+
/**
|
|
252
|
+
* Returns the current column layout, based on both the <code>layout</code> property and the screen size.
|
|
253
|
+
* <br><br>
|
|
254
|
+
* <b>For example:</b> ["67%", "33%", 0], ["100%", 0, 0], ["25%", "50%", "25%"], etc,
|
|
255
|
+
* where the numbers represents the width of the start, middle and end columns.
|
|
256
|
+
* @readonly
|
|
257
|
+
* @type {array}
|
|
258
|
+
* @defaultvalue ["100%", 0, 0]
|
|
259
|
+
* @name sap.ui.webc.fiori.FlexibleColumnLayout.prototype.columnLayout
|
|
260
|
+
* @public
|
|
261
|
+
*/
|
|
477
262
|
get columnLayout() {
|
|
478
263
|
return this._columnLayout;
|
|
479
264
|
}
|
|
480
|
-
|
|
481
265
|
/**
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
266
|
+
* Returns if the <code>start</code> column is visible.
|
|
267
|
+
* @readonly
|
|
268
|
+
* @defaultvalue true
|
|
269
|
+
* @type {boolean}
|
|
270
|
+
* @name sap.ui.webc.fiori.FlexibleColumnLayout.prototype.startColumnVisible
|
|
271
|
+
* @public
|
|
272
|
+
*/
|
|
488
273
|
get startColumnVisible() {
|
|
489
274
|
if (this._columnLayout) {
|
|
490
|
-
return this._columnLayout[0]
|
|
275
|
+
return !this._isColumnHidden(this._columnLayout[0]);
|
|
491
276
|
}
|
|
492
277
|
return false;
|
|
493
278
|
}
|
|
494
|
-
|
|
495
279
|
/**
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
280
|
+
* Returns if the <code>middle</code> column is visible.
|
|
281
|
+
* @readonly
|
|
282
|
+
* @type {boolean}
|
|
283
|
+
* @defaultvalue false
|
|
284
|
+
* @name sap.ui.webc.fiori.FlexibleColumnLayout.prototype.midColumnVisible
|
|
285
|
+
* @public
|
|
286
|
+
*/
|
|
502
287
|
get midColumnVisible() {
|
|
503
288
|
if (this._columnLayout) {
|
|
504
|
-
return this._columnLayout[1]
|
|
289
|
+
return !this._isColumnHidden(this._columnLayout[1]);
|
|
505
290
|
}
|
|
506
291
|
return false;
|
|
507
292
|
}
|
|
508
|
-
|
|
509
293
|
/**
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
294
|
+
* Returns if the <code>end</code> column is visible.
|
|
295
|
+
* @readonly
|
|
296
|
+
* @type {boolean}
|
|
297
|
+
* @defaultvalue false
|
|
298
|
+
* @name sap.ui.webc.fiori.FlexibleColumnLayout.prototype.endColumnVisible
|
|
299
|
+
* @public
|
|
300
|
+
*/
|
|
516
301
|
get endColumnVisible() {
|
|
517
302
|
if (this._columnLayout) {
|
|
518
|
-
return this._columnLayout[2]
|
|
303
|
+
return !this._isColumnHidden(this._columnLayout[2]);
|
|
519
304
|
}
|
|
520
305
|
return false;
|
|
521
306
|
}
|
|
522
|
-
|
|
523
307
|
/**
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
308
|
+
* Returns the number of currently visible columns.
|
|
309
|
+
* @readonly
|
|
310
|
+
* @type {sap.ui.webc.base.types.Integer}
|
|
311
|
+
* @defaultvalue 1
|
|
312
|
+
* @name sap.ui.webc.fiori.FlexibleColumnLayout.prototype.visibleColumns
|
|
313
|
+
* @public
|
|
314
|
+
*/
|
|
530
315
|
get visibleColumns() {
|
|
531
316
|
return this._visibleColumns;
|
|
532
317
|
}
|
|
@@ -581,10 +366,10 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
581
366
|
return this._columnLayout ? this._columnLayout[0] : "100%";
|
|
582
367
|
}
|
|
583
368
|
get midColumnWidth() {
|
|
584
|
-
return this._columnLayout ? this._columnLayout[1] :
|
|
369
|
+
return this._columnLayout ? this._columnLayout[1] : "0px";
|
|
585
370
|
}
|
|
586
371
|
get endColumnWidth() {
|
|
587
|
-
return this._columnLayout ? this._columnLayout[2] :
|
|
372
|
+
return this._columnLayout ? this._columnLayout[2] : "0px";
|
|
588
373
|
}
|
|
589
374
|
get showStartSeparator() {
|
|
590
375
|
return this.effectiveArrowsInfo[0].separator || this.startArrowVisibility;
|
|
@@ -614,13 +399,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
614
399
|
return this._effectiveLayoutsByMedia[this.media][this.layout].arrows;
|
|
615
400
|
}
|
|
616
401
|
get media() {
|
|
617
|
-
if (this._width <=
|
|
618
|
-
return
|
|
402
|
+
if (this._width <= BREAKPOINTS.PHONE) {
|
|
403
|
+
return MEDIA.PHONE;
|
|
619
404
|
}
|
|
620
|
-
if (this._width <=
|
|
621
|
-
return
|
|
405
|
+
if (this._width <= BREAKPOINTS.TABLET) {
|
|
406
|
+
return MEDIA.TABLET;
|
|
622
407
|
}
|
|
623
|
-
return
|
|
408
|
+
return MEDIA.DESKTOP;
|
|
624
409
|
}
|
|
625
410
|
get widthDOM() {
|
|
626
411
|
return this.getBoundingClientRect().width;
|
|
@@ -635,13 +420,13 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
635
420
|
return this.shadowRoot.querySelector(".ui5-fcl-column--end");
|
|
636
421
|
}
|
|
637
422
|
get accStartColumnText() {
|
|
638
|
-
return this.accessibilityTexts.startColumnAccessibleName ||
|
|
423
|
+
return this.accessibilityTexts.startColumnAccessibleName || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_TXT);
|
|
639
424
|
}
|
|
640
425
|
get accMiddleColumnText() {
|
|
641
|
-
return this.accessibilityTexts.midColumnAccessibleName ||
|
|
426
|
+
return this.accessibilityTexts.midColumnAccessibleName || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_MIDDLE_COLUMN_TXT);
|
|
642
427
|
}
|
|
643
428
|
get accEndColumnText() {
|
|
644
|
-
return this.accessibilityTexts.endColumnAccessibleName ||
|
|
429
|
+
return this.accessibilityTexts.endColumnAccessibleName || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_TXT);
|
|
645
430
|
}
|
|
646
431
|
get accStartArrowContainerText() {
|
|
647
432
|
return this.accessibilityTexts.startArrowContainerAccessibleName || undefined;
|
|
@@ -697,18 +482,96 @@ sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/
|
|
|
697
482
|
get accStartArrowText() {
|
|
698
483
|
const customTexts = this.accessibilityTexts;
|
|
699
484
|
if (this.startArrowDirection === "mirror") {
|
|
700
|
-
return customTexts.startArrowLeftText ||
|
|
485
|
+
return customTexts.startArrowLeftText || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP);
|
|
701
486
|
}
|
|
702
|
-
return customTexts.startArrowRightText ||
|
|
487
|
+
return customTexts.startArrowRightText || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP);
|
|
703
488
|
}
|
|
704
489
|
get accEndArrowText() {
|
|
705
490
|
const customTexts = this.accessibilityTexts;
|
|
706
491
|
if (this.endArrowDirection === "mirror") {
|
|
707
|
-
return customTexts.endArrowRightText ||
|
|
492
|
+
return customTexts.endArrowRightText || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP);
|
|
493
|
+
}
|
|
494
|
+
return customTexts.endArrowLeftText || FlexibleColumnLayout_1.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP);
|
|
495
|
+
}
|
|
496
|
+
};
|
|
497
|
+
__decorate([(0, _property.default)({
|
|
498
|
+
type: _FCLLayout.default,
|
|
499
|
+
defaultValue: _FCLLayout.default.OneColumn
|
|
500
|
+
})], FlexibleColumnLayout.prototype, "layout", void 0);
|
|
501
|
+
__decorate([(0, _property.default)({
|
|
502
|
+
type: Boolean
|
|
503
|
+
})], FlexibleColumnLayout.prototype, "hideArrows", void 0);
|
|
504
|
+
__decorate([(0, _property.default)({
|
|
505
|
+
type: Object
|
|
506
|
+
})], FlexibleColumnLayout.prototype, "accessibilityTexts", void 0);
|
|
507
|
+
__decorate([(0, _property.default)({
|
|
508
|
+
type: Object
|
|
509
|
+
})], FlexibleColumnLayout.prototype, "accessibilityRoles", void 0);
|
|
510
|
+
__decorate([(0, _property.default)({
|
|
511
|
+
validator: _Float.default,
|
|
512
|
+
defaultValue: 0
|
|
513
|
+
})], FlexibleColumnLayout.prototype, "_width", void 0);
|
|
514
|
+
__decorate([(0, _property.default)({
|
|
515
|
+
type: Object,
|
|
516
|
+
defaultValue: undefined
|
|
517
|
+
})], FlexibleColumnLayout.prototype, "_columnLayout", void 0);
|
|
518
|
+
__decorate([(0, _property.default)({
|
|
519
|
+
validator: _Integer.default,
|
|
520
|
+
defaultValue: 0
|
|
521
|
+
})], FlexibleColumnLayout.prototype, "_visibleColumns", void 0);
|
|
522
|
+
__decorate([(0, _property.default)({
|
|
523
|
+
type: Object,
|
|
524
|
+
defaultValue: undefined
|
|
525
|
+
})], FlexibleColumnLayout.prototype, "_layoutsConfiguration", void 0);
|
|
526
|
+
__decorate([(0, _slot.default)()], FlexibleColumnLayout.prototype, "startColumn", void 0);
|
|
527
|
+
__decorate([(0, _slot.default)()], FlexibleColumnLayout.prototype, "midColumn", void 0);
|
|
528
|
+
__decorate([(0, _slot.default)()], FlexibleColumnLayout.prototype, "endColumn", void 0);
|
|
529
|
+
FlexibleColumnLayout = FlexibleColumnLayout_1 = __decorate([(0, _customElement.default)({
|
|
530
|
+
tag: "ui5-flexible-column-layout",
|
|
531
|
+
fastNavigation: true,
|
|
532
|
+
renderer: _LitRenderer.default,
|
|
533
|
+
styles: _FlexibleColumnLayout.default,
|
|
534
|
+
template: _FlexibleColumnLayoutTemplate.default,
|
|
535
|
+
dependencies: [_Button.default]
|
|
536
|
+
})
|
|
537
|
+
/**
|
|
538
|
+
* Fired when the layout changes via user interaction by clicking the arrows
|
|
539
|
+
* or by changing the component size due to resizing.
|
|
540
|
+
*
|
|
541
|
+
* @param {sap.ui.webc.fiori.types.FCLLayout} layout The current layout
|
|
542
|
+
* @param {array} columnLayout The effective column layout, f.e [67%, 33%, 0]
|
|
543
|
+
* @param {boolean} startColumnVisible Indicates if the start column is currently visible
|
|
544
|
+
* @param {boolean} midColumnVisible Indicates if the middle column is currently visible
|
|
545
|
+
* @param {boolean} endColumnVisible Indicates if the end column is currently visible
|
|
546
|
+
* @param {boolean} arrowsUsed Indicates if the layout is changed via the arrows
|
|
547
|
+
* @param {boolean} resize Indicates if the layout is changed via resizing
|
|
548
|
+
* @event sap.ui.webc.fiori.FlexibleColumnLayout#layout-change
|
|
549
|
+
* @public
|
|
550
|
+
*/, (0, _event.default)("layout-change", {
|
|
551
|
+
detail: {
|
|
552
|
+
layout: {
|
|
553
|
+
type: _FCLLayout.default
|
|
554
|
+
},
|
|
555
|
+
columnLayout: {
|
|
556
|
+
type: Array
|
|
557
|
+
},
|
|
558
|
+
startColumnVisible: {
|
|
559
|
+
type: Boolean
|
|
560
|
+
},
|
|
561
|
+
midColumnVisible: {
|
|
562
|
+
type: Boolean
|
|
563
|
+
},
|
|
564
|
+
endColumnVisible: {
|
|
565
|
+
type: Boolean
|
|
566
|
+
},
|
|
567
|
+
arrowsUsed: {
|
|
568
|
+
type: Boolean
|
|
569
|
+
},
|
|
570
|
+
resize: {
|
|
571
|
+
type: Boolean
|
|
708
572
|
}
|
|
709
|
-
return customTexts.endArrowLeftText || FlexibleColumnLayout.i18nBundle.getText(_i18nDefaults.FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP);
|
|
710
573
|
}
|
|
711
|
-
}
|
|
574
|
+
})], FlexibleColumnLayout);
|
|
712
575
|
FlexibleColumnLayout.define();
|
|
713
576
|
var _default = FlexibleColumnLayout;
|
|
714
577
|
_exports.default = _default;
|