@ui5/webcomponents-base 0.0.0-7e7d9ea6f → 0.0.0-81513ce21
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/.eslintignore +6 -4
- package/.eslintrc.cjs +3 -0
- package/.npsrc.json +3 -0
- package/CHANGELOG.md +352 -0
- package/bundle.esm.js +10 -2
- package/config/wdio.conf.cjs +400 -0
- package/{src/AssetRegistry.js → dist/AssetRegistry.d.ts} +1 -7
- package/dist/AssetRegistry.js +2 -7
- package/dist/AssetRegistry.js.map +1 -0
- package/dist/Boot.d.ts +9 -0
- package/dist/Boot.js +56 -44
- package/dist/Boot.js.map +1 -0
- package/{src/CSP.js → dist/CSP.d.ts} +8 -37
- package/dist/CSP.js +16 -24
- package/dist/CSP.js.map +1 -0
- package/dist/CustomElementsRegistry.d.ts +5 -0
- package/dist/CustomElementsRegistry.js +66 -83
- package/dist/CustomElementsRegistry.js.map +1 -0
- package/dist/CustomElementsScope.d.ts +7 -0
- package/dist/CustomElementsScope.js +10 -29
- package/dist/CustomElementsScope.js.map +1 -0
- package/dist/CustomElementsScopeUtils.d.ts +55 -0
- package/dist/CustomElementsScopeUtils.js +34 -52
- package/dist/CustomElementsScopeUtils.js.map +1 -0
- package/dist/DOMObserver.d.ts +11 -0
- package/dist/DOMObserver.js +12 -54
- package/dist/DOMObserver.js.map +1 -0
- package/dist/Device.d.ts +12 -0
- package/dist/Device.js +145 -100
- package/dist/Device.js.map +1 -0
- package/dist/EventProvider.d.ts +25 -0
- package/dist/EventProvider.js +67 -82
- package/dist/EventProvider.js.map +1 -0
- package/dist/FeaturesRegistry.d.ts +3 -0
- package/dist/FeaturesRegistry.js +5 -10
- package/dist/FeaturesRegistry.js.map +1 -0
- package/dist/FontFace.d.ts +2 -0
- package/dist/FontFace.js +14 -19
- package/dist/FontFace.js.map +1 -0
- package/dist/InitialConfiguration.d.ts +27 -0
- package/dist/InitialConfiguration.js +121 -131
- package/dist/InitialConfiguration.js.map +1 -0
- package/dist/Keys.d.ts +57 -0
- package/dist/Keys.js +174 -291
- package/dist/Keys.js.map +1 -0
- package/dist/ManagedStyles.d.ts +8 -0
- package/dist/ManagedStyles.js +62 -68
- package/dist/ManagedStyles.js.map +1 -0
- package/dist/MarkedEvents.d.ts +9 -0
- package/dist/MarkedEvents.js +15 -0
- package/dist/MarkedEvents.js.map +1 -0
- package/dist/MediaRange.d.ts +37 -0
- package/dist/MediaRange.js +54 -65
- package/dist/MediaRange.js.map +1 -0
- package/dist/PropertiesFileFormat.d.ts +8 -0
- package/dist/PropertiesFileFormat.js +72 -82
- package/dist/PropertiesFileFormat.js.map +1 -0
- package/dist/Render.d.ts +47 -0
- package/dist/Render.js +81 -113
- package/dist/Render.js.map +1 -0
- package/dist/RenderQueue.d.ts +19 -0
- package/dist/RenderQueue.js +52 -62
- package/dist/RenderQueue.js.map +1 -0
- package/dist/Runtimes.d.ts +27 -0
- package/dist/Runtimes.js +49 -70
- package/dist/Runtimes.js.map +1 -0
- package/dist/StaticArea.d.ts +3 -0
- package/dist/StaticArea.js +5 -1
- package/dist/StaticArea.js.map +1 -0
- package/dist/StaticAreaItem.d.ts +36 -0
- package/dist/StaticAreaItem.js +84 -86
- package/dist/StaticAreaItem.js.map +1 -0
- package/dist/SystemCSSVars.d.ts +2 -0
- package/dist/SystemCSSVars.js +4 -5
- package/dist/SystemCSSVars.js.map +1 -0
- package/{src/Theming.js → dist/Theming.d.ts} +0 -1
- package/dist/Theming.js +1 -1
- package/dist/Theming.js.map +1 -0
- package/dist/UI5Element.d.ts +380 -0
- package/dist/UI5Element.js +926 -995
- package/dist/UI5Element.js.map +1 -0
- package/dist/UI5ElementMetadata.d.ts +150 -0
- package/dist/UI5ElementMetadata.js +277 -338
- package/dist/UI5ElementMetadata.js.map +1 -0
- package/dist/animations/AnimationQueue.d.ts +8 -0
- package/dist/animations/AnimationQueue.js +31 -38
- package/dist/animations/AnimationQueue.js.map +1 -0
- package/dist/animations/animate.d.ts +14 -0
- package/dist/animations/animate.js +46 -51
- package/dist/animations/animate.js.map +1 -0
- package/dist/animations/scroll.d.ts +5 -0
- package/dist/animations/scroll.js +18 -27
- package/dist/animations/scroll.js.map +1 -0
- package/dist/animations/slideDown.d.ts +5 -0
- package/dist/animations/slideDown.js +53 -78
- package/dist/animations/slideDown.js.map +1 -0
- package/dist/animations/slideUp.d.ts +5 -0
- package/dist/animations/slideUp.js +49 -70
- package/dist/animations/slideUp.js.map +1 -0
- package/dist/api.json +1 -0
- package/dist/asset-registries/Icons.d.ts +38 -0
- package/dist/asset-registries/Icons.js +109 -119
- package/dist/asset-registries/Icons.js.map +1 -0
- package/dist/asset-registries/Illustrations.d.ts +17 -0
- package/dist/asset-registries/Illustrations.js +41 -25
- package/dist/asset-registries/Illustrations.js.map +1 -0
- package/dist/asset-registries/LocaleData.d.ts +7 -0
- package/dist/asset-registries/LocaleData.js +104 -132
- package/dist/asset-registries/LocaleData.js.map +1 -0
- package/dist/asset-registries/Themes.d.ts +11 -0
- package/dist/asset-registries/Themes.js +38 -68
- package/dist/asset-registries/Themes.js.map +1 -0
- package/dist/asset-registries/i18n.d.ts +23 -0
- package/dist/asset-registries/i18n.js +58 -80
- package/dist/asset-registries/i18n.js.map +1 -0
- package/dist/assets/Boot.34b7cea0.css +1 -0
- package/dist/assets/Boot.de8032fc.js +9 -0
- package/dist/assets/bundle.esm.6ca2666f.js +50 -0
- package/dist/assets-meta/IconCollectionsAlias.d.ts +31 -0
- package/dist/assets-meta/IconCollectionsAlias.js +30 -10
- package/dist/assets-meta/IconCollectionsAlias.js.map +1 -0
- package/dist/config/AnimationMode.d.ts +14 -0
- package/dist/config/AnimationMode.js +21 -18
- package/dist/config/AnimationMode.js.map +1 -0
- package/dist/config/CalendarType.d.ts +8 -0
- package/dist/config/CalendarType.js +13 -12
- package/dist/config/CalendarType.js.map +1 -0
- package/dist/config/FormatSettings.d.ts +15 -0
- package/dist/config/FormatSettings.js +15 -9
- package/dist/config/FormatSettings.js.map +1 -0
- package/dist/config/Icons.d.ts +55 -0
- package/dist/config/Icons.js +89 -38
- package/dist/config/Icons.js.map +1 -0
- package/dist/config/Language.d.ts +40 -0
- package/dist/config/Language.js +43 -43
- package/dist/config/Language.js.map +1 -0
- package/dist/config/NoConflict.d.ts +20 -0
- package/dist/config/NoConflict.js +41 -41
- package/dist/config/NoConflict.js.map +1 -0
- package/dist/config/RTL.d.ts +7 -0
- package/dist/config/RTL.js +26 -20
- package/dist/config/RTL.js.map +1 -0
- package/dist/config/Theme.d.ts +38 -0
- package/dist/config/Theme.js +54 -37
- package/dist/config/Theme.js.map +1 -0
- package/dist/config/ThemeRoots.d.ts +4 -0
- package/dist/config/ThemeRoots.js +28 -0
- package/dist/config/ThemeRoots.js.map +1 -0
- package/dist/config/Timezone.d.ts +17 -0
- package/dist/config/Timezone.js +30 -0
- package/dist/config/Timezone.js.map +1 -0
- package/dist/css/FontFace.css +9 -18
- package/dist/decorators/customElement.d.ts +23 -0
- package/dist/decorators/customElement.js +37 -0
- package/dist/decorators/customElement.js.map +1 -0
- package/dist/decorators/event.d.ts +10 -0
- package/dist/decorators/event.js +24 -0
- package/dist/decorators/event.js.map +1 -0
- package/dist/decorators/property.d.ts +9 -0
- package/dist/decorators/property.js +24 -0
- package/dist/decorators/property.js.map +1 -0
- package/dist/decorators/slot.d.ts +9 -0
- package/dist/decorators/slot.js +37 -0
- package/dist/decorators/slot.js.map +1 -0
- package/dist/delegate/ItemNavigation.d.ts +113 -0
- package/dist/delegate/ItemNavigation.js +277 -317
- package/dist/delegate/ItemNavigation.js.map +1 -0
- package/dist/delegate/ResizeHandler.d.ts +25 -0
- package/dist/delegate/ResizeHandler.js +72 -91
- package/dist/delegate/ResizeHandler.js.map +1 -0
- package/dist/delegate/ScrollEnablement.d.ts +49 -0
- package/dist/delegate/ScrollEnablement.js +157 -180
- package/dist/delegate/ScrollEnablement.js.map +1 -0
- package/dist/features/F6Navigation.d.ts +19 -0
- package/dist/features/F6Navigation.js +145 -104
- package/dist/features/F6Navigation.js.map +1 -0
- package/dist/features/LegacyDateFormats.d.ts +18 -0
- package/dist/features/LegacyDateFormats.js +20 -0
- package/dist/features/LegacyDateFormats.js.map +1 -0
- package/dist/features/OpenUI5Element.d.ts +9 -0
- package/dist/features/OpenUI5Element.js +5 -0
- package/dist/features/OpenUI5Element.js.map +1 -0
- package/dist/features/OpenUI5Enablement.d.ts +11 -0
- package/dist/features/OpenUI5Enablement.js +89 -112
- package/dist/features/OpenUI5Enablement.js.map +1 -0
- package/dist/features/OpenUI5Support.d.ts +26 -0
- package/dist/features/OpenUI5Support.js +93 -119
- package/dist/features/OpenUI5Support.js.map +1 -0
- package/dist/generated/AssetParameters.js +2 -0
- package/dist/generated/VersionInfo.js +3 -3
- package/dist/generated/css/BusyIndicator.css.d.ts +3 -0
- package/dist/generated/css/BusyIndicator.css.js +7 -5
- package/dist/generated/css/BusyIndicator.css.js.map +1 -0
- package/dist/generated/css/FontFace.css.d.ts +3 -0
- package/dist/generated/css/FontFace.css.js +7 -5
- package/dist/generated/css/FontFace.css.js.map +1 -0
- package/dist/generated/css/OverrideFontFace.css.d.ts +3 -0
- package/dist/generated/css/OverrideFontFace.css.js +7 -5
- package/dist/generated/css/OverrideFontFace.css.js.map +1 -0
- package/dist/generated/css/SystemCSSVars.css.d.ts +3 -0
- package/dist/generated/css/SystemCSSVars.css.js +7 -5
- package/dist/generated/css/SystemCSSVars.css.js.map +1 -0
- package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.d.ts +4 -0
- package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.js +9 -0
- package/dist/generated/templates/elements/WithComplexTemplateTemplate.lit.js.map +1 -0
- package/dist/getSharedResource.d.ts +11 -0
- package/dist/getSharedResource.js +22 -18
- package/dist/getSharedResource.js.map +1 -0
- package/dist/global.d.ts +40 -0
- package/dist/i18nBundle.d.ts +43 -0
- package/dist/i18nBundle.js +57 -64
- package/dist/i18nBundle.js.map +1 -0
- package/dist/locale/Locale.d.ts +22 -0
- package/dist/locale/Locale.js +75 -87
- package/dist/locale/Locale.js.map +1 -0
- package/dist/locale/RTLAwareRegistry.d.ts +4 -0
- package/dist/locale/RTLAwareRegistry.js +6 -11
- package/dist/locale/RTLAwareRegistry.js.map +1 -0
- package/dist/locale/applyDirection.d.ts +10 -0
- package/dist/locale/applyDirection.js +7 -7
- package/dist/locale/applyDirection.js.map +1 -0
- package/dist/locale/directionChange.d.ts +15 -0
- package/dist/locale/directionChange.js +7 -15
- package/dist/locale/directionChange.js.map +1 -0
- package/dist/locale/getEffectiveDir.d.ts +2 -0
- package/dist/locale/getEffectiveDir.js +20 -24
- package/dist/locale/getEffectiveDir.js.map +1 -0
- package/dist/locale/getLocale.d.ts +7 -0
- package/dist/locale/getLocale.js +26 -29
- package/dist/locale/getLocale.js.map +1 -0
- package/dist/locale/languageChange.d.ts +5 -0
- package/dist/locale/languageChange.js +8 -16
- package/dist/locale/languageChange.js.map +1 -0
- package/dist/locale/nextFallbackLocale.d.ts +8 -0
- package/dist/locale/nextFallbackLocale.js +15 -19
- package/dist/locale/nextFallbackLocale.js.map +1 -0
- package/dist/locale/normalizeLocale.d.ts +7 -0
- package/dist/locale/normalizeLocale.js +34 -41
- package/dist/locale/normalizeLocale.js.map +1 -0
- package/dist/renderer/LitRenderer.d.ts +14 -0
- package/dist/renderer/LitRenderer.js +28 -39
- package/dist/renderer/LitRenderer.js.map +1 -0
- package/dist/renderer/executeTemplate.d.ts +13 -0
- package/dist/renderer/executeTemplate.js +12 -16
- package/dist/renderer/executeTemplate.js.map +1 -0
- package/dist/sap/base/Log.js +28 -29
- package/dist/sap/base/assert.js +5 -6
- package/dist/sap/base/security/URLListValidator.js +13 -2
- package/dist/sap/ui/thirdparty/caja-html-sanitizer.js +1 -1
- package/dist/theming/CustomStyle.d.ts +6 -0
- package/dist/theming/CustomStyle.js +33 -45
- package/dist/theming/CustomStyle.js.map +1 -0
- package/dist/theming/ThemeLoaded.d.ts +5 -0
- package/dist/theming/ThemeLoaded.js +8 -16
- package/dist/theming/ThemeLoaded.js.map +1 -0
- package/dist/theming/ThemeRegistered.d.ts +4 -0
- package/dist/theming/ThemeRegistered.js +11 -0
- package/dist/theming/ThemeRegistered.js.map +1 -0
- package/dist/theming/applyTheme.d.ts +2 -0
- package/dist/theming/applyTheme.js +60 -64
- package/dist/theming/applyTheme.js.map +1 -0
- package/dist/theming/getConstructableStyle.d.ts +9 -0
- package/dist/theming/getConstructableStyle.js +12 -17
- package/dist/theming/getConstructableStyle.js.map +1 -0
- package/dist/theming/getEffectiveLinksHrefs.d.ts +3 -0
- package/dist/theming/getEffectiveLinksHrefs.js +12 -22
- package/dist/theming/getEffectiveLinksHrefs.js.map +1 -0
- package/dist/theming/getEffectiveStyle.d.ts +3 -0
- package/dist/theming/getEffectiveStyle.js +24 -31
- package/dist/theming/getEffectiveStyle.js.map +1 -0
- package/dist/theming/getStylesString.d.ts +3 -0
- package/dist/theming/getStylesString.js +9 -13
- package/dist/theming/getStylesString.js.map +1 -0
- package/dist/theming/getThemeDesignerTheme.d.ts +7 -0
- package/dist/theming/getThemeDesignerTheme.js +72 -79
- package/dist/theming/getThemeDesignerTheme.js.map +1 -0
- package/dist/theming/preloadLinks.d.ts +3 -0
- package/dist/theming/preloadLinks.js +13 -17
- package/dist/theming/preloadLinks.js.map +1 -0
- package/dist/thirdparty/_merge.d.ts +2 -0
- package/dist/thirdparty/_merge.js +7 -4
- package/dist/thirdparty/_merge.js.map +1 -0
- package/dist/thirdparty/isPlainObject.d.ts +2 -0
- package/dist/thirdparty/isPlainObject.js +11 -10
- package/dist/thirdparty/isPlainObject.js.map +1 -0
- package/dist/thirdparty/merge.d.ts +2 -0
- package/dist/thirdparty/merge.js +4 -8
- package/dist/thirdparty/merge.js.map +1 -0
- package/dist/types/AnimationMode.d.ts +32 -0
- package/dist/types/AnimationMode.js +33 -6
- package/dist/types/AnimationMode.js.map +1 -0
- package/dist/types/CSSColor.d.ts +15 -0
- package/dist/types/CSSColor.js +14 -5
- package/dist/types/CSSColor.js.map +1 -0
- package/dist/types/CalendarType.d.ts +37 -0
- package/dist/types/CalendarType.js +35 -18
- package/dist/types/CalendarType.js.map +1 -0
- package/dist/types/DOMReference.d.ts +17 -0
- package/dist/types/DOMReference.js +25 -0
- package/dist/types/DOMReference.js.map +1 -0
- package/dist/types/DataType.d.ts +25 -0
- package/dist/types/DataType.js +33 -26
- package/dist/types/DataType.js.map +1 -0
- package/dist/types/Float.d.ts +17 -0
- package/dist/types/Float.js +17 -10
- package/dist/types/Float.js.map +1 -0
- package/dist/types/Integer.d.ts +17 -0
- package/dist/types/Integer.js +17 -9
- package/dist/types/Integer.js.map +1 -0
- package/dist/types/InvisibleMessageMode.d.ts +25 -0
- package/dist/types/InvisibleMessageMode.js +20 -23
- package/dist/types/InvisibleMessageMode.js.map +1 -0
- package/dist/types/ItemNavigationBehavior.d.ts +24 -0
- package/dist/types/ItemNavigationBehavior.js +22 -12
- package/dist/types/ItemNavigationBehavior.js.map +1 -0
- package/dist/types/NavigationMode.d.ts +32 -0
- package/dist/types/NavigationMode.js +33 -6
- package/dist/types/NavigationMode.js.map +1 -0
- package/dist/types/ValueState.d.ts +42 -0
- package/dist/types/ValueState.js +41 -19
- package/dist/types/ValueState.js.map +1 -0
- package/dist/types.d.ts +18 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/updateShadowRoot.d.ts +8 -0
- package/dist/updateShadowRoot.js +29 -17
- package/dist/updateShadowRoot.js.map +1 -0
- package/dist/util/AriaLabelHelper.d.ts +15 -0
- package/dist/util/AriaLabelHelper.js +166 -36
- package/dist/util/AriaLabelHelper.js.map +1 -0
- package/dist/util/Caret.d.ts +7 -0
- package/dist/util/Caret.js +16 -25
- package/dist/util/Caret.js.map +1 -0
- package/dist/util/ColorConversion.d.ts +30 -0
- package/dist/util/ColorConversion.js +311 -372
- package/dist/util/ColorConversion.js.map +1 -0
- package/dist/util/FetchHelper.d.ts +3 -0
- package/dist/util/FetchHelper.js +19 -25
- package/dist/util/FetchHelper.js.map +1 -0
- package/dist/util/FocusableElements.d.ts +4 -0
- package/dist/util/FocusableElements.js +64 -71
- package/dist/util/FocusableElements.js.map +1 -0
- package/{src/util/HTMLSanitizer.js → dist/util/HTMLSanitizer.d.ts} +1 -5
- package/dist/util/HTMLSanitizer.js +4 -5
- package/dist/util/HTMLSanitizer.js.map +1 -0
- package/dist/util/InvisibleMessage.d.ts +10 -0
- package/dist/util/InvisibleMessage.js +40 -53
- package/dist/util/InvisibleMessage.js.map +1 -0
- package/dist/util/PopupUtils.d.ts +7 -0
- package/dist/util/PopupUtils.js +58 -77
- package/dist/util/PopupUtils.js.map +1 -0
- package/dist/util/SlotsHelper.d.ts +9 -0
- package/dist/util/SlotsHelper.js +22 -35
- package/dist/util/SlotsHelper.js.map +1 -0
- package/dist/util/StringHelper.d.ts +3 -0
- package/dist/util/StringHelper.js +17 -20
- package/dist/util/StringHelper.js.map +1 -0
- package/dist/util/TabbableElements.d.ts +17 -0
- package/dist/util/TabbableElements.js +53 -47
- package/dist/util/TabbableElements.js.map +1 -0
- package/dist/util/arraysAreEqual.d.ts +2 -0
- package/dist/util/arraysAreEqual.js +10 -12
- package/dist/util/arraysAreEqual.js.map +1 -0
- package/{src/util/clamp.js → dist/util/clamp.d.ts} +1 -4
- package/dist/util/clamp.js +2 -2
- package/dist/util/clamp.js.map +1 -0
- package/dist/util/createLinkInHead.d.ts +7 -0
- package/dist/util/createLinkInHead.js +14 -12
- package/dist/util/createLinkInHead.js.map +1 -0
- package/dist/util/createStyleInHead.d.ts +8 -0
- package/dist/util/createStyleInHead.js +10 -10
- package/dist/util/createStyleInHead.js.map +1 -0
- package/dist/util/debounce.d.ts +2 -0
- package/dist/util/debounce.js +6 -8
- package/dist/util/debounce.js.map +1 -0
- package/dist/util/detectNavigatorLanguage.d.ts +2 -0
- package/dist/util/detectNavigatorLanguage.js +7 -10
- package/dist/util/detectNavigatorLanguage.js.map +1 -0
- package/dist/util/escapeRegex.d.ts +8 -0
- package/dist/util/escapeRegex.js +8 -7
- package/dist/util/escapeRegex.js.map +1 -0
- package/dist/util/formatMessage.d.ts +2 -0
- package/dist/util/formatMessage.js +15 -19
- package/dist/util/formatMessage.js.map +1 -0
- package/dist/util/generateHighlightedMarkup.d.ts +9 -0
- package/dist/util/generateHighlightedMarkup.js +26 -27
- package/dist/util/generateHighlightedMarkup.js.map +1 -0
- package/dist/util/getActiveElement.d.ts +2 -0
- package/dist/util/getActiveElement.js +6 -8
- package/dist/util/getActiveElement.js.map +1 -0
- package/dist/util/getClassCopy.d.ts +400 -0
- package/dist/util/getClassCopy.js +7 -7
- package/dist/util/getClassCopy.js.map +1 -0
- package/dist/util/getDesigntimePropertyAsArray.d.ts +2 -0
- package/dist/util/getDesigntimePropertyAsArray.js +4 -3
- package/dist/util/getDesigntimePropertyAsArray.js.map +1 -0
- package/dist/util/getEffectiveContentDensity.d.ts +2 -0
- package/dist/util/getEffectiveContentDensity.js +2 -3
- package/dist/util/getEffectiveContentDensity.js.map +1 -0
- package/dist/util/getEffectiveScrollbarStyle.d.ts +2 -0
- package/dist/util/getEffectiveScrollbarStyle.js +4 -0
- package/dist/util/getEffectiveScrollbarStyle.js.map +1 -0
- package/dist/util/getFastNavigationGroups.d.ts +2 -0
- package/dist/util/getFastNavigationGroups.js +51 -0
- package/dist/util/getFastNavigationGroups.js.map +1 -0
- package/{src/util/getFileExtension.js → dist/util/getFileExtension.d.ts} +3 -12
- package/dist/util/getFileExtension.js +9 -11
- package/dist/util/getFileExtension.js.map +1 -0
- package/{src/util/getNormalizedTarget.js → dist/util/getNormalizedTarget.d.ts} +1 -10
- package/dist/util/getNormalizedTarget.js +7 -9
- package/dist/util/getNormalizedTarget.js.map +1 -0
- package/dist/util/getSingletonElementInstance.d.ts +2 -0
- package/dist/util/getSingletonElementInstance.js +7 -10
- package/dist/util/getSingletonElementInstance.js.map +1 -0
- package/dist/util/isElementClickable.d.ts +2 -0
- package/dist/util/isElementClickable.js +16 -0
- package/dist/util/isElementClickable.js.map +1 -0
- package/dist/util/isElementHidden.d.ts +2 -0
- package/dist/util/isElementHidden.js +8 -0
- package/dist/util/isElementHidden.js.map +1 -0
- package/dist/util/isElementInView.d.ts +6 -0
- package/dist/util/isElementInView.js +6 -9
- package/dist/util/isElementInView.js.map +1 -0
- package/dist/util/isElementTabbable.d.ts +9 -0
- package/dist/util/isElementTabbable.js +30 -0
- package/dist/util/isElementTabbable.js.map +1 -0
- package/dist/util/isValidPropertyName.d.ts +8 -0
- package/dist/util/isValidPropertyName.js +16 -17
- package/dist/util/isValidPropertyName.js.map +1 -0
- package/dist/util/whenDOMReady.d.ts +2 -0
- package/dist/util/whenDOMReady.js +11 -10
- package/dist/util/whenDOMReady.js.map +1 -0
- package/dist/util/willShowContent.d.ts +2 -0
- package/dist/util/willShowContent.js +7 -0
- package/dist/util/willShowContent.js.map +1 -0
- package/dist/validateThemeRoot.d.ts +2 -0
- package/dist/validateThemeRoot.js +48 -0
- package/dist/validateThemeRoot.js.map +1 -0
- package/index.js +227 -1
- package/lib/generate-asset-parameters/index.js +4 -2
- package/lib/generate-styles/index.js +13 -8
- package/lib/generate-version-info/index.js +1 -1
- package/{package-scripts.js → package-scripts.cjs} +24 -9
- package/package.json +5 -4
- package/src/css/FontFace.css +9 -18
- package/tsconfig.json +15 -0
- package/config/wdio.conf.js +0 -1
- package/dist/RenderScheduler.js +0 -44
- package/dist/animations/config.js +0 -5
- package/dist/assets/bundle.esm.691f93f5.js +0 -43
- package/dist/types/CSSSize.js +0 -9
- package/dist/types/PopupState.js +0 -37
- package/dist/util/findNodeOwner.js +0 -35
- package/dist/util/isDefaultSlotProvided.js +0 -11
- package/dist/util/isDescendantOf.js +0 -15
- package/dist/util/isNodeClickable.js +0 -19
- package/dist/util/isNodeHidden.js +0 -9
- package/dist/util/isNodeTabbable.js +0 -28
- package/dist/util/setToArray.js +0 -10
- package/hash.txt +0 -1
- package/src/Boot.js +0 -59
- package/src/CustomElementsRegistry.js +0 -95
- package/src/CustomElementsScope.js +0 -30
- package/src/CustomElementsScopeUtils.js +0 -108
- package/src/DOMObserver.js +0 -65
- package/src/Device.js +0 -121
- package/src/EventProvider.js +0 -85
- package/src/FeaturesRegistry.js +0 -14
- package/src/FontFace.js +0 -30
- package/src/InitialConfiguration.js +0 -166
- package/src/Keys.js +0 -295
- package/src/ManagedStyles.js +0 -83
- package/src/MediaRange.js +0 -109
- package/src/PropertiesFileFormat.js +0 -95
- package/src/Render.js +0 -175
- package/src/RenderQueue.js +0 -66
- package/src/RenderScheduler.js +0 -44
- package/src/Runtimes.js +0 -107
- package/src/StaticArea.js +0 -3
- package/src/StaticAreaItem.js +0 -101
- package/src/SystemCSSVars.js +0 -10
- package/src/UI5Element.js +0 -1033
- package/src/UI5ElementMetadata.js +0 -352
- package/src/animations/AnimationQueue.js +0 -42
- package/src/animations/animate.js +0 -53
- package/src/animations/config.js +0 -5
- package/src/animations/scroll.js +0 -28
- package/src/animations/slideDown.js +0 -79
- package/src/animations/slideUp.js +0 -71
- package/src/asset-registries/Icons.js +0 -135
- package/src/asset-registries/Illustrations.js +0 -30
- package/src/asset-registries/LocaleData.js +0 -164
- package/src/asset-registries/Themes.js +0 -82
- package/src/asset-registries/i18n.js +0 -123
- package/src/assets-meta/IconCollectionsAlias.js +0 -18
- package/src/config/AnimationMode.js +0 -23
- package/src/config/CalendarType.js +0 -18
- package/src/config/FormatSettings.js +0 -13
- package/src/config/Icons.js +0 -52
- package/src/config/Language.js +0 -68
- package/src/config/NoConflict.js +0 -51
- package/src/config/RTL.js +0 -31
- package/src/config/Theme.js +0 -53
- package/src/delegate/ItemNavigation.js +0 -356
- package/src/delegate/ResizeHandler.js +0 -106
- package/src/delegate/ScrollEnablement.js +0 -188
- package/src/features/F6Navigation.js +0 -110
- package/src/features/OpenUI5Enablement.js +0 -119
- package/src/features/OpenUI5Support.js +0 -125
- package/src/getSharedResource.js +0 -30
- package/src/i18nBundle.js +0 -86
- package/src/locale/Locale.js +0 -91
- package/src/locale/RTLAwareRegistry.js +0 -14
- package/src/locale/applyDirection.js +0 -17
- package/src/locale/directionChange.js +0 -32
- package/src/locale/getEffectiveDir.js +0 -28
- package/src/locale/getLocale.js +0 -41
- package/src/locale/languageChange.js +0 -22
- package/src/locale/nextFallbackLocale.js +0 -28
- package/src/locale/normalizeLocale.js +0 -54
- package/src/renderer/LitRenderer.js +0 -52
- package/src/renderer/executeTemplate.js +0 -34
- package/src/theming/CustomStyle.js +0 -60
- package/src/theming/ThemeLoaded.js +0 -22
- package/src/theming/applyTheme.js +0 -79
- package/src/theming/getConstructableStyle.js +0 -30
- package/src/theming/getEffectiveLinksHrefs.js +0 -27
- package/src/theming/getEffectiveStyle.js +0 -39
- package/src/theming/getStylesString.js +0 -15
- package/src/theming/getThemeDesignerTheme.js +0 -87
- package/src/theming/preloadLinks.js +0 -23
- package/src/thirdparty/_merge.js +0 -32
- package/src/thirdparty/isPlainObject.js +0 -18
- package/src/thirdparty/merge.js +0 -10
- package/src/types/AnimationMode.js +0 -7
- package/src/types/CSSColor.js +0 -9
- package/src/types/CSSSize.js +0 -9
- package/src/types/CalendarType.js +0 -22
- package/src/types/DataType.js +0 -37
- package/src/types/Float.js +0 -14
- package/src/types/Integer.js +0 -13
- package/src/types/InvisibleMessageMode.js +0 -30
- package/src/types/ItemNavigationBehavior.js +0 -16
- package/src/types/NavigationMode.js +0 -7
- package/src/types/PopupState.js +0 -37
- package/src/types/ValueState.js +0 -22
- package/src/updateShadowRoot.js +0 -29
- package/src/util/AriaLabelHelper.js +0 -41
- package/src/util/Caret.js +0 -32
- package/src/util/ColorConversion.js +0 -398
- package/src/util/FetchHelper.js +0 -31
- package/src/util/FocusableElements.js +0 -79
- package/src/util/InvisibleMessage.js +0 -69
- package/src/util/PopupUtils.js +0 -93
- package/src/util/SlotsHelper.js +0 -43
- package/src/util/StringHelper.js +0 -26
- package/src/util/TabbableElements.js +0 -51
- package/src/util/arraysAreEqual.js +0 -15
- package/src/util/createLinkInHead.js +0 -19
- package/src/util/createStyleInHead.js +0 -18
- package/src/util/debounce.js +0 -17
- package/src/util/detectNavigatorLanguage.js +0 -13
- package/src/util/escapeRegex.js +0 -10
- package/src/util/findNodeOwner.js +0 -35
- package/src/util/formatMessage.js +0 -23
- package/src/util/generateHighlightedMarkup.js +0 -42
- package/src/util/getActiveElement.js +0 -11
- package/src/util/getClassCopy.js +0 -10
- package/src/util/getDesigntimePropertyAsArray.js +0 -4
- package/src/util/getEffectiveContentDensity.js +0 -5
- package/src/util/getSingletonElementInstance.js +0 -13
- package/src/util/isDefaultSlotProvided.js +0 -11
- package/src/util/isDescendantOf.js +0 -15
- package/src/util/isElementInView.js +0 -15
- package/src/util/isNodeClickable.js +0 -19
- package/src/util/isNodeHidden.js +0 -9
- package/src/util/isNodeTabbable.js +0 -28
- package/src/util/isValidPropertyName.js +0 -29
- package/src/util/setToArray.js +0 -10
- package/src/util/whenDOMReady.js +0 -13
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
const Es=function(){const t=document.createElement("link").relList;if(t&&t.supports&&t.supports("modulepreload"))return;for(const r of document.querySelectorAll('link[rel="modulepreload"]'))n(r);new MutationObserver(r=>{for(const o of r)if(o.type==="childList")for(const i of o.addedNodes)i.tagName==="LINK"&&i.rel==="modulepreload"&&n(i)}).observe(document,{childList:!0,subtree:!0});function s(r){const o={};return r.integrity&&(o.integrity=r.integrity),r.referrerpolicy&&(o.referrerPolicy=r.referrerpolicy),r.crossorigin==="use-credentials"?o.credentials="include":r.crossorigin==="anonymous"?o.credentials="omit":o.credentials="same-origin",o}function n(r){if(r.ep)return;r.ep=!0;const o=s(r);fetch(r.href,o)}};Es();const dt={themes:{default:"sap_fiori_3",all:["sap_fiori_3","sap_fiori_3_dark","sap_belize","sap_belize_hcb","sap_belize_hcw","sap_fiori_3_hcb","sap_fiori_3_hcw","sap_horizon","sap_horizon_dark","sap_horizon_hcb","sap_horizon_hcw","sap_horizon_exp"]},languages:{default:"en",all:["ar","bg","ca","cs","cy","da","de","el","en","en_GB","en_US_sappsd","en_US_saprigi","en_US_saptrc","es","es_MX","et","fi","fr","fr_CA","hi","hr","hu","in","it","iw","ja","kk","ko","lt","lv","ms","nl","no","pl","pt_PT","pt","ro","ru","sh","sk","sl","sv","th","tr","uk","vi","zh_CN","zh_TW"]},locales:{default:"en",all:["ar","ar_EG","ar_SA","bg","ca","cs","da","de","de_AT","de_CH","el","el_CY","en","en_AU","en_GB","en_HK","en_IE","en_IN","en_NZ","en_PG","en_SG","en_ZA","es","es_AR","es_BO","es_CL","es_CO","es_MX","es_PE","es_UY","es_VE","et","fa","fi","fr","fr_BE","fr_CA","fr_CH","fr_LU","he","hi","hr","hu","id","it","it_CH","ja","kk","ko","lt","lv","ms","nb","nl","nl_BE","pl","pt","pt_PT","ro","ru","ru_UA","sk","sl","sr","sr_Latn","sv","th","tr","uk","vi","zh_CN","zh_HK","zh_SG","zh_TW"]}},Nt=dt.themes.default,Ut=dt.languages.default,E=dt.locales.default,se=dt.locales.all;var Be=()=>{const e=navigator.languages,t=()=>navigator.language;return e&&e[0]||t()||navigator.userLanguage||navigator.browserLanguage||Ut},He={},je=He.hasOwnProperty,Ts=He.toString,Fe=je.toString,Ms=Fe.call(Object),ne=function(e){var t,s;return!e||Ts.call(e)!=="[object Object]"?!1:(t=Object.getPrototypeOf(e),t?(s=je.call(t,"constructor")&&t.constructor,typeof s=="function"&&Fe.call(s)===Ms):!0)},Ls=Object.create(null),Ve=function(){var e,t,s,n,r,o,i=arguments[2]||{},a=3,c=arguments.length,l=arguments[0]||!1,h=arguments[1]?void 0:Ls;for(typeof i!="object"&&typeof i!="function"&&(i={});a<c;a++)if((r=arguments[a])!=null)for(n in r)e=i[n],s=r[n],!(n==="__proto__"||i===s)&&(l&&s&&(ne(s)||(t=Array.isArray(s)))?(t?(t=!1,o=e&&Array.isArray(e)?e:[]):o=e&&ne(e)?e:{},i[n]=Ve(l,arguments[1],o,s)):s!==h&&(i[n]=s));return i},qt=function(){var e=[!0,!1];return e.push.apply(e,arguments),Ve.apply(null,e)};const ze=new Map,Os=(e,t)=>{ze.set(e,t)},_=e=>ze.get(e);let re=!1,m={animationMode:"full",theme:Nt,rtl:null,language:null,calendarType:null,noConflict:!1,formatSettings:{},fetchDefaultLanguage:!1};const Ps=()=>(A(),m.animationMode),Is=()=>(A(),m.theme),Ds=()=>(A(),m.rtl),Rs=()=>(A(),m.language),xs=()=>(A(),m.fetchDefaultLanguage),Ns=()=>(A(),m.noConflict),Us=()=>(A(),m.calendarType),ks=()=>(A(),m.formatSettings),it=new Map;it.set("true",!0);it.set("false",!1);const Bs=()=>{const e=document.querySelector("[data-ui5-config]")||document.querySelector("[data-id='sap-ui-config']");let t;if(e){try{t=JSON.parse(e.innerHTML)}catch{console.warn("Incorrect data-sap-ui-config format. Please use JSON")}t&&(m=qt(m,t))}},Hs=()=>{const e=new URLSearchParams(window.location.search);e.forEach((t,s)=>{const n=s.split("sap-").length;n===0||n===s.split("sap-ui-").length||oe(s,t,"sap")}),e.forEach((t,s)=>{!s.startsWith("sap-ui")||oe(s,t,"sap-ui")})},js=(e,t)=>e==="theme"&&t.includes("@")?t.split("@")[0]:t,oe=(e,t,s)=>{const n=t.toLowerCase(),r=e.split(`${s}-`)[1];it.has(t)&&(t=it.get(n)),t=js(r,t),m[r]=t},Fs=()=>{const e=_("OpenUI5Support");if(!e||!e.isLoaded())return;const t=e.getConfigurationSettingsObject();m=qt(m,t)},A=()=>{re||(Bs(),Hs(),Fs(),re=!0)};class T{constructor(){this._eventRegistry=new Map}attachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!Array.isArray(r)){n.set(t,[s]);return}r.includes(s)||r.push(s)}detachEvent(t,s){const n=this._eventRegistry,r=n.get(t);if(!r)return;const o=r.indexOf(s);o!==-1&&r.splice(o,1),r.length===0&&n.delete(t)}fireEvent(t,s){const r=this._eventRegistry.get(t);return r?r.map(o=>o.call(this,s)):[]}fireEventAsync(t,s){return Promise.all(this.fireEvent(t,s))}isHandlerAttached(t,s){const r=this._eventRegistry.get(t);return r?r.includes(s):!1}hasListeners(t){return!!this._eventRegistry.get(t)}}const Vs=new T,zs="languageChange",We=e=>{Vs.attachEvent(zs,e)},ie=10;class Ws{constructor(){this.list=[],this.lookup=new Set}add(t){this.lookup.has(t)||(this.list.push(t),this.lookup.add(t))}remove(t){!this.lookup.has(t)||(this.list=this.list.filter(s=>s!==t),this.lookup.delete(t))}shift(){const t=this.list.shift();if(t)return this.lookup.delete(t),t}isEmpty(){return this.list.length===0}isAdded(t){return this.lookup.has(t)}process(t){let s;const n=new Map;for(s=this.shift();s;){const r=n.get(s)||0;if(r>ie)throw new Error(`Web component processed too many times this task, max allowed is: ${ie}`);t(s),n.set(s,r+1),s=this.shift()}}}const Ze=e=>{const t=[];return e.forEach(s=>{t.push(s)}),t},qe=(e,t=document.body)=>{let s=document.querySelector(e);return s||(s=document.createElement(e),t.insertBefore(s,t.firstChild))},Zs=()=>qe("ui5-shared-resources",document.head),M=(e,t)=>{const s=e.split(".");let n=Zs();for(let r=0;r<s.length;r++){const o=s[r],i=r===s.length-1;Object.prototype.hasOwnProperty.call(n,o)||(n[o]=i?t:{}),n=n[o]}return n},ae={version:"0.0.0-7e7d9ea6f",major:0,minor:0,patch:0,suffix:"-7e7d9ea6f",isNext:!0,buildTime:1658392235};let et,qs="";const _t=new Map,z=M("Runtimes",[]),Gs=()=>{et===void 0&&(et=z.length,z.push({...ae,alias:qs,description:`Runtime ${et} - ver ${ae.version}`}))},Ge=()=>et,Ks=(e,t)=>{const s=`${e},${t}`;if(_t.has(s))return _t.get(s);const n=z[e],r=z[t];if(!n||!r)throw new Error("Invalid runtime index supplied");if(n.isNext||r.isNext)return n.buildTime-r.buildTime;const o=n.major-r.major;if(o)return o;const i=n.minor-r.minor;if(i)return i;const a=n.patch-r.patch;if(a)return a;const l=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"}).compare(n.suffix,r.suffix);return _t.set(s,l),l},Js=()=>z,Ke=M("Tags",new Map),Gt=new Set;let C={},wt;const Je="unknown",ce=e=>{Gt.add(e),Ke.set(e,Ge())},Xs=e=>Gt.has(e),Ys=()=>Ze(Gt),Qs=e=>{let t=Ke.get(e);t===void 0&&(t=Je),C[t]=C[t]||new Set,C[t].add(e),wt||(wt=setTimeout(()=>{tn(),C={},wt=void 0},1e3))},tn=()=>{const e=Js(),t=Ge(),s=e[t];let n="Multiple UI5 Web Components instances detected.";e.length>1&&(n=`${n}
|
|
2
|
-
Loading order (versions before 1.1.0 not listed): ${e.map(r=>`
|
|
3
|
-
${r.description}`).join("")}`),Object.keys(C).forEach(r=>{let o,i;r===Je?(o=1,i={description:"Older unknown runtime"}):(o=Ks(t,r),i=e[r]);let a;o>0?a="an older":o<0?a="a newer":a="the same",n=`${n}
|
|
4
|
-
|
|
5
|
-
"${s.description}" failed to define ${C[r].size} tag(s) as they were defined by a runtime of ${a} version "${i.description}": ${Ze(C[r]).sort().join(", ")}.`,o>0?n=`${n}
|
|
6
|
-
WARNING! If your code uses features of the above web components, unavailable in ${i.description}, it might not work as expected!`:n=`${n}
|
|
7
|
-
Since the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),n=`${n}
|
|
8
|
-
|
|
9
|
-
To prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/03-scoping.md.`,console.warn(n)},Xe=new Set,en=e=>{Xe.add(e)},sn=e=>Xe.has(e),Kt=new Set,nn=new T,x=new Ws;let O,st,vt,X;const Ye=async e=>{x.add(e),await on()},Qe=e=>{nn.fireEvent("beforeComponentRender",e),Kt.add(e),e._render()},rn=e=>{x.remove(e),Kt.delete(e)},on=async()=>{X||(X=new Promise(e=>{window.requestAnimationFrame(()=>{x.process(Qe),X=null,e(),vt||(vt=setTimeout(()=>{vt=void 0,x.isEmpty()&&ln()},200))})})),await X},an=()=>O||(O=new Promise(e=>{st=e,window.requestAnimationFrame(()=>{x.isEmpty()&&(O=void 0,e())})}),O),cn=()=>{const e=Ys().map(t=>customElements.whenDefined(t));return Promise.all(e)},Jt=async()=>{await cn(),await an()},ln=()=>{!x.isEmpty()||st&&(st(),st=void 0,O=void 0)},Xt=async e=>{Kt.forEach(t=>{const s=t.constructor.getMetadata().getTag(),n=sn(t.constructor),r=t.constructor.getMetadata().isLanguageAware(),o=t.constructor.getMetadata().isThemeAware();(!e||e.tag===s||e.rtlAware&&n||e.languageAware&&r||e.themeAware&&o)&&Ye(t)}),await Jt()};let St,kt;const at=()=>(St===void 0&&(St=Rs()),St),un=e=>{kt=e},dn=()=>(kt===void 0&&un(xs()),kt),hn=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i;class fn{constructor(t){const s=hn.exec(t.replace(/_/g,"-"));if(s===null)throw new Error(`The given language ${t} does not adhere to BCP-47.`);this.sLocaleId=t,this.sLanguage=s[1]||null,this.sScript=s[2]||null,this.sRegion=s[3]||null,this.sVariant=s[4]&&s[4].slice(1)||null,this.sExtension=s[5]&&s[5].slice(1)||null,this.sPrivateUse=s[6]||null,this.sLanguage&&(this.sLanguage=this.sLanguage.toLowerCase()),this.sScript&&(this.sScript=this.sScript.toLowerCase().replace(/^[a-z]/,n=>n.toUpperCase())),this.sRegion&&(this.sRegion=this.sRegion.toUpperCase())}getLanguage(){return this.sLanguage}getScript(){return this.sScript}getRegion(){return this.sRegion}getVariant(){return this.sVariant}getVariantSubtags(){return this.sVariant?this.sVariant.split("-"):[]}getExtension(){return this.sExtension}getExtensionSubtags(){return this.sExtension?this.sExtension.slice(2).split("-"):[]}getPrivateUse(){return this.sPrivateUse}getPrivateUseSubtags(){return this.sPrivateUse?this.sPrivateUse.slice(2).split("-"):[]}hasPrivateUseSubtag(t){return this.getPrivateUseSubtags().indexOf(t)>=0}toString(){const t=[this.sLanguage];return this.sScript&&t.push(this.sScript),this.sRegion&&t.push(this.sRegion),this.sVariant&&t.push(this.sVariant),this.sExtension&&t.push(this.sExtension),this.sPrivateUse&&t.push(this.sPrivateUse),t.join("-")}}const At=new Map,ts=e=>(At.has(e)||At.set(e,new fn(e)),At.get(e)),le=e=>{try{if(e&&typeof e=="string")return ts(e)}catch{}},Bt=e=>e?le(e):at()?ts(at()):le(Be()),pn=/^((?:[A-Z]{2,3}(?:-[A-Z]{3}){0,3})|[A-Z]{4}|[A-Z]{5,8})(?:-([A-Z]{4}))?(?:-([A-Z]{2}|[0-9]{3}))?((?:-[0-9A-Z]{5,8}|-[0-9][0-9A-Z]{3})*)((?:-[0-9A-WYZ](?:-[0-9A-Z]{2,8})+)*)(?:-(X(?:-[0-9A-Z]{1,8})+))?$/i,ue=/(?:^|-)(saptrc|sappsd)(?:-|$)/i,gn={he:"iw",yi:"ji",id:"in",sr:"sh"},mn=e=>{let t;if(!e)return E;if(typeof e=="string"&&(t=pn.exec(e.replace(/_/g,"-")))){let s=t[1].toLowerCase(),n=t[3]?t[3].toUpperCase():void 0;const r=t[2]?t[2].toLowerCase():void 0,o=t[4]?t[4].slice(1):void 0,i=t[6];return s=gn[s]||s,i&&(t=ue.exec(i))||o&&(t=ue.exec(o))?`en_US_${t[1].toLowerCase()}`:(s==="zh"&&!n&&(r==="hans"?n="CN":r==="hant"&&(n="TW")),s+(n?"_"+n+(o?"_"+o.replace("-","_"):""):""))}},yn=e=>{if(!e)return E;if(e==="zh_HK")return"zh_TW";const t=e.lastIndexOf("_");return t>=0?e.slice(0,t):e!==E?E:""},de=new Set,he=new Set,Yt=new Map,bt=new Map,Qt=new Map,_n=(e,t,s)=>{const n=`${e}/${t}`;Qt.set(n,s)},fe=(e,t)=>{Yt.set(e,t)},wn=e=>Yt.get(e),pe=(e,t)=>{const s=`${e}/${t}`;return Qt.has(s)},vn=(e,t)=>{const s=`${e}/${t}`,n=Qt.get(s);return bt.get(s)||bt.set(s,n(t)),bt.get(s)},Sn=e=>{de.has(e)||(console.warn(`[${e}]: Message bundle assets are not configured. Falling back to English texts.`,` Add \`import "${e}/dist/Assets.js"\` in your bundle and make sure your build tool supports dynamic imports and JSON imports. See section "Assets" in the documentation for more information.`),de.add(e))},es=async e=>{const t=Bt().getLanguage(),s=Bt().getRegion();let n=mn(t+(s?`-${s}`:""));for(;n!==Ut&&!pe(e,n);)n=yn(n);const r=dn();if(n===Ut&&!r){fe(e,null);return}if(!pe(e,n)){Sn(e);return}try{const o=await vn(e,n);fe(e,o)}catch(o){he.has(o.message)||(he.add(o.message),console.error(o.message))}};We(()=>{const e=[...Yt.keys()];return Promise.all(e.map(es))});const An=new Map,ct=new Map,$t=new Map,ge=new Set;let me=!1;const bn={iw:"he",ji:"yi",in:"id"},ye=e=>{me||(console.warn(`[LocaleData] Supported locale "${e}" not configured, import the "Assets.js" module from the webcomponents package you are using.`),me=!0)},$n=(e,t,s)=>{e=e&&bn[e]||e,e==="no"&&(e="nb"),e==="zh"&&!t&&(s==="Hans"?t="CN":s==="Hant"&&(t="TW")),(e==="sh"||e==="sr"&&s==="Latn")&&(e="sr",t="Latn");let n=`${e}_${t}`;return se.includes(n)||(n=e,se.includes(n))?ct.has(n)?n:(ye(n),E):E},_e=(e,t)=>{An.set(e,t)},Cn=e=>{const t=ct.get(e);return $t.get(e)||$t.set(e,t(e)),$t.get(e)},En=async(e,t,s)=>{const n=$n(e,t,s),r=_("OpenUI5Support");if(r){const o=r.getLocaleDataObject();if(o){_e(n,o);return}}try{const o=await Cn(n);_e(n,o)}catch(o){ge.has(o.message)||(ge.add(o.message),console.error(o.message))}},Tn=(e,t)=>{ct.set(e,t)};Tn("en",async e=>(await fetch("https://ui5.sap.com/1.103.0/resources/sap/ui/core/cldr/en.json")).json());We(()=>{const e=Bt();return En(e.getLanguage(),e.getRegion(),e.getScript())});const ss=new Map,ns=new Map,rs=new Set,lt=new Set,b=(e,t,s)=>{ns.set(`${e}/${t}`,s),rs.add(e),lt.add(t)},os=async(e,t)=>{const s=ss.get(`${e}_${t}`);if(s!==void 0)return s;if(!lt.has(t)){const n=[...lt.values()].join(", ");return console.warn(`You have requested a non-registered theme ${t} - falling back to ${Nt}. Registered themes are: ${n}`),we(e,Nt)}return we(e,t)},we=async(e,t)=>{const s=ns.get(`${e}/${t}`);if(!s){console.error(`Theme [${t}] not registered for package [${e}]`);return}let n;try{n=await s(t)}catch(o){console.error(e,o.message);return}const r=n._||n;return ss.set(`${e}_${t}`,r),r},is=()=>rs,Mn=e=>lt.has(e),ve={"SAP-icons-TNT":"tnt",BusinessSuiteInAppSymbols:"business-suite",horizon:"SAP-icons-v5"},Ln=(e,t={})=>{const s=document.createElement("style");return s.type="text/css",Object.entries(t).forEach(n=>s.setAttribute(...n)),s.textContent=e,document.head.appendChild(s),s},ht=(e,t)=>t?`${e}|${t}`:e,ft=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;if(document.adoptedStyleSheets){const r=new CSSStyleSheet;r.replaceSync(n),r._ui5StyleId=ht(t,s),document.adoptedStyleSheets=[...document.adoptedStyleSheets,r]}else{const r={};r[t]=s,Ln(n,r)}},On=(e,t,s="")=>{const n=typeof e=="string"?e:e.content;document.adoptedStyleSheets?document.adoptedStyleSheets.find(r=>r._ui5StyleId===ht(t,s)).replaceSync(n||""):document.querySelector(`head>style[${t}="${s}"]`).textContent=n||""},pt=(e,t="")=>document.adoptedStyleSheets?!!document.adoptedStyleSheets.find(s=>s._ui5StyleId===ht(e,t)):!!document.querySelector(`head>style[${e}="${t}"]`),Pn=(e,t="")=>{if(document.adoptedStyleSheets)document.adoptedStyleSheets=document.adoptedStyleSheets.filter(s=>s._ui5StyleId!==ht(e,t));else{const s=document.querySelector(`head > style[${e}="${t}"]`);s&&s.parentElement.removeChild(s)}},as=(e,t,s="")=>{pt(t,s)?On(e,t,s):ft(e,t,s)},P=new Set,In=()=>{let e=document.querySelector(".sapThemeMetaData-Base-baseLib")||document.querySelector(".sapThemeMetaData-UI5-sap-ui-core");if(e)return getComputedStyle(e).backgroundImage;e=document.createElement("span"),e.style.display="none",e.classList.add("sapThemeMetaData-Base-baseLib"),document.body.appendChild(e);let t=getComputedStyle(e).backgroundImage;return t==="none"&&(e.classList.add("sapThemeMetaData-UI5-sap-ui-core"),t=getComputedStyle(e).backgroundImage),document.body.removeChild(e),t},Dn=e=>{const t=/\(["']?data:text\/plain;utf-8,(.*?)['"]?\)$/i.exec(e);if(t&&t.length>=2){let s=t[1];if(s=s.replace(/\\"/g,'"'),s.charAt(0)!=="{"&&s.charAt(s.length-1)!=="}")try{s=decodeURIComponent(s)}catch{P.has("decode")||(console.warn("Malformed theme metadata string, unable to decodeURIComponent"),P.add("decode"));return}try{return JSON.parse(s)}catch{P.has("parse")||(console.warn("Malformed theme metadata string, unable to parse JSON"),P.add("parse"))}}},Rn=e=>{let t,s;try{t=e.Path.match(/\.([^.]+)\.css_variables$/)[1],s=e.Extends[0]}catch{P.has("object")||(console.warn("Malformed theme metadata Object",e),P.add("object"));return}return{themeName:t,baseThemeName:s}},xn=()=>{const e=In();if(!e||e==="none")return;const t=Dn(e);return Rn(t)},Nn=new T,Un="themeLoaded",kn=e=>Nn.fireEvent(Un,e),W="@ui5/webcomponents-theming",Bn=()=>is().has(W),Hn=async e=>{if(!Bn())return;const t=await os(W,e);t&&as(t,"data-ui5-theme-properties",W)},jn=()=>{Pn("data-ui5-theme-properties",W)},Fn=async e=>{is().forEach(async s=>{if(s===W)return;const n=await os(s,e);n&&as(n,"data-ui5-theme-properties",s)})},Vn=()=>{const e=xn();if(e)return e;const t=_("OpenUI5Support");if(t&&t.cssVariablesLoaded())return{themeName:t.getConfigurationSettingsObject().theme}},cs=async e=>{const t=Vn();!t||e!==t.themeName?await Hn(e):jn();const s=Mn(e)?e:t&&t.baseThemeName;await Fn(s),kn(e)};let I;const gt=()=>(I===void 0&&(I=Is()),I),ls=async e=>{I!==e&&(I=e,await cs(I),await Xt({themeAware:!0}))},zn=e=>gt().startsWith(e),Wn=new Map,us=()=>{const e=gt(),t=Wn.get(e);return t||(zn("sap_horizon")?"SAP-icons-v5":"SAP-icons")},Se=new Map,ut=M("SVGIcons.registry",new Map),Ct=M("SVGIcons.promises",new Map),Ae="ICON_NOT_FOUND",Zn=async e=>{if(!Ct.has(e)){if(!Se.has(e))throw new Error(`No loader registered for the ${e} icons collection. Probably you forgot to import the "AllIcons.js" module for the respective package.`);const t=Se.get(e);Ct.set(e,t(e))}return Ct.get(e)},qn=e=>{Object.keys(e.data).forEach(t=>{const s=e.data[t];Gn(t,{pathData:s.path,ltr:s.ltr,accData:s.acc,collection:e.collection,packageName:e.packageName})})},Gn=(e,{pathData:t,ltr:s,accData:n,collection:r,packageName:o}={})=>{r||(r=us());const i=`${r}/${e}`;ut.set(i,{pathData:t,ltr:s,accData:n,packageName:o})},Kn=e=>{e.startsWith("sap-icon://")&&(e=e.replace("sap-icon://",""));let t;[e,t]=e.split("/").reverse(),t=t||us(),t=Xn(t),e=e.replace("icon-","");const s=`${t}/${e}`;return{name:e,collection:t,registryKey:s}},Et=async e=>{const{collection:t,registryKey:s}=Kn(e);let n=Ae;try{n=await Zn(t)}catch(r){console.error(r.message)}return n===Ae?n:(ut.has(s)||qn(n),ut.get(s))},Jn=async()=>(await Et("edit"),await Et("tnt/arrow"),await Et("business-suite/3d"),Array.from(ut.keys())),Xn=e=>ve[e]?ve[e]:e,Ht=M("PopupUtilsData",{});Ht.currentZIndex=Ht.currentZIndex||100;const ds=()=>Ht.currentZIndex,w=()=>{const e=window.sap;return e&&e.ui&&typeof e.ui.getCore=="function"&&e.ui.getCore()},Yn=()=>!!w(),Qn=()=>{const e=w();return e?new Promise(t=>{e.attachInit(()=>{window.sap.ui.require(["sap/ui/core/LocaleData","sap/ui/core/Popup"],(s,n)=>{n.setInitialZIndex(ds()),t()})})}):Promise.resolve()},tr=()=>{const e=w();if(!e)return;const t=e.getConfiguration(),s=window.sap.ui.require("sap/ui/core/LocaleData");return{animationMode:t.getAnimationMode(),language:t.getLanguage(),theme:t.getTheme(),rtl:t.getRTL(),calendarType:t.getCalendarType(),formatSettings:{firstDayOfWeek:s?s.getInstance(t.getLocale()).getFirstDayOfWeek():void 0}}},er=()=>{const e=w();if(!e)return;const t=e.getConfiguration();return window.sap.ui.require("sap/ui/core/LocaleData").getInstance(t.getLocale())._get()},sr=()=>{const e=w(),t=e.getConfiguration();e.attachThemeChanged(async()=>{await ls(t.getTheme())})},nr=()=>{!w()||sr()},rr=()=>{if(!w())return;const t=[...document.head.children].find(s=>s.id==="sap-ui-theme-sap.ui.core");if(!!t)return!!t.href.match(/\/css(-|_)variables\.css/)},or=()=>w()?window.sap.ui.require("sap/ui/core/Popup").getNextZIndex():void 0,ir=()=>{if(!w())return;window.sap.ui.require("sap/ui/core/Popup").setInitialZIndex(ds())},ar={isLoaded:Yn,init:Qn,getConfigurationSettingsObject:tr,getLocaleDataObject:er,attachListeners:nr,cssVariablesLoaded:rr,getNextZIndex:or,setInitialZIndex:ir};Os("OpenUI5Support",ar);const cr=()=>new Promise(e=>{document.body?e():document.addEventListener("DOMContentLoaded",()=>{e()})});var lr={packageName:"@ui5/webcomponents-base",fileName:"FontFace.css",content:`@font-face{font-family:"72";font-style:normal;font-weight:400;src:local("72"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72full";font-style:normal;font-weight:400;src:local('72-full'),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Regular-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72";font-style:normal;font-weight:700;src:local('72-Bold'),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72full";font-style:normal;font-weight:700;src:local('72-Bold-full'),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:'72-Bold';font-style:normal;src:local('72-Bold'),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold.woff?ui5-webcomponents) format("woff")}@font-face{font-family:'72-Boldfull';font-style:normal;src:url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Bold-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:'72-Light';font-style:normal;src:local('72-Light'),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light.woff?ui5-webcomponents) format("woff")}@font-face{font-family:'72-Lightfull';font-style:normal;src:url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff2?ui5-webcomponents) format("woff2"),url(https://ui5.sap.com/resources/sap/ui/core/themes/sap_fiori_3/fonts/72-Light-full.woff?ui5-webcomponents) format("woff")}@font-face{font-family:"72Black";font-style:bold;font-weight:900;src:local('72Black'),url(https://openui5nightly.hana.ondemand.com/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff2?ui5-webcomponents) format("woff2"),url(https://openui5nightly.hana.ondemand.com/resources/sap/ui/core/themes/sap_horizon/fonts/72-Black.woff?ui5-webcomponents) format("woff")}`},ur={packageName:"@ui5/webcomponents-base",fileName:"OverrideFontFace.css",content:"@font-face{font-family:'72override';unicode-range:U+0102-0103,U+01A0-01A1,U+01AF-01B0,U+1EA0-1EB7,U+1EB8-1EC7,U+1EC8-1ECB,U+1ECC-1EE3,U+1EE4-1EF1,U+1EF4-1EF7;src:local('Arial'),local('Helvetica'),local('sans-serif')}"};const dr=()=>{const e=_("OpenUI5Support");(!e||!e.isLoaded())&&hr(),fr()},hr=()=>{pt("data-ui5-font-face")||ft(lr,"data-ui5-font-face")},fr=()=>{pt("data-ui5-font-face-override")||ft(ur,"data-ui5-font-face-override")};var pr={packageName:"@ui5/webcomponents-base",fileName:"SystemCSSVars.css",content:":root{--_ui5_content_density:cozy}.sapUiSizeCompact,.ui5-content-density-compact,[data-ui5-compact-size]{--_ui5_content_density:compact}[dir=rtl]{--_ui5_dir:rtl}[dir=ltr]{--_ui5_dir:ltr}"};const gr=()=>{pt("data-ui5-system-css-vars")||ft(pr,"data-ui5-system-css-vars")};let Y;const mr=async()=>Y||(Y=new Promise(async e=>{Gs();const t=_("OpenUI5Support"),s=_("F6Navigation");t?await t.init():s&&s.init(),await cr(),await cs(gt()),t&&t.attachListeners(),dr(),gr(),e()}),Y);class D{static isValid(t){}static attributeToProperty(t){return t}static propertyToAttribute(t){return`${t}`}static valuesAreEqual(t,s){return t===s}static generateTypeAccessors(t){Object.keys(t).forEach(s=>{Object.defineProperty(this,s,{get(){return t[s]}})})}}const F=(e,t,s=!1)=>{if(typeof e!="function"||typeof t!="function")return!1;if(s&&e===t)return!0;let n=e;do n=Object.getPrototypeOf(n);while(n!==null&&n!==t);return n===t},Tt=new Map,Mt=new Map,be=e=>{if(!Tt.has(e)){const t=yr(e.split("-"));Tt.set(e,t)}return Tt.get(e)},hs=e=>{if(!Mt.has(e)){const t=e.replace(/([a-z])([A-Z])/g,"$1-$2").toLowerCase();Mt.set(e,t)}return Mt.get(e)},yr=e=>e.map((t,s)=>s===0?t.toLowerCase():t.charAt(0).toUpperCase()+t.slice(1).toLowerCase()).join(""),_r=e=>{if(!(e instanceof HTMLElement))return"default";const t=e.getAttribute("slot");if(t){const s=t.match(/^(.+?)-\d+$/);return s?s[1]:t}return"default"},jt=e=>e&&e instanceof HTMLElement&&e.localName==="slot",fs=e=>jt(e)?e.assignedNodes({flatten:!0}).filter(t=>t instanceof HTMLElement):[e],wr=e=>{const t=(s,n)=>s.concat(fs(n));return e.reduce(t,[])};let vr,$e={include:[/^ui5-/],exclude:[]};const Lt=new Map,ps=()=>vr,Ft=e=>{if(!Lt.has(e)){const t=$e.include.some(s=>e.match(s))&&!$e.exclude.some(s=>e.match(s));Lt.set(e,t)}return Lt.get(e)},Vt=e=>{if(Ft(e))return ps()};class Sr{constructor(t){this.metadata=t}getInitialState(){if(Object.prototype.hasOwnProperty.call(this,"_initialState"))return this._initialState;const t={},s=this.slotsAreManaged(),n=this.getProperties();for(const r in n){const o=n[r].type,i=n[r].defaultValue;o===Boolean?(t[r]=!1,i!==void 0&&console.warn("The 'defaultValue' metadata key is ignored for all booleans properties, they would be initialized with 'false' by default")):n[r].multiple?t[r]=[]:o===Object?t[r]="defaultValue"in n[r]?n[r].defaultValue:{}:o===String?t[r]="defaultValue"in n[r]?n[r].defaultValue:"":t[r]=i}if(s){const r=this.getSlots();for(const[o,i]of Object.entries(r)){const a=i.propertyName||o;t[a]=[]}}return this._initialState=t,t}static validatePropertyValue(t,s){return s.multiple?t.map(r=>Ce(r,s)):Ce(t,s)}static validateSlotValue(t,s){return Ar(t,s)}getPureTag(){return this.metadata.tag}getTag(){const t=this.metadata.tag,s=Vt(t);return s?`${t}-${s}`:t}getAltTag(){const t=this.metadata.altTag;if(!t)return;const s=Vt(t);return s?`${t}-${s}`:t}hasAttribute(t){const s=this.getProperties()[t];return s.type!==Object&&!s.noAttribute&&!s.multiple}getPropertiesList(){return Object.keys(this.getProperties())}getAttributesList(){return this.getPropertiesList().filter(this.hasAttribute,this).map(hs)}getSlots(){return this.metadata.slots||{}}canSlotText(){const t=this.getSlots().default;return t&&t.type===Node}hasSlots(){return!!Object.entries(this.getSlots()).length}hasIndividualSlots(){return this.slotsAreManaged()&&Object.entries(this.getSlots()).some(([t,s])=>s.individualSlots)}slotsAreManaged(){return!!this.metadata.managedSlots}supportsF6FastNavigation(){return!!this.metadata.fastNavigation}getProperties(){return this.metadata.properties||{}}getEvents(){return this.metadata.events||{}}isLanguageAware(){return!!this.metadata.languageAware}isThemeAware(){return!!this.metadata.themeAware}shouldInvalidateOnChildChange(t,s,n){const r=this.getSlots()[t].invalidateOnChildChange;if(r===void 0)return!1;if(typeof r=="boolean")return r;if(typeof r=="object"){if(s==="property"){if(r.properties===void 0)return!1;if(typeof r.properties=="boolean")return r.properties;if(Array.isArray(r.properties))return r.properties.includes(n);throw new Error("Wrong format for invalidateOnChildChange.properties: boolean or array is expected")}if(s==="slot"){if(r.slots===void 0)return!1;if(typeof r.slots=="boolean")return r.slots;if(Array.isArray(r.slots))return r.slots.includes(n);throw new Error("Wrong format for invalidateOnChildChange.slots: boolean or array is expected")}}throw new Error("Wrong format for invalidateOnChildChange: boolean or object is expected")}}const Q=(e,t,s)=>{let n=s;const r=t.altTypes||[];for(let o=0;o<r.length;o++){const i=r[o];if(i===Boolean&&typeof e=="boolean"){n=e;break}else if(i===String&&(typeof e=="string"||typeof e=="undefined"||e===null)){n=e;break}else if(i===Object&&typeof e=="object"){n=e;break}else if(F(i,D)&&i.isValid(e)){n=e;break}}return n},Ce=(e,t)=>{const s=t.type;if(s===Boolean)return typeof e=="boolean"?e:Q(e,t,!1);if(s===String)return typeof e=="string"||typeof e=="undefined"||e===null?e:Q(e,t,e.toString());if(s===Object)return typeof e=="object"?e:Q(e,t,t.defaultValue);if(F(s,D))return s.isValid(e)?e:Q(e,t,t.defaultValue)},Ar=(e,t)=>(e&&fs(e).forEach(s=>{if(!(s instanceof t.type))throw new Error(`${s} is not of type ${t.type}`)}),e);customElements.get("ui5-static-area")||customElements.define("ui5-static-area",class extends HTMLElement{});const br=(e,t)=>{const s=$r(t),n=ps();return e(t,s,n)},$r=e=>{const t=e.constructor.getMetadata().getPureTag(),s=e.constructor.getUniqueDependencies().map(n=>n.getMetadata().getPureTag()).filter(Ft);return Ft(t)&&s.push(t),s},Cr=M("CustomStyle.eventProvider",new T),Er="CustomCSSChange",te=e=>{Cr.attachEvent(Er,e)},Ee=M("CustomStyle.customCSSFor",{});te(e=>{Xt({tag:e})});const Tr=e=>Ee[e]?Ee[e].join(""):"",Ot=e=>Array.isArray(e)?gs(e.filter(t=>!!t)).map(t=>typeof t=="string"?t:t.content).join(" "):typeof e=="string"?e:e.content,gs=e=>e.reduce((t,s)=>t.concat(Array.isArray(s)?gs(s):s),[]),nt=new Map;te(e=>{nt.delete(`${e}_normal`)});const ms=(e,t=!1)=>{const s=e.getMetadata().getTag(),n=`${s}_${t?"static":"normal"}`,r=_("OpenUI5Enablement");if(!nt.has(n)){let o,i="";if(r&&(i=Ot(r.getBusyIndicatorStyles())),t)o=Ot(e.staticAreaStyles);else{const a=Tr(s)||"";o=`${Ot(e.styles)} ${a}`}o=`${o} ${i}`,nt.set(n,o)}return nt.get(n)},rt=new Map;te(e=>{rt.delete(`${e}_normal`)});const Mr=(e,t=!1)=>{const n=`${e.getMetadata().getTag()}_${t?"static":"normal"}`;if(!rt.has(n)){const r=ms(e,t),o=new CSSStyleSheet;o.replaceSync(r),rt.set(n,[o])}return rt.get(n)},zt=(e,t=!1)=>{let s;const n=t?"staticAreaTemplate":"template",r=t?e.staticAreaItem.shadowRoot:e.shadowRoot,o=br(e.constructor[n],e);document.adoptedStyleSheets?r.adoptedStyleSheets=Mr(e.constructor,t):s=ms(e.constructor,t),e.constructor.render(o,r,s,t,{host:e})},Lr="--_ui5_content_density",Or=e=>getComputedStyle(e).getPropertyValue(Lr);var Pr=e=>{const t=/\$([-a-z0-9A-Z._]+)(?::([^$]*))?\$/.exec(e);return t&&t[2]?t[2].split(/,/):null};const Ir={iw:"he",ji:"yi",in:"id",sh:"sr"},Dr=Pr("$cldr-rtl-locales:ar,fa,he$")||[],Rr=e=>(e=e&&Ir[e]||e,Dr.indexOf(e)>=0),ys=()=>{const e=Ds();return e!==null?!!e:Rr(at()||Be())},xr="--_ui5_dir",_s=e=>{const t=window.document,s=["ltr","rtl"],n=getComputedStyle(e).getPropertyValue(xr);return s.includes(n)?n:s.includes(e.dir)?e.dir:s.includes(t.documentElement.dir)?t.documentElement.dir:s.includes(t.body.dir)?t.body.dir:ys()?"rtl":void 0};class V extends HTMLElement{constructor(){super(),this._rendered=!1,this.attachShadow({mode:"open"})}setOwnerElement(t){this.ownerElement=t,this.classList.add(this.ownerElement._id),this.ownerElement.hasAttribute("data-ui5-static-stable")&&this.setAttribute("data-ui5-stable",this.ownerElement.getAttribute("data-ui5-static-stable"))}update(){this._rendered&&(this._updateContentDensity(),this._updateDirection(),zt(this.ownerElement,!0))}_updateContentDensity(){Or(this.ownerElement)==="compact"?(this.classList.add("sapUiSizeCompact"),this.classList.add("ui5-content-density-compact")):(this.classList.remove("sapUiSizeCompact"),this.classList.remove("ui5-content-density-compact"))}_updateDirection(){const t=_s(this.ownerElement);t?this.setAttribute("dir",t):this.removeAttribute("dir")}async getDomRef(){return this._updateContentDensity(),this._rendered||(this._rendered=!0,zt(this.ownerElement,!0)),await Jt(),this.shadowRoot}static getTag(){const t="ui5-static-area-item",s=Vt(t);return s?`${t}-${s}`:t}static createInstance(){return customElements.get(V.getTag())||customElements.define(V.getTag(),V),document.createElement(this.getTag())}}const Wt=new WeakMap;let Nr=(e,t,s)=>{const n=new MutationObserver(t);return n.observe(e,s),n},Ur=e=>{e.disconnect()};const kr=(e,t,s)=>{const n=Nr(e,t,s);Wt.set(e,n)},Br=e=>{const t=Wt.get(e);t&&(Ur(t),Wt.delete(e))},Hr=["value-changed"],jr=e=>Hr.includes(e);let ot;const Fr=e=>{const t=ee();return!(t.events&&t.events.includes&&t.events.includes(e))},ee=()=>(ot===void 0&&(ot=Ns()),ot),Vr=e=>{const t=ee();return jr(e)?!1:t===!0?!0:!Fr(e)},zr=e=>{ot=e},Wr=["disabled","title","hidden","role","draggable"],Te=e=>Wr.includes(e)||e.startsWith("aria")?!0:![HTMLElement,Element,Node].some(s=>s.prototype.hasOwnProperty(e)),Me=(e,t)=>{if(e.length!==t.length)return!1;for(let s=0;s<e.length;s++)if(e[s]!==t[s])return!1;return!0},Zr=(e,t)=>class extends e{constructor(){super(),t&&t()}};let qr=0;const Le=new Map,Pt=new Map;function H(e){this._suppressInvalidation||(this.onInvalidation(e),this._changedState.push(e),Ye(this),this._eventProvider.fireEvent("invalidate",{...e,target:this}))}let Oe={};class L extends HTMLElement{constructor(){super(),this._changedState=[],this._suppressInvalidation=!0,this._inDOM=!1,this._fullyConnected=!1,this._childChangeListeners=new Map,this._slotChangeListeners=new Map,this._eventProvider=new T;let t;this._domRefReadyPromise=new Promise(s=>{t=s}),this._domRefReadyPromise._deferredResolve=t,this._initializeState(),this._upgradeAllProperties(),this.constructor._needsShadowDOM()&&this.attachShadow({mode:"open"})}get _id(){return this.__id||(this.__id=`ui5wc_${++qr}`),this.__id}async connectedCallback(){this.setAttribute(this.constructor.getMetadata().getPureTag(),""),this.constructor.getMetadata().supportsF6FastNavigation()&&this.setAttribute("data-sap-ui-fastnavgroup","true");const t=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!0,t&&(this._startObservingDOMChildren(),await this._processChildren()),this._inDOM&&(Qe(this),this._domRefReadyPromise._deferredResolve(),this._fullyConnected=!0,typeof this.onEnterDOM=="function"&&this.onEnterDOM())}disconnectedCallback(){const t=this.constructor.getMetadata().slotsAreManaged();this._inDOM=!1,t&&this._stopObservingDOMChildren(),this._fullyConnected&&(typeof this.onExitDOM=="function"&&this.onExitDOM(),this._fullyConnected=!1),this.staticAreaItem&&this.staticAreaItem.parentElement&&this.staticAreaItem.parentElement.removeChild(this.staticAreaItem),rn(this)}_startObservingDOMChildren(){if(!this.constructor.getMetadata().hasSlots())return;const s=this.constructor.getMetadata().canSlotText(),n={childList:!0,subtree:s,characterData:s};kr(this,this._processChildren.bind(this),n)}_stopObservingDOMChildren(){Br(this)}async _processChildren(){this.constructor.getMetadata().hasSlots()&&await this._updateSlots()}async _updateSlots(){const t=this.constructor.getMetadata().getSlots(),s=this.constructor.getMetadata().canSlotText(),n=Array.from(s?this.childNodes:this.children),r=new Map,o=new Map;for(const[h,d]of Object.entries(t)){const u=d.propertyName||h;o.set(u,h),r.set(u,[...this._state[u]]),this._clearSlot(h,d)}const i=new Map,a=new Map,c=n.map(async(h,d)=>{const u=_r(h),p=t[u];if(p===void 0){const g=Object.keys(t).join(", ");console.warn(`Unknown slotName: ${u}, ignoring`,h,`Valid values are: ${g}`);return}if(p.individualSlots){const g=(i.get(u)||0)+1;i.set(u,g),h._individualSlot=`${u}-${g}`}if(h instanceof HTMLElement){const g=h.localName;if(g.includes("-")){if(!window.customElements.get(g)){const $s=window.customElements.whenDefined(g);let J=Le.get(g);J||(J=new Promise(Cs=>setTimeout(Cs,1e3)),Le.set(g,J)),await Promise.race([$s,J])}window.customElements.upgrade(h)}}h=this.constructor.getMetadata().constructor.validateSlotValue(h,p),h.isUI5Element&&p.invalidateOnChildChange&&(h.attachInvalidate||h._attachChange).bind(h)(this._getChildChangeListener(u)),jt(h)&&this._attachSlotChange(h,u);const v=p.propertyName||u;a.has(v)?a.get(v).push({child:h,idx:d}):a.set(v,[{child:h,idx:d}])});await Promise.all(c),a.forEach((h,d)=>{this._state[d]=h.sort((u,p)=>u.idx-p.idx).map(u=>u.child)});let l=!1;for(const[h,d]of Object.entries(t)){const u=d.propertyName||h;Me(r.get(u),this._state[u])||(H.call(this,{type:"slot",name:o.get(u),reason:"children"}),l=!0)}l||H.call(this,{type:"slot",name:"default",reason:"textcontent"})}_clearSlot(t,s){const n=s.propertyName||t;this._state[n].forEach(o=>{o&&o.isUI5Element&&(o.detachInvalidate||o._detachChange).bind(o)(this._getChildChangeListener(t)),jt(o)&&this._detachSlotChange(o,t)}),this._state[n]=[]}attachInvalidate(t){this._eventProvider.attachEvent("invalidate",t)}detachInvalidate(t){this._eventProvider.detachEvent("invalidate",t)}_onChildChange(t,s){!this.constructor.getMetadata().shouldInvalidateOnChildChange(t,s.type,s.name)||H.call(this,{type:"slot",name:t,reason:"childchange",child:s.target})}attributeChangedCallback(t,s,n){const r=this.constructor.getMetadata().getProperties(),o=t.replace(/^ui5-/,""),i=be(o);if(r.hasOwnProperty(i)){const a=r[i].type;a===Boolean?n=n!==null:F(a,D)&&(n=a.attributeToProperty(n)),this[i]=n}}_updateAttribute(t,s){if(!this.constructor.getMetadata().hasAttribute(t))return;const r=this.constructor.getMetadata().getProperties()[t].type,o=hs(t),i=this.getAttribute(o);r===Boolean?s===!0&&i===null?this.setAttribute(o,""):s===!1&&i!==null&&this.removeAttribute(o):F(r,D)?this.setAttribute(o,r.propertyToAttribute(s)):typeof s!="object"&&i!==s&&this.setAttribute(o,s)}_upgradeProperty(t){if(this.hasOwnProperty(t)){const s=this[t];delete this[t],this[t]=s}}_upgradeAllProperties(){this.constructor.getMetadata().getPropertiesList().forEach(this._upgradeProperty,this)}_initializeState(){this._state={...this.constructor.getMetadata().getInitialState()}}_getChildChangeListener(t){return this._childChangeListeners.has(t)||this._childChangeListeners.set(t,this._onChildChange.bind(this,t)),this._childChangeListeners.get(t)}_getSlotChangeListener(t){return this._slotChangeListeners.has(t)||this._slotChangeListeners.set(t,this._onSlotChange.bind(this,t)),this._slotChangeListeners.get(t)}_attachSlotChange(t,s){t.addEventListener("slotchange",this._getSlotChangeListener(s))}_detachSlotChange(t,s){t.removeEventListener("slotchange",this._getSlotChangeListener(s))}_onSlotChange(t){H.call(this,{type:"slot",name:t,reason:"slotchange"})}onInvalidation(t){}_render(){const t=this.constructor.getMetadata().hasIndividualSlots();this._suppressInvalidation=!0,typeof this.onBeforeRendering=="function"&&this.onBeforeRendering(),this._onComponentStateFinalized&&this._onComponentStateFinalized(),this._suppressInvalidation=!1,this._changedState=[],this.constructor._needsShadowDOM()&&zt(this),this.staticAreaItem&&this.staticAreaItem.update(),t&&this._assignIndividualSlotsToChildren(),typeof this.onAfterRendering=="function"&&this.onAfterRendering()}_assignIndividualSlotsToChildren(){Array.from(this.children).forEach(s=>{s._individualSlot&&s.setAttribute("slot",s._individualSlot)})}_waitForDomRef(){return this._domRefReadyPromise}getDomRef(){if(typeof this._getRealDomRef=="function")return this._getRealDomRef();if(!this.shadowRoot||this.shadowRoot.children.length===0)return;const t=[...this.shadowRoot.children].filter(s=>!["link","style"].includes(s.localName));return t.length!==1&&console.warn(`The shadow DOM for ${this.constructor.getMetadata().getTag()} does not have a top level element, the getDomRef() method might not work as expected`),t[0]}getFocusDomRef(){const t=this.getDomRef();if(t)return t.querySelector("[data-sap-focus-ref]")||t}async getFocusDomRefAsync(){return await this._waitForDomRef(),this.getFocusDomRef()}async focus(){await this._waitForDomRef();const t=this.getFocusDomRef();t&&typeof t.focus=="function"&&t.focus()}fireEvent(t,s,n=!1,r=!0){const o=this._fireEvent(t,s,n,r),i=be(t);return i!==t?o&&this._fireEvent(i,s,n):o}_fireEvent(t,s,n=!1,r=!0){const o=new CustomEvent(`ui5-${t}`,{detail:s,composed:!1,bubbles:r,cancelable:n}),i=this.dispatchEvent(o);if(Vr(t))return i;const a=new CustomEvent(t,{detail:s,composed:!1,bubbles:r,cancelable:n});return this.dispatchEvent(a)&&i}getSlottedNodes(t){return wr(this[t])}get effectiveDir(){return en(this.constructor),_s(this)}get isUI5Element(){return!0}static get observedAttributes(){return this.getMetadata().getAttributesList()}static _needsShadowDOM(){return!!this.template}static _needsStaticArea(){return!!this.staticAreaTemplate}getStaticAreaItemDomRef(){if(!this.constructor._needsStaticArea())throw new Error("This component does not use the static area");return this.staticAreaItem||(this.staticAreaItem=V.createInstance(),this.staticAreaItem.setOwnerElement(this)),this.staticAreaItem.parentElement||qe("ui5-static-area").appendChild(this.staticAreaItem),this.staticAreaItem.getDomRef()}static _generateAccessors(){const t=this.prototype,s=this.getMetadata().slotsAreManaged(),n=this.getMetadata().getProperties();for(const[r,o]of Object.entries(n)){if(Te(r)||console.warn(`"${r}" is not a valid property name. Use a name that does not collide with DOM APIs`),o.type===Boolean&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All booleans are false by default.`);if(o.type===Array)throw new Error(`Wrong type for property "${r}". Properties cannot be of type Array - use "multiple: true" and set "type" to the single value type, such as "String", "Object", etc...`);if(o.type===Object&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All properties of type "Object" are empty objects by default.`);if(o.multiple&&o.defaultValue)throw new Error(`Cannot set a default value for property "${r}". All multiple properties are empty arrays by default.`);Object.defineProperty(t,r,{get(){if(this._state[r]!==void 0)return this._state[r];const i=o.defaultValue;return o.type===Boolean?!1:o.type===String?i:o.multiple?[]:i},set(i){let a;i=this.constructor.getMetadata().constructor.validatePropertyValue(i,o);const c=this._state[r];o.multiple&&o.compareValues?a=!Me(c,i):F(o.type,D)?a=!o.type.valuesAreEqual(c,i):a=c!==i,a&&(this._state[r]=i,H.call(this,{type:"property",name:r,newValue:i,oldValue:c}),this._updateAttribute(r,i))}})}if(s){const r=this.getMetadata().getSlots();for(const[o,i]of Object.entries(r)){Te(o)||console.warn(`"${o}" is not a valid property name. Use a name that does not collide with DOM APIs`);const a=i.propertyName||o;Object.defineProperty(t,a,{get(){return this._state[a]!==void 0?this._state[a]:[]},set(){throw new Error("Cannot set slot content directly, use the DOM APIs (appendChild, removeChild, etc...)")}})}}}static get metadata(){return Oe}static set metadata(t){Oe=t}static get styles(){return""}static get staticAreaStyles(){return""}static get dependencies(){return[]}static getUniqueDependencies(){if(!Pt.has(this)){const t=this.dependencies.filter((s,n,r)=>r.indexOf(s)===n);Pt.set(this,t)}return Pt.get(this)}static whenDependenciesDefined(){return Promise.all(this.getUniqueDependencies().map(t=>t.define()))}static async onDefine(){return Promise.resolve()}static async define(){await mr(),await Promise.all([this.whenDependenciesDefined(),this.onDefine()]);const t=this.getMetadata().getTag(),s=this.getMetadata().getAltTag(),n=Xs(t),r=customElements.get(t);return r&&!n?Qs(t):r||(this._generateAccessors(),ce(t),window.customElements.define(t,this),s&&!customElements.get(s)&&(ce(s),window.customElements.define(s,Zr(this,()=>{console.log(`The ${s} tag is deprecated and will be removed in the next release, please use ${t} instead.`)})))),this}static getMetadata(){if(this.hasOwnProperty("_metadata"))return this._metadata;const t=[this.metadata];let s=this;for(;s!==L;)s=Object.getPrototypeOf(s),t.unshift(s.metadata);const n=qt({},...t);return this._metadata=new Sr(n),this._metadata}}/**
|
|
10
|
-
* @license
|
|
11
|
-
* Copyright 2017 Google LLC
|
|
12
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
13
|
-
*/var It;const N=globalThis.trustedTypes,Pe=N?N.createPolicy("lit-html",{createHTML:e=>e}):void 0,S=`lit$${(Math.random()+"").slice(9)}$`,ws="?"+S,Gr=`<${ws}>`,U=document,Z=(e="")=>U.createComment(e),q=e=>e===null||typeof e!="object"&&typeof e!="function",vs=Array.isArray,Kr=e=>{var t;return vs(e)||typeof((t=e)===null||t===void 0?void 0:t[Symbol.iterator])=="function"},j=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Ie=/-->/g,De=/>/g,$=/>|[ \n\r](?:([^\s"'>=/]+)([ \n\r]*=[ \n\r]*(?:[^ \n\r"'`<>=]|("|')|))|$)/g,Re=/'/g,xe=/"/g,Ss=/^(?:script|style|textarea|title)$/i,Jr=e=>(t,...s)=>({_$litType$:e,strings:t,values:s}),Xr=Jr(1),k=Symbol.for("lit-noChange"),f=Symbol.for("lit-nothing"),Ne=new WeakMap,Yr=(e,t,s)=>{var n,r;const o=(n=s==null?void 0:s.renderBefore)!==null&&n!==void 0?n:t;let i=o._$litPart$;if(i===void 0){const a=(r=s==null?void 0:s.renderBefore)!==null&&r!==void 0?r:null;o._$litPart$=i=new K(t.insertBefore(Z(),a),a,void 0,s!=null?s:{})}return i._$AI(e),i},R=U.createTreeWalker(U,129,null,!1),Qr=(e,t)=>{const s=e.length-1,n=[];let r,o=t===2?"<svg>":"",i=j;for(let c=0;c<s;c++){const l=e[c];let h,d,u=-1,p=0;for(;p<l.length&&(i.lastIndex=p,d=i.exec(l),d!==null);)p=i.lastIndex,i===j?d[1]==="!--"?i=Ie:d[1]!==void 0?i=De:d[2]!==void 0?(Ss.test(d[2])&&(r=RegExp("</"+d[2],"g")),i=$):d[3]!==void 0&&(i=$):i===$?d[0]===">"?(i=r!=null?r:j,u=-1):d[1]===void 0?u=-2:(u=i.lastIndex-d[2].length,h=d[1],i=d[3]===void 0?$:d[3]==='"'?xe:Re):i===xe||i===Re?i=$:i===Ie||i===De?i=j:(i=$,r=void 0);const v=i===$&&e[c+1].startsWith("/>")?" ":"";o+=i===j?l+Gr:u>=0?(n.push(h),l.slice(0,u)+"$lit$"+l.slice(u)+S+v):l+S+(u===-2?(n.push(void 0),c):v)}const a=o+(e[s]||"<?>")+(t===2?"</svg>":"");if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return[Pe!==void 0?Pe.createHTML(a):a,n]};class G{constructor({strings:t,_$litType$:s},n){let r;this.parts=[];let o=0,i=0;const a=t.length-1,c=this.parts,[l,h]=Qr(t,s);if(this.el=G.createElement(l,n),R.currentNode=this.el.content,s===2){const d=this.el.content,u=d.firstChild;u.remove(),d.append(...u.childNodes)}for(;(r=R.nextNode())!==null&&c.length<a;){if(r.nodeType===1){if(r.hasAttributes()){const d=[];for(const u of r.getAttributeNames())if(u.endsWith("$lit$")||u.startsWith(S)){const p=h[i++];if(d.push(u),p!==void 0){const v=r.getAttribute(p.toLowerCase()+"$lit$").split(S),g=/([.?@])?(.*)/.exec(p);c.push({type:1,index:o,name:g[2],strings:v,ctor:g[1]==="."?eo:g[1]==="?"?no:g[1]==="@"?ro:mt})}else c.push({type:6,index:o})}for(const u of d)r.removeAttribute(u)}if(Ss.test(r.tagName)){const d=r.textContent.split(S),u=d.length-1;if(u>0){r.textContent=N?N.emptyScript:"";for(let p=0;p<u;p++)r.append(d[p],Z()),R.nextNode(),c.push({type:2,index:++o});r.append(d[u],Z())}}}else if(r.nodeType===8)if(r.data===ws)c.push({type:2,index:o});else{let d=-1;for(;(d=r.data.indexOf(S,d+1))!==-1;)c.push({type:7,index:o}),d+=S.length-1}o++}}static createElement(t,s){const n=U.createElement("template");return n.innerHTML=t,n}}function B(e,t,s=e,n){var r,o,i,a;if(t===k)return t;let c=n!==void 0?(r=s._$Cl)===null||r===void 0?void 0:r[n]:s._$Cu;const l=q(t)?void 0:t._$litDirective$;return(c==null?void 0:c.constructor)!==l&&((o=c==null?void 0:c._$AO)===null||o===void 0||o.call(c,!1),l===void 0?c=void 0:(c=new l(e),c._$AT(e,s,n)),n!==void 0?((i=(a=s)._$Cl)!==null&&i!==void 0?i:a._$Cl=[])[n]=c:s._$Cu=c),c!==void 0&&(t=B(e,c._$AS(e,t.values),c,n)),t}class to{constructor(t,s){this.v=[],this._$AN=void 0,this._$AD=t,this._$AM=s}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}p(t){var s;const{el:{content:n},parts:r}=this._$AD,o=((s=t==null?void 0:t.creationScope)!==null&&s!==void 0?s:U).importNode(n,!0);R.currentNode=o;let i=R.nextNode(),a=0,c=0,l=r[0];for(;l!==void 0;){if(a===l.index){let h;l.type===2?h=new K(i,i.nextSibling,this,t):l.type===1?h=new l.ctor(i,l.name,l.strings,this,t):l.type===6&&(h=new oo(i,this,t)),this.v.push(h),l=r[++c]}a!==(l==null?void 0:l.index)&&(i=R.nextNode(),a++)}return o}m(t){let s=0;for(const n of this.v)n!==void 0&&(n.strings!==void 0?(n._$AI(t,n,s),s+=n.strings.length-2):n._$AI(t[s])),s++}}class K{constructor(t,s,n,r){var o;this.type=2,this._$AH=f,this._$AN=void 0,this._$AA=t,this._$AB=s,this._$AM=n,this.options=r,this._$Cg=(o=r==null?void 0:r.isConnected)===null||o===void 0||o}get _$AU(){var t,s;return(s=(t=this._$AM)===null||t===void 0?void 0:t._$AU)!==null&&s!==void 0?s:this._$Cg}get parentNode(){let t=this._$AA.parentNode;const s=this._$AM;return s!==void 0&&t.nodeType===11&&(t=s.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,s=this){t=B(this,t,s),q(t)?t===f||t==null||t===""?(this._$AH!==f&&this._$AR(),this._$AH=f):t!==this._$AH&&t!==k&&this.$(t):t._$litType$!==void 0?this.T(t):t.nodeType!==void 0?this.k(t):Kr(t)?this.S(t):this.$(t)}M(t,s=this._$AB){return this._$AA.parentNode.insertBefore(t,s)}k(t){this._$AH!==t&&(this._$AR(),this._$AH=this.M(t))}$(t){this._$AH!==f&&q(this._$AH)?this._$AA.nextSibling.data=t:this.k(U.createTextNode(t)),this._$AH=t}T(t){var s;const{values:n,_$litType$:r}=t,o=typeof r=="number"?this._$AC(t):(r.el===void 0&&(r.el=G.createElement(r.h,this.options)),r);if(((s=this._$AH)===null||s===void 0?void 0:s._$AD)===o)this._$AH.m(n);else{const i=new to(o,this),a=i.p(this.options);i.m(n),this.k(a),this._$AH=i}}_$AC(t){let s=Ne.get(t.strings);return s===void 0&&Ne.set(t.strings,s=new G(t)),s}S(t){vs(this._$AH)||(this._$AH=[],this._$AR());const s=this._$AH;let n,r=0;for(const o of t)r===s.length?s.push(n=new K(this.M(Z()),this.M(Z()),this,this.options)):n=s[r],n._$AI(o),r++;r<s.length&&(this._$AR(n&&n._$AB.nextSibling,r),s.length=r)}_$AR(t=this._$AA.nextSibling,s){var n;for((n=this._$AP)===null||n===void 0||n.call(this,!1,!0,s);t&&t!==this._$AB;){const r=t.nextSibling;t.remove(),t=r}}setConnected(t){var s;this._$AM===void 0&&(this._$Cg=t,(s=this._$AP)===null||s===void 0||s.call(this,t))}}class mt{constructor(t,s,n,r,o){this.type=1,this._$AH=f,this._$AN=void 0,this.element=t,this.name=s,this._$AM=r,this.options=o,n.length>2||n[0]!==""||n[1]!==""?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=f}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,s=this,n,r){const o=this.strings;let i=!1;if(o===void 0)t=B(this,t,s,0),i=!q(t)||t!==this._$AH&&t!==k,i&&(this._$AH=t);else{const a=t;let c,l;for(t=o[0],c=0;c<o.length-1;c++)l=B(this,a[n+c],s,c),l===k&&(l=this._$AH[c]),i||(i=!q(l)||l!==this._$AH[c]),l===f?t=f:t!==f&&(t+=(l!=null?l:"")+o[c+1]),this._$AH[c]=l}i&&!r&&this.C(t)}C(t){t===f?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t!=null?t:"")}}class eo extends mt{constructor(){super(...arguments),this.type=3}C(t){this.element[this.name]=t===f?void 0:t}}const so=N?N.emptyScript:"";class no extends mt{constructor(){super(...arguments),this.type=4}C(t){t&&t!==f?this.element.setAttribute(this.name,so):this.element.removeAttribute(this.name)}}class ro extends mt{constructor(t,s,n,r,o){super(t,s,n,r,o),this.type=5}_$AI(t,s=this){var n;if((t=(n=B(this,t,s,0))!==null&&n!==void 0?n:f)===k)return;const r=this._$AH,o=t===f&&r!==f||t.capture!==r.capture||t.once!==r.once||t.passive!==r.passive,i=t!==f&&(r===f||o);o&&this.element.removeEventListener(this.name,this,r),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var s,n;typeof this._$AH=="function"?this._$AH.call((n=(s=this.options)===null||s===void 0?void 0:s.host)!==null&&n!==void 0?n:this.element,t):this._$AH.handleEvent(t)}}class oo{constructor(t,s,n){this.element=t,this.type=6,this._$AN=void 0,this._$AM=s,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(t){B(this,t)}}const Ue=window.litHtmlPolyfillSupport;Ue==null||Ue(G,K),((It=globalThis.litHtmlVersions)!==null&&It!==void 0?It:globalThis.litHtmlVersions=[]).push("2.2.2");/**
|
|
14
|
-
* @license
|
|
15
|
-
* Copyright 2017 Google LLC
|
|
16
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
17
|
-
*/const io={ATTRIBUTE:1,CHILD:2,PROPERTY:3,BOOLEAN_ATTRIBUTE:4,EVENT:5,ELEMENT:6};class ao{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,s,n){this._$Ct=t,this._$AM=s,this._$Ci=n}_$AS(t,s){return this.update(t,s)}update(t,s){return this.render(...s)}}/**
|
|
18
|
-
* @license
|
|
19
|
-
* Copyright 2017 Google LLC
|
|
20
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
21
|
-
*/class ke extends ao{constructor(t){if(super(t),this.it=f,t.type!==io.CHILD)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===f||t==null)return this.ft=void 0,this.it=t;if(t===k)return t;if(typeof t!="string")throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.it)return this.ft;this.it=t;const s=[t];return s.raw=s,this.ft={_$litType$:this.constructor.resultType,strings:s,values:[]}}}ke.directiveName="unsafeHTML",ke.resultType=1;const y=(...e)=>{const t=_("LitStatic");return(t?t.html:Xr)(...e)},yt=(e,t,s,n,{host:r}={})=>{const o=_("OpenUI5Enablement");o&&!n&&(e=o.wrapTemplateResultInBusyMarkup(y,r,e)),typeof s=="string"?e=y`<style>${s}</style>${e}`:Array.isArray(s)&&s.length&&(e=y`${s.map(i=>y`<link type="text/css" rel="stylesheet" href="${i}">`)}${e}`),Yr(e,t,{host:r})},co={tag:"ui5-test-generic",properties:{strProp:{type:String},boolProp:{type:Boolean},objectProp:{type:Object},noAttributeProp:{type:String,noAttribute:!0},multiProp:{type:String,multiple:!0},defaultValueProp:{type:String,defaultValue:"Hello"}},managedSlots:!0,slots:{default:{type:Node},other:{type:HTMLElement},individual:{type:HTMLElement,individualSlots:!0},named:{type:HTMLElement,propertyName:"items"}}};class As extends L{static get metadata(){return co}static get render(){return yt}static get template(){return t=>y`<div><p>
|
|
22
|
-
<slot></slot>
|
|
23
|
-
<slot name="other"></slot>
|
|
24
|
-
<slot name="individual-1"></slot>
|
|
25
|
-
<slot name="individual-2"></slot>
|
|
26
|
-
</p></div>`}static get styles(){return`:host {
|
|
27
|
-
display: inline-block;
|
|
28
|
-
border: 1px solid black;
|
|
29
|
-
color: var(--var1);
|
|
30
|
-
}`}onBeforeRendering(){}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}As.define();const lo={tag:"ui5-test-no-shadow"};class uo extends L{static get metadata(){return lo}}uo.define();const ho={tag:"ui5-test-parent",managedSlots:!0,slots:{default:{type:Node,invalidateOnChildChange:{properties:["prop1"]}},items:{type:HTMLElement,invalidateOnChildChange:{properties:!0}}}};class fo extends L{static get metadata(){return ho}static get render(){return yt}static get template(){return t=>y`<div>
|
|
31
|
-
<slot></slot>
|
|
32
|
-
</div>`}}fo.define();const po={tag:"ui5-test-child",properties:{prop1:{type:String},prop2:{type:String},prop3:{type:String}}};class go extends L{static get metadata(){return po}static get render(){return yt}static get template(){return t=>y`<div></div>`}}go.define();const mo={tag:"ui5-with-static-area",properties:{staticContent:{type:Boolean}},slots:{}};class yo extends L{static get metadata(){return mo}static get render(){return yt}static get template(){return t=>y`
|
|
33
|
-
<div dir=${t.effectiveDir}>
|
|
34
|
-
WithStaticArea works!
|
|
35
|
-
</div>`}static get staticAreaTemplate(){return t=>y`
|
|
36
|
-
<div class="ui5-with-static-area-content">
|
|
37
|
-
Static area content.
|
|
38
|
-
</div>`}static get styles(){return`
|
|
39
|
-
:host {
|
|
40
|
-
display: inline-block;
|
|
41
|
-
border: 1px solid black;
|
|
42
|
-
color: red;
|
|
43
|
-
}`}async addStaticArea(){if(!this.staticContent)return;const t=await this.getStaticAreaItemDomRef();return this.responsivePopover=t.querySelector(".ui5-with-static-area-content"),this.responsivePopover}onBeforeRendering(){this.addStaticArea()}onAfterRendering(){}onEnterDOM(){}onExitDOM(){}}yo.define();const _o={tag:"ui5-test-generic-ext",properties:{extProp:{type:String},strProp:{defaultValue:"Ext"}},slots:{extSlot:{type:HTMLElement}}};class wo extends As{static get metadata(){return _o}}wo.define();const vo=":root{ --var1: red; }",So=":root{ --var1: green; }",Ao=":root{ --var1: blue; }",bo=":root{ --var1: orange; }",$o=":root{ --var1: orange; }",Co=":root{ --var1: yellow; }",Eo=":root{ --var1: yellow; }";b("@ui5/webcomponents-base-test","sap_fiori_3",()=>vo);b("@ui5/webcomponents-base-test","sap_fiori_3_dark",()=>So);b("@ui5/webcomponents-base-test","sap_belize",()=>Ao);b("@ui5/webcomponents-base-test","sap_belize_hcb",()=>bo);b("@ui5/webcomponents-base-test","sap_belize_hcw",()=>$o);b("@ui5/webcomponents-base-test","sap_fiori_3_hcb",()=>Co);b("@ui5/webcomponents-base-test","sap_fiori_3_hcw",()=>Eo);const To=/('')|'([^']+(?:''[^']*)*)(?:'|$)|\{([0-9]+(?:\s*,[^{}]*)?)\}|[{}]/g,Mo=(e,t)=>(t=t||[],e.replace(To,(s,n,r,o,i)=>{if(n)return"'";if(r)return r.replace(/''/g,"'");if(o)return String(t[parseInt(o)]);throw new Error(`[i18n]: pattern syntax error at pos ${i}`)})),Dt=new Map;class Lo{constructor(t){this.packageName=t}getText(t,...s){if(typeof t=="string"&&(t={key:t,defaultText:t}),!t||!t.key)return"";const n=wn(this.packageName);n&&!n[t.key]&&console.warn(`Key ${t.key} not found in the i18n bundle, the default text will be used`);const r=n&&n[t.key]?n[t.key]:t.defaultText||t.key;return Mo(r,s)}}const Oo=e=>{if(Dt.has(e))return Dt.get(e);const t=new Lo(e);return Dt.set(e,t),t},Po=async e=>(await es(e),Oo(e));let Rt;const Io=()=>(Rt===void 0&&(Rt=Ps()),Rt),bs={Gregorian:"Gregorian",Islamic:"Islamic",Japanese:"Japanese",Buddhist:"Buddhist",Persian:"Persian"};class Zt extends D{static isValid(t){return!!bs[t]}}Zt.generateTypeAccessors(bs);let tt;const Do=()=>(tt===void 0&&(tt=Us()),Zt.isValid(tt)?tt:Zt.Gregorian);let xt;const Ro=()=>(xt===void 0&&(xt=ks()),xt.firstDayOfWeek),xo=new T,No="directionChange",Uo=()=>xo.fireEvent(No),ko=async()=>{const e=Uo();await Promise.all(e),await Xt({rtlAware:!0})};window.registerThemePropertiesLoader=b;window["sap-ui-webcomponents-bundle"]={configuration:{getAnimationMode:Io,getLanguage:at,getTheme:gt,setTheme:ls,getNoConflict:ee,setNoConflict:zr,getCalendarType:Do,getRTL:ys,getFirstDayOfWeek:Ro},getIconNames:Jn,registerI18nLoader:_n,getI18nBundle:Po,renderFinished:Jt,applyDirection:ko,EventProvider:T};
|
package/dist/types/CSSSize.js
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import DataType from "./DataType.js";
|
|
2
|
-
|
|
3
|
-
class CSSSize extends DataType {
|
|
4
|
-
static isValid(value) {
|
|
5
|
-
return /^(auto|inherit|[-+]?(0*|([0-9]+|[0-9]*\.[0-9]+)([rR][eE][mM]|[eE][mM]|[eE][xX]|[pP][xX]|[cC][mM]|[mM][mM]|[iI][nN]|[pP][tT]|[pP][cC]|%))|calc\(\s*(\(\s*)*[-+]?(([0-9]+|[0-9]*\.[0-9]+)([rR][eE][mM]|[eE][mM]|[eE][xX]|[pP][xX]|[cC][mM]|[mM][mM]|[iI][nN]|[pP][tT]|[pP][cC]|%)?)(\s*(\)\s*)*(\s[-+]\s|[*\/])\s*(\(\s*)*([-+]?(([0-9]+|[0-9]*\.[0-9]+)([rR][eE][mM]|[eE][mM]|[eE][xX]|[pP][xX]|[cC][mM]|[mM][mM]|[iI][nN]|[pP][tT]|[pP][cC]|%)?)))*\s*(\)\s*)*\))$/.test(value); // eslint-disable-line
|
|
6
|
-
}
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
export default CSSSize;
|
package/dist/types/PopupState.js
DELETED
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import DataType from "./DataType.js";
|
|
2
|
-
|
|
3
|
-
const PopupStates = {
|
|
4
|
-
/**
|
|
5
|
-
* Open and currently not changing states.
|
|
6
|
-
* @public
|
|
7
|
-
*/
|
|
8
|
-
OPEN: "OPEN",
|
|
9
|
-
|
|
10
|
-
/**
|
|
11
|
-
* Closed and currently not changing states.
|
|
12
|
-
* @public
|
|
13
|
-
*/
|
|
14
|
-
CLOSED: "CLOSED",
|
|
15
|
-
|
|
16
|
-
/**
|
|
17
|
-
* Already left the CLOSED state, is not OPEN yet, but in the process of getting OPEN.
|
|
18
|
-
* @public
|
|
19
|
-
*/
|
|
20
|
-
OPENING: "OPENING",
|
|
21
|
-
|
|
22
|
-
/**
|
|
23
|
-
* Still open, but in the process of going to the CLOSED state.
|
|
24
|
-
* @public
|
|
25
|
-
*/
|
|
26
|
-
CLOSING: "CLOSING",
|
|
27
|
-
};
|
|
28
|
-
|
|
29
|
-
class PopupState extends DataType {
|
|
30
|
-
static isValid(value) {
|
|
31
|
-
return !!PopupStates[value];
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
PopupState.generateTypeAccessors(PopupStates);
|
|
36
|
-
|
|
37
|
-
export default PopupState;
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
const findNodeOwner = node => {
|
|
2
|
-
if (!(node instanceof HTMLElement)) {
|
|
3
|
-
throw new Error("Argument node should be of type HTMLElement");
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
const ownerTypes = [HTMLHtmlElement, HTMLIFrameElement];
|
|
7
|
-
let currentShadowRootFlag = true;
|
|
8
|
-
let currentCustomElementFlag = true;
|
|
9
|
-
|
|
10
|
-
while (node) {
|
|
11
|
-
if (node.toString() === "[object ShadowRoot]") {
|
|
12
|
-
// Web Component
|
|
13
|
-
// or the shadow root of web component with attached shadow root
|
|
14
|
-
if (currentShadowRootFlag) {
|
|
15
|
-
currentShadowRootFlag = false;
|
|
16
|
-
}
|
|
17
|
-
if (!currentCustomElementFlag && !currentShadowRootFlag) {
|
|
18
|
-
return node;
|
|
19
|
-
}
|
|
20
|
-
} else if (node.tagName && node.tagName.indexOf("-") > -1) {
|
|
21
|
-
if (currentCustomElementFlag) {
|
|
22
|
-
currentCustomElementFlag = false;
|
|
23
|
-
} else {
|
|
24
|
-
return node;
|
|
25
|
-
}
|
|
26
|
-
} else if (ownerTypes.indexOf(node.constructor) > -1) {
|
|
27
|
-
// Document or Iframe reached
|
|
28
|
-
return node;
|
|
29
|
-
}
|
|
30
|
-
|
|
31
|
-
node = node.parentNode || node.host;
|
|
32
|
-
}
|
|
33
|
-
};
|
|
34
|
-
|
|
35
|
-
export default findNodeOwner;
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { getSlotName } from "./SlotsHelper.js";
|
|
2
|
-
|
|
3
|
-
const isDefaultSlotProvided = element => {
|
|
4
|
-
return Array.from(element.childNodes).filter(node => {
|
|
5
|
-
return node.nodeType !== Node.COMMENT_NODE
|
|
6
|
-
&& getSlotName(node) === "default"
|
|
7
|
-
&& (node.nodeType !== Node.TEXT_NODE || node.nodeValue.trim().length !== 0);
|
|
8
|
-
}).length > 0;
|
|
9
|
-
};
|
|
10
|
-
|
|
11
|
-
export default isDefaultSlotProvided;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
const isDescendantOf = (klass, baseKlass, inclusive = false) => {
|
|
2
|
-
if (typeof klass !== "function" || typeof baseKlass !== "function") {
|
|
3
|
-
return false;
|
|
4
|
-
}
|
|
5
|
-
if (inclusive && klass === baseKlass) {
|
|
6
|
-
return true;
|
|
7
|
-
}
|
|
8
|
-
let parent = klass;
|
|
9
|
-
do {
|
|
10
|
-
parent = Object.getPrototypeOf(parent);
|
|
11
|
-
} while (parent !== null && parent !== baseKlass);
|
|
12
|
-
return parent === baseKlass;
|
|
13
|
-
};
|
|
14
|
-
|
|
15
|
-
export default isDescendantOf;
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
const rClickable = /^(?:a|area)$/i;
|
|
2
|
-
const rFocusable = /^(?:input|select|textarea|button)$/i;
|
|
3
|
-
|
|
4
|
-
const isNodeClickable = node => {
|
|
5
|
-
if (node.disabled) {
|
|
6
|
-
return false;
|
|
7
|
-
}
|
|
8
|
-
|
|
9
|
-
const tabIndex = node.getAttribute("tabindex");
|
|
10
|
-
if (tabIndex !== null && tabIndex !== undefined) {
|
|
11
|
-
return parseInt(tabIndex) >= 0;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
return rFocusable.test(node.nodeName)
|
|
15
|
-
|| (rClickable.test(node.nodeName)
|
|
16
|
-
&& node.href);
|
|
17
|
-
};
|
|
18
|
-
|
|
19
|
-
export default isNodeClickable;
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import isNodeHidden from "./isNodeHidden.js";
|
|
2
|
-
|
|
3
|
-
const isNodeTabbable = node => {
|
|
4
|
-
if (!node) {
|
|
5
|
-
return false;
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
const nodeName = node.nodeName.toLowerCase();
|
|
9
|
-
|
|
10
|
-
if (node.hasAttribute("data-sap-no-tab-ref")) {
|
|
11
|
-
return false;
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
if (isNodeHidden(node)) {
|
|
15
|
-
return false;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
const tabIndex = node.getAttribute("tabindex");
|
|
19
|
-
if (tabIndex !== null && tabIndex !== undefined) {
|
|
20
|
-
return parseInt(tabIndex) >= 0;
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
if (nodeName === "a" || /input|select|textarea|button|object/.test(nodeName)) {
|
|
24
|
-
return !node.disabled;
|
|
25
|
-
}
|
|
26
|
-
};
|
|
27
|
-
|
|
28
|
-
export default isNodeTabbable;
|
package/dist/util/setToArray.js
DELETED
package/hash.txt
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
XeoUDYYqmjUwnJg4dGNgbPltSMo=
|
package/src/Boot.js
DELETED
|
@@ -1,59 +0,0 @@
|
|
|
1
|
-
import whenDOMReady from "./util/whenDOMReady.js";
|
|
2
|
-
import insertFontFace from "./FontFace.js";
|
|
3
|
-
import insertSystemCSSVars from "./SystemCSSVars.js";
|
|
4
|
-
import { getTheme } from "./config/Theme.js";
|
|
5
|
-
import applyTheme from "./theming/applyTheme.js";
|
|
6
|
-
import { registerCurrentRuntime } from "./Runtimes.js";
|
|
7
|
-
import { getFeature } from "./FeaturesRegistry.js";
|
|
8
|
-
|
|
9
|
-
let bootPromise;
|
|
10
|
-
|
|
11
|
-
/**
|
|
12
|
-
* Attach a callback that will be executed on boot
|
|
13
|
-
* @public
|
|
14
|
-
* @param listener
|
|
15
|
-
*/
|
|
16
|
-
const attachBoot = async listener => {
|
|
17
|
-
await boot();
|
|
18
|
-
listener();
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
const boot = async () => {
|
|
22
|
-
if (bootPromise) {
|
|
23
|
-
return bootPromise;
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
/* eslint-disable no-alert, no-async-promise-executor */
|
|
27
|
-
/*
|
|
28
|
-
Note(since we disable eslint rule):
|
|
29
|
-
If an async executor function throws an error, the error will be lost and won't cause the newly-constructed Promise to reject.
|
|
30
|
-
This could make it difficult to debug and handle some errors.
|
|
31
|
-
*/
|
|
32
|
-
bootPromise = new Promise(async resolve => {
|
|
33
|
-
registerCurrentRuntime();
|
|
34
|
-
|
|
35
|
-
const OpenUI5Support = getFeature("OpenUI5Support");
|
|
36
|
-
const F6Navigation = getFeature("F6Navigation");
|
|
37
|
-
if (OpenUI5Support) {
|
|
38
|
-
await OpenUI5Support.init();
|
|
39
|
-
} else if (F6Navigation) {
|
|
40
|
-
F6Navigation.init();
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
await whenDOMReady();
|
|
44
|
-
await applyTheme(getTheme());
|
|
45
|
-
OpenUI5Support && OpenUI5Support.attachListeners();
|
|
46
|
-
insertFontFace();
|
|
47
|
-
insertSystemCSSVars();
|
|
48
|
-
|
|
49
|
-
resolve();
|
|
50
|
-
});
|
|
51
|
-
/* eslint-enable no-alert, no-async-promise-executor */
|
|
52
|
-
|
|
53
|
-
return bootPromise;
|
|
54
|
-
};
|
|
55
|
-
|
|
56
|
-
export {
|
|
57
|
-
boot,
|
|
58
|
-
attachBoot,
|
|
59
|
-
};
|
|
@@ -1,95 +0,0 @@
|
|
|
1
|
-
import setToArray from "./util/setToArray.js";
|
|
2
|
-
import getSharedResource from "./getSharedResource.js";
|
|
3
|
-
import { getCurrentRuntimeIndex, compareRuntimes, getAllRuntimes } from "./Runtimes.js";
|
|
4
|
-
|
|
5
|
-
const Tags = getSharedResource("Tags", new Map());
|
|
6
|
-
|
|
7
|
-
const Definitions = new Set();
|
|
8
|
-
let Failures = {};
|
|
9
|
-
let failureTimeout;
|
|
10
|
-
|
|
11
|
-
const UNKNOWN_RUNTIME = "unknown";
|
|
12
|
-
|
|
13
|
-
const registerTag = tag => {
|
|
14
|
-
Definitions.add(tag);
|
|
15
|
-
Tags.set(tag, getCurrentRuntimeIndex());
|
|
16
|
-
};
|
|
17
|
-
|
|
18
|
-
const isTagRegistered = tag => {
|
|
19
|
-
return Definitions.has(tag);
|
|
20
|
-
};
|
|
21
|
-
|
|
22
|
-
const getAllRegisteredTags = () => {
|
|
23
|
-
return setToArray(Definitions);
|
|
24
|
-
};
|
|
25
|
-
|
|
26
|
-
const recordTagRegistrationFailure = tag => {
|
|
27
|
-
let tagRegRuntimeIndex = Tags.get(tag);
|
|
28
|
-
if (tagRegRuntimeIndex === undefined) {
|
|
29
|
-
tagRegRuntimeIndex = UNKNOWN_RUNTIME; // If the tag is taken, but not registered in Tags, then a version before 1.1.0 defined it => use the "unknown" key
|
|
30
|
-
}
|
|
31
|
-
Failures[tagRegRuntimeIndex] = Failures[tagRegRuntimeIndex] || new Set();
|
|
32
|
-
Failures[tagRegRuntimeIndex].add(tag);
|
|
33
|
-
|
|
34
|
-
if (!failureTimeout) {
|
|
35
|
-
failureTimeout = setTimeout(() => {
|
|
36
|
-
displayFailedRegistrations();
|
|
37
|
-
Failures = {};
|
|
38
|
-
failureTimeout = undefined;
|
|
39
|
-
}, 1000);
|
|
40
|
-
}
|
|
41
|
-
};
|
|
42
|
-
|
|
43
|
-
const displayFailedRegistrations = () => {
|
|
44
|
-
const allRuntimes = getAllRuntimes();
|
|
45
|
-
const currentRuntimeIndex = getCurrentRuntimeIndex();
|
|
46
|
-
const currentRuntime = allRuntimes[currentRuntimeIndex];
|
|
47
|
-
|
|
48
|
-
let message = `Multiple UI5 Web Components instances detected.`;
|
|
49
|
-
|
|
50
|
-
if (allRuntimes.length > 1) {
|
|
51
|
-
message = `${message}\nLoading order (versions before 1.1.0 not listed): ${allRuntimes.map(runtime => `\n${runtime.description}`).join("")}`;
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
Object.keys(Failures).forEach(otherRuntimeIndex => {
|
|
55
|
-
let comparison;
|
|
56
|
-
let otherRuntime;
|
|
57
|
-
|
|
58
|
-
if (otherRuntimeIndex === UNKNOWN_RUNTIME) { // version < 1.1.0 defined the tag
|
|
59
|
-
comparison = 1; // the current runtime is considered newer
|
|
60
|
-
otherRuntime = {
|
|
61
|
-
description: `Older unknown runtime`,
|
|
62
|
-
};
|
|
63
|
-
} else {
|
|
64
|
-
comparison = compareRuntimes(currentRuntimeIndex, otherRuntimeIndex);
|
|
65
|
-
otherRuntime = allRuntimes[otherRuntimeIndex];
|
|
66
|
-
}
|
|
67
|
-
|
|
68
|
-
let compareWord;
|
|
69
|
-
if (comparison > 0) {
|
|
70
|
-
compareWord = "an older";
|
|
71
|
-
} else if (comparison < 0) {
|
|
72
|
-
compareWord = "a newer";
|
|
73
|
-
} else {
|
|
74
|
-
compareWord = "the same";
|
|
75
|
-
}
|
|
76
|
-
message = `${message}\n\n"${currentRuntime.description}" failed to define ${Failures[otherRuntimeIndex].size} tag(s) as they were defined by a runtime of ${compareWord} version "${otherRuntime.description}": ${setToArray(Failures[otherRuntimeIndex]).sort().join(", ")}.`;
|
|
77
|
-
|
|
78
|
-
if (comparison > 0) {
|
|
79
|
-
message = `${message}\nWARNING! If your code uses features of the above web components, unavailable in ${otherRuntime.description}, it might not work as expected!`;
|
|
80
|
-
} else {
|
|
81
|
-
message = `${message}\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`;
|
|
82
|
-
}
|
|
83
|
-
});
|
|
84
|
-
|
|
85
|
-
message = `${message}\n\nTo prevent other runtimes from defining tags that you use, consider using scoping or have third-party libraries use scoping: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/03-scoping.md.`;
|
|
86
|
-
|
|
87
|
-
console.warn(message); // eslint-disable-line
|
|
88
|
-
};
|
|
89
|
-
|
|
90
|
-
export {
|
|
91
|
-
registerTag,
|
|
92
|
-
isTagRegistered,
|
|
93
|
-
getAllRegisteredTags,
|
|
94
|
-
recordTagRegistrationFailure,
|
|
95
|
-
};
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
html,
|
|
3
|
-
svg,
|
|
4
|
-
unsafeStatic,
|
|
5
|
-
} from "lit-html/static.js";
|
|
6
|
-
|
|
7
|
-
import {
|
|
8
|
-
setCustomElementsScopingSuffix,
|
|
9
|
-
getCustomElementsScopingSuffix,
|
|
10
|
-
setCustomElementsScopingRules,
|
|
11
|
-
getCustomElementsScopingRules,
|
|
12
|
-
shouldScopeCustomElement,
|
|
13
|
-
getEffectiveScopingSuffixForTag,
|
|
14
|
-
} from "./CustomElementsScopeUtils.js";
|
|
15
|
-
import { registerFeature } from "./FeaturesRegistry.js";
|
|
16
|
-
|
|
17
|
-
registerFeature("LitStatic", {
|
|
18
|
-
html,
|
|
19
|
-
svg,
|
|
20
|
-
unsafeStatic,
|
|
21
|
-
});
|
|
22
|
-
|
|
23
|
-
export {
|
|
24
|
-
setCustomElementsScopingSuffix,
|
|
25
|
-
getCustomElementsScopingSuffix,
|
|
26
|
-
setCustomElementsScopingRules,
|
|
27
|
-
getCustomElementsScopingRules,
|
|
28
|
-
shouldScopeCustomElement,
|
|
29
|
-
getEffectiveScopingSuffixForTag,
|
|
30
|
-
};
|