@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,124 +1,589 @@
|
|
|
1
|
-
sap.ui.define([
|
|
1
|
+
sap.ui.define(["exports"], function (_exports) {
|
|
2
|
+
"use strict";
|
|
2
3
|
|
|
3
|
-
const BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT = {key: "BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT", defaultText: "Cancel"};const BARCODE_SCANNER_DIALOG_LOADING_TXT = {key: "BARCODE_SCANNER_DIALOG_LOADING_TXT", defaultText: "Loading"};const FCL_START_COLUMN_TXT = {key: "FCL_START_COLUMN_TXT", defaultText: "First column"};const FCL_MIDDLE_COLUMN_TXT = {key: "FCL_MIDDLE_COLUMN_TXT", defaultText: "Middle column"};const FCL_END_COLUMN_TXT = {key: "FCL_END_COLUMN_TXT", defaultText: "Last column"};const FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP = {key: "FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP", defaultText: "Expand the first column"};const FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP = {key: "FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP", defaultText: "Collapse the first column"};const FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP = {key: "FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP", defaultText: "Expand the last column"};const FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP = {key: "FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP", defaultText: "Collapse the last column"};const NOTIFICATION_LIST_ITEM_TXT = {key: "NOTIFICATION_LIST_ITEM_TXT", defaultText: "Notification"};const NOTIFICATION_LIST_ITEM_SHOW_MORE = {key: "NOTIFICATION_LIST_ITEM_SHOW_MORE", defaultText: "Show More"};const NOTIFICATION_LIST_ITEM_SHOW_LESS = {key: "NOTIFICATION_LIST_ITEM_SHOW_LESS", defaultText: "Show Less"};const NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE = {key: "NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE", defaultText: "More"};const NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE = {key: "NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE", defaultText: "Close"};const NOTIFICATION_LIST_ITEM_READ = {key: "NOTIFICATION_LIST_ITEM_READ", defaultText: "Read"};const NOTIFICATION_LIST_ITEM_UNREAD = {key: "NOTIFICATION_LIST_ITEM_UNREAD", defaultText: "Unread"};const NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT = {key: "NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT", defaultText: "High Priority"};const NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT = {key: "NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT", defaultText: "Medium Priority"};const NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT = {key: "NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT", defaultText: "Low Priority"};const NOTIFICATION_LIST_GROUP_ITEM_TXT = {key: "NOTIFICATION_LIST_GROUP_ITEM_TXT", defaultText: "Notification Group"};const NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT = {key: "NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT", defaultText: "Counter"};const NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE = {key: "NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE", defaultText: "Close All"};const NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE = {key: "NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE", defaultText: "Collapse Group"};const NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE = {key: "NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE", defaultText: "Expand Group"};const TIMELINE_ARIA_LABEL = {key: "TIMELINE_ARIA_LABEL", defaultText: "Timeline"};const UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT = {key: "UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT", defaultText: "Cancel"};const UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT = {key: "UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT", defaultText: "Rename"};const UPLOADCOLLECTIONITEM_ERROR_STATE = {key: "UPLOADCOLLECTIONITEM_ERROR_STATE", defaultText: "Terminated"};const UPLOADCOLLECTIONITEM_READY_STATE = {key: "UPLOADCOLLECTIONITEM_READY_STATE", defaultText: "Pending"};const UPLOADCOLLECTIONITEM_UPLOADING_STATE = {key: "UPLOADCOLLECTIONITEM_UPLOADING_STATE", defaultText: "Uploading"};const UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT = {key: "UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT", defaultText: "Terminate"};const UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT = {key: "UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT", defaultText: "Retry"};const UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT = {key: "UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT", defaultText: "Edit"};const UPLOADCOLLECTION_NO_DATA_TEXT = {key: "UPLOADCOLLECTION_NO_DATA_TEXT", defaultText: "No files found."};const UPLOADCOLLECTION_NO_DATA_DESCRIPTION = {key: "UPLOADCOLLECTION_NO_DATA_DESCRIPTION", defaultText: "Drop files to upload them or use the \"Upload\" button."};const UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION = {key: "UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION", defaultText: "Upload Collection"};const UPLOADCOLLECTION_DRAG_FILE_INDICATOR = {key: "UPLOADCOLLECTION_DRAG_FILE_INDICATOR", defaultText: "Drag files here."};const UPLOADCOLLECTION_DROP_FILE_INDICATOR = {key: "UPLOADCOLLECTION_DROP_FILE_INDICATOR", defaultText: "Drop files to upload them."};const SHELLBAR_LABEL = {key: "SHELLBAR_LABEL", defaultText: "Shell Bar"};const SHELLBAR_LOGO = {key: "SHELLBAR_LOGO", defaultText: "Logo"};const SHELLBAR_COPILOT = {key: "SHELLBAR_COPILOT", defaultText: "CoPilot"};const SHELLBAR_NOTIFICATIONS = {key: "SHELLBAR_NOTIFICATIONS", defaultText: "{0} Notifications"};const SHELLBAR_PROFILE = {key: "SHELLBAR_PROFILE", defaultText: "Profile"};const SHELLBAR_PRODUCTS = {key: "SHELLBAR_PRODUCTS", defaultText: "Products"};const PRODUCT_SWITCH_CONTAINER_LABEL = {key: "PRODUCT_SWITCH_CONTAINER_LABEL", defaultText: "Products"};const SHELLBAR_SEARCH = {key: "SHELLBAR_SEARCH", defaultText: "Search"};const SHELLBAR_OVERFLOW = {key: "SHELLBAR_OVERFLOW", defaultText: "More"};const SHELLBAR_CANCEL = {key: "SHELLBAR_CANCEL", defaultText: "Cancel"};const WIZARD_NAV_ARIA_LABEL = {key: "WIZARD_NAV_ARIA_LABEL", defaultText: "Wizard Progress Bar"};const WIZARD_LIST_ARIA_LABEL = {key: "WIZARD_LIST_ARIA_LABEL", defaultText: "Wizard Steps"};const WIZARD_LIST_ARIA_DESCRIBEDBY = {key: "WIZARD_LIST_ARIA_DESCRIBEDBY", defaultText: "To activate, press the space bar or Enter"};const WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL = {key: "WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL", defaultText: "Steps"};const WIZARD_OPTIONAL_STEP_ARIA_LABEL = {key: "WIZARD_OPTIONAL_STEP_ARIA_LABEL", defaultText: "Optional"};const WIZARD_STEP_ACTIVE = {key: "WIZARD_STEP_ACTIVE", defaultText: "Active"};const WIZARD_STEP_INACTIVE = {key: "WIZARD_STEP_INACTIVE", defaultText: "Inactive"};const WIZARD_STEP_ARIA_LABEL = {key: "WIZARD_STEP_ARIA_LABEL", defaultText: "Step {0}"};const WIZARD_NAV_ARIA_ROLE_DESCRIPTION = {key: "WIZARD_NAV_ARIA_ROLE_DESCRIPTION", defaultText: "Wizard"};const WIZARD_NAV_STEP_DEFAULT_HEADING = {key: "WIZARD_NAV_STEP_DEFAULT_HEADING", defaultText: "Step"};const VSD_DIALOG_TITLE_SORT = {key: "VSD_DIALOG_TITLE_SORT", defaultText: "View Settings"};const VSD_SUBMIT_BUTTON = {key: "VSD_SUBMIT_BUTTON", defaultText: "OK"};const VSD_CANCEL_BUTTON = {key: "VSD_CANCEL_BUTTON", defaultText: "Cancel"};const VSD_RESET_BUTTON = {key: "VSD_RESET_BUTTON", defaultText: "Reset"};const VSD_SORT_ORDER = {key: "VSD_SORT_ORDER", defaultText: "Sort Order"};const VSD_FILTER_BY = {key: "VSD_FILTER_BY", defaultText: "Filter By"};const VSD_SORT_BY = {key: "VSD_SORT_BY", defaultText: "Sort By"};const VSD_ORDER_ASCENDING = {key: "VSD_ORDER_ASCENDING", defaultText: "Ascending"};const VSD_ORDER_DESCENDING = {key: "VSD_ORDER_DESCENDING", defaultText: "Descending"};const IM_TITLE_BEFORESEARCH = {key: "IM_TITLE_BEFORESEARCH", defaultText: "Let's get some results"};const IM_SUBTITLE_BEFORESEARCH = {key: "IM_SUBTITLE_BEFORESEARCH", defaultText: "Start by providing your search criteria."};const IM_TITLE_NOACTIVITIES = {key: "IM_TITLE_NOACTIVITIES", defaultText: "You've not added any activities yet"};const IM_SUBTITLE_NOACTIVITIES = {key: "IM_SUBTITLE_NOACTIVITIES", defaultText: "Would you like to add one now?"};const IM_TITLE_NODATA = {key: "IM_TITLE_NODATA", defaultText: "There's no data yet"};const IM_SUBTITLE_NODATA = {key: "IM_SUBTITLE_NODATA", defaultText: "When there is, you'll see it here."};const IM_TITLE_NOMAIL = {key: "IM_TITLE_NOMAIL", defaultText: "No new mail"};const IM_SUBTITLE_NOMAIL = {key: "IM_SUBTITLE_NOMAIL", defaultText: "Check back again later."};const IM_TITLE_NOENTRIES = {key: "IM_TITLE_NOENTRIES", defaultText: "There are no entries yet"};const IM_SUBTITLE_NOENTRIES = {key: "IM_SUBTITLE_NOENTRIES", defaultText: "When there are, you'll see them here."};const IM_TITLE_NONOTIFICATIONS = {key: "IM_TITLE_NONOTIFICATIONS", defaultText: "You've not got any new notifications"};const IM_SUBTITLE_NONOTIFICATIONS = {key: "IM_SUBTITLE_NONOTIFICATIONS", defaultText: "Check back again later."};const IM_TITLE_NOSAVEDITEMS = {key: "IM_TITLE_NOSAVEDITEMS", defaultText: "You've not added any favorites yet"};const IM_SUBTITLE_NOSAVEDITEMS = {key: "IM_SUBTITLE_NOSAVEDITEMS", defaultText: "Would you like to create a list of your favorite items now?"};const IM_TITLE_NOSEARCHRESULTS = {key: "IM_TITLE_NOSEARCHRESULTS", defaultText: "No results found"};const IM_SUBTITLE_NOSEARCHRESULTS = {key: "IM_SUBTITLE_NOSEARCHRESULTS", defaultText: "Try changing your search criteria."};const IM_TITLE_NOTASKS = {key: "IM_TITLE_NOTASKS", defaultText: "You’ve not got any new tasks"};const IM_SUBTITLE_NOTASKS = {key: "IM_SUBTITLE_NOTASKS", defaultText: "When you do, you'll see them here."};const IM_TITLE_UNABLETOLOAD = {key: "IM_TITLE_UNABLETOLOAD", defaultText: "Unable to load data"};const IM_SUBTITLE_UNABLETOLOAD = {key: "IM_SUBTITLE_UNABLETOLOAD", defaultText: "Check your Internet connection. If that doesn’t help, try reloading. If that doesn't help either, check with your administrator."};const IM_TITLE_UNABLETOLOADIMAGE = {key: "IM_TITLE_UNABLETOLOADIMAGE", defaultText: "Unable to load image"};const IM_SUBTITLE_UNABLETOLOADIMAGE = {key: "IM_SUBTITLE_UNABLETOLOADIMAGE", defaultText: "We couldn't find the image at the specified location, or the server isn't responding."};const IM_TITLE_UNABLETOUPLOAD = {key: "IM_TITLE_UNABLETOUPLOAD", defaultText: "Unable to upload data"};const IM_SUBTITLE_UNABLETOUPLOAD = {key: "IM_SUBTITLE_UNABLETOUPLOAD", defaultText: "Check your Internet connection. If that doesn’t help, check the file format and file size. Otherwise contact your administrator."};const IM_TITLE_ADDCOLUMN = {key: "IM_TITLE_ADDCOLUMN", defaultText: "Looks like there's free space"};const IM_SUBTITLE_ADDCOLUMN = {key: "IM_SUBTITLE_ADDCOLUMN", defaultText: "You can add more columns in the table settings."};const IM_TITLE_ADDPEOPLE = {key: "IM_TITLE_ADDPEOPLE", defaultText: "You've not added anyone to the calendar yet"};const IM_SUBTITLE_ADDPEOPLE = {key: "IM_SUBTITLE_ADDPEOPLE", defaultText: "Do you want to add someone now?"};const IM_TITLE_BALLOONSKY = {key: "IM_TITLE_BALLOONSKY", defaultText: "You've been appreciated!"};const IM_SUBTITLE_BALLOONSKY = {key: "IM_SUBTITLE_BALLOONSKY", defaultText: "Keep up the great work!"};const IM_TITLE_EMPTYPLANNINGCALENDAR = {key: "IM_TITLE_EMPTYPLANNINGCALENDAR", defaultText: "Nothing planned yet"};const IM_SUBTITLE_EMPTYPLANNINGCALENDAR = {key: "IM_SUBTITLE_EMPTYPLANNINGCALENDAR", defaultText: "There are no activities in this time frame."};const IM_TITLE_FILTERTABLE = {key: "IM_TITLE_FILTERTABLE", defaultText: "Filter options are available"};const IM_SUBTITLE_FILTERTABLE = {key: "IM_SUBTITLE_FILTERTABLE", defaultText: "Filters help you focus on what's most relevant for you."};const IM_TITLE_GROUPTABLE = {key: "IM_TITLE_GROUPTABLE", defaultText: "Try grouping items for a better overview"};const IM_SUBTITLE_GROUPTABLE = {key: "IM_SUBTITLE_GROUPTABLE", defaultText: "You can choose grouping categories in the group settings."};const IM_TITLE_NOFILTERRESULTS = {key: "IM_TITLE_NOFILTERRESULTS", defaultText: "No results found"};const IM_SUBTITLE_NOFILTERRESULTS = {key: "IM_SUBTITLE_NOFILTERRESULTS", defaultText: "Try adjusting your filter criteria."};const IM_TITLE_PAGENOTFOUND = {key: "IM_TITLE_PAGENOTFOUND", defaultText: "Sorry, we can't find this page"};const IM_SUBTITLE_PAGENOTFOUND = {key: "IM_SUBTITLE_PAGENOTFOUND", defaultText: "Please check the URL you are using to call the app."};const IM_TITLE_RESIZECOLUMN = {key: "IM_TITLE_RESIZECOLUMN", defaultText: "Choose your own column width"};const IM_SUBTITLE_RESIZECOLUMN = {key: "IM_SUBTITLE_RESIZECOLUMN", defaultText: "You can resize columns by dragging the column borders."};const IM_TITLE_SORTCOLUMN = {key: "IM_TITLE_SORTCOLUMN", defaultText: "Not seeing the most important items first?"};const IM_SUBTITLE_SORTCOLUMN = {key: "IM_SUBTITLE_SORTCOLUMN", defaultText: "Choose the sort criteria in the sort settings."};const IM_TITLE_SUCCESSSCREEN = {key: "IM_TITLE_SUCCESSSCREEN", defaultText: "Nicely done!"};const IM_SUBTITLE_SUCCESSSCREEN = {key: "IM_SUBTITLE_SUCCESSSCREEN", defaultText: "You completed all your learning assignments."};const IM_TITLE_UPLOADCOLLECTION = {key: "IM_TITLE_UPLOADCOLLECTION", defaultText: "Drop files here"};const IM_SUBTITLE_UPLOADCOLLECTION = {key: "IM_SUBTITLE_UPLOADCOLLECTION", defaultText: "You can also upload several files all at once."};const DSC_SIDE_ARIA_LABEL = {key: "DSC_SIDE_ARIA_LABEL", defaultText: "Side Content"};
|
|
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
|
-
|
|
4
|
+
Object.defineProperty(_exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
_exports.VSD_FILTER_BY = _exports.VSD_DIALOG_TITLE_SORT = _exports.VSD_CANCEL_BUTTON = _exports.UPLOADCOLLECTION_NO_DATA_TEXT = _exports.UPLOADCOLLECTION_NO_DATA_DESCRIPTION = _exports.UPLOADCOLLECTION_DROP_FILE_INDICATOR = _exports.UPLOADCOLLECTION_DRAG_FILE_INDICATOR = _exports.UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION = _exports.UPLOADCOLLECTIONITEM_UPLOADING_STATE = _exports.UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT = _exports.UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT = _exports.UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT = _exports.UPLOADCOLLECTIONITEM_READY_STATE = _exports.UPLOADCOLLECTIONITEM_ERROR_STATE = _exports.UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT = _exports.UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT = _exports.TIMELINE_ARIA_LABEL = _exports.SHELLBAR_SEARCH = _exports.SHELLBAR_PROFILE = _exports.SHELLBAR_PRODUCTS = _exports.SHELLBAR_OVERFLOW = _exports.SHELLBAR_NOTIFICATIONS = _exports.SHELLBAR_LOGO = _exports.SHELLBAR_LABEL = _exports.SHELLBAR_COPILOT = _exports.SHELLBAR_CANCEL = _exports.PRODUCT_SWITCH_CONTAINER_LABEL = _exports.NOTIFICATION_LIST_ITEM_UNREAD = _exports.NOTIFICATION_LIST_ITEM_TXT = _exports.NOTIFICATION_LIST_ITEM_SHOW_MORE = _exports.NOTIFICATION_LIST_ITEM_SHOW_LESS = _exports.NOTIFICATION_LIST_ITEM_READ = _exports.NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE = _exports.NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT = _exports.NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT = _exports.NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT = _exports.NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE = _exports.NOTIFICATION_LIST_GROUP_ITEM_TXT = _exports.NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE = _exports.NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE = _exports.NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT = _exports.NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE = _exports.IM_TITLE_UPLOADCOLLECTION = _exports.IM_TITLE_UNABLETOUPLOAD = _exports.IM_TITLE_UNABLETOLOADIMAGE = _exports.IM_TITLE_UNABLETOLOAD = _exports.IM_TITLE_SUCCESSSCREEN = _exports.IM_TITLE_SORTCOLUMN = _exports.IM_TITLE_RESIZECOLUMN = _exports.IM_TITLE_PAGENOTFOUND = _exports.IM_TITLE_NOTASKS = _exports.IM_TITLE_NOSEARCHRESULTS = _exports.IM_TITLE_NOSAVEDITEMS = _exports.IM_TITLE_NONOTIFICATIONS = _exports.IM_TITLE_NOMAIL = _exports.IM_TITLE_NOFILTERRESULTS = _exports.IM_TITLE_NOENTRIES = _exports.IM_TITLE_NODATA = _exports.IM_TITLE_NOACTIVITIES = _exports.IM_TITLE_GROUPTABLE = _exports.IM_TITLE_FILTERTABLE = _exports.IM_TITLE_EMPTYPLANNINGCALENDAR = _exports.IM_TITLE_BEFORESEARCH = _exports.IM_TITLE_BALLOONSKY = _exports.IM_TITLE_ADDPEOPLE = _exports.IM_TITLE_ADDCOLUMN = _exports.IM_SUBTITLE_UPLOADCOLLECTION = _exports.IM_SUBTITLE_UNABLETOUPLOAD = _exports.IM_SUBTITLE_UNABLETOLOADIMAGE = _exports.IM_SUBTITLE_UNABLETOLOAD = _exports.IM_SUBTITLE_SUCCESSSCREEN = _exports.IM_SUBTITLE_SORTCOLUMN = _exports.IM_SUBTITLE_RESIZECOLUMN = _exports.IM_SUBTITLE_PAGENOTFOUND = _exports.IM_SUBTITLE_NOTASKS = _exports.IM_SUBTITLE_NOSEARCHRESULTS = _exports.IM_SUBTITLE_NOSAVEDITEMS = _exports.IM_SUBTITLE_NONOTIFICATIONS = _exports.IM_SUBTITLE_NOMAIL = _exports.IM_SUBTITLE_NOFILTERRESULTS = _exports.IM_SUBTITLE_NOENTRIES = _exports.IM_SUBTITLE_NODATA = _exports.IM_SUBTITLE_NOACTIVITIES = _exports.IM_SUBTITLE_GROUPTABLE = _exports.IM_SUBTITLE_FILTERTABLE = _exports.IM_SUBTITLE_EMPTYPLANNINGCALENDAR = _exports.IM_SUBTITLE_BEFORESEARCH = _exports.IM_SUBTITLE_BALLOONSKY = _exports.IM_SUBTITLE_ADDPEOPLE = _exports.IM_SUBTITLE_ADDCOLUMN = _exports.FCL_START_COLUMN_TXT = _exports.FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP = _exports.FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP = _exports.FCL_MIDDLE_COLUMN_TXT = _exports.FCL_END_COLUMN_TXT = _exports.FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP = _exports.FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP = _exports.DSC_SIDE_ARIA_LABEL = _exports.BARCODE_SCANNER_DIALOG_LOADING_TXT = _exports.BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT = void 0;
|
|
8
|
+
_exports.WIZARD_STEP_INACTIVE = _exports.WIZARD_STEP_ARIA_LABEL = _exports.WIZARD_STEP_ACTIVE = _exports.WIZARD_OPTIONAL_STEP_ARIA_LABEL = _exports.WIZARD_NAV_STEP_DEFAULT_HEADING = _exports.WIZARD_NAV_ARIA_ROLE_DESCRIPTION = _exports.WIZARD_NAV_ARIA_LABEL = _exports.WIZARD_LIST_ARIA_LABEL = _exports.WIZARD_LIST_ARIA_DESCRIBEDBY = _exports.WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL = _exports.VSD_SUBMIT_BUTTON = _exports.VSD_SORT_ORDER = _exports.VSD_SORT_BY = _exports.VSD_RESET_BUTTON = _exports.VSD_ORDER_DESCENDING = _exports.VSD_ORDER_ASCENDING = void 0;
|
|
9
|
+
const BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT = {
|
|
10
|
+
key: "BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT",
|
|
11
|
+
defaultText: "Cancel"
|
|
12
|
+
};
|
|
13
|
+
_exports.BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT = BARCODE_SCANNER_DIALOG_CANCEL_BUTTON_TXT;
|
|
14
|
+
const BARCODE_SCANNER_DIALOG_LOADING_TXT = {
|
|
15
|
+
key: "BARCODE_SCANNER_DIALOG_LOADING_TXT",
|
|
16
|
+
defaultText: "Loading"
|
|
17
|
+
};
|
|
18
|
+
_exports.BARCODE_SCANNER_DIALOG_LOADING_TXT = BARCODE_SCANNER_DIALOG_LOADING_TXT;
|
|
19
|
+
const FCL_START_COLUMN_TXT = {
|
|
20
|
+
key: "FCL_START_COLUMN_TXT",
|
|
21
|
+
defaultText: "First column"
|
|
22
|
+
};
|
|
23
|
+
_exports.FCL_START_COLUMN_TXT = FCL_START_COLUMN_TXT;
|
|
24
|
+
const FCL_MIDDLE_COLUMN_TXT = {
|
|
25
|
+
key: "FCL_MIDDLE_COLUMN_TXT",
|
|
26
|
+
defaultText: "Middle column"
|
|
27
|
+
};
|
|
28
|
+
_exports.FCL_MIDDLE_COLUMN_TXT = FCL_MIDDLE_COLUMN_TXT;
|
|
29
|
+
const FCL_END_COLUMN_TXT = {
|
|
30
|
+
key: "FCL_END_COLUMN_TXT",
|
|
31
|
+
defaultText: "Last column"
|
|
32
|
+
};
|
|
33
|
+
_exports.FCL_END_COLUMN_TXT = FCL_END_COLUMN_TXT;
|
|
34
|
+
const FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP = {
|
|
35
|
+
key: "FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP",
|
|
36
|
+
defaultText: "Expand the first column"
|
|
37
|
+
};
|
|
38
|
+
_exports.FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP = FCL_START_COLUMN_EXPAND_BUTTON_TOOLTIP;
|
|
39
|
+
const FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP = {
|
|
40
|
+
key: "FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP",
|
|
41
|
+
defaultText: "Collapse the first column"
|
|
42
|
+
};
|
|
43
|
+
_exports.FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP = FCL_START_COLUMN_COLLAPSE_BUTTON_TOOLTIP;
|
|
44
|
+
const FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP = {
|
|
45
|
+
key: "FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP",
|
|
46
|
+
defaultText: "Expand the last column"
|
|
47
|
+
};
|
|
48
|
+
_exports.FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP = FCL_END_COLUMN_EXPAND_BUTTON_TOOLTIP;
|
|
49
|
+
const FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP = {
|
|
50
|
+
key: "FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP",
|
|
51
|
+
defaultText: "Collapse the last column"
|
|
52
|
+
};
|
|
53
|
+
_exports.FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP = FCL_END_COLUMN_COLLAPSE_BUTTON_TOOLTIP;
|
|
54
|
+
const NOTIFICATION_LIST_ITEM_TXT = {
|
|
55
|
+
key: "NOTIFICATION_LIST_ITEM_TXT",
|
|
56
|
+
defaultText: "Notification"
|
|
57
|
+
};
|
|
58
|
+
_exports.NOTIFICATION_LIST_ITEM_TXT = NOTIFICATION_LIST_ITEM_TXT;
|
|
59
|
+
const NOTIFICATION_LIST_ITEM_SHOW_MORE = {
|
|
60
|
+
key: "NOTIFICATION_LIST_ITEM_SHOW_MORE",
|
|
61
|
+
defaultText: "Show More"
|
|
62
|
+
};
|
|
63
|
+
_exports.NOTIFICATION_LIST_ITEM_SHOW_MORE = NOTIFICATION_LIST_ITEM_SHOW_MORE;
|
|
64
|
+
const NOTIFICATION_LIST_ITEM_SHOW_LESS = {
|
|
65
|
+
key: "NOTIFICATION_LIST_ITEM_SHOW_LESS",
|
|
66
|
+
defaultText: "Show Less"
|
|
67
|
+
};
|
|
68
|
+
_exports.NOTIFICATION_LIST_ITEM_SHOW_LESS = NOTIFICATION_LIST_ITEM_SHOW_LESS;
|
|
69
|
+
const NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE = {
|
|
70
|
+
key: "NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE",
|
|
71
|
+
defaultText: "More"
|
|
72
|
+
};
|
|
73
|
+
_exports.NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE = NOTIFICATION_LIST_ITEM_OVERLOW_BTN_TITLE;
|
|
74
|
+
const NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE = {
|
|
75
|
+
key: "NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE",
|
|
76
|
+
defaultText: "Close"
|
|
77
|
+
};
|
|
78
|
+
_exports.NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE = NOTIFICATION_LIST_ITEM_CLOSE_BTN_TITLE;
|
|
79
|
+
const NOTIFICATION_LIST_ITEM_READ = {
|
|
80
|
+
key: "NOTIFICATION_LIST_ITEM_READ",
|
|
81
|
+
defaultText: "Read"
|
|
82
|
+
};
|
|
83
|
+
_exports.NOTIFICATION_LIST_ITEM_READ = NOTIFICATION_LIST_ITEM_READ;
|
|
84
|
+
const NOTIFICATION_LIST_ITEM_UNREAD = {
|
|
85
|
+
key: "NOTIFICATION_LIST_ITEM_UNREAD",
|
|
86
|
+
defaultText: "Unread"
|
|
87
|
+
};
|
|
88
|
+
_exports.NOTIFICATION_LIST_ITEM_UNREAD = NOTIFICATION_LIST_ITEM_UNREAD;
|
|
89
|
+
const NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT = {
|
|
90
|
+
key: "NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT",
|
|
91
|
+
defaultText: "High Priority"
|
|
92
|
+
};
|
|
93
|
+
_exports.NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT = NOTIFICATION_LIST_ITEM_HIGH_PRIORITY_TXT;
|
|
94
|
+
const NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT = {
|
|
95
|
+
key: "NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT",
|
|
96
|
+
defaultText: "Medium Priority"
|
|
97
|
+
};
|
|
98
|
+
_exports.NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT = NOTIFICATION_LIST_ITEM_MEDIUM_PRIORITY_TXT;
|
|
99
|
+
const NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT = {
|
|
100
|
+
key: "NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT",
|
|
101
|
+
defaultText: "Low Priority"
|
|
102
|
+
};
|
|
103
|
+
_exports.NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT = NOTIFICATION_LIST_ITEM_LOW_PRIORITY_TXT;
|
|
104
|
+
const NOTIFICATION_LIST_GROUP_ITEM_TXT = {
|
|
105
|
+
key: "NOTIFICATION_LIST_GROUP_ITEM_TXT",
|
|
106
|
+
defaultText: "Notification Group"
|
|
107
|
+
};
|
|
108
|
+
_exports.NOTIFICATION_LIST_GROUP_ITEM_TXT = NOTIFICATION_LIST_GROUP_ITEM_TXT;
|
|
109
|
+
const NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT = {
|
|
110
|
+
key: "NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT",
|
|
111
|
+
defaultText: "Counter"
|
|
112
|
+
};
|
|
113
|
+
_exports.NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT = NOTIFICATION_LIST_GROUP_ITEM_COUNTER_TXT;
|
|
114
|
+
const NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE = {
|
|
115
|
+
key: "NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE",
|
|
116
|
+
defaultText: "Close All"
|
|
117
|
+
};
|
|
118
|
+
_exports.NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE = NOTIFICATION_LIST_GROUP_ITEM_CLOSE_BTN_TITLE;
|
|
119
|
+
const NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE = {
|
|
120
|
+
key: "NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE",
|
|
121
|
+
defaultText: "Collapse Group"
|
|
122
|
+
};
|
|
123
|
+
_exports.NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE = NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_COLLAPSE_TITLE;
|
|
124
|
+
const NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE = {
|
|
125
|
+
key: "NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE",
|
|
126
|
+
defaultText: "Expand Group"
|
|
127
|
+
};
|
|
128
|
+
_exports.NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE = NOTIFICATION_LIST_GROUP_ITEM_TOGGLE_BTN_EXPAND_TITLE;
|
|
129
|
+
const TIMELINE_ARIA_LABEL = {
|
|
130
|
+
key: "TIMELINE_ARIA_LABEL",
|
|
131
|
+
defaultText: "Timeline"
|
|
132
|
+
};
|
|
133
|
+
_exports.TIMELINE_ARIA_LABEL = TIMELINE_ARIA_LABEL;
|
|
134
|
+
const UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT = {
|
|
135
|
+
key: "UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT",
|
|
136
|
+
defaultText: "Cancel"
|
|
137
|
+
};
|
|
138
|
+
_exports.UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT = UPLOADCOLLECTIONITEM_CANCELBUTTON_TEXT;
|
|
139
|
+
const UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT = {
|
|
140
|
+
key: "UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT",
|
|
141
|
+
defaultText: "Rename"
|
|
142
|
+
};
|
|
143
|
+
_exports.UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT = UPLOADCOLLECTIONITEM_RENAMEBUTTON_TEXT;
|
|
144
|
+
const UPLOADCOLLECTIONITEM_ERROR_STATE = {
|
|
145
|
+
key: "UPLOADCOLLECTIONITEM_ERROR_STATE",
|
|
146
|
+
defaultText: "Terminated"
|
|
147
|
+
};
|
|
148
|
+
_exports.UPLOADCOLLECTIONITEM_ERROR_STATE = UPLOADCOLLECTIONITEM_ERROR_STATE;
|
|
149
|
+
const UPLOADCOLLECTIONITEM_READY_STATE = {
|
|
150
|
+
key: "UPLOADCOLLECTIONITEM_READY_STATE",
|
|
151
|
+
defaultText: "Pending"
|
|
152
|
+
};
|
|
153
|
+
_exports.UPLOADCOLLECTIONITEM_READY_STATE = UPLOADCOLLECTIONITEM_READY_STATE;
|
|
154
|
+
const UPLOADCOLLECTIONITEM_UPLOADING_STATE = {
|
|
155
|
+
key: "UPLOADCOLLECTIONITEM_UPLOADING_STATE",
|
|
156
|
+
defaultText: "Uploading"
|
|
157
|
+
};
|
|
158
|
+
_exports.UPLOADCOLLECTIONITEM_UPLOADING_STATE = UPLOADCOLLECTIONITEM_UPLOADING_STATE;
|
|
159
|
+
const UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT = {
|
|
160
|
+
key: "UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT",
|
|
161
|
+
defaultText: "Terminate"
|
|
162
|
+
};
|
|
163
|
+
_exports.UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT = UPLOADCOLLECTIONITEM_TERMINATE_BUTTON_TEXT;
|
|
164
|
+
const UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT = {
|
|
165
|
+
key: "UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT",
|
|
166
|
+
defaultText: "Retry"
|
|
167
|
+
};
|
|
168
|
+
_exports.UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT = UPLOADCOLLECTIONITEM_RETRY_BUTTON_TEXT;
|
|
169
|
+
const UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT = {
|
|
170
|
+
key: "UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT",
|
|
171
|
+
defaultText: "Edit"
|
|
172
|
+
};
|
|
173
|
+
_exports.UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT = UPLOADCOLLECTIONITEM_EDIT_BUTTON_TEXT;
|
|
174
|
+
const UPLOADCOLLECTION_NO_DATA_TEXT = {
|
|
175
|
+
key: "UPLOADCOLLECTION_NO_DATA_TEXT",
|
|
176
|
+
defaultText: "No files found."
|
|
177
|
+
};
|
|
178
|
+
_exports.UPLOADCOLLECTION_NO_DATA_TEXT = UPLOADCOLLECTION_NO_DATA_TEXT;
|
|
179
|
+
const UPLOADCOLLECTION_NO_DATA_DESCRIPTION = {
|
|
180
|
+
key: "UPLOADCOLLECTION_NO_DATA_DESCRIPTION",
|
|
181
|
+
defaultText: "Drop files to upload them or use the \"Upload\" button."
|
|
182
|
+
};
|
|
183
|
+
_exports.UPLOADCOLLECTION_NO_DATA_DESCRIPTION = UPLOADCOLLECTION_NO_DATA_DESCRIPTION;
|
|
184
|
+
const UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION = {
|
|
185
|
+
key: "UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION",
|
|
186
|
+
defaultText: "Upload Collection"
|
|
187
|
+
};
|
|
188
|
+
_exports.UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION = UPLOADCOLLECTION_ARIA_ROLE_DESCRIPTION;
|
|
189
|
+
const UPLOADCOLLECTION_DRAG_FILE_INDICATOR = {
|
|
190
|
+
key: "UPLOADCOLLECTION_DRAG_FILE_INDICATOR",
|
|
191
|
+
defaultText: "Drag files here."
|
|
192
|
+
};
|
|
193
|
+
_exports.UPLOADCOLLECTION_DRAG_FILE_INDICATOR = UPLOADCOLLECTION_DRAG_FILE_INDICATOR;
|
|
194
|
+
const UPLOADCOLLECTION_DROP_FILE_INDICATOR = {
|
|
195
|
+
key: "UPLOADCOLLECTION_DROP_FILE_INDICATOR",
|
|
196
|
+
defaultText: "Drop files to upload them."
|
|
197
|
+
};
|
|
198
|
+
_exports.UPLOADCOLLECTION_DROP_FILE_INDICATOR = UPLOADCOLLECTION_DROP_FILE_INDICATOR;
|
|
199
|
+
const SHELLBAR_LABEL = {
|
|
200
|
+
key: "SHELLBAR_LABEL",
|
|
201
|
+
defaultText: "Shell Bar"
|
|
202
|
+
};
|
|
203
|
+
_exports.SHELLBAR_LABEL = SHELLBAR_LABEL;
|
|
204
|
+
const SHELLBAR_LOGO = {
|
|
205
|
+
key: "SHELLBAR_LOGO",
|
|
206
|
+
defaultText: "Logo"
|
|
207
|
+
};
|
|
208
|
+
_exports.SHELLBAR_LOGO = SHELLBAR_LOGO;
|
|
209
|
+
const SHELLBAR_COPILOT = {
|
|
210
|
+
key: "SHELLBAR_COPILOT",
|
|
211
|
+
defaultText: "CoPilot"
|
|
212
|
+
};
|
|
213
|
+
_exports.SHELLBAR_COPILOT = SHELLBAR_COPILOT;
|
|
214
|
+
const SHELLBAR_NOTIFICATIONS = {
|
|
215
|
+
key: "SHELLBAR_NOTIFICATIONS",
|
|
216
|
+
defaultText: "{0} Notifications"
|
|
217
|
+
};
|
|
218
|
+
_exports.SHELLBAR_NOTIFICATIONS = SHELLBAR_NOTIFICATIONS;
|
|
219
|
+
const SHELLBAR_PROFILE = {
|
|
220
|
+
key: "SHELLBAR_PROFILE",
|
|
221
|
+
defaultText: "Profile"
|
|
222
|
+
};
|
|
223
|
+
_exports.SHELLBAR_PROFILE = SHELLBAR_PROFILE;
|
|
224
|
+
const SHELLBAR_PRODUCTS = {
|
|
225
|
+
key: "SHELLBAR_PRODUCTS",
|
|
226
|
+
defaultText: "Products"
|
|
227
|
+
};
|
|
228
|
+
_exports.SHELLBAR_PRODUCTS = SHELLBAR_PRODUCTS;
|
|
229
|
+
const PRODUCT_SWITCH_CONTAINER_LABEL = {
|
|
230
|
+
key: "PRODUCT_SWITCH_CONTAINER_LABEL",
|
|
231
|
+
defaultText: "Products"
|
|
232
|
+
};
|
|
233
|
+
_exports.PRODUCT_SWITCH_CONTAINER_LABEL = PRODUCT_SWITCH_CONTAINER_LABEL;
|
|
234
|
+
const SHELLBAR_SEARCH = {
|
|
235
|
+
key: "SHELLBAR_SEARCH",
|
|
236
|
+
defaultText: "Search"
|
|
237
|
+
};
|
|
238
|
+
_exports.SHELLBAR_SEARCH = SHELLBAR_SEARCH;
|
|
239
|
+
const SHELLBAR_OVERFLOW = {
|
|
240
|
+
key: "SHELLBAR_OVERFLOW",
|
|
241
|
+
defaultText: "More"
|
|
242
|
+
};
|
|
243
|
+
_exports.SHELLBAR_OVERFLOW = SHELLBAR_OVERFLOW;
|
|
244
|
+
const SHELLBAR_CANCEL = {
|
|
245
|
+
key: "SHELLBAR_CANCEL",
|
|
246
|
+
defaultText: "Cancel"
|
|
247
|
+
};
|
|
248
|
+
_exports.SHELLBAR_CANCEL = SHELLBAR_CANCEL;
|
|
249
|
+
const WIZARD_NAV_ARIA_LABEL = {
|
|
250
|
+
key: "WIZARD_NAV_ARIA_LABEL",
|
|
251
|
+
defaultText: "Wizard Progress Bar"
|
|
252
|
+
};
|
|
253
|
+
_exports.WIZARD_NAV_ARIA_LABEL = WIZARD_NAV_ARIA_LABEL;
|
|
254
|
+
const WIZARD_LIST_ARIA_LABEL = {
|
|
255
|
+
key: "WIZARD_LIST_ARIA_LABEL",
|
|
256
|
+
defaultText: "Wizard Steps"
|
|
257
|
+
};
|
|
258
|
+
_exports.WIZARD_LIST_ARIA_LABEL = WIZARD_LIST_ARIA_LABEL;
|
|
259
|
+
const WIZARD_LIST_ARIA_DESCRIBEDBY = {
|
|
260
|
+
key: "WIZARD_LIST_ARIA_DESCRIBEDBY",
|
|
261
|
+
defaultText: "To activate, press the space bar or Enter"
|
|
262
|
+
};
|
|
263
|
+
_exports.WIZARD_LIST_ARIA_DESCRIBEDBY = WIZARD_LIST_ARIA_DESCRIBEDBY;
|
|
264
|
+
const WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL = {
|
|
265
|
+
key: "WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL",
|
|
266
|
+
defaultText: "Steps"
|
|
267
|
+
};
|
|
268
|
+
_exports.WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL = WIZARD_ACTIONSHEET_STEPS_ARIA_LABEL;
|
|
269
|
+
const WIZARD_OPTIONAL_STEP_ARIA_LABEL = {
|
|
270
|
+
key: "WIZARD_OPTIONAL_STEP_ARIA_LABEL",
|
|
271
|
+
defaultText: "Optional"
|
|
272
|
+
};
|
|
273
|
+
_exports.WIZARD_OPTIONAL_STEP_ARIA_LABEL = WIZARD_OPTIONAL_STEP_ARIA_LABEL;
|
|
274
|
+
const WIZARD_STEP_ACTIVE = {
|
|
275
|
+
key: "WIZARD_STEP_ACTIVE",
|
|
276
|
+
defaultText: "Active"
|
|
277
|
+
};
|
|
278
|
+
_exports.WIZARD_STEP_ACTIVE = WIZARD_STEP_ACTIVE;
|
|
279
|
+
const WIZARD_STEP_INACTIVE = {
|
|
280
|
+
key: "WIZARD_STEP_INACTIVE",
|
|
281
|
+
defaultText: "Inactive"
|
|
282
|
+
};
|
|
283
|
+
_exports.WIZARD_STEP_INACTIVE = WIZARD_STEP_INACTIVE;
|
|
284
|
+
const WIZARD_STEP_ARIA_LABEL = {
|
|
285
|
+
key: "WIZARD_STEP_ARIA_LABEL",
|
|
286
|
+
defaultText: "Step {0}"
|
|
287
|
+
};
|
|
288
|
+
_exports.WIZARD_STEP_ARIA_LABEL = WIZARD_STEP_ARIA_LABEL;
|
|
289
|
+
const WIZARD_NAV_ARIA_ROLE_DESCRIPTION = {
|
|
290
|
+
key: "WIZARD_NAV_ARIA_ROLE_DESCRIPTION",
|
|
291
|
+
defaultText: "Wizard"
|
|
292
|
+
};
|
|
293
|
+
_exports.WIZARD_NAV_ARIA_ROLE_DESCRIPTION = WIZARD_NAV_ARIA_ROLE_DESCRIPTION;
|
|
294
|
+
const WIZARD_NAV_STEP_DEFAULT_HEADING = {
|
|
295
|
+
key: "WIZARD_NAV_STEP_DEFAULT_HEADING",
|
|
296
|
+
defaultText: "Step"
|
|
297
|
+
};
|
|
298
|
+
_exports.WIZARD_NAV_STEP_DEFAULT_HEADING = WIZARD_NAV_STEP_DEFAULT_HEADING;
|
|
299
|
+
const VSD_DIALOG_TITLE_SORT = {
|
|
300
|
+
key: "VSD_DIALOG_TITLE_SORT",
|
|
301
|
+
defaultText: "View Settings"
|
|
302
|
+
};
|
|
303
|
+
_exports.VSD_DIALOG_TITLE_SORT = VSD_DIALOG_TITLE_SORT;
|
|
304
|
+
const VSD_SUBMIT_BUTTON = {
|
|
305
|
+
key: "VSD_SUBMIT_BUTTON",
|
|
306
|
+
defaultText: "OK"
|
|
307
|
+
};
|
|
308
|
+
_exports.VSD_SUBMIT_BUTTON = VSD_SUBMIT_BUTTON;
|
|
309
|
+
const VSD_CANCEL_BUTTON = {
|
|
310
|
+
key: "VSD_CANCEL_BUTTON",
|
|
311
|
+
defaultText: "Cancel"
|
|
312
|
+
};
|
|
313
|
+
_exports.VSD_CANCEL_BUTTON = VSD_CANCEL_BUTTON;
|
|
314
|
+
const VSD_RESET_BUTTON = {
|
|
315
|
+
key: "VSD_RESET_BUTTON",
|
|
316
|
+
defaultText: "Reset"
|
|
317
|
+
};
|
|
318
|
+
_exports.VSD_RESET_BUTTON = VSD_RESET_BUTTON;
|
|
319
|
+
const VSD_SORT_ORDER = {
|
|
320
|
+
key: "VSD_SORT_ORDER",
|
|
321
|
+
defaultText: "Sort Order"
|
|
322
|
+
};
|
|
323
|
+
_exports.VSD_SORT_ORDER = VSD_SORT_ORDER;
|
|
324
|
+
const VSD_FILTER_BY = {
|
|
325
|
+
key: "VSD_FILTER_BY",
|
|
326
|
+
defaultText: "Filter By"
|
|
327
|
+
};
|
|
328
|
+
_exports.VSD_FILTER_BY = VSD_FILTER_BY;
|
|
329
|
+
const VSD_SORT_BY = {
|
|
330
|
+
key: "VSD_SORT_BY",
|
|
331
|
+
defaultText: "Sort By"
|
|
332
|
+
};
|
|
333
|
+
_exports.VSD_SORT_BY = VSD_SORT_BY;
|
|
334
|
+
const VSD_ORDER_ASCENDING = {
|
|
335
|
+
key: "VSD_ORDER_ASCENDING",
|
|
336
|
+
defaultText: "Ascending"
|
|
337
|
+
};
|
|
338
|
+
_exports.VSD_ORDER_ASCENDING = VSD_ORDER_ASCENDING;
|
|
339
|
+
const VSD_ORDER_DESCENDING = {
|
|
340
|
+
key: "VSD_ORDER_DESCENDING",
|
|
341
|
+
defaultText: "Descending"
|
|
342
|
+
};
|
|
343
|
+
_exports.VSD_ORDER_DESCENDING = VSD_ORDER_DESCENDING;
|
|
344
|
+
const IM_TITLE_BEFORESEARCH = {
|
|
345
|
+
key: "IM_TITLE_BEFORESEARCH",
|
|
346
|
+
defaultText: "Let's get some results"
|
|
347
|
+
};
|
|
348
|
+
_exports.IM_TITLE_BEFORESEARCH = IM_TITLE_BEFORESEARCH;
|
|
349
|
+
const IM_SUBTITLE_BEFORESEARCH = {
|
|
350
|
+
key: "IM_SUBTITLE_BEFORESEARCH",
|
|
351
|
+
defaultText: "Start by providing your search criteria."
|
|
352
|
+
};
|
|
353
|
+
_exports.IM_SUBTITLE_BEFORESEARCH = IM_SUBTITLE_BEFORESEARCH;
|
|
354
|
+
const IM_TITLE_NOACTIVITIES = {
|
|
355
|
+
key: "IM_TITLE_NOACTIVITIES",
|
|
356
|
+
defaultText: "You've not added any activities yet"
|
|
357
|
+
};
|
|
358
|
+
_exports.IM_TITLE_NOACTIVITIES = IM_TITLE_NOACTIVITIES;
|
|
359
|
+
const IM_SUBTITLE_NOACTIVITIES = {
|
|
360
|
+
key: "IM_SUBTITLE_NOACTIVITIES",
|
|
361
|
+
defaultText: "Would you like to add one now?"
|
|
362
|
+
};
|
|
363
|
+
_exports.IM_SUBTITLE_NOACTIVITIES = IM_SUBTITLE_NOACTIVITIES;
|
|
364
|
+
const IM_TITLE_NODATA = {
|
|
365
|
+
key: "IM_TITLE_NODATA",
|
|
366
|
+
defaultText: "There's no data yet"
|
|
367
|
+
};
|
|
368
|
+
_exports.IM_TITLE_NODATA = IM_TITLE_NODATA;
|
|
369
|
+
const IM_SUBTITLE_NODATA = {
|
|
370
|
+
key: "IM_SUBTITLE_NODATA",
|
|
371
|
+
defaultText: "When there is, you'll see it here."
|
|
372
|
+
};
|
|
373
|
+
_exports.IM_SUBTITLE_NODATA = IM_SUBTITLE_NODATA;
|
|
374
|
+
const IM_TITLE_NOMAIL = {
|
|
375
|
+
key: "IM_TITLE_NOMAIL",
|
|
376
|
+
defaultText: "No new mail"
|
|
377
|
+
};
|
|
378
|
+
_exports.IM_TITLE_NOMAIL = IM_TITLE_NOMAIL;
|
|
379
|
+
const IM_SUBTITLE_NOMAIL = {
|
|
380
|
+
key: "IM_SUBTITLE_NOMAIL",
|
|
381
|
+
defaultText: "Check back again later."
|
|
382
|
+
};
|
|
383
|
+
_exports.IM_SUBTITLE_NOMAIL = IM_SUBTITLE_NOMAIL;
|
|
384
|
+
const IM_TITLE_NOENTRIES = {
|
|
385
|
+
key: "IM_TITLE_NOENTRIES",
|
|
386
|
+
defaultText: "There are no entries yet"
|
|
387
|
+
};
|
|
388
|
+
_exports.IM_TITLE_NOENTRIES = IM_TITLE_NOENTRIES;
|
|
389
|
+
const IM_SUBTITLE_NOENTRIES = {
|
|
390
|
+
key: "IM_SUBTITLE_NOENTRIES",
|
|
391
|
+
defaultText: "When there are, you'll see them here."
|
|
392
|
+
};
|
|
393
|
+
_exports.IM_SUBTITLE_NOENTRIES = IM_SUBTITLE_NOENTRIES;
|
|
394
|
+
const IM_TITLE_NONOTIFICATIONS = {
|
|
395
|
+
key: "IM_TITLE_NONOTIFICATIONS",
|
|
396
|
+
defaultText: "You've not got any new notifications"
|
|
397
|
+
};
|
|
398
|
+
_exports.IM_TITLE_NONOTIFICATIONS = IM_TITLE_NONOTIFICATIONS;
|
|
399
|
+
const IM_SUBTITLE_NONOTIFICATIONS = {
|
|
400
|
+
key: "IM_SUBTITLE_NONOTIFICATIONS",
|
|
401
|
+
defaultText: "Check back again later."
|
|
402
|
+
};
|
|
403
|
+
_exports.IM_SUBTITLE_NONOTIFICATIONS = IM_SUBTITLE_NONOTIFICATIONS;
|
|
404
|
+
const IM_TITLE_NOSAVEDITEMS = {
|
|
405
|
+
key: "IM_TITLE_NOSAVEDITEMS",
|
|
406
|
+
defaultText: "You've not added any favorites yet"
|
|
407
|
+
};
|
|
408
|
+
_exports.IM_TITLE_NOSAVEDITEMS = IM_TITLE_NOSAVEDITEMS;
|
|
409
|
+
const IM_SUBTITLE_NOSAVEDITEMS = {
|
|
410
|
+
key: "IM_SUBTITLE_NOSAVEDITEMS",
|
|
411
|
+
defaultText: "Would you like to create a list of your favorite items now?"
|
|
412
|
+
};
|
|
413
|
+
_exports.IM_SUBTITLE_NOSAVEDITEMS = IM_SUBTITLE_NOSAVEDITEMS;
|
|
414
|
+
const IM_TITLE_NOSEARCHRESULTS = {
|
|
415
|
+
key: "IM_TITLE_NOSEARCHRESULTS",
|
|
416
|
+
defaultText: "No results found"
|
|
417
|
+
};
|
|
418
|
+
_exports.IM_TITLE_NOSEARCHRESULTS = IM_TITLE_NOSEARCHRESULTS;
|
|
419
|
+
const IM_SUBTITLE_NOSEARCHRESULTS = {
|
|
420
|
+
key: "IM_SUBTITLE_NOSEARCHRESULTS",
|
|
421
|
+
defaultText: "Try changing your search criteria."
|
|
422
|
+
};
|
|
423
|
+
_exports.IM_SUBTITLE_NOSEARCHRESULTS = IM_SUBTITLE_NOSEARCHRESULTS;
|
|
424
|
+
const IM_TITLE_NOTASKS = {
|
|
425
|
+
key: "IM_TITLE_NOTASKS",
|
|
426
|
+
defaultText: "You’ve not got any new tasks"
|
|
427
|
+
};
|
|
428
|
+
_exports.IM_TITLE_NOTASKS = IM_TITLE_NOTASKS;
|
|
429
|
+
const IM_SUBTITLE_NOTASKS = {
|
|
430
|
+
key: "IM_SUBTITLE_NOTASKS",
|
|
431
|
+
defaultText: "When you do, you'll see them here."
|
|
432
|
+
};
|
|
433
|
+
_exports.IM_SUBTITLE_NOTASKS = IM_SUBTITLE_NOTASKS;
|
|
434
|
+
const IM_TITLE_UNABLETOLOAD = {
|
|
435
|
+
key: "IM_TITLE_UNABLETOLOAD",
|
|
436
|
+
defaultText: "Unable to load data"
|
|
437
|
+
};
|
|
438
|
+
_exports.IM_TITLE_UNABLETOLOAD = IM_TITLE_UNABLETOLOAD;
|
|
439
|
+
const IM_SUBTITLE_UNABLETOLOAD = {
|
|
440
|
+
key: "IM_SUBTITLE_UNABLETOLOAD",
|
|
441
|
+
defaultText: "Check your Internet connection. If that doesn’t help, try reloading. If that doesn't help either, check with your administrator."
|
|
442
|
+
};
|
|
443
|
+
_exports.IM_SUBTITLE_UNABLETOLOAD = IM_SUBTITLE_UNABLETOLOAD;
|
|
444
|
+
const IM_TITLE_UNABLETOLOADIMAGE = {
|
|
445
|
+
key: "IM_TITLE_UNABLETOLOADIMAGE",
|
|
446
|
+
defaultText: "Unable to load image"
|
|
447
|
+
};
|
|
448
|
+
_exports.IM_TITLE_UNABLETOLOADIMAGE = IM_TITLE_UNABLETOLOADIMAGE;
|
|
449
|
+
const IM_SUBTITLE_UNABLETOLOADIMAGE = {
|
|
450
|
+
key: "IM_SUBTITLE_UNABLETOLOADIMAGE",
|
|
451
|
+
defaultText: "We couldn't find the image at the specified location, or the server isn't responding."
|
|
452
|
+
};
|
|
453
|
+
_exports.IM_SUBTITLE_UNABLETOLOADIMAGE = IM_SUBTITLE_UNABLETOLOADIMAGE;
|
|
454
|
+
const IM_TITLE_UNABLETOUPLOAD = {
|
|
455
|
+
key: "IM_TITLE_UNABLETOUPLOAD",
|
|
456
|
+
defaultText: "Unable to upload data"
|
|
457
|
+
};
|
|
458
|
+
_exports.IM_TITLE_UNABLETOUPLOAD = IM_TITLE_UNABLETOUPLOAD;
|
|
459
|
+
const IM_SUBTITLE_UNABLETOUPLOAD = {
|
|
460
|
+
key: "IM_SUBTITLE_UNABLETOUPLOAD",
|
|
461
|
+
defaultText: "Check your Internet connection. If that doesn’t help, check the file format and file size. Otherwise contact your administrator."
|
|
462
|
+
};
|
|
463
|
+
_exports.IM_SUBTITLE_UNABLETOUPLOAD = IM_SUBTITLE_UNABLETOUPLOAD;
|
|
464
|
+
const IM_TITLE_ADDCOLUMN = {
|
|
465
|
+
key: "IM_TITLE_ADDCOLUMN",
|
|
466
|
+
defaultText: "Looks like there's free space"
|
|
467
|
+
};
|
|
468
|
+
_exports.IM_TITLE_ADDCOLUMN = IM_TITLE_ADDCOLUMN;
|
|
469
|
+
const IM_SUBTITLE_ADDCOLUMN = {
|
|
470
|
+
key: "IM_SUBTITLE_ADDCOLUMN",
|
|
471
|
+
defaultText: "You can add more columns in the table settings."
|
|
472
|
+
};
|
|
473
|
+
_exports.IM_SUBTITLE_ADDCOLUMN = IM_SUBTITLE_ADDCOLUMN;
|
|
474
|
+
const IM_TITLE_ADDPEOPLE = {
|
|
475
|
+
key: "IM_TITLE_ADDPEOPLE",
|
|
476
|
+
defaultText: "You've not added anyone to the calendar yet"
|
|
477
|
+
};
|
|
478
|
+
_exports.IM_TITLE_ADDPEOPLE = IM_TITLE_ADDPEOPLE;
|
|
479
|
+
const IM_SUBTITLE_ADDPEOPLE = {
|
|
480
|
+
key: "IM_SUBTITLE_ADDPEOPLE",
|
|
481
|
+
defaultText: "Do you want to add someone now?"
|
|
482
|
+
};
|
|
483
|
+
_exports.IM_SUBTITLE_ADDPEOPLE = IM_SUBTITLE_ADDPEOPLE;
|
|
484
|
+
const IM_TITLE_BALLOONSKY = {
|
|
485
|
+
key: "IM_TITLE_BALLOONSKY",
|
|
486
|
+
defaultText: "You've been appreciated!"
|
|
487
|
+
};
|
|
488
|
+
_exports.IM_TITLE_BALLOONSKY = IM_TITLE_BALLOONSKY;
|
|
489
|
+
const IM_SUBTITLE_BALLOONSKY = {
|
|
490
|
+
key: "IM_SUBTITLE_BALLOONSKY",
|
|
491
|
+
defaultText: "Keep up the great work!"
|
|
492
|
+
};
|
|
493
|
+
_exports.IM_SUBTITLE_BALLOONSKY = IM_SUBTITLE_BALLOONSKY;
|
|
494
|
+
const IM_TITLE_EMPTYPLANNINGCALENDAR = {
|
|
495
|
+
key: "IM_TITLE_EMPTYPLANNINGCALENDAR",
|
|
496
|
+
defaultText: "Nothing planned yet"
|
|
497
|
+
};
|
|
498
|
+
_exports.IM_TITLE_EMPTYPLANNINGCALENDAR = IM_TITLE_EMPTYPLANNINGCALENDAR;
|
|
499
|
+
const IM_SUBTITLE_EMPTYPLANNINGCALENDAR = {
|
|
500
|
+
key: "IM_SUBTITLE_EMPTYPLANNINGCALENDAR",
|
|
501
|
+
defaultText: "There are no activities in this time frame."
|
|
502
|
+
};
|
|
503
|
+
_exports.IM_SUBTITLE_EMPTYPLANNINGCALENDAR = IM_SUBTITLE_EMPTYPLANNINGCALENDAR;
|
|
504
|
+
const IM_TITLE_FILTERTABLE = {
|
|
505
|
+
key: "IM_TITLE_FILTERTABLE",
|
|
506
|
+
defaultText: "Filter options are available"
|
|
507
|
+
};
|
|
508
|
+
_exports.IM_TITLE_FILTERTABLE = IM_TITLE_FILTERTABLE;
|
|
509
|
+
const IM_SUBTITLE_FILTERTABLE = {
|
|
510
|
+
key: "IM_SUBTITLE_FILTERTABLE",
|
|
511
|
+
defaultText: "Filters help you focus on what's most relevant for you."
|
|
512
|
+
};
|
|
513
|
+
_exports.IM_SUBTITLE_FILTERTABLE = IM_SUBTITLE_FILTERTABLE;
|
|
514
|
+
const IM_TITLE_GROUPTABLE = {
|
|
515
|
+
key: "IM_TITLE_GROUPTABLE",
|
|
516
|
+
defaultText: "Try grouping items for a better overview"
|
|
517
|
+
};
|
|
518
|
+
_exports.IM_TITLE_GROUPTABLE = IM_TITLE_GROUPTABLE;
|
|
519
|
+
const IM_SUBTITLE_GROUPTABLE = {
|
|
520
|
+
key: "IM_SUBTITLE_GROUPTABLE",
|
|
521
|
+
defaultText: "You can choose grouping categories in the group settings."
|
|
522
|
+
};
|
|
523
|
+
_exports.IM_SUBTITLE_GROUPTABLE = IM_SUBTITLE_GROUPTABLE;
|
|
524
|
+
const IM_TITLE_NOFILTERRESULTS = {
|
|
525
|
+
key: "IM_TITLE_NOFILTERRESULTS",
|
|
526
|
+
defaultText: "No results found"
|
|
527
|
+
};
|
|
528
|
+
_exports.IM_TITLE_NOFILTERRESULTS = IM_TITLE_NOFILTERRESULTS;
|
|
529
|
+
const IM_SUBTITLE_NOFILTERRESULTS = {
|
|
530
|
+
key: "IM_SUBTITLE_NOFILTERRESULTS",
|
|
531
|
+
defaultText: "Try adjusting your filter criteria."
|
|
532
|
+
};
|
|
533
|
+
_exports.IM_SUBTITLE_NOFILTERRESULTS = IM_SUBTITLE_NOFILTERRESULTS;
|
|
534
|
+
const IM_TITLE_PAGENOTFOUND = {
|
|
535
|
+
key: "IM_TITLE_PAGENOTFOUND",
|
|
536
|
+
defaultText: "Sorry, we can't find this page"
|
|
537
|
+
};
|
|
538
|
+
_exports.IM_TITLE_PAGENOTFOUND = IM_TITLE_PAGENOTFOUND;
|
|
539
|
+
const IM_SUBTITLE_PAGENOTFOUND = {
|
|
540
|
+
key: "IM_SUBTITLE_PAGENOTFOUND",
|
|
541
|
+
defaultText: "Please check the URL you are using to call the app."
|
|
542
|
+
};
|
|
543
|
+
_exports.IM_SUBTITLE_PAGENOTFOUND = IM_SUBTITLE_PAGENOTFOUND;
|
|
544
|
+
const IM_TITLE_RESIZECOLUMN = {
|
|
545
|
+
key: "IM_TITLE_RESIZECOLUMN",
|
|
546
|
+
defaultText: "Choose your own column width"
|
|
547
|
+
};
|
|
548
|
+
_exports.IM_TITLE_RESIZECOLUMN = IM_TITLE_RESIZECOLUMN;
|
|
549
|
+
const IM_SUBTITLE_RESIZECOLUMN = {
|
|
550
|
+
key: "IM_SUBTITLE_RESIZECOLUMN",
|
|
551
|
+
defaultText: "You can resize columns by dragging the column borders."
|
|
552
|
+
};
|
|
553
|
+
_exports.IM_SUBTITLE_RESIZECOLUMN = IM_SUBTITLE_RESIZECOLUMN;
|
|
554
|
+
const IM_TITLE_SORTCOLUMN = {
|
|
555
|
+
key: "IM_TITLE_SORTCOLUMN",
|
|
556
|
+
defaultText: "Not seeing the most important items first?"
|
|
557
|
+
};
|
|
558
|
+
_exports.IM_TITLE_SORTCOLUMN = IM_TITLE_SORTCOLUMN;
|
|
559
|
+
const IM_SUBTITLE_SORTCOLUMN = {
|
|
560
|
+
key: "IM_SUBTITLE_SORTCOLUMN",
|
|
561
|
+
defaultText: "Choose the sort criteria in the sort settings."
|
|
562
|
+
};
|
|
563
|
+
_exports.IM_SUBTITLE_SORTCOLUMN = IM_SUBTITLE_SORTCOLUMN;
|
|
564
|
+
const IM_TITLE_SUCCESSSCREEN = {
|
|
565
|
+
key: "IM_TITLE_SUCCESSSCREEN",
|
|
566
|
+
defaultText: "Nicely done!"
|
|
567
|
+
};
|
|
568
|
+
_exports.IM_TITLE_SUCCESSSCREEN = IM_TITLE_SUCCESSSCREEN;
|
|
569
|
+
const IM_SUBTITLE_SUCCESSSCREEN = {
|
|
570
|
+
key: "IM_SUBTITLE_SUCCESSSCREEN",
|
|
571
|
+
defaultText: "You completed all your learning assignments."
|
|
572
|
+
};
|
|
573
|
+
_exports.IM_SUBTITLE_SUCCESSSCREEN = IM_SUBTITLE_SUCCESSSCREEN;
|
|
574
|
+
const IM_TITLE_UPLOADCOLLECTION = {
|
|
575
|
+
key: "IM_TITLE_UPLOADCOLLECTION",
|
|
576
|
+
defaultText: "Drop files here"
|
|
577
|
+
};
|
|
578
|
+
_exports.IM_TITLE_UPLOADCOLLECTION = IM_TITLE_UPLOADCOLLECTION;
|
|
579
|
+
const IM_SUBTITLE_UPLOADCOLLECTION = {
|
|
580
|
+
key: "IM_SUBTITLE_UPLOADCOLLECTION",
|
|
581
|
+
defaultText: "You can also upload several files all at once."
|
|
582
|
+
};
|
|
583
|
+
_exports.IM_SUBTITLE_UPLOADCOLLECTION = IM_SUBTITLE_UPLOADCOLLECTION;
|
|
584
|
+
const DSC_SIDE_ARIA_LABEL = {
|
|
585
|
+
key: "DSC_SIDE_ARIA_LABEL",
|
|
586
|
+
defaultText: "Side Content"
|
|
587
|
+
};
|
|
588
|
+
_exports.DSC_SIDE_ARIA_LABEL = DSC_SIDE_ARIA_LABEL;
|
|
589
|
+
});
|