@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
package/.reuse/dep5
CHANGED
|
@@ -457,11 +457,6 @@ Comment: these files belong to: UI5 Web Components
|
|
|
457
457
|
|
|
458
458
|
# Outside of Libraries:
|
|
459
459
|
|
|
460
|
-
Files: src/testsuite-utils/src/main/resources/META-INF/less/less.js
|
|
461
|
-
Copyright: 2009-2014, Alexis Sellier <self@cloudhead.net>
|
|
462
|
-
License: Apache-2.0
|
|
463
|
-
Comment: these files belong to: LESS
|
|
464
|
-
|
|
465
460
|
Files: lib/jsdoc/ui5/plugin.js
|
|
466
461
|
Copyright:
|
|
467
462
|
2009-2023 SAP SE or an SAP affiliate company and OpenUI5 contributors
|
package/THIRDPARTY.txt
CHANGED
|
@@ -460,19 +460,13 @@ Contained in: src/sap.ui.webc.main/src/sap/ui/webc/main/thirdparty/*.*
|
|
|
460
460
|
|
|
461
461
|
Outside of Libraries:
|
|
462
462
|
|
|
463
|
-
Component: LESS, version: 1.6.3
|
|
464
|
-
Copyright: 2009-2014, Alexis Sellier <self@cloudhead.net>
|
|
465
|
-
License: Apache-2.0
|
|
466
|
-
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
467
|
-
Contained in: src/testsuite-utils/src/main/resources/META-INF/less/less.js
|
|
468
|
-
|
|
469
463
|
Component: JSDoc 3, version: 3.6.7
|
|
470
464
|
Copyright: 2011-present Michael Mathews micmath@gmail.com and the contributors to JSDoc
|
|
471
465
|
License: Apache-2.0
|
|
472
466
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
|
473
467
|
Contained in: lib/jsdoc/ui5/plugin.js
|
|
474
468
|
|
|
475
|
-
Component: SAP Theming Base Content, version: 11.
|
|
469
|
+
Component: SAP Theming Base Content, version: 11.4.2
|
|
476
470
|
Copyright: SAP SE or an SAP affiliate company and Theming Base Content contributors
|
|
477
471
|
License: Apache-2.0
|
|
478
472
|
License Text: https://github.com/SAP/openui5/blob/master/LICENSES/Apache-2.0.txt
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openui5/sap.ui.webc.fiori",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.117.0",
|
|
4
4
|
"description": "OpenUI5 UI Library sap.ui.webc.fiori",
|
|
5
5
|
"author": "SAP SE (https://www.sap.com)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -20,8 +20,8 @@
|
|
|
20
20
|
"generate": "ui5-webc-generate"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@openui5/sap.ui.core": "1.
|
|
24
|
-
"@openui5/sap.ui.webc.main": "1.
|
|
25
|
-
"@openui5/sap.ui.webc.common": "1.
|
|
23
|
+
"@openui5/sap.ui.core": "1.117.0",
|
|
24
|
+
"@openui5/sap.ui.webc.main": "1.117.0",
|
|
25
|
+
"@openui5/sap.ui.webc.common": "1.117.0"
|
|
26
26
|
}
|
|
27
27
|
}
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
|
|
4
4
|
<name>sap.ui.webc.fiori</name>
|
|
5
5
|
<vendor>SAP SE</vendor>
|
|
6
|
-
<version>1.
|
|
6
|
+
<version>1.117.0</version>
|
|
7
7
|
<copyright>OpenUI5
|
|
8
8
|
* (c) Copyright 2009-2023 SAP SE or an SAP affiliate company.
|
|
9
9
|
* Licensed under the Apache License, Version 2.0 - see LICENSE.txt.</copyright>
|
|
@@ -70,7 +70,7 @@ sap.ui.define([
|
|
|
70
70
|
* A special case allows switching the comparison mode between the main and side content. In this case, the screen is split into 50:50 percent for main vs. side content. The responsive behavior of the equal split is the same as in the standard view - the side content disappears on screen widths of less than 720 px and can only be viewed by triggering it.
|
|
71
71
|
*
|
|
72
72
|
* @author SAP SE
|
|
73
|
-
* @version 1.
|
|
73
|
+
* @version 1.117.0
|
|
74
74
|
*
|
|
75
75
|
* @constructor
|
|
76
76
|
* @public
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* <h3>Usage</h3>
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.117.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -44,6 +44,14 @@ sap.ui.define([
|
|
|
44
44
|
],
|
|
45
45
|
properties: {
|
|
46
46
|
|
|
47
|
+
/**
|
|
48
|
+
* Defines the additional text of the component.
|
|
49
|
+
*/
|
|
50
|
+
additionalText: {
|
|
51
|
+
type: "string",
|
|
52
|
+
defaultValue: ""
|
|
53
|
+
},
|
|
54
|
+
|
|
47
55
|
/**
|
|
48
56
|
* Defines the text of the component.
|
|
49
57
|
*/
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* <h3>Usage</h3>
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.117.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -45,7 +45,7 @@ sap.ui.define([
|
|
|
45
45
|
properties: {
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* Defines
|
|
48
|
+
* Defines if the component is selected.
|
|
49
49
|
*/
|
|
50
50
|
selected: {
|
|
51
51
|
type: "boolean",
|
|
@@ -40,7 +40,7 @@ sap.ui.define([
|
|
|
40
40
|
* <h3>Keyboard Handling</h3>
|
|
41
41
|
*
|
|
42
42
|
* @author SAP SE
|
|
43
|
-
* @version 1.
|
|
43
|
+
* @version 1.117.0
|
|
44
44
|
*
|
|
45
45
|
* @constructor
|
|
46
46
|
* @public
|
|
@@ -163,14 +163,14 @@ sap.ui.define([
|
|
|
163
163
|
* The current layout
|
|
164
164
|
*/
|
|
165
165
|
layout: {
|
|
166
|
-
type: "FCLLayout"
|
|
166
|
+
type: "sap.ui.webc.fiori.FCLLayout"
|
|
167
167
|
},
|
|
168
168
|
|
|
169
169
|
/**
|
|
170
170
|
* The effective column layout, f.e [67%, 33%, 0]
|
|
171
171
|
*/
|
|
172
172
|
columnLayout: {
|
|
173
|
-
type: "
|
|
173
|
+
type: "array"
|
|
174
174
|
},
|
|
175
175
|
|
|
176
176
|
/**
|
|
@@ -41,7 +41,7 @@ sap.ui.define([
|
|
|
41
41
|
* <h3>Usage</h3> <code>sap.ui.webc.fiori.IllustratedMessage</code> is meant to be used inside container component, for example a <code>sap.ui.webc.main.Card</code>, a <code>sap.ui.webc.main.Dialog</code> or a <code>sap.ui.webc.fiori.Page</code>
|
|
42
42
|
*
|
|
43
43
|
* @author SAP SE
|
|
44
|
-
* @version 1.
|
|
44
|
+
* @version 1.117.0
|
|
45
45
|
*
|
|
46
46
|
* @constructor
|
|
47
47
|
* @public
|
|
@@ -124,6 +124,32 @@ sap.ui.define([
|
|
|
124
124
|
type: "sap.ui.core.Control",
|
|
125
125
|
multiple: false,
|
|
126
126
|
slot: "subtitle"
|
|
127
|
+
},
|
|
128
|
+
|
|
129
|
+
/**
|
|
130
|
+
* Defines the title of the component. <br>
|
|
131
|
+
* <br>
|
|
132
|
+
* <b>Note:</b> Using this slot, the default title text of illustration and the value of <code>title</code> property will be overwritten.
|
|
133
|
+
*/
|
|
134
|
+
title: {
|
|
135
|
+
type: "sap.ui.core.Control",
|
|
136
|
+
multiple: false,
|
|
137
|
+
slot: "title"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
associations: {
|
|
141
|
+
|
|
142
|
+
/**
|
|
143
|
+
* Receives id(or many ids) of the controls that label this control.
|
|
144
|
+
*/
|
|
145
|
+
ariaLabelledBy: {
|
|
146
|
+
type: "sap.ui.core.Control",
|
|
147
|
+
multiple: true,
|
|
148
|
+
mapping: {
|
|
149
|
+
type: "property",
|
|
150
|
+
to: "accessibleNameRef",
|
|
151
|
+
formatter: "_getAriaLabelledByForRendering"
|
|
152
|
+
}
|
|
127
153
|
}
|
|
128
154
|
}
|
|
129
155
|
}
|
|
@@ -41,11 +41,11 @@ sap.ui.define([
|
|
|
41
41
|
* <li>[UP/DOWN] - Navigates up and down the items</li>
|
|
42
42
|
* <li>[HOME] - Navigates to first item</li>
|
|
43
43
|
* <li>[END] - Navigates to the last item</li>
|
|
44
|
-
* <li>[SPACE/ENTER] - Select an item
|
|
44
|
+
* <li>[SPACE/ENTER] - Select an item</li>
|
|
45
45
|
* </ul> <br>
|
|
46
46
|
*
|
|
47
47
|
* @author SAP SE
|
|
48
|
-
* @version 1.
|
|
48
|
+
* @version 1.117.0
|
|
49
49
|
*
|
|
50
50
|
* @constructor
|
|
51
51
|
* @public
|
|
@@ -28,7 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* The <code>sap.ui.webc.fiori.NotificationAction</code> represents an abstract action, used in the <code>sap.ui.webc.fiori.NotificationListItem</code> and the <code>sap.ui.webc.fiori.NotificationListGroupItem</code> items.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.
|
|
31
|
+
* @version 1.117.0
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
@@ -95,6 +95,22 @@ sap.ui.define([
|
|
|
95
95
|
type: "string",
|
|
96
96
|
defaultValue: ""
|
|
97
97
|
}
|
|
98
|
+
},
|
|
99
|
+
events: {
|
|
100
|
+
|
|
101
|
+
/**
|
|
102
|
+
* Fired, when the action is pressed.
|
|
103
|
+
*/
|
|
104
|
+
click: {
|
|
105
|
+
parameters: {
|
|
106
|
+
/**
|
|
107
|
+
* DOM ref of the clicked element
|
|
108
|
+
*/
|
|
109
|
+
targetRef: {
|
|
110
|
+
type: "HTMLElement"
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|
|
98
114
|
}
|
|
99
115
|
}
|
|
100
116
|
});
|
|
@@ -47,7 +47,7 @@ sap.ui.define([
|
|
|
47
47
|
* </ul>
|
|
48
48
|
*
|
|
49
49
|
* @author SAP SE
|
|
50
|
-
* @version 1.
|
|
50
|
+
* @version 1.117.0
|
|
51
51
|
*
|
|
52
52
|
* @constructor
|
|
53
53
|
* @public
|
|
@@ -165,7 +165,14 @@ sap.ui.define([
|
|
|
165
165
|
* Fired when the <code>Close</code> button is pressed.
|
|
166
166
|
*/
|
|
167
167
|
close: {
|
|
168
|
-
parameters: {
|
|
168
|
+
parameters: {
|
|
169
|
+
/**
|
|
170
|
+
* the closed item.
|
|
171
|
+
*/
|
|
172
|
+
item: {
|
|
173
|
+
type: "HTMLElement"
|
|
174
|
+
}
|
|
175
|
+
}
|
|
169
176
|
},
|
|
170
177
|
|
|
171
178
|
/**
|
|
@@ -49,7 +49,7 @@ sap.ui.define([
|
|
|
49
49
|
* </ul>
|
|
50
50
|
*
|
|
51
51
|
* @author SAP SE
|
|
52
|
-
* @version 1.
|
|
52
|
+
* @version 1.117.0
|
|
53
53
|
*
|
|
54
54
|
* @constructor
|
|
55
55
|
* @public
|
|
@@ -138,7 +138,7 @@ sap.ui.define([
|
|
|
138
138
|
*
|
|
139
139
|
* <br>
|
|
140
140
|
* <br>
|
|
141
|
-
* <b>Note:</b> by default the <code>titleText</code> and <code>
|
|
141
|
+
* <b>Note:</b> by default the <code>titleText</code> and <code>description</code>, and a <code>ShowMore/Less</code> button would be displayed.
|
|
142
142
|
*/
|
|
143
143
|
wrappingType: {
|
|
144
144
|
type: "sap.ui.webc.main.WrappingType",
|
|
@@ -187,7 +187,14 @@ sap.ui.define([
|
|
|
187
187
|
* Fired when the <code>Close</code> button is pressed.
|
|
188
188
|
*/
|
|
189
189
|
close: {
|
|
190
|
-
parameters: {
|
|
190
|
+
parameters: {
|
|
191
|
+
/**
|
|
192
|
+
* the closed item.
|
|
193
|
+
*/
|
|
194
|
+
item: {
|
|
195
|
+
type: "HTMLElement"
|
|
196
|
+
}
|
|
197
|
+
}
|
|
191
198
|
}
|
|
192
199
|
},
|
|
193
200
|
designtime: "sap/ui/webc/fiori/designtime/NotificationListItem.designtime"
|
|
@@ -28,10 +28,10 @@ sap.ui.define([
|
|
|
28
28
|
* The <code>sap.ui.webc.fiori.Page</code> is a container component that holds one whole screen of an application. The page has three distinct areas that can hold content - a header, content area and a footer. <h3>Structure</h3>
|
|
29
29
|
* <h4>Header</h4> The top most area of the page is occupied by the header. The standard header includes a navigation button and a title. <h4>Content</h4> The content occupies the main part of the page. Only the content area is scrollable by default. This can be prevented by setting <code>enableScrolling</code> to <code>false</code>. <h4>Footer</h4> The footer is optional and occupies the fixed bottom part of the page. Alternatively, the footer can be floating above the bottom part of the content. This is enabled with the <code>floatingFooter</code> property.
|
|
30
30
|
*
|
|
31
|
-
* <b>Note:</b> <code>sap.ui.webc.fiori.Page</code> occipues the whole available space of its parent. In order to achieve the intended design you have to make sure that there is enough space for the <code>sap.ui.webc.fiori.Page</code> to be rendered.
|
|
31
|
+
* <b>Note:</b> <code>sap.ui.webc.fiori.Page</code> occipues the whole available space of its parent. In order to achieve the intended design you have to make sure that there is enough space for the <code>sap.ui.webc.fiori.Page</code> to be rendered. <b>Note:</b> In order for the <code>sap.ui.webc.fiori.Page</code> to be displayed, the parent element should have fixed height.
|
|
32
32
|
*
|
|
33
33
|
* @author SAP SE
|
|
34
|
-
* @version 1.
|
|
34
|
+
* @version 1.117.0
|
|
35
35
|
*
|
|
36
36
|
* @constructor
|
|
37
37
|
* @public
|
|
@@ -34,7 +34,7 @@ sap.ui.define([
|
|
|
34
34
|
* </ul>
|
|
35
35
|
*
|
|
36
36
|
* @author SAP SE
|
|
37
|
-
* @version 1.
|
|
37
|
+
* @version 1.117.0
|
|
38
38
|
*
|
|
39
39
|
* @constructor
|
|
40
40
|
* @public
|
|
@@ -86,8 +86,7 @@ sap.ui.define([
|
|
|
86
86
|
* </ul>
|
|
87
87
|
*/
|
|
88
88
|
target: {
|
|
89
|
-
type: "string"
|
|
90
|
-
defaultValue: "_self"
|
|
89
|
+
type: "string"
|
|
91
90
|
},
|
|
92
91
|
|
|
93
92
|
/**
|
|
@@ -50,7 +50,7 @@ sap.ui.define([
|
|
|
50
50
|
* <h3>Keyboard Handling</h3>
|
|
51
51
|
*
|
|
52
52
|
* @author SAP SE
|
|
53
|
-
* @version 1.
|
|
53
|
+
* @version 1.117.0
|
|
54
54
|
*
|
|
55
55
|
* @constructor
|
|
56
56
|
* @public
|
|
@@ -64,6 +64,45 @@ sap.ui.define([
|
|
|
64
64
|
tag: "ui5-shellbar-ui5",
|
|
65
65
|
properties: {
|
|
66
66
|
|
|
67
|
+
/**
|
|
68
|
+
* An object of strings that defines several additional accessibility attribute values for customization depending on the use case.
|
|
69
|
+
*
|
|
70
|
+
* It supports the following fields:
|
|
71
|
+
*
|
|
72
|
+
*
|
|
73
|
+
* <ul>
|
|
74
|
+
* <li><code>expanded</code>: Indicates whether the anchor element, or another grouping element it controls, is currently expanded or collapsed. Accepts the following string values:
|
|
75
|
+
* <ul>
|
|
76
|
+
* <li><code>true</code></li>
|
|
77
|
+
* <li><code>false</code></li>
|
|
78
|
+
* </ul>
|
|
79
|
+
* </li>
|
|
80
|
+
* <li><code>hasPopup</code>: Indicates the availability and type of interactive popup element, such as menu or dialog, that can be triggered by the anchor element. Accepts the following string values:
|
|
81
|
+
* <ul>
|
|
82
|
+
* <li><code>Dialog</code></li>
|
|
83
|
+
* <li><code>Grid</code></li>
|
|
84
|
+
* <li><code>ListBox</code></li>
|
|
85
|
+
* <li><code>Menu</code></li>
|
|
86
|
+
* <li><code>Tree</code></li>
|
|
87
|
+
* </ul>
|
|
88
|
+
* </li>
|
|
89
|
+
* </ul>
|
|
90
|
+
*/
|
|
91
|
+
accessibilityAttributes: {
|
|
92
|
+
type: "object",
|
|
93
|
+
defaultValue: {}
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
/**
|
|
97
|
+
* An object of strings that defines additional accessibility roles for further customization.
|
|
98
|
+
*
|
|
99
|
+
* It supports the following fields: - <code>logoRole</code>: the accessibility role for the <code>logo</code>
|
|
100
|
+
*/
|
|
101
|
+
accessibilityRoles: {
|
|
102
|
+
type: "object",
|
|
103
|
+
defaultValue: {}
|
|
104
|
+
},
|
|
105
|
+
|
|
67
106
|
/**
|
|
68
107
|
* An object of strings that defines several additional accessibility texts for even further customization.
|
|
69
108
|
*
|
|
@@ -125,6 +164,15 @@ sap.ui.define([
|
|
|
125
164
|
showProductSwitch: {
|
|
126
165
|
type: "boolean",
|
|
127
166
|
defaultValue: false
|
|
167
|
+
},
|
|
168
|
+
|
|
169
|
+
/**
|
|
170
|
+
* Defines, if the Search Field would be displayed when there is a valid <code>searchField</code> slot. <br>
|
|
171
|
+
* <b>Note:</b> By default the Search Field is not displayed.
|
|
172
|
+
*/
|
|
173
|
+
showSearchField: {
|
|
174
|
+
type: "boolean",
|
|
175
|
+
defaultValue: false
|
|
128
176
|
}
|
|
129
177
|
},
|
|
130
178
|
defaultAggregation: "items",
|
|
@@ -37,7 +37,7 @@ sap.ui.define([
|
|
|
37
37
|
* <h3>Keyboard Handling</h3>
|
|
38
38
|
*
|
|
39
39
|
* @author SAP SE
|
|
40
|
-
* @version 1.
|
|
40
|
+
* @version 1.117.0
|
|
41
41
|
*
|
|
42
42
|
* @constructor
|
|
43
43
|
* @public
|
|
@@ -106,7 +106,7 @@ sap.ui.define([
|
|
|
106
106
|
* the clicked item.
|
|
107
107
|
*/
|
|
108
108
|
item: {
|
|
109
|
-
type: "
|
|
109
|
+
type: "sap.ui.webc.fiori.ISideNavigationItem|sap.ui.webc.fiori.ISideNavigationSubItem"
|
|
110
110
|
}
|
|
111
111
|
}
|
|
112
112
|
}
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* The <code>sap.ui.webc.fiori.SideNavigationItem</code> is used within <code>sap.ui.webc.fiori.SideNavigation</code> only. Via the <code>sap.ui.webc.fiori.SideNavigationItem</code> you control the content of the <code>SideNavigation</code>.
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.117.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -93,13 +93,22 @@ sap.ui.define([
|
|
|
93
93
|
aggregations: {
|
|
94
94
|
|
|
95
95
|
/**
|
|
96
|
-
*
|
|
96
|
+
* Defines nested items by passing <code>sap.ui.webc.fiori.SideNavigationSubItem</code> to the default slot.
|
|
97
97
|
*/
|
|
98
98
|
items: {
|
|
99
99
|
type: "sap.ui.webc.fiori.ISideNavigationSubItem",
|
|
100
100
|
multiple: true
|
|
101
101
|
}
|
|
102
102
|
},
|
|
103
|
+
events: {
|
|
104
|
+
|
|
105
|
+
/**
|
|
106
|
+
* Fired when the component is activated either with a click/tap or by using the Enter or Space key.
|
|
107
|
+
*/
|
|
108
|
+
click: {
|
|
109
|
+
parameters: {}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
103
112
|
designtime: "sap/ui/webc/fiori/designtime/SideNavigationItem.designtime"
|
|
104
113
|
}
|
|
105
114
|
});
|
|
@@ -26,7 +26,7 @@ sap.ui.define([
|
|
|
26
26
|
* The <code>sap.ui.webc.fiori.SideNavigationSubItem</code> is intended to be used inside a <code>sap.ui.webc.fiori.SideNavigationItem</code> only.
|
|
27
27
|
*
|
|
28
28
|
* @author SAP SE
|
|
29
|
-
* @version 1.
|
|
29
|
+
* @version 1.117.0
|
|
30
30
|
*
|
|
31
31
|
* @constructor
|
|
32
32
|
* @public
|
|
@@ -73,6 +73,15 @@ sap.ui.define([
|
|
|
73
73
|
defaultValue: ""
|
|
74
74
|
}
|
|
75
75
|
},
|
|
76
|
+
events: {
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Fired when the component is activated either with a click/tap or by using the Enter or Space key.
|
|
80
|
+
*/
|
|
81
|
+
click: {
|
|
82
|
+
parameters: {}
|
|
83
|
+
}
|
|
84
|
+
},
|
|
76
85
|
designtime: "sap/ui/webc/fiori/designtime/SideNavigationSubItem.designtime"
|
|
77
86
|
}
|
|
78
87
|
});
|
|
@@ -28,7 +28,7 @@ sap.ui.define([
|
|
|
28
28
|
* The <code>sap.ui.webc.fiori.Timeline</code> component shows entries (such as objects, events, or posts) in chronological order. A common use case is to provide information about changes to an object, or events related to an object. These entries can be generated by the system (for example, value XY changed from A to B), or added manually. There are two distinct variants of the timeline: basic and social. The basic timeline is read-only, while the social timeline offers a high level of interaction and collaboration, and is integrated within SAP Jam.
|
|
29
29
|
*
|
|
30
30
|
* @author SAP SE
|
|
31
|
-
* @version 1.
|
|
31
|
+
* @version 1.117.0
|
|
32
32
|
*
|
|
33
33
|
* @constructor
|
|
34
34
|
* @public
|
|
@@ -43,7 +43,7 @@ sap.ui.define([
|
|
|
43
43
|
properties: {
|
|
44
44
|
|
|
45
45
|
/**
|
|
46
|
-
* Defines the accessible
|
|
46
|
+
* Defines the accessible ARIA name of the component.
|
|
47
47
|
*/
|
|
48
48
|
accessibleName: {
|
|
49
49
|
type: "string"
|
|
@@ -27,7 +27,7 @@ sap.ui.define([
|
|
|
27
27
|
* <h3>Overview</h3> This component allows you to represent files before uploading them to a server, with the help of <code>sap.ui.webc.fiori.UploadCollectionItem</code>. It also allows you to show already uploaded files.
|
|
28
28
|
*
|
|
29
29
|
* @author SAP SE
|
|
30
|
-
* @version 1.
|
|
30
|
+
* @version 1.117.0
|
|
31
31
|
*
|
|
32
32
|
* @constructor
|
|
33
33
|
* @public
|
|
@@ -42,7 +42,7 @@ sap.ui.define([
|
|
|
42
42
|
properties: {
|
|
43
43
|
|
|
44
44
|
/**
|
|
45
|
-
* Defines the accessible
|
|
45
|
+
* Defines the accessible ARIA name of the component.
|
|
46
46
|
*/
|
|
47
47
|
accessibleName: {
|
|
48
48
|
type: "string",
|
|
@@ -30,7 +30,7 @@ sap.ui.define([
|
|
|
30
30
|
* <h3>Responsive Behavior</h3> <code>sap.ui.webc.fiori.ViewSettingsDialog</code> stretches on full screen on phones.
|
|
31
31
|
*
|
|
32
32
|
* @author SAP SE
|
|
33
|
-
* @version 1.
|
|
33
|
+
* @version 1.117.0
|
|
34
34
|
*
|
|
35
35
|
* @constructor
|
|
36
36
|
* @public
|
|
@@ -117,7 +117,7 @@ sap.ui.define([
|
|
|
117
117
|
/**
|
|
118
118
|
* The selected filters items.
|
|
119
119
|
*/
|
|
120
|
-
|
|
120
|
+
filters: {
|
|
121
121
|
type: "Array"
|
|
122
122
|
}
|
|
123
123
|
}
|
|
@@ -159,7 +159,7 @@ sap.ui.define([
|
|
|
159
159
|
/**
|
|
160
160
|
* The selected filters items.
|
|
161
161
|
*/
|
|
162
|
-
|
|
162
|
+
filters: {
|
|
163
163
|
type: "Array"
|
|
164
164
|
}
|
|
165
165
|
}
|
|
@@ -170,8 +170,8 @@ sap.ui.define([
|
|
|
170
170
|
});
|
|
171
171
|
|
|
172
172
|
/**
|
|
173
|
-
* Sets a JavaScript object, as settings to the <code>sap.ui.webc.fiori.ViewSettingsDialog</code>. This method can be used after the dialog is initially open, as the dialog need to set its initial settings. The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> throws an event called "before-open", this can be used as trigger point. The object should have the following format: <code>
|
|
174
|
-
* @param {
|
|
173
|
+
* Sets a JavaScript object, as settings to the <code>sap.ui.webc.fiori.ViewSettingsDialog</code>. This method can be used after the dialog is initially open, as the dialog need to set its initial settings. The <code>sap.ui.webc.fiori.ViewSettingsDialog</code> throws an event called "before-open", this can be used as trigger point. The object should have the following format: <code> {sortOrder: "Ascending", sortBy: "Name", filters: [{"Filter 1": ["Some filter 1", "Some filter 2"]}, {"Filter 2": ["Some filter 4"]}]} </code>
|
|
174
|
+
* @param {object} settings predefined settings.
|
|
175
175
|
* @public
|
|
176
176
|
* @name sap.ui.webc.fiori.ViewSettingsDialog#setConfirmedSettings
|
|
177
177
|
* @function
|