@openui5/sap.ui.webc.fiori 1.94.0 → 1.97.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 +12 -12
- package/THIRDPARTY.txt +21 -17
- package/package.json +4 -4
- package/src/sap/ui/webc/fiori/.library +1 -1
- package/src/sap/ui/webc/fiori/Bar.js +18 -10
- package/src/sap/ui/webc/fiori/BarcodeScannerDialog.js +104 -0
- package/src/sap/ui/webc/fiori/FilterItem.js +71 -0
- package/src/sap/ui/webc/fiori/FilterItemOption.js +68 -0
- package/src/sap/ui/webc/fiori/FlexibleColumnLayout.js +2 -2
- package/src/sap/ui/webc/fiori/IllustratedMessage.js +114 -0
- package/src/sap/ui/webc/fiori/NotificationAction.js +1 -1
- package/src/sap/ui/webc/fiori/NotificationListGroupItem.js +26 -14
- package/src/sap/ui/webc/fiori/NotificationListItem.js +31 -20
- 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 +4 -2
- package/src/sap/ui/webc/fiori/ShellBar.js +1 -1
- 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 +1 -1
- package/src/sap/ui/webc/fiori/SideNavigationSubItem.js +1 -1
- package/src/sap/ui/webc/fiori/SortItem.js +68 -0
- package/src/sap/ui/webc/fiori/Timeline.js +19 -1
- package/src/sap/ui/webc/fiori/TimelineItem.js +9 -7
- package/src/sap/ui/webc/fiori/UploadCollection.js +13 -3
- package/src/sap/ui/webc/fiori/UploadCollectionItem.js +24 -16
- package/src/sap/ui/webc/fiori/ViewSettingsDialog.js +132 -0
- package/src/sap/ui/webc/fiori/Wizard.js +17 -9
- package/src/sap/ui/webc/fiori/WizardStep.js +25 -11
- package/src/sap/ui/webc/fiori/library.js +264 -5
- package/src/sap/ui/webc/fiori/thirdparty/Bar.js +32 -2
- package/src/sap/ui/webc/fiori/thirdparty/BarcodeScannerDialog.js +18996 -0
- package/src/sap/ui/webc/fiori/thirdparty/FilterItem.js +45 -0
- package/src/sap/ui/webc/fiori/thirdparty/FilterItemOption.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/FlexibleColumnLayout.js +16 -12
- package/src/sap/ui/webc/fiori/thirdparty/IllustratedMessage.js +147 -0
- package/src/sap/ui/webc/fiori/thirdparty/Interfaces.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListGroupItem.js +14 -17
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItem.js +33 -34
- package/src/sap/ui/webc/fiori/thirdparty/NotificationListItemBase.js +13 -9
- package/src/sap/ui/webc/fiori/thirdparty/Page.js +20 -1
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitch.js +6 -3
- package/src/sap/ui/webc/fiori/thirdparty/ProductSwitchItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/ShellBar.js +52 -24
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigation.js +2 -1
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SideNavigationSubItem.js +6 -0
- package/src/sap/ui/webc/fiori/thirdparty/SortItem.js +31 -0
- package/src/sap/ui/webc/fiori/thirdparty/Timeline.js +47 -4
- package/src/sap/ui/webc/fiori/thirdparty/TimelineItem.js +29 -6
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollection.js +16 -10
- package/src/sap/ui/webc/fiori/thirdparty/UploadCollectionItem.js +77 -79
- package/src/sap/ui/webc/fiori/thirdparty/ViewSettingsDialog.js +376 -0
- package/src/sap/ui/webc/fiori/thirdparty/Wizard.js +29 -16
- package/src/sap/ui/webc/fiori/thirdparty/WizardStep.js +2 -2
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Bar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/BarcodeScannerDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FilterItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/FlexibleColumnLayout.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/IllustratedMessage.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/InvisibleTextStyles.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotifactionOverflowActionsPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListGroupItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationListItemBase.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/NotificationPrioIcon.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Page.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitch.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ProductSwitchItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ShellBar.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/SideNavigation.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Timeline.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/TimelineItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollection.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/UploadCollectionItem.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/ViewSettingsDialog.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/Wizard.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardPopover.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/WizardTab.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_belize_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_dark/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcb/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_fiori_3_hcw/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/css/themes/sap_horizon/parameters-bundle.css +1 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/i18n/i18n-defaults.js +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/Themes.js +9 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/json-imports/i18n.js +47 -47
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/BarcodeScannerDialogTemplate.lit.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FilterItemTemplate.lit.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/FlexibleColumnLayoutTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/IllustratedMessageTemplate.lit.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotifactionOverflowActionsPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListGroupItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/NotificationListItemTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/PageTemplate.lit.js +3 -8
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchItemTemplate.lit.js +13 -22
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ProductSwitchTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarItemTemplate.lit.js +3 -12
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarPopoverTemplate.lit.js +5 -14
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ShellBarTemplate.lit.js +21 -29
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationItemPopoverContentTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/SideNavigationTemplate.lit.js +12 -21
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineItemTemplate.lit.js +9 -17
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/TimelineTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionItemTemplate.lit.js +22 -31
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/UploadCollectionTemplate.lit.js +5 -15
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/ViewSettingsDialogTemplate.lit.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardPopoverTemplate.lit.js +4 -13
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTabTemplate.lit.js +7 -16
- package/src/sap/ui/webc/fiori/thirdparty/generated/templates/WizardTemplate.lit.js +5 -14
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Bar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/BarcodeScannerDialog.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FilterItem.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/FlexibleColumnLayout.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/IllustratedMessage.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/InvisibleTextStyles.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotifactionOverflowActionsPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListGroupItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationListItemBase.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/NotificationPrioIcon.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Page.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitch.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ProductSwitchItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ShellBar.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/SideNavigation.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Timeline.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/TimelineItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollection.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/UploadCollectionItem.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/ViewSettingsDialog.css.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/Wizard.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardPopover.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/WizardTab.css.js +3 -3
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_belize_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_dark/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcb/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_fiori_3_hcw/parameters-bundle.css.js +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/generated/themes/sap_horizon/parameters-bundle.css.js +7 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/BeforeSearch.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoActivities.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoData.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoEntries.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoMail.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoNotifications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSavedItems.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/NoTasks.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToLoad.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/UnableToUpload.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-BeforeSearch.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoActivities.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoData.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoEntries.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoMail.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSavedItems.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-NoTasks.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToLoad.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Dialog-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-BeforeSearch.js +38 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoActivities.js +35 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoData.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoEntries.js +39 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoMail.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoNotifications.js +43 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSavedItems.js +42 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoSearchResults.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-NoTasks.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToLoad.js +30 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Scene-UnableToUpload.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-BeforeSearch.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoActivities.js +29 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoData.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoEntries.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoMail.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoNotifications.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSavedItems.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoSearchResults.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-NoTasks.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToLoad.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/sapIllus-Spot-UnableToUpload.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/CodePlaceholder.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Company.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/ExternalLink.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/FaceID.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Fingerprint.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Mission.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Radar.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Services.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpired.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SessionExpiring.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Success.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/SuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/UnsuccessfulAuth.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-ExternalLink.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-FaceID.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Fingerprint.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Lock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Mission.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoApplications.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoFlows.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-NoUsers.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Radar.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Services.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpired.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SessionExpiring.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Success.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-SuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-Unlock.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Dialog-UnsuccessfulAuth.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-CodePlaceholder.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Company.js +36 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-ExternalLink.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-FaceID.js +27 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Fingerprint.js +41 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Lock.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Mission.js +25 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoApplications.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoFlows.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-NoUsers.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Radar.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Services.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpired.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SessionExpiring.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Success.js +24 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-SuccessfulAuth.js +26 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-Unlock.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Scene-UnsuccessfulAuth.js +28 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-CodePlaceholder.js +12 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Company.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-ExternalLink.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-FaceID.js +22 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Fingerprint.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Lock.js +19 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Mission.js +23 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoApplications.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoFlows.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-NoUsers.js +18 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Radar.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Services.js +21 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpired.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SessionExpiring.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Success.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-SuccessfulAuth.js +15 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-Unlock.js +17 -0
- package/src/sap/ui/webc/fiori/thirdparty/illustrations/tnt/tnt-Spot-UnsuccessfulAuth.js +16 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ar-59619ddd.js → messagebundle_ar-f55bd0d9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_bg-b36e00fa.js → messagebundle_bg-eb73ad77.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ca-a103fc34.js → messagebundle_ca-18554b48.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cs-d56df98c.js → messagebundle_cs-7c21900b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_cy-e28cac51.js → messagebundle_cy-04ebca8d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_da-7f08bcaa.js → messagebundle_da-49bb0a1c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_de-a43e24f9.js → messagebundle_de-ba618d63.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_el-8b1bd7a2.js → messagebundle_el-7db9c5fd.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en-502be1f9.js → messagebundle_en-d099f44a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_GB-d28c7c2d.js → messagebundle_en_GB-4887b667.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_sappsd-f0f7ff12.js → messagebundle_en_US_sappsd-65b99ab9.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saprigi-f136d08a.js → messagebundle_en_US_saprigi-617e6535.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_en_US_saptrc-ea579165.js → messagebundle_en_US_saptrc-6d0883b2.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es-cf460452.js → messagebundle_es-f7558331.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_es_MX-b588b49c.js → messagebundle_es_MX-82bc00a1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_et-33a3c1a9.js → messagebundle_et-24b4540a.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fi-05999936.js → messagebundle_fi-8dc53cb0.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr-6b78c685.js → messagebundle_fr-7e340939.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_fr_CA-5cd1bb21.js → messagebundle_fr_CA-d3853c9b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-78b175f0.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hr-1d544b5e.js → messagebundle_hr-3ed6353c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_hu-d9824d87.js → messagebundle_hu-9af2b64b.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_it-590c03c0.js → messagebundle_it-7968f555.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_iw-2a4cd300.js → messagebundle_iw-30a93e6c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ja-a2be15f9.js → messagebundle_ja-2b23c18f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_kk-d1344aab.js → messagebundle_kk-847a0b84.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ko-0da72c2c.js → messagebundle_ko-eaabc5f5.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lt-fe9461f4.js → messagebundle_lt-ac869899.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_lv-217ab319.js → messagebundle_lv-ff63b614.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ms-a35de2b8.js → messagebundle_ms-e844b95d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_nl-9be8eb5b.js → messagebundle_nl-b644fdd4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_no-73f4a816.js → messagebundle_no-aedb265f.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pl-c579e301.js → messagebundle_pl-3f303622.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt-407551a4.js → messagebundle_pt-541e1fa1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_pt_PT-7d09f65f.js → messagebundle_pt_PT-196ce616.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ro-c9bda608.js → messagebundle_ro-cbff6cf1.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_ru-f4dac468.js → messagebundle_ru-ff1b077c.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sh-c66bf858.js → messagebundle_sh-88cafb2d.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sk-8df875ec.js → messagebundle_sk-877257e4.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sl-b18551b8.js → messagebundle_sl-0504465e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_sv-7db1ca43.js → messagebundle_sv-30172f15.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-1e8f0c20.js +97 -0
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_tr-b6eee8da.js → messagebundle_tr-1739cd9a.js} +38 -2
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_uk-6fcd6591.js → messagebundle_uk-b933c172.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_vi-db4b5291.js → messagebundle_vi-329c5bac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_CN-6b87b448.js → messagebundle_zh_CN-4936266e.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/{messagebundle_zh_TW-8b6411cf.js → messagebundle_zh_TW-87ecd6ac.js} +37 -1
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-1b65841f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7ad9af9f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-7cb04d8d.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-9b078ef8.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-aed8d630.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-becae35f.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e0121de4.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-e4fed822.js +13 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/IllustrationMessageType.js +47 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/TimelineLayout.js +20 -0
- package/src/sap/ui/webc/fiori/thirdparty/types/ViewSettingsDialogMode.js +20 -0
- package/ui5.yaml +1 -1
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_hi-71f54fc7.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/messagebundle_th-9445e465.js +0 -61
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-062fdbb6.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-17f8bf4e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-196ef17d.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-8a5a5c79.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-90786b8e.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-d48b31a7.js +0 -9
- package/src/sap/ui/webc/fiori/thirdparty/parameters-bundle.css-dc5c99d6.js +0 -9
|
@@ -26,13 +26,16 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
26
26
|
fileNameClickable: {
|
|
27
27
|
type: Boolean,
|
|
28
28
|
},
|
|
29
|
-
|
|
29
|
+
disableDeleteButton: {
|
|
30
30
|
type: Boolean,
|
|
31
31
|
},
|
|
32
|
-
|
|
32
|
+
hideDeleteButton: {
|
|
33
33
|
type: Boolean,
|
|
34
34
|
},
|
|
35
|
-
|
|
35
|
+
hideRetryButton: {
|
|
36
|
+
type: Boolean,
|
|
37
|
+
},
|
|
38
|
+
hideTerminateButton: {
|
|
36
39
|
type: Boolean,
|
|
37
40
|
},
|
|
38
41
|
progress: {
|
|
@@ -84,93 +87,69 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
84
87
|
];
|
|
85
88
|
}
|
|
86
89
|
static async onDefine() {
|
|
87
|
-
await
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
this.i18nFioriBundle = i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
92
|
-
this._editPressed = false;
|
|
93
|
-
this.doNotCloseInput = false;
|
|
94
|
-
this.isEnter = false;
|
|
95
|
-
}
|
|
96
|
-
onAfterRendering() {
|
|
97
|
-
if (this._editPressed) {
|
|
98
|
-
this._editing = true;
|
|
99
|
-
this._editPressed = false;
|
|
100
|
-
this.focusAndSelectText();
|
|
101
|
-
}
|
|
90
|
+
[UploadCollectionItem.i18nFioriBundle] = await Promise.all([
|
|
91
|
+
i18nBundle.getI18nBundle("@ui5/webcomponents-fiori"),
|
|
92
|
+
super.onDefine(),
|
|
93
|
+
]);
|
|
102
94
|
}
|
|
103
|
-
async
|
|
104
|
-
await
|
|
95
|
+
async _initInputField() {
|
|
96
|
+
await Render.renderFinished();
|
|
105
97
|
const inp = this.shadowRoot.getElementById("ui5-uci-edit-input");
|
|
98
|
+
inp.value = this._fileNameWithoutExtension;
|
|
106
99
|
await Render.renderFinished();
|
|
107
|
-
|
|
108
|
-
|
|
100
|
+
const inpFocusDomRef = inp.getFocusDomRef();
|
|
101
|
+
if (inpFocusDomRef) {
|
|
102
|
+
inpFocusDomRef.focus();
|
|
103
|
+
inpFocusDomRef.setSelectionRange(0, this._fileNameWithoutExtension.length);
|
|
109
104
|
}
|
|
110
105
|
}
|
|
111
|
-
onDetailClick(event) {
|
|
106
|
+
async onDetailClick(event) {
|
|
112
107
|
super.onDetailClick(event);
|
|
113
108
|
this._editing = true;
|
|
109
|
+
await this._initInputField();
|
|
114
110
|
}
|
|
115
111
|
_onDetailKeyup(event) {
|
|
116
112
|
if (Keys.isSpace(event)) {
|
|
117
113
|
this.onDetailClick(event);
|
|
118
114
|
}
|
|
119
115
|
}
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
const path = event.path || (event.composedPath && event.composedPath());
|
|
123
|
-
this._editPressed = this.isDetailPressed(event);
|
|
124
|
-
if (!this._editPressed && path.indexOf(this) > -1) {
|
|
125
|
-
this._editing = false;
|
|
126
|
-
}
|
|
127
|
-
}
|
|
128
|
-
_onInputKeydown(event) {
|
|
129
|
-
this.isEnter = Keys.isEnter(event);
|
|
130
|
-
this.isEscape = Keys.isEscape(event);
|
|
116
|
+
_onInputFocusin(event) {
|
|
117
|
+
event.stopPropagation();
|
|
131
118
|
}
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
if (
|
|
136
|
-
|
|
137
|
-
|
|
119
|
+
_onInputKeyDown(event) {
|
|
120
|
+
if (Keys.isEscape(event)) {
|
|
121
|
+
this._onRenameCancel(event);
|
|
122
|
+
} else if (Keys.isEnter(event)) {
|
|
123
|
+
this._onRename();
|
|
124
|
+
} else if (Keys.isSpace(event)) {
|
|
125
|
+
event.stopImmediatePropagation();
|
|
138
126
|
}
|
|
139
127
|
}
|
|
140
|
-
|
|
141
|
-
const
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
128
|
+
_onRename(event) {
|
|
129
|
+
const inp = this.shadowRoot.getElementById("ui5-uci-edit-input");
|
|
130
|
+
this.fileName = inp.value + this._fileExtension;
|
|
131
|
+
this.fireEvent("rename");
|
|
132
|
+
this._editing = false;
|
|
133
|
+
this._focus();
|
|
145
134
|
}
|
|
146
|
-
|
|
147
|
-
if (
|
|
148
|
-
|
|
149
|
-
}
|
|
150
|
-
if ((!this.isEnter && this.doNotCloseInput) || this.isEscape) {
|
|
151
|
-
[this.fileName, this.tempValue] = [this.tempValue, this.fileName];
|
|
152
|
-
this.isEscape = false;
|
|
153
|
-
return;
|
|
135
|
+
_onRenameKeyup(event) {
|
|
136
|
+
if (Keys.isSpace(event)) {
|
|
137
|
+
this._onRename(event);
|
|
154
138
|
}
|
|
139
|
+
}
|
|
140
|
+
async _onRenameCancel(event) {
|
|
155
141
|
this._editing = false;
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
142
|
+
if (Keys.isEscape(event)) {
|
|
143
|
+
await Render.renderFinished();
|
|
144
|
+
this.shadowRoot.getElementById(`${this._id}-editing-button`).focus();
|
|
145
|
+
} else {
|
|
159
146
|
this._focus();
|
|
160
147
|
}
|
|
161
148
|
}
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
this._focus();
|
|
166
|
-
}
|
|
167
|
-
_onRenameCancel(event) {
|
|
168
|
-
if (!this.isEscape) {
|
|
169
|
-
[this.fileName, this.tempValue] = [this.tempValue, this.fileName];
|
|
149
|
+
_onRenameCancelKeyup(event) {
|
|
150
|
+
if (Keys.isSpace(event)) {
|
|
151
|
+
this._onRenameCancel(event);
|
|
170
152
|
}
|
|
171
|
-
this._editing = false;
|
|
172
|
-
this.doNotCloseInput = false;
|
|
173
|
-
this._focus();
|
|
174
153
|
}
|
|
175
154
|
_focus() {
|
|
176
155
|
this.fireEvent("_focus-requested");
|
|
@@ -181,9 +160,22 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
181
160
|
_onRetry(event) {
|
|
182
161
|
this.fireEvent("retry");
|
|
183
162
|
}
|
|
163
|
+
_onRetryKeyup(event) {
|
|
164
|
+
if (Keys.isSpace(event)) {
|
|
165
|
+
this._onRetry(event);
|
|
166
|
+
}
|
|
167
|
+
}
|
|
184
168
|
_onTerminate(event) {
|
|
185
169
|
this.fireEvent("terminate");
|
|
186
170
|
}
|
|
171
|
+
_onTerminateKeyup(event) {
|
|
172
|
+
if (Keys.isSpace(event)) {
|
|
173
|
+
this._onTerminate(event);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
getFocusDomRef() {
|
|
177
|
+
return this.getDomRef();
|
|
178
|
+
}
|
|
187
179
|
get list() {
|
|
188
180
|
return this.assignedSlot.parentElement;
|
|
189
181
|
}
|
|
@@ -198,8 +190,14 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
198
190
|
},
|
|
199
191
|
};
|
|
200
192
|
}
|
|
201
|
-
get
|
|
202
|
-
return this.
|
|
193
|
+
get renderDeleteButton() {
|
|
194
|
+
return !this.hideDeleteButton;
|
|
195
|
+
}
|
|
196
|
+
get placeSelectionElementAfter() {
|
|
197
|
+
return true;
|
|
198
|
+
}
|
|
199
|
+
get placeSelectionElementBefore() {
|
|
200
|
+
return false;
|
|
203
201
|
}
|
|
204
202
|
get _fileNameWithoutExtension() {
|
|
205
203
|
return this.fileName.substring(0, this.fileName.length - this._fileExtension.length);
|
|
@@ -208,37 +206,37 @@ sap.ui.define(['sap/ui/webc/common/thirdparty/base/i18nBundle', 'sap/ui/webc/mai
|
|
|
208
206
|
return getFileExtension__default(this.fileName);
|
|
209
207
|
}
|
|
210
208
|
get _renameBtnText() {
|
|
211
|
-
return
|
|
209
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT);
|
|
212
210
|
}
|
|
213
211
|
get _cancelRenameBtnText() {
|
|
214
|
-
return
|
|
212
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT);
|
|
215
213
|
}
|
|
216
214
|
get _showProgressIndicator() {
|
|
217
215
|
return this.uploadState !== UploadState.Complete;
|
|
218
216
|
}
|
|
219
217
|
get _progressText() {
|
|
220
218
|
if (this.uploadState === UploadState.Uploading) {
|
|
221
|
-
return
|
|
219
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_UPLOADING_STATE);
|
|
222
220
|
}
|
|
223
221
|
if (this.uploadState === UploadState.Error) {
|
|
224
|
-
return
|
|
222
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_ERROR_STATE);
|
|
225
223
|
}
|
|
226
|
-
return
|
|
224
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_READY_STATE);
|
|
227
225
|
}
|
|
228
226
|
get _showRetry() {
|
|
229
|
-
return !this.
|
|
227
|
+
return !this.hideRetryButton && this.uploadState === UploadState.Error;
|
|
230
228
|
}
|
|
231
229
|
get _showTerminate() {
|
|
232
|
-
return !this.
|
|
230
|
+
return !this.hideTerminateButton && this.uploadState === UploadState.Uploading;
|
|
233
231
|
}
|
|
234
232
|
get _retryButtonTooltip() {
|
|
235
|
-
return
|
|
233
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT);
|
|
236
234
|
}
|
|
237
235
|
get _terminateButtonTooltip() {
|
|
238
|
-
return
|
|
236
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT);
|
|
239
237
|
}
|
|
240
238
|
get _editButtonTooltip() {
|
|
241
|
-
return
|
|
239
|
+
return UploadCollectionItem.i18nFioriBundle.getText(i18nDefaults.UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT);
|
|
242
240
|
}
|
|
243
241
|
get valueStateName() {
|
|
244
242
|
if (this.uploadState === UploadState.Error) {
|
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
sap.ui.define(['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/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 (i18nBundle, Device, litRender, UI5Element, Dialog, Button, Label, GroupHeaderListItem, List, StandardListItem, SegmentedButton, SegmentedButtonItem, Bar, ViewSettingsDialogMode, sort, filter, navBack, i18nDefaults, ViewSettingsDialogTemplate_lit, ViewSettingsDialog_css) { 'use strict';
|
|
2
|
+
|
|
3
|
+
function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e['default'] : e; }
|
|
4
|
+
|
|
5
|
+
var litRender__default = /*#__PURE__*/_interopDefaultLegacy(litRender);
|
|
6
|
+
var UI5Element__default = /*#__PURE__*/_interopDefaultLegacy(UI5Element);
|
|
7
|
+
var Dialog__default = /*#__PURE__*/_interopDefaultLegacy(Dialog);
|
|
8
|
+
var Button__default = /*#__PURE__*/_interopDefaultLegacy(Button);
|
|
9
|
+
var Label__default = /*#__PURE__*/_interopDefaultLegacy(Label);
|
|
10
|
+
var GroupHeaderListItem__default = /*#__PURE__*/_interopDefaultLegacy(GroupHeaderListItem);
|
|
11
|
+
var List__default = /*#__PURE__*/_interopDefaultLegacy(List);
|
|
12
|
+
var StandardListItem__default = /*#__PURE__*/_interopDefaultLegacy(StandardListItem);
|
|
13
|
+
var SegmentedButton__default = /*#__PURE__*/_interopDefaultLegacy(SegmentedButton);
|
|
14
|
+
var SegmentedButtonItem__default = /*#__PURE__*/_interopDefaultLegacy(SegmentedButtonItem);
|
|
15
|
+
|
|
16
|
+
const metadata = {
|
|
17
|
+
tag: "ui5-view-settings-dialog",
|
|
18
|
+
managedSlots: true,
|
|
19
|
+
properties: {
|
|
20
|
+
sortDescending: {
|
|
21
|
+
type: Boolean,
|
|
22
|
+
},
|
|
23
|
+
_recentlyFocused: {
|
|
24
|
+
type: Object,
|
|
25
|
+
},
|
|
26
|
+
_initialSettings: {
|
|
27
|
+
type: Object,
|
|
28
|
+
},
|
|
29
|
+
_confirmedSettings: {
|
|
30
|
+
type: Object,
|
|
31
|
+
},
|
|
32
|
+
_currentSettings: {
|
|
33
|
+
type: Object,
|
|
34
|
+
},
|
|
35
|
+
_currentMode: {
|
|
36
|
+
type: ViewSettingsDialogMode,
|
|
37
|
+
defaultValue: ViewSettingsDialogMode.Sort,
|
|
38
|
+
},
|
|
39
|
+
_filterStepTwo: {
|
|
40
|
+
type: Boolean,
|
|
41
|
+
},
|
|
42
|
+
},
|
|
43
|
+
slots: {
|
|
44
|
+
sortItems: {
|
|
45
|
+
type: HTMLElement,
|
|
46
|
+
},
|
|
47
|
+
filterItems: {
|
|
48
|
+
type: HTMLElement,
|
|
49
|
+
},
|
|
50
|
+
},
|
|
51
|
+
events: {
|
|
52
|
+
confirm: {
|
|
53
|
+
detail: {
|
|
54
|
+
sortOrder: { type: String },
|
|
55
|
+
sortBy: { type: String },
|
|
56
|
+
filters: { type: Array },
|
|
57
|
+
},
|
|
58
|
+
},
|
|
59
|
+
cancel: {
|
|
60
|
+
detail: {
|
|
61
|
+
sortOrder: { type: String },
|
|
62
|
+
sortBy: { type: String },
|
|
63
|
+
filters: { type: Array },
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
};
|
|
68
|
+
class ViewSettingsDialog extends UI5Element__default {
|
|
69
|
+
constructor() {
|
|
70
|
+
super();
|
|
71
|
+
this._currentSettings = {
|
|
72
|
+
sortOrder: [],
|
|
73
|
+
sortBy: [],
|
|
74
|
+
filters: [],
|
|
75
|
+
};
|
|
76
|
+
}
|
|
77
|
+
onBeforeRendering() {
|
|
78
|
+
if (this._currentSettings.filters && this._currentSettings.filters.length) {
|
|
79
|
+
this._setAdditionalTexts();
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
_setAdditionalTexts() {
|
|
83
|
+
this.filterItems.forEach((filter, index) => {
|
|
84
|
+
let selectedCount = 0;
|
|
85
|
+
for (let i = 0; i < filter.values.length; i++) {
|
|
86
|
+
if (this._currentSettings.filters[index].filterOptions[i].selected) {
|
|
87
|
+
selectedCount++;
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
filter.additionalText = !selectedCount ? "" : selectedCount;
|
|
91
|
+
});
|
|
92
|
+
}
|
|
93
|
+
static get render() {
|
|
94
|
+
return litRender__default;
|
|
95
|
+
}
|
|
96
|
+
static get metadata() {
|
|
97
|
+
return metadata;
|
|
98
|
+
}
|
|
99
|
+
static get dependencies() {
|
|
100
|
+
return [
|
|
101
|
+
Bar,
|
|
102
|
+
Button__default,
|
|
103
|
+
Dialog__default,
|
|
104
|
+
Label__default,
|
|
105
|
+
List__default,
|
|
106
|
+
StandardListItem__default,
|
|
107
|
+
GroupHeaderListItem__default,
|
|
108
|
+
SegmentedButton__default,
|
|
109
|
+
SegmentedButtonItem__default,
|
|
110
|
+
];
|
|
111
|
+
}
|
|
112
|
+
static get template() {
|
|
113
|
+
return ViewSettingsDialogTemplate_lit;
|
|
114
|
+
}
|
|
115
|
+
static get styles() {
|
|
116
|
+
return ViewSettingsDialog_css;
|
|
117
|
+
}
|
|
118
|
+
static async onDefine() {
|
|
119
|
+
ViewSettingsDialog.i18nBundle = await i18nBundle.getI18nBundle("@ui5/webcomponents-fiori");
|
|
120
|
+
}
|
|
121
|
+
get _selectedFilter() {
|
|
122
|
+
for (let i = 0; i < this._currentSettings.filters.length; i++) {
|
|
123
|
+
if (this._currentSettings.filters[i].selected) {
|
|
124
|
+
return this._currentSettings.filters[i];
|
|
125
|
+
}
|
|
126
|
+
}
|
|
127
|
+
return "";
|
|
128
|
+
}
|
|
129
|
+
get _filterByTitle() {
|
|
130
|
+
return `${ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_FILTER_BY)}: ${this._selectedFilter.text}`;
|
|
131
|
+
}
|
|
132
|
+
get _dialogTitle() {
|
|
133
|
+
const currentModeText = this._currentMode === ViewSettingsDialogMode.Sort ? i18nDefaults.VSD_DIALOG_TITLE_SORT : i18nDefaults.VSD_FILTER_BY;
|
|
134
|
+
return ViewSettingsDialog.i18nBundle.getText(currentModeText);
|
|
135
|
+
}
|
|
136
|
+
get _okButtonLabel() {
|
|
137
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_SUBMIT_BUTTON);
|
|
138
|
+
}
|
|
139
|
+
get _cancelButtonLabel() {
|
|
140
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_CANCEL_BUTTON);
|
|
141
|
+
}
|
|
142
|
+
get _resetButtonLabel() {
|
|
143
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_RESET_BUTTON);
|
|
144
|
+
}
|
|
145
|
+
get _ascendingLabel() {
|
|
146
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_ORDER_ASCENDING);
|
|
147
|
+
}
|
|
148
|
+
get _descendingLabel() {
|
|
149
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_ORDER_DESCENDING);
|
|
150
|
+
}
|
|
151
|
+
get _sortOrderLabel() {
|
|
152
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_SORT_ORDER);
|
|
153
|
+
}
|
|
154
|
+
get _filterByLabel() {
|
|
155
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_FILTER_BY);
|
|
156
|
+
}
|
|
157
|
+
get _sortByLabel() {
|
|
158
|
+
return ViewSettingsDialog.i18nBundle.getText(i18nDefaults.VSD_SORT_BY);
|
|
159
|
+
}
|
|
160
|
+
get _isPhone() {
|
|
161
|
+
return Device.isPhone();
|
|
162
|
+
}
|
|
163
|
+
get _sortAscending() {
|
|
164
|
+
return !this.sortDescending;
|
|
165
|
+
}
|
|
166
|
+
get _disableResetButton() {
|
|
167
|
+
return this._dialog && this._sortSetttingsAreInitial && this._filteresAreInitial;
|
|
168
|
+
}
|
|
169
|
+
get _sortSetttingsAreInitial() {
|
|
170
|
+
let settingsAreInitial = true;
|
|
171
|
+
["sortBy", "sortOrder"].forEach(sortList => {
|
|
172
|
+
this._currentSettings[sortList].forEach((item, index) => {
|
|
173
|
+
if (item.selected !== this._initialSettings[sortList][index].selected) {
|
|
174
|
+
settingsAreInitial = false;
|
|
175
|
+
}
|
|
176
|
+
});
|
|
177
|
+
});
|
|
178
|
+
return settingsAreInitial;
|
|
179
|
+
}
|
|
180
|
+
get _filteresAreInitial() {
|
|
181
|
+
let filtersAreInitial = true;
|
|
182
|
+
this._currentSettings.filters.forEach((filter, index) => {
|
|
183
|
+
for (let i = 0; i < filter.filterOptions.length; i++) {
|
|
184
|
+
if (filter.filterOptions[i].selected !== this._initialSettings.filters[index].filterOptions[i].selected) {
|
|
185
|
+
filtersAreInitial = false;
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
});
|
|
189
|
+
return filtersAreInitial;
|
|
190
|
+
}
|
|
191
|
+
get _settings() {
|
|
192
|
+
return {
|
|
193
|
+
sortOrder: JSON.parse(JSON.stringify(this.initSortOrderItems)),
|
|
194
|
+
sortBy: JSON.parse(JSON.stringify(this.initSortByItems)),
|
|
195
|
+
filters: this.filterItems.map(item => {
|
|
196
|
+
return {
|
|
197
|
+
text: item.text,
|
|
198
|
+
selected: false,
|
|
199
|
+
filterOptions: item.values.map(optionValue => {
|
|
200
|
+
return {
|
|
201
|
+
text: optionValue.text,
|
|
202
|
+
selected: optionValue.selected,
|
|
203
|
+
};
|
|
204
|
+
}),
|
|
205
|
+
};
|
|
206
|
+
}),
|
|
207
|
+
};
|
|
208
|
+
}
|
|
209
|
+
get initSortByItems() {
|
|
210
|
+
return this.sortItems.map(item => {
|
|
211
|
+
return {
|
|
212
|
+
text: item.text,
|
|
213
|
+
selected: item.selected,
|
|
214
|
+
};
|
|
215
|
+
});
|
|
216
|
+
}
|
|
217
|
+
get initSortOrderItems() {
|
|
218
|
+
return [
|
|
219
|
+
{
|
|
220
|
+
text: this._ascendingLabel,
|
|
221
|
+
selected: true,
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
text: this._descendingLabel,
|
|
225
|
+
selected: false,
|
|
226
|
+
},
|
|
227
|
+
];
|
|
228
|
+
}
|
|
229
|
+
get isModeSort() {
|
|
230
|
+
return this._currentMode === ViewSettingsDialogMode.Sort;
|
|
231
|
+
}
|
|
232
|
+
get isModeFilter() {
|
|
233
|
+
return this._currentMode === ViewSettingsDialogMode.Filter;
|
|
234
|
+
}
|
|
235
|
+
get showBackButton() {
|
|
236
|
+
return this.isModeFilter && this._filterStepTwo;
|
|
237
|
+
}
|
|
238
|
+
get _sortOrderListDomRef() {
|
|
239
|
+
return this.shadowRoot.querySelector("[ui5-list][sort-order]");
|
|
240
|
+
}
|
|
241
|
+
get _sortByList() {
|
|
242
|
+
return this.shadowRoot.querySelector("[ui5-list][sort-by]");
|
|
243
|
+
}
|
|
244
|
+
get _dialogDomRef() {
|
|
245
|
+
return this.shadowRoot.querySelector("[ui5-dialog]");
|
|
246
|
+
}
|
|
247
|
+
show() {
|
|
248
|
+
if (!this._dialog) {
|
|
249
|
+
this._sortOrder = this._sortOrderListDomRef;
|
|
250
|
+
this._sortBy = this._sortByList;
|
|
251
|
+
this._initialSettings = this._settings;
|
|
252
|
+
this._currentSettings = this._settings;
|
|
253
|
+
this._confirmedSettings = this._settings;
|
|
254
|
+
this._dialog = this._dialogDomRef;
|
|
255
|
+
} else {
|
|
256
|
+
this._restoreSettings(this._confirmedSettings);
|
|
257
|
+
}
|
|
258
|
+
this._dialog.show();
|
|
259
|
+
}
|
|
260
|
+
_handleModeChange(event) {
|
|
261
|
+
this._currentMode = ViewSettingsDialogMode[event.detail.selectedItem.getAttribute("mode")];
|
|
262
|
+
}
|
|
263
|
+
_handleFilterValueItemClick(event) {
|
|
264
|
+
this._currentSettings.filters = this._currentSettings.filters.map(filter => {
|
|
265
|
+
if (filter.selected) {
|
|
266
|
+
filter.filterOptions.forEach(option => {
|
|
267
|
+
if (option.text === event.detail.item.innerText) {
|
|
268
|
+
option.selected = !option.selected;
|
|
269
|
+
}
|
|
270
|
+
});
|
|
271
|
+
}
|
|
272
|
+
return filter;
|
|
273
|
+
});
|
|
274
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
275
|
+
}
|
|
276
|
+
_navigateToFilters(event) {
|
|
277
|
+
this._filterStepTwo = false;
|
|
278
|
+
}
|
|
279
|
+
_changeCurrentFilter(event) {
|
|
280
|
+
this._filterStepTwo = true;
|
|
281
|
+
this._currentSettings.filters = this._currentSettings.filters.map(filter => {
|
|
282
|
+
filter.selected = filter.text === event.detail.item.text;
|
|
283
|
+
return filter;
|
|
284
|
+
});
|
|
285
|
+
}
|
|
286
|
+
close() {
|
|
287
|
+
this._dialog && this._dialog.close();
|
|
288
|
+
}
|
|
289
|
+
_focusRecentlyUsedControl() {
|
|
290
|
+
if (!Object.keys(this._recentlyFocused).length) {
|
|
291
|
+
return;
|
|
292
|
+
}
|
|
293
|
+
const recentlyFocusedSelectedItems = this._recentlyFocused.getSelectedItems(),
|
|
294
|
+
recentlyFocusedItems = this._recentlyFocused.items,
|
|
295
|
+
slottedNodesExist = recentlyFocusedItems[1] && recentlyFocusedItems[1].assignedNodes && recentlyFocusedItems[1].assignedNodes().length;
|
|
296
|
+
if (recentlyFocusedSelectedItems.length) {
|
|
297
|
+
recentlyFocusedSelectedItems[0].focus();
|
|
298
|
+
} else if (slottedNodesExist) {
|
|
299
|
+
this._recentlyFocused.focusItem(recentlyFocusedItems[1].assignedNodes()[0]);
|
|
300
|
+
}
|
|
301
|
+
}
|
|
302
|
+
_confirmSettings() {
|
|
303
|
+
this.close();
|
|
304
|
+
this._confirmedSettings = this._currentSettings;
|
|
305
|
+
this.fireEvent("confirm", this.eventsParams);
|
|
306
|
+
}
|
|
307
|
+
_cancelSettings() {
|
|
308
|
+
this._restoreSettings(this._confirmedSettings);
|
|
309
|
+
this.fireEvent("cancel", this.eventsParams);
|
|
310
|
+
this.close();
|
|
311
|
+
}
|
|
312
|
+
get eventsParams() {
|
|
313
|
+
const _currentSortOrderSelected = this._currentSettings.sortOrder.filter(item => item.selected)[0],
|
|
314
|
+
_currentSortBySelected = this._currentSettings.sortBy.filter(item => item.selected)[0],
|
|
315
|
+
sortOrder = _currentSortOrderSelected && _currentSortOrderSelected.text,
|
|
316
|
+
sortBy = _currentSortBySelected && _currentSortBySelected.text;
|
|
317
|
+
return {
|
|
318
|
+
sortOrder,
|
|
319
|
+
sortBy,
|
|
320
|
+
filters: this.selectedFilters,
|
|
321
|
+
};
|
|
322
|
+
}
|
|
323
|
+
get selectedFilters() {
|
|
324
|
+
const result = [];
|
|
325
|
+
this._currentSettings.filters.forEach(filter => {
|
|
326
|
+
const selectedOptions = [];
|
|
327
|
+
filter.filterOptions.forEach(option => {
|
|
328
|
+
if (option.selected) {
|
|
329
|
+
selectedOptions.push(option.text);
|
|
330
|
+
}
|
|
331
|
+
});
|
|
332
|
+
if (selectedOptions.length) {
|
|
333
|
+
result.push({});
|
|
334
|
+
result[result.length - 1][filter.text] = selectedOptions;
|
|
335
|
+
}
|
|
336
|
+
});
|
|
337
|
+
return result;
|
|
338
|
+
}
|
|
339
|
+
_restoreConfirmedOnEscape(evt) {
|
|
340
|
+
if (evt.detail.escPressed) {
|
|
341
|
+
this._cancelSettings();
|
|
342
|
+
this._currentMode = "Sort";
|
|
343
|
+
this._filterStepTwo = false;
|
|
344
|
+
}
|
|
345
|
+
}
|
|
346
|
+
_resetSettings() {
|
|
347
|
+
this._restoreSettings(this._initialSettings);
|
|
348
|
+
this._filterStepTwo = false;
|
|
349
|
+
this._recentlyFocused = this._sortOrder;
|
|
350
|
+
this._focusRecentlyUsedControl();
|
|
351
|
+
}
|
|
352
|
+
_restoreSettings(settings) {
|
|
353
|
+
this._currentSettings = JSON.parse(JSON.stringify(settings));
|
|
354
|
+
}
|
|
355
|
+
_onSortOrderChange(event) {
|
|
356
|
+
this._recentlyFocused = this._sortOrder;
|
|
357
|
+
this._currentSettings.sortOrder = this.initSortOrderItems.map(item => {
|
|
358
|
+
item.selected = item.text === event.detail.item.innerText;
|
|
359
|
+
return item;
|
|
360
|
+
});
|
|
361
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
362
|
+
}
|
|
363
|
+
_onSortByChange(event) {
|
|
364
|
+
this._recentlyFocused = this._sortBy;
|
|
365
|
+
this._currentSettings.sortBy = this.initSortByItems.map(item => {
|
|
366
|
+
item.selected = item.text === event.detail.item.innerText;
|
|
367
|
+
return item;
|
|
368
|
+
});
|
|
369
|
+
this._currentSettings = JSON.parse(JSON.stringify(this._currentSettings));
|
|
370
|
+
}
|
|
371
|
+
}
|
|
372
|
+
ViewSettingsDialog.define();
|
|
373
|
+
|
|
374
|
+
return ViewSettingsDialog;
|
|
375
|
+
|
|
376
|
+
});
|