@openui5/sap.ui.webc.fiori 1.105.0 → 1.106.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.reuse/dep5 +20 -17
- package/THIRDPARTY.txt +31 -21
- package/package.json +8 -4
- package/src/sap/ui/webc/fiori/.library +9 -2
- package/src/sap/ui/webc/fiori/Bar.js +2 -2
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +2 -2
- package/src/sap/ui/webc/fiori/DynamicSideContent.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItem.js +1 -1
- package/src/sap/ui/webc/fiori/FilterItemOption.js +1 -1
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +1 -1
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +1 -1
- package/src/sap/ui/webc/fiori/MediaGallery.js +1 -1
- package/src/sap/ui/webc/fiori/MediaGalleryItem.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationAction.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +2 -2
- package/src/sap/ui/webc/fiori/NotificationListItem.js +2 -2
- package/src/sap/ui/webc/fiori/Page.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitch.js +1 -1
- package/src/sap/ui/webc/fiori/ProductSwitchItem.js +2 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +2 -2
- package/src/sap/ui/webc/fiori/ShellBarItem.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigation.js +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationItem.js +2 -2
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +2 -2
- package/src/sap/ui/webc/fiori/SortItem.js +1 -1
- package/src/sap/ui/webc/fiori/Timeline.js +1 -1
- package/src/sap/ui/webc/fiori/TimelineItem.js +2 -2
- package/src/sap/ui/webc/fiori/UploadCollection.js +1 -1
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +1 -1
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +1 -1
- package/src/sap/ui/webc/fiori/Wizard.js +1 -1
- package/src/sap/ui/webc/fiori/WizardStep.js +2 -2
- package/src/sap/ui/webc/fiori/lib/zxing.js +24247 -0
- package/src/sap/ui/webc/fiori/library.config.js +16 -1
- package/src/sap/ui/webc/fiori/library.js +3 -6
- package/src/sap/ui/webc/fiori/thirdparty/Assets.js +3 -5
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +211 -88
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +239 -18952
- package/src/sap/ui/webc/fiori/thirdparty/DynamicSideContent.js +571 -293
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +89 -30
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +79 -26
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +806 -431
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +458 -174
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +148 -35
- package/src/sap/ui/webc/fiori/thirdparty/MediaGallery.js +631 -342
- package/src/sap/ui/webc/fiori/thirdparty/MediaGalleryItem.js +354 -193
- package/src/sap/ui/webc/fiori/thirdparty/NotificationAction.js +115 -40
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +251 -127
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +407 -224
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +280 -144
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +234 -97
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +206 -116
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +265 -121
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +1186 -737
- package/src/sap/ui/webc/fiori/thirdparty/ShellBarItem.js +107 -44
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +319 -178
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +150 -52
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +107 -38
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +78 -26
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +195 -107
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +210 -96
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +381 -191
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +507 -263
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +757 -451
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +1022 -567
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +171 -46
- package/src/sap/ui/webc/fiori/thirdparty/WizardTab.js +230 -106
- package/src/sap/ui/webc/fiori/thirdparty/fcl-utils/FCLLayout.js +342 -244
- package/src/sap/ui/webc/fiori/thirdparty/features/CoPilotAnimation.js +8 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ar.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_bg.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ca.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cs.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_cy.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_da.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_de.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_el.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_GB.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_sappsd.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saprigi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_en_US_saptrc.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_es_MX.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_et.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_fr_CA.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_hu.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_in.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_it.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_iw.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ja.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_kk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ko.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lt.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_lv.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ms.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_nl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_no.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_pt_PT.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ro.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_ru.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sh.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sl.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_sv.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_th.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_tr.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_uk.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_vi.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_CN.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/i18n/messagebundle_zh_TW.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_belize_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_dark/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_fiori_3_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_dark/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_exp/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcb/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/assets/themes/sap_horizon_hcw/parameters-bundle.css.json.js +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +588 -123
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +58 -30
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +169 -115
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/DynamicSideContentTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryItemTemplate.lit.js +17 -7
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/MediaGalleryTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +27 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +32 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationOverflowActionsPopoverTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +27 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +11 -4
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +60 -30
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +32 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +23 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +42 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +44 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +13 -5
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +19 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +15 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/DynamicSideContent.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGallery.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/MediaGalleryItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationOverflowActionsPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBarPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigationPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +18 -10
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_dark/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_exp/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcb/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon_hcw/parameters-bundle.css.js +13 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/AddPeople.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BalloonSky.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Connection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyList.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/EmptyPlanningCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ErrorScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/FilterTable.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/GroupTable.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoFilterResults.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks_v1.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/PageNotFound.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ReloadScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/ResizeColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchEarth.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SearchFolder.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBalloon.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleBell.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCalendar.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleCheckMark.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleConnection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyDoc.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleEmptyList.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleError.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMagnifier.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleMail.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNoSavedItems.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleNotFoundMagnifier.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleReload.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SimpleTask.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SleepingBell.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SortColumn.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessBalloon.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessCheckMark.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessHighFive.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/SuccessScreen.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/Tent.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoadImage.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UploadCollection.js +40 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-AddPeople.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BalloonSky.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Connection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-EmptyPlanningCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ErrorScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-FilterTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-GroupTable.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoFilterResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks_v1.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-PageNotFound.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ReloadScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-ResizeColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchEarth.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SearchFolder.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCalendar.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleConnection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyDoc.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleEmptyList.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleError.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleMail.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNoSavedItems.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleNotFoundMagnifier.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleReload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SimpleTask.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SleepingBell.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SortColumn.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessBalloon.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessCheckMark.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessHighFive.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-SuccessScreen.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-Tent.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoadImage.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UploadCollection.js +9 -6
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartArea2.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBPMNFlow.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBar.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartBullet.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartDoughnut.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartFlow.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartGantt.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartOrg.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ChartPie.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Components.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Secrets.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Systems.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Teams.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Tools.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnableToLoad.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/User2.js +36 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartArea2.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBPMNFlow.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBar.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartBullet.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartDoughnut.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartFlow.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartGantt.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartOrg.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ChartPie.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Components.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Secrets.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Systems.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Teams.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Tools.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnableToLoad.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-User2.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartArea2.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBPMNFlow.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBar.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartBullet.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartDoughnut.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartFlow.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartGantt.js +33 -30
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartOrg.js +34 -31
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ChartPie.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +37 -34
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Components.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +42 -39
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Secrets.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +25 -22
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Systems.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Teams.js +27 -24
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Tools.js +26 -23
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnableToLoad.js +28 -25
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +22 -19
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-User2.js +29 -26
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartArea2.js +14 -11
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBPMNFlow.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBar.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartBullet.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartDoughnut.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartFlow.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartGantt.js +19 -16
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartOrg.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ChartPie.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +13 -10
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Components.js +12 -9
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +23 -20
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +24 -21
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -12
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Secrets.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -18
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Systems.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Teams.js +20 -17
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Tools.js +14 -11
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnableToLoad.js +16 -13
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +18 -15
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-User2.js +17 -14
- package/src/sap/ui/webc/fiori/thirdparty/types/BarDesign.js +60 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/FCLLayout.js +145 -27
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageSize.js +73 -18
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +653 -106
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryItemLayout.js +49 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryLayout.js +53 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuHorizontalAlign.js +46 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/MediaGalleryMenuVerticalAlign.js +46 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/PageBackgroundDesign.js +58 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentFallDown.js +60 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentPosition.js +48 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/SideContentVisibility.js +67 -18
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +48 -15
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadCollectionDnDMode.js +55 -16
- package/src/sap/ui/webc/fiori/thirdparty/types/UploadState.js +62 -17
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +49 -15
- package/src/sap/ui/webc/fiori/thirdparty/upload-utils/UploadCollectionBodyDnD.js +92 -65
- package/ui5.yaml +141 -4
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ar.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_bg.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ca.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cs.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_cy.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_da.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_de.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_el.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_GB.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_sappsd.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saprigi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_en_US_saptrc.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_es_MX.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_et.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_fr_CA.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_hu.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_in.js +0 -53
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_it.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_iw.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ja.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_kk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ko.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lt.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_lv.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ms.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_nl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_no.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_pt_PT.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ro.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_ru.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sh.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sl.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_sv.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_th.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_tr.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_uk.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_vi.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_CN.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/messagebundle_zh_TW.js +0 -124
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css10.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css11.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css12.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css2.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css3.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css4.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css5.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css6.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css7.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css8.js +0 -13
- package/src/sap/ui/webc/fiori/thirdparty/_chunks/parameters-bundle.css9.js +0 -13
|
@@ -1,451 +1,757 @@
|
|
|
1
|
-
sap.ui.define([
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
1
|
+
sap.ui.define(["exports", "sap/ui/webc/common/thirdparty/base/i18nBundle", "sap/ui/webc/common/thirdparty/base/Device", "sap/ui/webc/common/thirdparty/base/renderer/LitRenderer", "sap/ui/webc/common/thirdparty/base/UI5Element", "sap/ui/webc/main/thirdparty/Dialog", "sap/ui/webc/main/thirdparty/Button", "sap/ui/webc/main/thirdparty/Label", "sap/ui/webc/main/thirdparty/GroupHeaderListItem", "sap/ui/webc/main/thirdparty/List", "sap/ui/webc/main/thirdparty/StandardListItem", "sap/ui/webc/main/thirdparty/Title", "sap/ui/webc/main/thirdparty/SegmentedButton", "sap/ui/webc/main/thirdparty/SegmentedButtonItem", "./Bar", "./types/ViewSettingsDialogMode", "sap/ui/webc/common/thirdparty/icons/sort", "sap/ui/webc/common/thirdparty/icons/filter", "sap/ui/webc/common/thirdparty/icons/nav-back", "./generated/i18n/i18n-defaults", "./generated/templates/ViewSettingsDialogTemplate.lit", "./generated/themes/ViewSettingsDialog.css"], function (_exports, _i18nBundle, _Device, _LitRenderer, _UI5Element, _Dialog, _Button, _Label, _GroupHeaderListItem, _List, _StandardListItem, _Title, _SegmentedButton, _SegmentedButtonItem, _Bar, _ViewSettingsDialogMode, _sort, _filter, _navBack, _i18nDefaults, _ViewSettingsDialogTemplate, _ViewSettingsDialog) {
|
|
2
|
+
"use strict";
|
|
3
|
+
|
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
_exports.default = void 0;
|
|
8
|
+
_LitRenderer = _interopRequireDefault(_LitRenderer);
|
|
9
|
+
_UI5Element = _interopRequireDefault(_UI5Element);
|
|
10
|
+
_Dialog = _interopRequireDefault(_Dialog);
|
|
11
|
+
_Button = _interopRequireDefault(_Button);
|
|
12
|
+
_Label = _interopRequireDefault(_Label);
|
|
13
|
+
_GroupHeaderListItem = _interopRequireDefault(_GroupHeaderListItem);
|
|
14
|
+
_List = _interopRequireDefault(_List);
|
|
15
|
+
_StandardListItem = _interopRequireDefault(_StandardListItem);
|
|
16
|
+
_Title = _interopRequireDefault(_Title);
|
|
17
|
+
_SegmentedButton = _interopRequireDefault(_SegmentedButton);
|
|
18
|
+
_SegmentedButtonItem = _interopRequireDefault(_SegmentedButtonItem);
|
|
19
|
+
_Bar = _interopRequireDefault(_Bar);
|
|
20
|
+
_ViewSettingsDialogMode = _interopRequireDefault(_ViewSettingsDialogMode);
|
|
21
|
+
_ViewSettingsDialogTemplate = _interopRequireDefault(_ViewSettingsDialogTemplate);
|
|
22
|
+
_ViewSettingsDialog = _interopRequireDefault(_ViewSettingsDialog);
|
|
23
|
+
|
|
24
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
|
25
|
+
|
|
26
|
+
// Template
|
|
27
|
+
// Styles
|
|
28
|
+
|
|
29
|
+
/**
|
|
30
|
+
* @public
|
|
31
|
+
*/
|
|
32
|
+
const metadata = {
|
|
33
|
+
tag: "ui5-view-settings-dialog",
|
|
34
|
+
managedSlots: true,
|
|
35
|
+
properties:
|
|
36
|
+
/** @lends sap.ui.webcomponents.fiori.ViewSettingsDialog.prototype */
|
|
37
|
+
{
|
|
38
|
+
/**
|
|
39
|
+
* Defines the initial sort order.
|
|
40
|
+
*
|
|
41
|
+
* @type {boolean}
|
|
42
|
+
* @defaultvalue false
|
|
43
|
+
* @public
|
|
44
|
+
*/
|
|
45
|
+
sortDescending: {
|
|
46
|
+
type: Boolean
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
/**
|
|
50
|
+
* Keeps recently focused list in order to focus it on next dialog open.
|
|
51
|
+
*
|
|
52
|
+
* @type {Object}
|
|
53
|
+
* @private
|
|
54
|
+
*/
|
|
55
|
+
_recentlyFocused: {
|
|
56
|
+
type: Object
|
|
57
|
+
},
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Stores settings of the dialog before the initial open.
|
|
61
|
+
*
|
|
62
|
+
* @type {Object}
|
|
63
|
+
* @private
|
|
64
|
+
*/
|
|
65
|
+
_initialSettings: {
|
|
66
|
+
type: Object
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Stores settings of the dialog after confirmation.
|
|
71
|
+
*
|
|
72
|
+
* @type {Object}
|
|
73
|
+
* @private
|
|
74
|
+
*/
|
|
75
|
+
_confirmedSettings: {
|
|
76
|
+
type: Object
|
|
77
|
+
},
|
|
78
|
+
|
|
79
|
+
/**
|
|
80
|
+
* Stores current settings of the dialog.
|
|
81
|
+
*
|
|
82
|
+
* @type {Object}
|
|
83
|
+
* @private
|
|
84
|
+
*/
|
|
85
|
+
_currentSettings: {
|
|
86
|
+
type: Object
|
|
87
|
+
},
|
|
88
|
+
|
|
89
|
+
/**
|
|
90
|
+
* Defnies the current mode of the component.
|
|
91
|
+
*
|
|
92
|
+
* @since 1.0.0-rc.16
|
|
93
|
+
* @private
|
|
94
|
+
*/
|
|
95
|
+
_currentMode: {
|
|
96
|
+
type: _ViewSettingsDialogMode.default,
|
|
97
|
+
defaultValue: _ViewSettingsDialogMode.default.Sort
|
|
98
|
+
},
|
|
99
|
+
|
|
100
|
+
/**
|
|
101
|
+
* When in Filter By mode, defines whether we need to show the list of keys, or the list with values.
|
|
102
|
+
*
|
|
103
|
+
* @since 1.0.0-rc.16
|
|
104
|
+
* @private
|
|
105
|
+
*/
|
|
106
|
+
_filterStepTwo: {
|
|
107
|
+
type: Boolean,
|
|
108
|
+
noAttribute: true
|
|
109
|
+
}
|
|
110
|
+
},
|
|
111
|
+
slots:
|
|
112
|
+
/** @lends sap.ui.webcomponents.fiori.ViewSettingsDialog.prototype */
|
|
113
|
+
{
|
|
114
|
+
/**
|
|
115
|
+
* Defines the list of items against which the user could sort data.
|
|
116
|
+
* <b>Note:</b> If you want to use this slot, you need to import used item: <code>import "@ui5/webcomponents-fiori/dist/SortItem";</code>
|
|
117
|
+
*
|
|
118
|
+
* @type {sap.ui.webcomponents.fiori.ISortItem[]}
|
|
119
|
+
* @slot sortItems
|
|
120
|
+
* @public
|
|
121
|
+
*/
|
|
122
|
+
sortItems: {
|
|
123
|
+
type: HTMLElement
|
|
124
|
+
},
|
|
125
|
+
|
|
126
|
+
/**
|
|
127
|
+
* Defines the <code>filterItems</code> list.
|
|
128
|
+
* <b>Note:</b> If you want to use this slot, you need to import used item: <code>import "@ui5/webcomponents-fiori/dist/FilterItem";</code>
|
|
129
|
+
*
|
|
130
|
+
* @type {sap.ui.webcomponents.fiori.IFilterItem[]}
|
|
131
|
+
* @slot filterItems
|
|
132
|
+
* @public
|
|
133
|
+
*/
|
|
134
|
+
filterItems: {
|
|
135
|
+
type: HTMLElement
|
|
136
|
+
}
|
|
137
|
+
},
|
|
138
|
+
events:
|
|
139
|
+
/** @lends sap.ui.webcomponents.fiori.ViewSettingsDialog.prototype */
|
|
140
|
+
{
|
|
141
|
+
/**
|
|
142
|
+
* Fired when confirmation button is activated.
|
|
143
|
+
*
|
|
144
|
+
* @event sap.ui.webcomponents.fiori.ViewSettingsDialog#confirm
|
|
145
|
+
* @param {String} sortOrder The current sort order selected.
|
|
146
|
+
* @param {String} sortBy The currently selected <code>ui5-sort-item</code> text attribute.
|
|
147
|
+
* @param {HTMLElement} sortByItem The currently selected <code>ui5-sort-item</code>.
|
|
148
|
+
* @param {Boolean} sortDescending The selected sort order (true = descending, false = ascending).
|
|
149
|
+
* @param {Array} filterItems The selected filters items.
|
|
150
|
+
* @public
|
|
151
|
+
*/
|
|
152
|
+
confirm: {
|
|
153
|
+
detail: {
|
|
154
|
+
sortOrder: {
|
|
155
|
+
type: String
|
|
156
|
+
},
|
|
157
|
+
sortBy: {
|
|
158
|
+
type: String
|
|
159
|
+
},
|
|
160
|
+
sortByItem: {
|
|
161
|
+
type: HTMLElement
|
|
162
|
+
},
|
|
163
|
+
sortDescending: {
|
|
164
|
+
type: Boolean
|
|
165
|
+
},
|
|
166
|
+
filters: {
|
|
167
|
+
type: Array
|
|
168
|
+
}
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
|
|
172
|
+
/**
|
|
173
|
+
* Fired when cancel button is activated.
|
|
174
|
+
*
|
|
175
|
+
* @event sap.ui.webcomponents.fiori.ViewSettingsDialog#cancel
|
|
176
|
+
* @param {String} sortOrder The current sort order selected.
|
|
177
|
+
* @param {String} sortBy The currently selected <code>ui5-sort-item</code> text attribute.
|
|
178
|
+
* @param {HTMLElement} sortByItem The currently selected <code>ui5-sort-item</code>.
|
|
179
|
+
* @param {Boolean} sortDescending The selected sort order (true = descending, false = ascending).
|
|
180
|
+
* @param {Array} filterItems The selected filters items.
|
|
181
|
+
* @public
|
|
182
|
+
*/
|
|
183
|
+
cancel: {
|
|
184
|
+
detail: {
|
|
185
|
+
sortOrder: {
|
|
186
|
+
type: String
|
|
187
|
+
},
|
|
188
|
+
sortBy: {
|
|
189
|
+
type: String
|
|
190
|
+
},
|
|
191
|
+
sortByItem: {
|
|
192
|
+
type: HTMLElement
|
|
193
|
+
},
|
|
194
|
+
sortDescending: {
|
|
195
|
+
type: Boolean
|
|
196
|
+
},
|
|
197
|
+
filters: {
|
|
198
|
+
type: Array
|
|
199
|
+
}
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
|
|
203
|
+
/**
|
|
204
|
+
* Fired before the component is opened. <b>This event does not bubble.</b>
|
|
205
|
+
*
|
|
206
|
+
* @public
|
|
207
|
+
* @event sap.ui.webcomponents.fiori.ViewSettingsDialog#before-open
|
|
208
|
+
*/
|
|
209
|
+
"before-open": {}
|
|
210
|
+
}
|
|
211
|
+
};
|
|
212
|
+
/**
|
|
213
|
+
* @class
|
|
214
|
+
* <h3 class="comment-api-title">Overview</h3>
|
|
215
|
+
* The <code>ui5-view-settings-dialog</code> component helps the user to sort data within a list or a table.
|
|
216
|
+
* It consists of several lists like <code>Sort order</code> which is built-in and <code>Sort By</code> and <code>Filter By</code> lists,
|
|
217
|
+
* for which you must be provide items(<code>ui5-sort-item</code> & <code>ui5-filter-item</code> respectively)
|
|
218
|
+
* These options can be used to create sorters for a table.
|
|
219
|
+
*
|
|
220
|
+
* The <code>ui5-view-settings-dialog</code> interrupts the current application processing as it is the only focused UI element and
|
|
221
|
+
* the main screen is dimmed/blocked.
|
|
222
|
+
* The <code>ui5-view-settings-dialog</code> is modal, which means that user action is required before returning to the parent window is possible.
|
|
223
|
+
*
|
|
224
|
+
* <h3>Structure</h3>
|
|
225
|
+
* A <code>ui5-view-settings-dialog</code> consists of a header, content, and a footer for action buttons.
|
|
226
|
+
* The <code>ui5-view-settings-dialog</code> is usually displayed at the center of the screen.
|
|
227
|
+
*
|
|
228
|
+
* <h3>Responsive Behavior</h3>
|
|
229
|
+
* <code>ui5-view-settings-dialog</code> stretches on full screen on phones.
|
|
230
|
+
*
|
|
231
|
+
* <h3>ES6 Module Import</h3>
|
|
232
|
+
*
|
|
233
|
+
* <code>import "@ui5/webcomponents-fiori/dist/ViewSettingsDialog";</code>
|
|
234
|
+
*
|
|
235
|
+
* @constructor
|
|
236
|
+
* @author SAP SE
|
|
237
|
+
* @alias sap.ui.webcomponents.fiori.ViewSettingsDialog
|
|
238
|
+
* @extends UI5Element
|
|
239
|
+
* @tagname ui5-view-settings-dialog
|
|
240
|
+
* @appenddocs SortItem FilterItem FilterItemOption
|
|
241
|
+
* @since 1.0.0-rc.16
|
|
242
|
+
* @public
|
|
243
|
+
*/
|
|
244
|
+
|
|
245
|
+
class ViewSettingsDialog extends _UI5Element.default {
|
|
246
|
+
constructor() {
|
|
247
|
+
super();
|
|
248
|
+
this._currentSettings = {
|
|
249
|
+
sortOrder: [],
|
|
250
|
+
sortBy: [],
|
|
251
|
+
filters: []
|
|
252
|
+
};
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
onBeforeRendering() {
|
|
256
|
+
if (this._currentSettings.filters && this._currentSettings.filters.length) {
|
|
257
|
+
this._setAdditionalTexts();
|
|
258
|
+
}
|
|
259
|
+
|
|
260
|
+
if (!this.shouldBuildSort && this.shouldBuildFilter) {
|
|
261
|
+
this._currentMode = _ViewSettingsDialogMode.default.Filter;
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
_setAdditionalTexts() {
|
|
266
|
+
// Add the additional text to the filter options
|
|
267
|
+
this.filterItems.forEach((filter, index) => {
|
|
268
|
+
let selectedCount = 0;
|
|
269
|
+
|
|
270
|
+
for (let i = 0; i < filter.values.length; i++) {
|
|
271
|
+
if (this._currentSettings.filters[index].filterOptions[i].selected) {
|
|
272
|
+
selectedCount++;
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
filter.additionalText = !selectedCount ? "" : selectedCount;
|
|
277
|
+
});
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
static get render() {
|
|
281
|
+
return _LitRenderer.default;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
static get metadata() {
|
|
285
|
+
return metadata;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
static get dependencies() {
|
|
289
|
+
return [_Bar.default, _Button.default, _Title.default, _Dialog.default, _Label.default, _List.default, _StandardListItem.default, _GroupHeaderListItem.default, _SegmentedButton.default, _SegmentedButtonItem.default];
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
static get template() {
|
|
293
|
+
return _ViewSettingsDialogTemplate.default;
|
|
294
|
+
}
|
|
295
|
+
|
|
296
|
+
static get styles() {
|
|
297
|
+
return _ViewSettingsDialog.default;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
static async onDefine() {
|
|
301
|
+
ViewSettingsDialog.i18nBundle = await (0, _i18nBundle.getI18nBundle)("@ui5/webcomponents-fiori");
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
get _selectedFilter() {
|
|
305
|
+
for (let i = 0; i < this._currentSettings.filters.length; i++) {
|
|
306
|
+
if (this._currentSettings.filters[i].selected) {
|
|
307
|
+
return this._currentSettings.filters[i];
|
|
308
|
+
}
|
|
309
|
+
}
|
|
310
|
+
|
|
311
|
+
return "";
|
|
312
|
+
}
|
|
313
|
+
|
|
314
|
+
get shouldBuildSort() {
|
|
315
|
+
return !!this.sortItems.length;
|
|
316
|
+
}
|
|
317
|
+
|
|
318
|
+
get shouldBuildFilter() {
|
|
319
|
+
return !!this.filterItems.length;
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
get hasPagination() {
|
|
323
|
+
return this.shouldBuildSort && this.shouldBuildFilter;
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
get _filterByTitle() {
|
|
327
|
+
return `${ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_FILTER_BY)}: ${this._selectedFilter.text}`;
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
get _dialogTitle() {
|
|
331
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_DIALOG_TITLE_SORT);
|
|
332
|
+
}
|
|
333
|
+
|
|
334
|
+
get _okButtonLabel() {
|
|
335
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_SUBMIT_BUTTON);
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
get _cancelButtonLabel() {
|
|
339
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_CANCEL_BUTTON);
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
get _resetButtonLabel() {
|
|
343
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_RESET_BUTTON);
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
get _ascendingLabel() {
|
|
347
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_ORDER_ASCENDING);
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
get _descendingLabel() {
|
|
351
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_ORDER_DESCENDING);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
get _sortOrderLabel() {
|
|
355
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_SORT_ORDER);
|
|
356
|
+
}
|
|
357
|
+
|
|
358
|
+
get _filterByLabel() {
|
|
359
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_FILTER_BY);
|
|
360
|
+
}
|
|
361
|
+
|
|
362
|
+
get _sortByLabel() {
|
|
363
|
+
return ViewSettingsDialog.i18nBundle.getText(_i18nDefaults.VSD_SORT_BY);
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
get _isPhone() {
|
|
367
|
+
return (0, _Device.isPhone)();
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
get _sortAscending() {
|
|
371
|
+
return !this.sortDescending;
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
get _title() {
|
|
375
|
+
return this.showBackButton ? this._filterByTitle : this._dialogTitle;
|
|
376
|
+
}
|
|
377
|
+
/**
|
|
378
|
+
* Determines disabled state of the <code>Reset</code> button.
|
|
379
|
+
*/
|
|
380
|
+
|
|
381
|
+
|
|
382
|
+
get _disableResetButton() {
|
|
383
|
+
return this._dialog && this._sortSetttingsAreInitial && this._filteresAreInitial;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
get _sortSetttingsAreInitial() {
|
|
387
|
+
let settingsAreInitial = true;
|
|
388
|
+
["sortBy", "sortOrder"].forEach(sortList => {
|
|
389
|
+
this._currentSettings[sortList].forEach((item, index) => {
|
|
390
|
+
if (item.selected !== this._initialSettings[sortList][index].selected) {
|
|
391
|
+
settingsAreInitial = false;
|
|
392
|
+
}
|
|
393
|
+
});
|
|
394
|
+
});
|
|
395
|
+
return settingsAreInitial;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
get _filteresAreInitial() {
|
|
399
|
+
let filtersAreInitial = true;
|
|
400
|
+
|
|
401
|
+
this._currentSettings.filters.forEach((filter, index) => {
|
|
402
|
+
for (let i = 0; i < filter.filterOptions.length; i++) {
|
|
403
|
+
if (filter.filterOptions[i].selected !== this._initialSettings.filters[index].filterOptions[i].selected) {
|
|
404
|
+
filtersAreInitial = false;
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
});
|
|
408
|
+
|
|
409
|
+
return filtersAreInitial;
|
|
410
|
+
}
|
|
411
|
+
/**
|
|
412
|
+
* Returns the current settings (current state of all lists).
|
|
413
|
+
*/
|
|
414
|
+
|
|
415
|
+
|
|
416
|
+
get _settings() {
|
|
417
|
+
return {
|
|
418
|
+
sortOrder: JSON.parse(JSON.stringify(this.initSortOrderItems)),
|
|
419
|
+
sortBy: JSON.parse(JSON.stringify(this.initSortByItems)),
|
|
420
|
+
filters: this.filterItems.map(item => {
|
|
421
|
+
return {
|
|
422
|
+
text: item.text,
|
|
423
|
+
selected: false,
|
|
424
|
+
filterOptions: item.values.map(optionValue => {
|
|
425
|
+
return {
|
|
426
|
+
text: optionValue.text,
|
|
427
|
+
selected: optionValue.selected
|
|
428
|
+
};
|
|
429
|
+
})
|
|
430
|
+
};
|
|
431
|
+
})
|
|
432
|
+
};
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
get initSortByItems() {
|
|
436
|
+
return this.sortItems.map((item, index) => {
|
|
437
|
+
return {
|
|
438
|
+
text: item.text,
|
|
439
|
+
selected: item.selected,
|
|
440
|
+
index
|
|
441
|
+
};
|
|
442
|
+
});
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
get initSortOrderItems() {
|
|
446
|
+
return [{
|
|
447
|
+
text: this._ascendingLabel,
|
|
448
|
+
selected: !this.sortDescending
|
|
449
|
+
}, {
|
|
450
|
+
text: this._descendingLabel,
|
|
451
|
+
selected: this.sortDescending
|
|
452
|
+
}];
|
|
453
|
+
}
|
|
454
|
+
|
|
455
|
+
get expandContent() {
|
|
456
|
+
return this._filterStepTwo || !this.hasPagination;
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
get isModeSort() {
|
|
460
|
+
return this._currentMode === _ViewSettingsDialogMode.default.Sort;
|
|
461
|
+
}
|
|
462
|
+
|
|
463
|
+
get isModeFilter() {
|
|
464
|
+
return this._currentMode === _ViewSettingsDialogMode.default.Filter;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
get showBackButton() {
|
|
468
|
+
return this.isModeFilter && this._filterStepTwo;
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
get _sortOrderListDomRef() {
|
|
472
|
+
return this.shadowRoot.querySelector("[ui5-list][sort-order]");
|
|
473
|
+
}
|
|
474
|
+
|
|
475
|
+
get _sortByList() {
|
|
476
|
+
return this.shadowRoot.querySelector("[ui5-list][sort-by]");
|
|
477
|
+
}
|
|
478
|
+
|
|
479
|
+
get _dialogDomRef() {
|
|
480
|
+
return this.shadowRoot.querySelector("[ui5-dialog]");
|
|
481
|
+
}
|
|
482
|
+
/**
|
|
483
|
+
* Shows the dialog.
|
|
484
|
+
* @public
|
|
485
|
+
*/
|
|
486
|
+
|
|
487
|
+
|
|
488
|
+
show() {
|
|
489
|
+
if (!this._dialog) {
|
|
490
|
+
this._sortOrder = this._sortOrderListDomRef;
|
|
491
|
+
this._sortBy = this._sortByList; // Sorting
|
|
492
|
+
|
|
493
|
+
this._initialSettings = this._settings;
|
|
494
|
+
this._currentSettings = this._settings;
|
|
495
|
+
this._confirmedSettings = this._settings;
|
|
496
|
+
this._dialog = this._dialogDomRef;
|
|
497
|
+
} else {
|
|
498
|
+
this._restoreSettings(this._confirmedSettings);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
this.fireEvent("before-open", {}, true, false);
|
|
502
|
+
|
|
503
|
+
this._dialog.show(true);
|
|
504
|
+
|
|
505
|
+
this._dialog.querySelector("[ui5-list]").focusFirstItem();
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
_handleModeChange(event) {
|
|
509
|
+
this._currentMode = _ViewSettingsDialogMode.default[event.detail.selectedItem.getAttribute("mode")];
|
|
510
|
+
}
|
|
511
|
+
|
|
512
|
+
_handleFilterValueItemClick(event) {
|
|
513
|
+
// Update the component state
|
|
514
|
+
this._currentSettings.filters = this._currentSettings.filters.map(filter => {
|
|
515
|
+
if (filter.selected) {
|
|
516
|
+
filter.filterOptions.forEach(option => {
|
|
517
|
+
if (option.text === event.detail.item.innerText) {
|
|
518
|
+
option.selected = !option.selected;
|
|
519
|
+
}
|
|
520
|
+
});
|
|
521
|
+
}
|
|
522
|
+
|
|
523
|
+
return filter;
|
|
524
|
+
});
|
|
525
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
_navigateToFilters(event) {
|
|
529
|
+
this._filterStepTwo = false;
|
|
530
|
+
}
|
|
531
|
+
|
|
532
|
+
_changeCurrentFilter(event) {
|
|
533
|
+
this._filterStepTwo = true;
|
|
534
|
+
this._currentSettings.filters = this._currentSettings.filters.map(filter => {
|
|
535
|
+
filter.selected = filter.text === event.detail.item.innerText;
|
|
536
|
+
return filter;
|
|
537
|
+
});
|
|
538
|
+
}
|
|
539
|
+
/**
|
|
540
|
+
* Closes the dialog.
|
|
541
|
+
*/
|
|
542
|
+
|
|
543
|
+
|
|
544
|
+
close() {
|
|
545
|
+
this._dialog && this._dialog.close();
|
|
546
|
+
}
|
|
547
|
+
/**
|
|
548
|
+
* Sets focus on recently used control within the dialog.
|
|
549
|
+
*/
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
_focusRecentlyUsedControl() {
|
|
553
|
+
if (!this._recentlyFocused || !Object.keys(this._recentlyFocused).length) {
|
|
554
|
+
return;
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
const recentlyFocusedSelectedItems = this._recentlyFocused.getSelectedItems(),
|
|
558
|
+
recentlyFocusedItems = this._recentlyFocused.items,
|
|
559
|
+
slottedNodesExist = recentlyFocusedItems[1] && recentlyFocusedItems[1].assignedNodes && recentlyFocusedItems[1].assignedNodes().length;
|
|
560
|
+
|
|
561
|
+
if (recentlyFocusedSelectedItems.length) {
|
|
562
|
+
recentlyFocusedSelectedItems[0].focus();
|
|
563
|
+
} else if (slottedNodesExist) {
|
|
564
|
+
this._recentlyFocused.focusItem(recentlyFocusedItems[1].assignedNodes()[0]);
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
/**
|
|
568
|
+
* Stores current settings as confirmed and fires <code>confirm</code> event.
|
|
569
|
+
*/
|
|
570
|
+
|
|
571
|
+
|
|
572
|
+
_confirmSettings() {
|
|
573
|
+
this.close();
|
|
574
|
+
this._confirmedSettings = this._currentSettings;
|
|
575
|
+
this.fireEvent("confirm", this.eventsParams);
|
|
576
|
+
}
|
|
577
|
+
/**
|
|
578
|
+
* Sets current settings to recently confirmed ones and fires <code>cancel</code> event.
|
|
579
|
+
*/
|
|
580
|
+
|
|
581
|
+
|
|
582
|
+
_cancelSettings() {
|
|
583
|
+
this._restoreSettings(this._confirmedSettings);
|
|
584
|
+
|
|
585
|
+
this.fireEvent("cancel", this.eventsParams);
|
|
586
|
+
this.close();
|
|
587
|
+
}
|
|
588
|
+
|
|
589
|
+
get eventsParams() {
|
|
590
|
+
const _currentSortOrderSelected = this._currentSettings.sortOrder.filter(item => item.selected)[0],
|
|
591
|
+
_currentSortBySelected = this._currentSettings.sortBy.filter(item => item.selected)[0],
|
|
592
|
+
sortOrder = _currentSortOrderSelected && _currentSortOrderSelected.text,
|
|
593
|
+
sortDescending = !this._currentSettings.sortOrder[0].selected,
|
|
594
|
+
sortBy = _currentSortBySelected && _currentSortBySelected.text,
|
|
595
|
+
sortByElementIndex = _currentSortBySelected && _currentSortBySelected.index,
|
|
596
|
+
sortByItem = this.sortItems[sortByElementIndex];
|
|
597
|
+
|
|
598
|
+
return {
|
|
599
|
+
sortOrder,
|
|
600
|
+
sortDescending,
|
|
601
|
+
sortBy,
|
|
602
|
+
sortByItem,
|
|
603
|
+
filters: this.selectedFilters
|
|
604
|
+
};
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
get selectedFilters() {
|
|
608
|
+
const result = [];
|
|
609
|
+
|
|
610
|
+
this._currentSettings.filters.forEach(filter => {
|
|
611
|
+
const selectedOptions = [];
|
|
612
|
+
filter.filterOptions.forEach(option => {
|
|
613
|
+
if (option.selected) {
|
|
614
|
+
selectedOptions.push(option.text);
|
|
615
|
+
}
|
|
616
|
+
});
|
|
617
|
+
|
|
618
|
+
if (selectedOptions.length) {
|
|
619
|
+
result.push({});
|
|
620
|
+
result[result.length - 1][filter.text] = selectedOptions;
|
|
621
|
+
}
|
|
622
|
+
});
|
|
623
|
+
|
|
624
|
+
return result;
|
|
625
|
+
}
|
|
626
|
+
/**
|
|
627
|
+
* If the dialog is closed by [ESC] key, do the same as if the <code>Cancel</code> button is pressed.
|
|
628
|
+
*
|
|
629
|
+
* @param {event} evt
|
|
630
|
+
*/
|
|
631
|
+
|
|
632
|
+
|
|
633
|
+
_restoreConfirmedOnEscape(evt) {
|
|
634
|
+
if (evt.detail.escPressed) {
|
|
635
|
+
this._cancelSettings();
|
|
636
|
+
|
|
637
|
+
this._currentMode = "Sort";
|
|
638
|
+
this._filterStepTwo = false;
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
/**
|
|
642
|
+
* Resets the control settings to their initial state.
|
|
643
|
+
*/
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
_resetSettings() {
|
|
647
|
+
this._restoreSettings(this._initialSettings);
|
|
648
|
+
|
|
649
|
+
this._filterStepTwo = false;
|
|
650
|
+
this._recentlyFocused = this._sortOrder;
|
|
651
|
+
|
|
652
|
+
this._focusRecentlyUsedControl();
|
|
653
|
+
}
|
|
654
|
+
/**
|
|
655
|
+
* Sets current settings to ones passed as <code>settings</code> argument.
|
|
656
|
+
*
|
|
657
|
+
* @param {Object} settings
|
|
658
|
+
*/
|
|
659
|
+
|
|
660
|
+
|
|
661
|
+
_restoreSettings(settings) {
|
|
662
|
+
this._currentSettings = JSON.parse(JSON.stringify(settings));
|
|
663
|
+
}
|
|
664
|
+
/**
|
|
665
|
+
* Stores <code>Sort Order</code> list as recently used control and its selected item in current state.
|
|
666
|
+
*/
|
|
667
|
+
|
|
668
|
+
|
|
669
|
+
_onSortOrderChange(event) {
|
|
670
|
+
this._recentlyFocused = this._sortOrder;
|
|
671
|
+
this._currentSettings.sortOrder = this.initSortOrderItems.map(item => {
|
|
672
|
+
item.selected = item.text === event.detail.item.innerText;
|
|
673
|
+
return item;
|
|
674
|
+
}); // Invalidate
|
|
675
|
+
|
|
676
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
677
|
+
}
|
|
678
|
+
/**
|
|
679
|
+
* Stores <code>Sort By</code> list as recently used control and its selected item in current state.
|
|
680
|
+
*/
|
|
681
|
+
|
|
682
|
+
|
|
683
|
+
_onSortByChange(event) {
|
|
684
|
+
const selectedItemIndex = Number(event.detail.item.getAttribute("data-ui5-external-action-item-index"));
|
|
685
|
+
this._recentlyFocused = this._sortBy;
|
|
686
|
+
this._currentSettings.sortBy = this.initSortByItems.map((item, index) => {
|
|
687
|
+
item.selected = index === selectedItemIndex;
|
|
688
|
+
return item;
|
|
689
|
+
}); // Invalidate
|
|
690
|
+
|
|
691
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
692
|
+
}
|
|
693
|
+
/**
|
|
694
|
+
* Sets a JavaScript object, as settings to the <code>ui5-view-settings-dialog</code>.
|
|
695
|
+
* This method can be used after the dialog is initially open, as the dialog need to set its initial settings.
|
|
696
|
+
* The <code>ui5-view-settings-dialog</code> throws an event called "before-open", this can be used as trigger point.
|
|
697
|
+
* The object should have the following format:
|
|
698
|
+
* <code>{
|
|
699
|
+
* { "sortOrder" : "Ascending", "sortBy" : "Name", "filters" : [{"Filter 1": ["Some filter 1", "Some filter 2"]}, {"Filter 2": ["Some filter 4"]}]}
|
|
700
|
+
* }</code>
|
|
701
|
+
* @param {string} settings A value to be set as predefined settings.
|
|
702
|
+
* @public
|
|
703
|
+
*/
|
|
704
|
+
|
|
705
|
+
|
|
706
|
+
setConfirmedSettings(settings) {
|
|
707
|
+
if (settings && this._dialog && !this._dialog.isOpen()) {
|
|
708
|
+
const tempSettings = JSON.parse(JSON.stringify(this._confirmedSettings));
|
|
709
|
+
|
|
710
|
+
if (settings.sortOrder) {
|
|
711
|
+
for (let i = 0; i < tempSettings.sortOrder.length; i++) {
|
|
712
|
+
if (tempSettings.sortOrder[i].text === settings.sortOrder) {
|
|
713
|
+
tempSettings.sortOrder[i].selected = true;
|
|
714
|
+
} else {
|
|
715
|
+
tempSettings.sortOrder[i].selected = false;
|
|
716
|
+
}
|
|
717
|
+
}
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
if (settings.sortBy) {
|
|
721
|
+
for (let i = 0; i < tempSettings.sortBy.length; i++) {
|
|
722
|
+
if (tempSettings.sortBy[i].text === settings.sortBy) {
|
|
723
|
+
tempSettings.sortBy[i].selected = true;
|
|
724
|
+
} else {
|
|
725
|
+
tempSettings.sortBy[i].selected = false;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
}
|
|
729
|
+
|
|
730
|
+
if (settings.filters) {
|
|
731
|
+
const inputFilters = {};
|
|
732
|
+
|
|
733
|
+
for (let i = 0; i < settings.filters.length; i++) {
|
|
734
|
+
inputFilters[Object.keys(settings.filters[i])[0]] = settings.filters[i][Object.keys(settings.filters[i])[0]];
|
|
735
|
+
}
|
|
736
|
+
|
|
737
|
+
for (let i = 0; i < tempSettings.filters.length; i++) {
|
|
738
|
+
for (let j = 0; j < tempSettings.filters[i].filterOptions.length; j++) {
|
|
739
|
+
if (inputFilters[tempSettings.filters[i].text] && inputFilters[tempSettings.filters[i].text].indexOf(tempSettings.filters[i].filterOptions[j].text) > -1) {
|
|
740
|
+
tempSettings.filters[i].filterOptions[j].selected = true;
|
|
741
|
+
} else {
|
|
742
|
+
tempSettings.filters[i].filterOptions[j].selected = false;
|
|
743
|
+
}
|
|
744
|
+
}
|
|
745
|
+
}
|
|
746
|
+
}
|
|
747
|
+
|
|
748
|
+
this._confirmedSettings = JSON.parse(JSON.stringify(tempSettings));
|
|
749
|
+
}
|
|
750
|
+
}
|
|
751
|
+
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
ViewSettingsDialog.define();
|
|
755
|
+
var _default = ViewSettingsDialog;
|
|
756
|
+
_exports.default = _default;
|
|
757
|
+
});
|