@ui5/webcomponents-base 2.8.0-rc.0 → 2.8.0-rc.2

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.
Files changed (37) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/cypress/specs/Events.cy.tsx +28 -0
  3. package/dist/.tsbuildinfobuild +1 -1
  4. package/dist/CustomElementsRegistry.d.ts +2 -1
  5. package/dist/CustomElementsRegistry.js +4 -1
  6. package/dist/CustomElementsRegistry.js.map +1 -1
  7. package/dist/CustomElementsScopeUtils.d.ts +3 -1
  8. package/dist/CustomElementsScopeUtils.js +8 -1
  9. package/dist/CustomElementsScopeUtils.js.map +1 -1
  10. package/dist/custom-elements-internal.json +52 -0
  11. package/dist/custom-elements.json +15 -0
  12. package/dist/generated/VersionInfo.js +3 -3
  13. package/dist/generated/VersionInfo.js.map +1 -1
  14. package/dist/jsx-utils.js +11 -2
  15. package/dist/jsx-utils.js.map +1 -1
  16. package/dist/prod/CustomElementsRegistry.js +3 -3
  17. package/dist/prod/CustomElementsRegistry.js.map +3 -3
  18. package/dist/prod/CustomElementsScopeUtils.js +1 -1
  19. package/dist/prod/CustomElementsScopeUtils.js.map +3 -3
  20. package/dist/prod/generated/VersionInfo.js +1 -1
  21. package/dist/prod/generated/VersionInfo.js.map +1 -1
  22. package/dist/prod/jsx-utils.js +1 -1
  23. package/dist/prod/jsx-utils.js.map +3 -3
  24. package/dist/prod/ssr-dom-shim.js +1 -1
  25. package/dist/prod/ssr-dom-shim.js.map +3 -3
  26. package/dist/prod/types/SortOrder.js +2 -0
  27. package/dist/prod/types/SortOrder.js.map +7 -0
  28. package/dist/prod/util/throttle.js +1 -1
  29. package/dist/prod/util/throttle.js.map +3 -3
  30. package/dist/ssr-dom-shim.js +5 -1
  31. package/dist/ssr-dom-shim.js.map +1 -1
  32. package/dist/types/SortOrder.d.ts +24 -0
  33. package/dist/types/SortOrder.js +26 -0
  34. package/dist/types/SortOrder.js.map +1 -0
  35. package/dist/util/throttle.js +11 -6
  36. package/dist/util/throttle.js.map +1 -1
  37. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [2.8.0-rc.2](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.1...v2.8.0-rc.2) (2025-02-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **framework:** allow usage of events with any name not only kebab-case ([#10896](https://github.com/SAP/ui5-webcomponents/issues/10896)) ([d49f0de](https://github.com/SAP/ui5-webcomponents/commit/d49f0ded677a3d000e22811504a93f7ab11b145c))
12
+
13
+
14
+
15
+
16
+
17
+ # [2.8.0-rc.1](https://github.com/SAP/ui5-webcomponents/compare/v2.8.0-rc.0...v2.8.0-rc.1) (2025-02-13)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **ui5-table:** update select all checkbox ([#10833](https://github.com/SAP/ui5-webcomponents/issues/10833)) ([819edcd](https://github.com/SAP/ui5-webcomponents/commit/819edcd51b04d60634fa8faa8f5c6b256eac99f5)), closes [#10658](https://github.com/SAP/ui5-webcomponents/issues/10658) [#10574](https://github.com/SAP/ui5-webcomponents/issues/10574) [#10804](https://github.com/SAP/ui5-webcomponents/issues/10804)
23
+
24
+
25
+
26
+
27
+
6
28
  # [2.8.0-rc.0](https://github.com/SAP/ui5-webcomponents/compare/v2.7.0...v2.8.0-rc.0) (2025-02-06)
7
29
 
8
30
  **Note:** Version bump only for package @ui5/webcomponents-base
@@ -0,0 +1,28 @@
1
+ import EventsConsumer from "../../test/test-elements/Events.js";
2
+ import type { Events } from "../../test/test-elements/Events.js";
3
+
4
+ describe("Event provider attaches and detaches listeners properly", () => {
5
+ it("Tests that attaching camelCase and kebab-case events in templates works", () => {
6
+ cy.mount(<EventsConsumer></EventsConsumer>);
7
+ cy.get<EventsConsumer>("[ui5-test-events-consumer]")
8
+ .as("eventsConsumer");
9
+
10
+ cy.get("@eventsConsumer")
11
+ .shadow()
12
+ .find("[ui5-test-events]")
13
+ .then(elements => {
14
+ (elements[0] as Events).fireKebaCaseEvent();
15
+ });
16
+ cy.get("@eventsConsumer")
17
+ .should("have.prop", "kebabCaseFired", true);
18
+
19
+ cy.get("@eventsConsumer")
20
+ .shadow()
21
+ .find("[ui5-test-events]")
22
+ .then(elements => {
23
+ (elements[0] as Events).fireCamelCaseEvent();
24
+ });
25
+ cy.get("@eventsConsumer")
26
+ .should("have.prop", "camelCaseFired", true);
27
+ });
28
+ });
@@ -1 +1 @@
1
- {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/thirdparty/preact/preact.module.d.ts","../src/thirdparty/preact/jsx.d.ts","../src/thirdparty/preact/jsxRuntime.module.d.ts","../src/ssr-dom.ts","../src/thirdparty/isPlainObject.ts","../src/thirdparty/_merge.ts","../src/thirdparty/merge.ts","../src/util/whenDOMReady.ts","../src/EventProvider.ts","../src/util/getSingletonElementInstance.ts","../src/getSharedResource.ts","../src/types.ts","../src/CustomElementsRegistry.ts","../src/generated/VersionInfo.ts","../src/CustomElementsScopeUtils.ts","../src/Runtimes.ts","../src/ManagedStyles.ts","../src/FeaturesRegistry.ts","../src/generated/css/FontFace.css.ts","../src/generated/css/OverrideFontFace.css.ts","../src/features/patchPatcher.ts","../src/features/patchPopup.ts","../src/generated/AssetParameters.ts","../src/Location.ts","../src/validateThemeRoot.ts","../src/features/LegacyDateFormats.ts","../src/config/ConfigurationReset.ts","../src/config/FormatSettings.ts","../src/types/AnimationMode.ts","../src/types/CalendarType.ts","../src/InitialConfiguration.ts","../src/RenderQueue.ts","../src/locale/RTLAwareRegistry.ts","../src/Render.ts","../src/theming/ThemeRegistered.ts","../src/asset-registries/Themes.ts","../src/theming/getThemeDesignerTheme.ts","../src/theming/ThemeLoaded.ts","../src/util/createLinkInHead.ts","../src/config/ThemeRoot.ts","../src/theming/applyTheme.ts","../src/config/Theme.ts","../src/locale/languageChange.ts","../src/util/detectNavigatorLanguage.ts","../src/config/Language.ts","../src/locale/Locale.ts","../src/locale/getLocale.ts","../src/asset-registries/LocaleData.ts","../src/features/OpenUI5Support.ts","../src/config/Fonts.ts","../src/FontFace.ts","../src/generated/css/SystemCSSVars.css.ts","../src/SystemCSSVars.ts","../src/Keys.ts","../src/util/isElementHidden.ts","../src/util/isElementClickable.ts","../src/util/FocusableElements.ts","../src/util/getFastNavigationGroups.ts","../src/features/F6Navigation.ts","../src/Device.ts","../src/util/fixSafariActiveState.ts","../src/Boot.ts","../src/util/StringHelper.ts","../src/util/SlotsHelper.ts","../src/UI5ElementMetadata.ts","../src/theming/CustomStyle.ts","../src/theming/getStylesString.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../src/generated/css/BusyIndicator.css.ts","../src/features/OpenUI5Element.ts","../src/features/OpenUI5Enablement.ts","../src/theming/getEffectiveStyle.ts","../src/theming/getConstructableStyle.ts","../src/updateShadowRoot.ts","../src/IgnoreCustomElements.ts","../src/DOMObserver.ts","../src/config/NoConflict.ts","../src/locale/getEffectiveDir.ts","../src/util/isValidPropertyName.ts","../src/util/arraysAreEqual.ts","../src/renderer/executeTemplate.ts","../src/features/InputElementsFormSupport.ts","../src/locale/normalizeLocale.ts","../src/locale/nextFallbackLocale.ts","../src/asset-registries/i18n.ts","../src/util/formatMessage.ts","../src/i18nBundle.ts","../src/UI5Element.ts","../src/util/hash2str.ts","../src/jsx-utils.ts","../src/jsx-dev-runtime.ts","../src/jsx-runtime.ts","../src/asset-registries/util/IconCollectionsAlias.ts","../src/asset-registries/util/IconCollectionsByTheme.ts","../src/config/Icons.ts","../src/asset-registries/util/getIconCollectionByTheme.ts","../src/asset-registries/Icons.ts","../src/AssetRegistry.ts","../../../node_modules/lit-html/development/static.d.ts","../src/CustomElementsScope.ts","../src/MediaRange.ts","../src/PropertiesFileFormat.ts","../src/Theming.ts","../src/connectToComponent.ts","../src/decorators/customElement.ts","../src/decorators/event.ts","../src/decorators/event-strict.ts","../src/decorators/property.ts","../src/decorators/slot.ts","../src/decorators/bound.ts","../src/decorators/i18n.ts","../src/decorators.ts","../src/global.d.ts","../src/index.d.ts","../node_modules/@lit-labs/ssr-dom-shim/lib/element-internals.d.ts","../node_modules/@lit-labs/ssr-dom-shim/index.d.ts","../src/ssr-dom-shim.ts","../src/animations/AnimationQueue.ts","../src/animations/animate.ts","../src/animations/scroll.ts","../src/animations/slideDown.ts","../src/animations/slideUp.ts","../src/asset-registries/Illustrations.ts","../src/config/AnimationMode.ts","../src/config/CalendarType.ts","../src/config/Timezone.ts","../src/config/Tooltips.ts","../src/converters/DOMReference.ts","../src/decorators/query.ts","../src/decorators/queryAll.ts","../src/util/getActiveElement.ts","../src/types/NavigationMode.ts","../src/types/ItemNavigationBehavior.ts","../src/delegate/ItemNavigation.ts","../src/delegate/ResizeHandler.ts","../src/delegate/ScrollEnablement.ts","../src/locale/directionChange.ts","../src/locale/applyDirection.ts","../src/renderer/JsxRenderer.ts","../../../node_modules/lit-html/development/directives/repeat.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../src/renderer/directives/style-map.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit-html/development/directives/unsafe-html.d.ts","../src/renderer/LitRenderer.ts","../src/types/InvisibleMessageMode.ts","../src/types/MovePlacement.ts","../src/types/Orientation.ts","../src/types/ValueState.ts","../src/util/AccessibilityTextsHelper.ts","../src/util/Caret.ts","../src/util/ColorConversion.ts","../src/util/FetchHelper.ts","../src/util/HTMLSanitizer.ts","../src/util/InvisibleMessage.ts","../src/util/PopupUtils.ts","../src/util/getEffectiveScrollbarStyle.ts","../src/util/SelectionAssistant.ts","../src/util/isElementTabbable.ts","../src/util/TabbableElements.ts","../src/util/clamp.ts","../src/util/debounce.ts","../src/util/escapeRegex.ts","../src/util/generateHighlightedMarkup.ts","../src/util/getClassCopy.ts","../src/util/getDesigntimePropertyAsArray.ts","../src/util/getEffectiveContentDensity.ts","../src/util/getFileExtension.ts","../src/util/getNormalizedTarget.ts","../src/util/isElementInView.ts","../src/util/throttle.ts","../src/util/toLowercaseEnumValue.ts","../src/util/willShowContent.ts","../src/util/dragAndDrop/DragRegistry.ts","../src/util/dragAndDrop/findClosestPosition.ts","../src/util/dragAndDrop/handleDragOver.ts","../src/util/dragAndDrop/handleDrop.ts","../src/util/dragAndDrop/longDragOverHandler.ts","../../../node_modules/blob-util/dist/blob-util.d.ts","../../../node_modules/cypress/types/cy-blob-util.d.ts","../../../node_modules/cypress/types/bluebird/index.d.ts","../../../node_modules/cypress/types/cy-bluebird.d.ts","../../../node_modules/cypress/types/cy-minimatch.d.ts","../../../node_modules/cypress/types/chai/index.d.ts","../../../node_modules/cypress/types/cy-chai.d.ts","../../../node_modules/cypress/types/lodash/common/common.d.ts","../../../node_modules/cypress/types/lodash/common/array.d.ts","../../../node_modules/cypress/types/lodash/common/collection.d.ts","../../../node_modules/cypress/types/lodash/common/date.d.ts","../../../node_modules/cypress/types/lodash/common/function.d.ts","../../../node_modules/cypress/types/lodash/common/lang.d.ts","../../../node_modules/cypress/types/lodash/common/math.d.ts","../../../node_modules/cypress/types/lodash/common/number.d.ts","../../../node_modules/cypress/types/lodash/common/object.d.ts","../../../node_modules/cypress/types/lodash/common/seq.d.ts","../../../node_modules/cypress/types/lodash/common/string.d.ts","../../../node_modules/cypress/types/lodash/common/util.d.ts","../../../node_modules/cypress/types/lodash/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/cypress/types/sinon/index.d.ts","../../../node_modules/cypress/types/sinon-chai/index.d.ts","../../../node_modules/cypress/types/mocha/index.d.ts","../../../node_modules/cypress/types/jquery/JQueryStatic.d.ts","../../../node_modules/cypress/types/jquery/JQuery.d.ts","../../../node_modules/cypress/types/jquery/misc.d.ts","../../../node_modules/cypress/types/jquery/legacy.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/cypress/types/jquery/index.d.ts","../../../node_modules/cypress/types/chai-jquery/index.d.ts","../../../node_modules/cypress/types/cypress-npm-api.d.ts","../../../node_modules/cypress/types/net-stubbing.d.ts","../../../node_modules/eventemitter2/eventemitter2.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/cypress/types/cypress-eventemitter.d.ts","../../../node_modules/cypress/types/cypress-type-helpers.d.ts","../../../node_modules/cypress/types/cypress.d.ts","../../../node_modules/cypress/types/cypress-global-vars.d.ts","../../../node_modules/cypress/types/cypress-expect.d.ts","../../../node_modules/cypress/types/index.d.ts","../../../node_modules/cypress-real-events/getCypressElementCoordinates.d.ts","../../../node_modules/cypress-real-events/commands/realClick.d.ts","../../../node_modules/cypress-real-events/commands/realTouch.d.ts","../../../node_modules/cypress-real-events/commands/realHover.d.ts","../../../node_modules/cypress-real-events/commands/realSwipe.d.ts","../../../node_modules/cypress-real-events/keyCodeDefinitions.d.ts","../../../node_modules/cypress-real-events/commands/realPress.d.ts","../../../node_modules/cypress-real-events/commands/realType.d.ts","../../../node_modules/cypress-real-events/mouseButtonNumbers.d.ts","../../../node_modules/cypress-real-events/commands/mouseDown.d.ts","../../../node_modules/cypress-real-events/commands/mouseUp.d.ts","../../../node_modules/cypress-real-events/commands/mouseMove.d.ts","../../../node_modules/cypress-real-events/commands/mouseWheel.d.ts","../../../node_modules/cypress-real-events/index.d.ts","../../tools/components-package/cypress/support/component.d.ts","../../tools/types/index.d.ts"],"fileIdsList":[[131],[285,286,294],[285,286],[291],[285],[287,288,289,290,292,293,295,296,297,298],[250,274],[245],[247],[250],[278,279],[276,280,281],[246,248,249,251,264,266,267,268,274,275,276,277,281,282,283,284],[269,270,271,272,273],[252,254,255,256,257,258,259,260,261,262,263,264],[252,253,255,256,257,258,259,260,261,262,263,264],[253,254,255,256,257,258,259,260,261,262,263,264],[252,253,254,256,257,258,259,260,261,262,263,264],[252,253,254,255,257,258,259,260,261,262,263,264],[252,253,254,255,256,258,259,260,261,262,263,264],[252,253,254,255,256,257,259,260,261,262,263,264],[252,253,254,255,256,257,258,260,261,262,263,264],[252,253,254,255,256,257,258,259,261,262,263,264],[252,253,254,255,256,257,258,259,260,262,263,264],[252,253,254,255,256,257,258,259,260,261,263,264],[252,253,254,255,256,257,258,259,260,261,262,264],[252,253,254,255,256,257,258,259,260,261,262,263],[250,266],[265],[134],[133,134],[132,133],[181],[99,111,151,158,163],[71,72,75,79,81,98,104,105,112,114,116,122,124,158],[74,75,79,158],[78,81,158,165],[77,158],[158],[80,81,82,83,112,113,158],[70,81,86,87,88,90,91,92,93,112,158],[79,158],[72,75,76,95,96,154,158],[154,158],[74,76,77,78,158],[80,115,158],[101,129,158],[67,70,72,75,76,78,96,97,110,111,125,126,127,128,140,141,142,143,144,145,146,147,148,153,158],[78,126,127,154,158],[158,184],[158,185],[74,147,153,158,159,160,162],[74,105,153,158],[81,86,106,110,112,158],[80,86,98,158],[86,106,108,110,149,150,158],[105,158],[105,158,159,160,161],[90,92,94,158],[90,93,94,158],[72,158],[90,94,158],[81,89,90,94,158],[86,90,94,97,106,125,158],[86,90,94,97,100,104,125,158],[88,90,94,102,105,158],[94,158],[75,97,154,158],[158,171,172,173,174,175,176,177],[75,147,154,158],[128,154,158],[117,154,158,197,198,199],[72,123,154,158,186],[74,79,81,117,119,120,121,154,158],[81,91,94,158],[70,81,117,134,135,136,154,158],[81,84,85,89,105,111,158],[73,158],[151,152,158],[75,158],[64,66,126,154,156,158],[64,66,154,156,157,158],[126,154,155,158],[86,158],[97,158,203],[86,107,108,109,158],[64,66,154,158],[81,134,137,154,158,166,206,207,208,209,210],[133,134,158],[158,182],[72,74,97,158],[79,80,81,86,99,100,101,103,112,158],[129,138,154,158],[81,129,130,137,154,158],[68,158],[69,158],[64],[64,65],[139,154,158],[118,119,154,158],[73,125,158,212],[158,197],[158,223],[158,225],[154,158,213],[158,213,214],[154,158,213,240],[123,158],[158,229],[118,158],[87,158],[300]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb6f9e2d21ddb4f676cd3a078719644080013fd176c2e8b34b18fbd3405670b4","impliedFormat":99},{"version":"3a83ed3811f76941a1e0f422d9ac014929c45d16a38f11ad03e78c65b85cdff5","impliedFormat":99},{"version":"bbb69732bbd650ba04d384c900e4480f0031a26970debf8d2cf429f23610426d","impliedFormat":99},{"version":"71b1d1ccec147635fb1a8774756172226bf1613e523f55d42c48b0a2e402e278","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"af8a94f87c31964962a10bcd7950626d7d744da2730a16f575eba01c439c335d","signature":"3e7e0e2c2bd968e6939442cd6e115a292b9606be92a5014dabd4731799fe2d08","impliedFormat":99},{"version":"82e2a0e05398c4f88fd4ab4a0ac9333fb747004360ff3309e081412cc2d38b36","signature":"8ddde35009f0ca33812f921bb608011e2b4d367a165aa273f89875ad851335f8","impliedFormat":99},{"version":"4ab6414f255dddef94f470c67a87714c22f067696c354b05a3ae58ce3e3ccfc4","signature":"ebc633f5065629dfcd1192a69994bef7a77b2794545d0a7e84e41f33ee815188","impliedFormat":99},{"version":"9626dcd10b85bfc4df6e68381233c51569f6b664dec1c2ad1379308211f54e9d","signature":"9d0059f5c2822282a2611b5bf18db168a4309de5c6a8c0027ff8cac5f3cc9680","impliedFormat":99},{"version":"ed3cc0cb8191db0cc0788627049c8ea6daf56e2ac4fd33e87acdee7b936a6c34","signature":"4c0bec516cf8647bf780206b2640838e07cf4fc45890025b48c463d53d498d27","impliedFormat":99},{"version":"ba94bebed221766b02d68cddd17ef4100cae848ece10aa93ede11e24f34e1a9c","signature":"55b730c15025027cfb4bc3ecbc135c39b8aec3cd77686369f269cfbc3167bc09","impliedFormat":99},{"version":"6fb5197788b5276fbc5aa9a50c29e50df228efde9c3a76f5621c0479abddd92d","signature":"24fab1f6c0b4e63b7fee39cd5915b7389e7be4b72a0dc8e0db47515f1d2d7e6a","impliedFormat":99},{"version":"3f8b4e6c9bf6b79f7c7c741f257ee01e405b94b32e86d5ed7e3eaa9e1e8246d3","signature":"15c7d02c27976aaa2cf30858bd0e160dce77c376824c22d88af723192b4f99e2","impliedFormat":99},{"version":"3c92eade4b553a26279e22d28c63f03f46fa95279c92dd38676419421fe744b8","signature":"c38e69fe1035331951e26ad6e666f83c0ce78bf0d04220e987ad3ad9f83ab040","impliedFormat":99},{"version":"8d6d609564ffe160ab7019f0981b8b15f1dc5dee00dd6a0381361ba1cd11226f","signature":"3a93156364a2c9f69a6047f30cd4238d3c46b594e3a6992cb8a4c7d0f6ab7cf6","impliedFormat":99},{"version":"b45fed653f50e808cf1e4c91f09c255a1586c9a717e04f6efdc4f7ade454c95f","signature":"2454ea4b173f8a529ff582e558eb1f8b4b67514e21cc4a5dfd7f2fdb0b8c7dd2","impliedFormat":99},{"version":"458682f3281d878a621cde1c45bc7ef192ec3cba43ff8492aea2bdc07b6ac9a6","signature":"5fc86b37da7a304869d547beb1cdcac5c1c47b68c391ef14b255a7d744c9853a","impliedFormat":99},{"version":"6ac2e913ef02c993db8d67ba5263bcdfd9796b116aa04f86a3e0b09024d024b6","signature":"6bbcc993bfb4730be8d7641c6ee705a26648db25dd47318e8c6958e7e48e8cc7","impliedFormat":99},{"version":"8984d958cb6482cfa6a116d31687c6029093ad7c6097be5a17c3ca247799659a","signature":"ea875779624c187aa4ea110d7978a29767064513fa95d3b7a8b93ac4b57f76d5","impliedFormat":99},{"version":"9cd2c10189fce675ab36a6c7b3fd5e41b1358e650ec0effe09bd6bbdcc4867dd","signature":"9e2331b5d42ddd430c0ed9ca1cf477e23d87eee5277161c10db98445e803a9b2","impliedFormat":99},{"version":"d2a7c4053e31406e2ddb74d1a25b3c3e3699ef077ff66ac676c83c09daa88396","signature":"61a7a6caa22123ec788f7234db141aff773a18911ed2b0d3450073a4cc7f1a05","impliedFormat":99},{"version":"2e139b53ea4753ab9659bd869da5abfc2e93af6ff4d5a98532c81514569ff702","signature":"dc68584277bfca4adfa24556e5cd3ad8979e34dd3c96c11613ac1ddc03c02367","impliedFormat":99},{"version":"2d8802922f8a841056def08b93c529f696dbff6eb77629e0f636bad495096a11","signature":"b495964f94d51a37912f80d6e0bbb0995790c4a1090773ccb77e53f48afb028a","impliedFormat":99},{"version":"09d84e6ee3cd250306d2f2ab8631c9ce064bb721cad6b6518877e581e24e7497","signature":"a2f4c66c930ac0cf330fe3f4bcb6ee2ad94427f562118f4268a41146c5855739","impliedFormat":99},{"version":"4fabcac65b6c43729bd0b3d630ebc5f5caeafed60330be92a6f24e9bc64a03ea","signature":"766d87e40da735f7d8256d79d9c31024a8d15801c0264f5144927413240bcf72","impliedFormat":99},{"version":"433293a2266fe13f59f239a6ccb5c48a7680a5707dcd30ab77138263f14d7c6a","signature":"7db27bc2069a9f8bec31d633d1c91e9ec872f9cd1db58b904d51abc47f4699da","impliedFormat":99},{"version":"3c5d1f5a6e2d4b7ccc7af39ed8ffd634a5c15ee7d60b0a10fa4dfcc6ad9a0449","signature":"d65683d71aa438b9f24e497eb5f6c17cd535aa8b9ac85243a56773f2cb4fdda8","impliedFormat":99},{"version":"cd6a41b95e8cdbe5757b0b1172c34d092711a3c409097f87e44169a90e835be3","signature":"11a242a4c61bb53f52146ab754a4530904db4153fd6c9001a996f286f8a246b2","impliedFormat":99},{"version":"833b0307a43e57e88d3b785673e543142846f620bb8f22fa6b46ceb616785e23","signature":"95f3f4557ecf2ac0964b11e722f5520fb00b4a40f47a130e13a14c2919977f04","impliedFormat":99},{"version":"e6a24aff995ba099e7842c3294d5aba42972a194b21997da6f1b59f1f0882306","signature":"5d60fff61c30d76396ba9414886f2a7593c51a818aae683040af7f45ce91f3fa","impliedFormat":99},{"version":"bed3b803239b6e320d1165691306076d476dfe622e1ad1d3bbc43bdcfd8cb69e","signature":"c8a43105076f6584d5817f35bc05df3a37e36c6c7298f5f366c4fa08be1e3c9a","impliedFormat":99},{"version":"fc9c6b088b2fcb6425a3a3472556355449ed191f3a3d97f334d222ecbc275cee","signature":"e18d2d272f87a0eb64744979e9300d38cbbc88ee8683196d85e32449a9458df1","impliedFormat":99},{"version":"2903c762b12a3cef9d391b638b3d9d172821b6ec8265779a469de86477b09695","signature":"e96e73cc3b674185262ed50a9a7f112bfd5d888e483bbfcd6c14336460192b3f","impliedFormat":99},{"version":"8f7801370dc578e6d54ca046aed79d9cfc8beb80d1f9bdbe675b7c1e8bd6862e","signature":"8c1f3a67e415dba00572af5de571271243e9bc6f4f200560a096b0df3c2ef3c3","impliedFormat":99},{"version":"411a6d130148c3e48f5d0a411d9c8a41b00ec1d56f8462557ee10d12ea64542b","signature":"c799577deefbd96083c4c1a94f6fdf8559b062eed10cc138bbf4aeb44b22ed29","impliedFormat":99},{"version":"535b858324525c07fa3b746caa16f178566c4705ca44dbfbc5779977c88d7b9e","signature":"d334248d62050e97c48e2d5c2438c442e0eaef444c9c98f11e19505a9697e785","impliedFormat":99},{"version":"ec333e3f395c567da2998239c2829ab2ab717ca354cd59b2733b3b7b79fdb650","signature":"b4b34ba4a8dc4702e9ad6ee2b8f026320dbb4925d23a60ba68ff539b2f3b29a8","impliedFormat":99},{"version":"26e984d37b3b376167b7eb044e7b49e06ba831a89bac3ee6fc52dee6fa8a4375","signature":"3c607485127c15c5bf9425fa8ecd734ed1bfe4b3a77c5137b73f06e6f4b5df93","impliedFormat":99},{"version":"cca3960d3e16ca1d8a442cb2373e77e34128373bcfdd6ad81f6f216a85cdb8e2","signature":"12a8af586fcf0404c411fe35379268547bd2e0958e4336c7458442d901219105","impliedFormat":99},{"version":"1f21b9be0d809f9a5c1fcb3b5bd98c10bbae2088b65788a400c12f14d9c06b0e","signature":"ac30e92bf282a09133eb645123900ac2870c3fc601b6f58bc41bc71e26d90594","impliedFormat":99},{"version":"fde9debd1fa396990ef681547e97a16772e41f182ce57ddc1f8f08dbfcb4ef39","signature":"e4111898381b03f8ed2da8bf929fe2701a16384debb2bd9b5005c5d6e812508a","impliedFormat":99},{"version":"f823c56b9d2acbec902cc5bfac461fe3e0e4d3628ee2a7d3be3e3ae609a667b1","signature":"2c2a3290a0904df8faecf9086d9e7c181fbf67fbeacd84c7adc8e2fe27c0f840","impliedFormat":99},{"version":"8b4fddf0493694c89a6130524f695f33dcb496edfee216cf45325f44496b50a5","signature":"5be4d759b1cd2008ce3841fd60d55dd541fa29aef05acf646a993cf639a96c15","impliedFormat":99},{"version":"7a4eff3350e39c9ae3b33b597c118c453a8250bbe370833f5cd4c8eb83d6ce93","signature":"f2e77547284b4233f223b24ef174de974cbead72b1ee7b9895c5067104841a6c","impliedFormat":99},{"version":"377e7e44b9dfcb2d9204eaf966145e33dd5480d844a1ea73e5fda78d8fc9a26a","signature":"a318e1ac7accdcecb75587af58fff532a876aec1ebf0a4182b6394fe55d5a774","impliedFormat":99},{"version":"f8bcd70ca25c6721e29d7e4626924fbff882376efb22e9311d26eac41be415bb","signature":"16187460bc80d7f33d11defe01045dcb2b7273d86ac7ca978eec5c18f8e84f85","impliedFormat":99},{"version":"16f232e2501044abf8af3db1d5dc1067d41d87d706ff9afcdcb990d4d7eb42ac","signature":"c5edba8a528592c637cba96d933c4fcb617d5f930c3ccfe0f2a9467082bc1f22","impliedFormat":99},{"version":"aa3c0f167e486ad9bf5386f40300b1b961030e63bc405124e6d7ec1449e31eaa","signature":"10da1363260f410cb9398a98d1f732c3c931f9d70fd94f2707727184a256e0a0","impliedFormat":99},{"version":"5d9cce91e118f529a5783a1a4f697785e150cce74f57af84d9387424fb597d50","signature":"88cc5c7a2d66ec59f981bbe41bf06066bd8b7dfa5db73db7253725e619455be6","impliedFormat":99},{"version":"ef1c58f115ba8dc4b98bc121a4a2d2c05431eeabf536aa8268b688200622b7bd","signature":"38e3cb184fd0fd867a24b5f0596a34c6c77d82a11f152f330e8b23fc2964db29","impliedFormat":99},{"version":"02b6bce1b83b5dae54947339dc7731dabb1664b819a7fba117f7bd5b2bf0d054","signature":"ee218dfe4be43788b75a0def55b9f8ff0bef1b584b91d3cd8a9199336ac13c37","impliedFormat":99},{"version":"6d547041465e131b037d8e76073910410f23e3fb0226b5cb53c53c3fbc102f33","signature":"41d3448d133003a83c425d0d4955ec88fd1d9f95e138672b935c19da96c2691f","impliedFormat":99},{"version":"37b121a347dbf835cdb8cd068e9aa5da2b248d3481310b22600d274d6f567d78","signature":"a261f34d5561f7dc7c3264e222a6ca7670a8edf19c174f7d4482d545a355cc77","impliedFormat":99},{"version":"d34aa0e9ca0605fcf8d29ba3592465c6962f3324990ac9b15f3b6c47076c9327","signature":"15667452478dfaf26fbae1a5afd70089df775681824c82c406c7a0d413dec1b9","impliedFormat":99},{"version":"42862428d670162a61b7123f7df2c85688a9b877e034e62ea21fa95fad2c94f1","signature":"503cd43f394143b21fede11d7f0a7268aacdb97ca7f588ec0df65bf85d912b64","impliedFormat":99},{"version":"e73dca683bae65c34992d1dfd6ec362452d175ad6d3f3702ee71aeaa126860d1","signature":"89cf030e91c8e5c01f15013895d5ab79909247fcc2c5736e8c0239188cceeeeb","impliedFormat":99},{"version":"48367a0c810aa37c7b1f721243782553d6ecef3b391ad503332c1300e5b8e4a2","signature":"0dc99c83649da82dc8db80908a4831289520f89e7225db8b6f16c40adab2d3b8","impliedFormat":99},{"version":"4587d6a10788e2bee52d5f7db91d018b8358ea11b1e42ede926f2dadfbe6dba6","signature":"2cc62ffa90e426cfeddc8ea6c6c2cb0c823bfcc3635e635a279f8dc0dd7f8071","impliedFormat":99},{"version":"68dba9d4f39d9d03d759f09918e5adb7d2326f9d58360330b9217eddbf92f3f1","signature":"f2351c72611269138493c55eb7c1cd3e6fe11f653c914e6d89aa6b098edb704b","impliedFormat":99},{"version":"af928b93f24b2d349fdb8cdd3148b99e4dbd2c31a2a1895375888392cf4399f4","signature":"9d457cc93a12d078d73ea3a91078b3e8670139cc740dca968a54cd0c6528b617","impliedFormat":99},{"version":"dfa69ce928ce9ac616e26df0dd9bc03bc052cd00085e08687a08d311483e00bc","signature":"0912cb9c3ea4d28ea5bda3afe4bb2ec5344172ff645449917ee9561dd3c89ea3","impliedFormat":99},{"version":"c404c8d769ec8a0103f9359b82e0a551bbf62ca7abcdcc29b291c920bf5f5c19","signature":"92d0fb9743a24ca92ce86cea0b452be9a67bad6aee63cf2e7d0e5b34f0e7f28a","impliedFormat":99},{"version":"b033025cf4b580c2e64e9eb304e15a9e511343184e92577e2a8e295e49567c89","signature":"c0175343a77d5717221a680824a25c4902e85c899f85b95df021ffa8cd978a86","impliedFormat":99},{"version":"9867fb8a9486b9e2b04e8a271a283e046d8020e6b273a4dac2d3e0a010a8f563","signature":"f7cf606f8879d93c5876df7a5f022ae5db1136d3289dd9f531ea85420db99fb5","impliedFormat":99},{"version":"7ca550ab1d93bae24a9ed3b45a137e0d1a6321138e09cd4a1741a90b1b029cba","signature":"53167a4e3dfaf5758e99a0736e601d67595d3f4a839e853a3107efe03f08b838","impliedFormat":99},{"version":"d8cc6716c01ddaa27726eea32a6826b3f10e1dbe67316669ab8d079e89885e82","signature":"44f0b484471d49db12cae3fd9947e77deec41d5da8542464f5d633385ed6df71","impliedFormat":99},{"version":"0c08bdb074e034f1754561e6ca21d7a391622fe3a5b64c1f77c649189bf63854","signature":"95b5e9ead1117244f2c7d0fbdbc69b11af1c7f6e351bee35349f8891777d2687","impliedFormat":99},{"version":"eeedc2631a889605ad515f3520608e80711674845740490221d66e402ddb9588","signature":"445d985d1c14ba51c27fb6ad55d826f44bc56ad8ddc4aa3871a68872079b3c4b","impliedFormat":99},{"version":"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38","impliedFormat":1},{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true,"impliedFormat":1},{"version":"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","impliedFormat":99},{"version":"056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","impliedFormat":99},{"version":"69c330fdd40043b530982e229fcea106741679ae432692e8a2f976e5d0e234b3","signature":"645c2cd797e6a123eab18a2d6b7f2b795c08aeaeb7258694e2f957db5a50812c","impliedFormat":99},{"version":"6d60c303893a83b275c1d0e395e5ec654f7c07938b14a6f43fe35a86ac1c7925","signature":"334b3aac0ed948a5b8fcc7c405dc856403207095636b86e839839754468be895","impliedFormat":99},{"version":"cb4affdc0c199db1a92f8d91d635c6922ec4bcb92113b7a056bce7b48e82b418","signature":"760743226740c3f5e736ec3e9982a435ff9eca08f1b32ffa82e12e6a938944a2","impliedFormat":99},{"version":"d4cdc23f18a17cbfa5c399eb1b2ee5a0ab13fffb883be2c0fe807ef81f40dcdd","signature":"8076be558001f0dc7b93b883d1f490d5ee40c2bfe9fd499a5f5091f44abc5f5d","impliedFormat":99},{"version":"f0bb074b3db3c3e43cd52de2b54c2bfea729269d0918ad5b5088c3a5020901a5","signature":"90c0ba35e305757169bff5bbc146667f959fd1b760b28204fd8751287056ec12","impliedFormat":99},{"version":"8a70099b6e9281dbda80f3ae4fc4bd48c005d9d006a79fb00e3f5ca8a37d1c4e","signature":"0d50de5a6e34fc790ca84cd97f8873c941357541c3583ea09f9410656173db4b","impliedFormat":99},{"version":"e6fec85a467c6f934b36774c7dc79f712c1765c4632ba6802fc856b2db172f30","signature":"dbff8b7e0481d809c602cf732627c508181ba4926521fd44313a4d4786b21fe5","impliedFormat":99},{"version":"0c07a2f995faefe72bb0e92836210a8d1ea9d132027b76462b3dd435dddf9394","signature":"138484e9e4b56102ccbe70146e7231fffeeb419833f146c289a5dd27aefd63cb","impliedFormat":99},{"version":"939f8cc7531fc3dce47e97384694e58339227a38c9c1afb0a7306d8f687b612c","signature":"00fd25cc100487785c9b84ba634deb18f4827363a0583046049da612ede3dee2","impliedFormat":99},{"version":"9d4a3d10d710043b7a08d0b032e53f5add4c50217f7eb76b298397fa75b90bb9","signature":"b5fe3f45bdb3fe1c393f40fbb15458a0aedc270409fb0ee9a66a34e589b45595","impliedFormat":99},{"version":"f996726f632a93f053fb39117ab6c886a28b9630053ffc2261d5b8247982eb5c","signature":"5f0776adaef542cbe0f5a1e5d29c2be98013e489d18cc942e9f09fde7dc600a2","impliedFormat":99},{"version":"3f07cbece06ab1047a62e3c46fb4aeb856230d6238101a7f6efb2f548623259d","signature":"f7ea5d2249d61627f56db3a9c8f280a02a47b5799f41cd04df4ca53f6d181432","impliedFormat":99},{"version":"1590611dc94d07c19748e524fa56c6552c73c061ef2fc1e9790a80ec961d4717","signature":"bf22edaf1df524c58bdfbb40263391bf12112f63cf9ffc3db3556a4090225f9c","impliedFormat":99},{"version":"9625aaaf11ff7e50729eb1f0ef50d404995be06c0d467a9d664652b2b4a9d4f1","signature":"ae7e609ac2c68667c05e70741b9be6be51bf3dd48fdfcdcbabed6db7174c3a82","impliedFormat":99},{"version":"f8508f4ddbcc2c5bce5ba5bd08a81b11f320e0879433506a165881935ad2f0ff","signature":"ee3a2f50568eee122ea3671bb62c236fb39f260d86b593349b9ea821d81156f0","impliedFormat":99},{"version":"6e6b37a4b1cbac2961cf15dcaaf648c63a732c99adcfd3eebfce925e7c5d20c1","signature":"4c81f7b395ad4e6adf0d24db6a2a4fe549ea08e36fe784ac2b15bae93d6d6eab","impliedFormat":99},{"version":"14c33f276adfeae687b9e71e0a0a8a425b6d36ebbf11145472f746fc2ac11988","signature":"9268a50c181881ac154dc64079e9f67b2cc81df1db2c89127bfb46e6a8ca5019","impliedFormat":99},{"version":"da5738d96030fe86a43d1da00ba81ffe3de5cb427ddd27ae58b051e06c5ac318","signature":"7e9f0eea6da8526690b54f196c65a03e59f7b4bc9744e3763a701870db38d41e","impliedFormat":99},{"version":"cd884cb1be068f0596c6a2c61d071aaf51e852b5a15c8b0a07c874788aa48bc1","signature":"562c3ad3df9e3825e64f37ef1632cce65ac437dc6e669087774da1bf79d403fa","impliedFormat":99},{"version":"06bba48b2aea6f3d21d9b092be4cabf48b3d1213181d348d94fd79f66bf1720a","signature":"9b8e497a1375c7c92d5e73e8569c935d8de09b3868a6e527ffe639eeecc2fc41","impliedFormat":99},{"version":"992144b58b4c6703f326b613adad5e382b4ce2b9645e619a582e0eae418c8236","signature":"40d66794352edfd07885a22e3d6cd6500044b04881bea2ce3a2a898cdac760b8","impliedFormat":99},{"version":"cc68089aabd5b5d7645b6c9dfba11d386004e5618f637a6a41b4476cacb46720","signature":"d121bcc2dff73fadb70b90cf25536259d0fe364561e077a3559b13a0ecc9b39a","impliedFormat":99},{"version":"6fd27fadabd7032ebd98f4e0be65eb4796caa6b17f2f6ad304f2450412fb198b","signature":"7ef6645efc34b2154d9efe6121585021f2a2b3ea52f6961d43aded6703a0d9e2","impliedFormat":99},{"version":"efb2f941ed81a8bb6cdf69eb846921ed35f89abda767f6d9abd0fa9ec6da4560","signature":"81538b624a6090d25de1f373c8ad1de3c9bb1f33146f5bb6add51478dc48ecf0","impliedFormat":99},{"version":"ff4a262f104f4cb94dba89e4a48ba791153abc5d7c03c3a407d71ddf06fb358a","signature":"567896404ae1ca1783725ce6300b672b4043d8f8b3dcbe49a0471157b67e427a","impliedFormat":99},{"version":"0c7256749dcdef93a8b398a77719f47adbb7f809d4725fbd160a7de0fcc7b18d","signature":"66baf3299a941f56086f5663b5fb260a2af793697f699c93953f738af97a07b9","impliedFormat":99},{"version":"b2fd971ef34df1f06380cdfa6431c226a507be26e48fc6c2722afab327295767","signature":"5ea45d6a7fab1289979055dee9959b0704f34cde7d37e6741eca5bf251a7d4d1","impliedFormat":99},{"version":"ec9a474a24457e435dcf5c84ec47720176e7abf1e442b1e08b9ccceb13f87259","signature":"777f5e3ce6ef53162c00773ba39b9b25bb32acaf6ffc01370839eeb91e395153","impliedFormat":99},{"version":"59bdd4b7e6ce46166bd19375283d6cefec6394e702074513b1cb2d1d2563a618","signature":"c892ad664fd4fc9aed1d1b3ec2bcc7a29fb12311fae08ae0f83d1f5825142fe0","impliedFormat":99},{"version":"85244b8ba75c45fd209aa1f10cf80795618724b96d2b1fdf709cbaa210924fd7","signature":"2bb664e6a656720f53885ffc4861dee876f120e4542a16b6468d2c9534ce4638","impliedFormat":99},{"version":"bbc354c6a2740b087f1139e88e90309de480c5390362e2f0d32a145d8d7cf539","impliedFormat":99},{"version":"5efc502618512e9ea8096b093ecbe330521d100f79e8514e5cf3a9e0cdbae9f7","signature":"e96cae0010f79cf8667c74b89809703f5820a81e891f369f6b767b595b1e9678","impliedFormat":99},{"version":"c8a0a3bebc19d99dc9af61fc4d95b78a8f602282352614f584f7c12f69a20af8","signature":"01fd843a5a9647298bcea6a19842fe3ed63b008c04ff80a3868e11d990c5859d","impliedFormat":99},{"version":"9b2093762ef63a2d97dd54ae61edfde270e5d78a8f22b885fdc2debec6bb65b2","signature":"3e956ab73eec9d3624069b248adfc766e8b91e139e7fca15f78807babd9b719f","impliedFormat":99},{"version":"91e02e3cfda1628aec8f8cd3aac0b3aa5dfa6876c1eca26f7bcdbf78574ed11a","signature":"f5b1fe432493c144d8296babc8ccb836684c300043e2ff1ca3754920f5f65263","impliedFormat":99},{"version":"8186d971b892d273a1b60b571e044d0576a461e928601e02cbfb1b0678defa29","signature":"1006612f56e7489a94793143b1c4af76547b8ae733b22810cf3ff0686576027c","impliedFormat":99},{"version":"47dc1b9cf079cab1645c8693a8eb20ea51fbfdb102c6aadb9fc84ce1f4157fda","signature":"ae6d4e164fb07710fe4c679ed5c8c676e69cb428ad922c6207056b51b8fca1ac","impliedFormat":99},{"version":"ff1d86d9f874ea0c7ff79aa3dac03d2d642e1c909884eebbda78b01f2fbf50f3","signature":"893184cd5ed6efcf7d5437d07ebc4f4c9a7661c08a675eca81a2c72270fe3270","impliedFormat":99},{"version":"28f13ffae509d6a8ef76a157c298d35b5025b65ce0a7a5f585e7b06a4b1446fe","signature":"6d8b853525ac4b34400d414cadb4cd101d906d0aebcb1addeb70043106f591b8","impliedFormat":99},{"version":"6777b81beaee6d64386e5de6811790cc1b17196d78bd147f03b5892ace7a2a83","signature":"55ac1c2cbcbe2629e51298183a7a017977809f848d24dd2ee5181ab779c47691","impliedFormat":99},{"version":"afa38a94a717201ab97e5174959d2c433a06398418f0c467ab41851f7757a1f5","signature":"18b93f9dadbb05a43fa209160e7fae964c3da5c7d9b3f8a35168fbb5ff4ae11a","impliedFormat":99},{"version":"d9202a40cb1d345cfce1448e4e3424826ce0a6bacbd3b5b013b1e9e7d3068e91","signature":"978613a46d15cc0716125c3ccf0220f36a37e57cfcbd422d4b1f383107f0db6d","impliedFormat":99},{"version":"d099db2c297290df9cf4efe6549d46a9daf5badbff6741b000fcc49f6b631b53","signature":"5c89aa34a7ba569870223794ce7158dfba6e3df731f365485108359ccb784e67","impliedFormat":99},{"version":"39377e2053958bb117fa8000e73474bf38627c1266aef7cbfc6bf4bfdfb1d4ee","signature":"f224d8043d1cc65a68bd373917dfa1a7fbf08294953af15a4f31bcd9d7b2203a","impliedFormat":99},{"version":"85fee450835486d118016fa366acde0e9716510a6f2cc5e2a3ff61cf15bb6c3d","affectsGlobalScope":true,"impliedFormat":99},{"version":"0918ebcac27af24292a8c21071b6ce0a7c533288e14d354def0e5d50f8822945","impliedFormat":99},{"version":"c3a659a0d1d2101119ea16f30ea5857df60f7896521d50893a458291777a662a","affectsGlobalScope":true,"impliedFormat":99},{"version":"64924661bb998b7b8fa2ac4be582551f093da21e33ef5b653061873366d8aa4f","impliedFormat":99},{"version":"548ea32b4c4facf4cb79eeab8cdf0d59bc0ba218a5829f5e6cbe5ba7e95d75b2","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"cd5aa06c2b665de4ac88a564b52846674c2dec9d68346ae8cd9ef1b0c5465a99","signature":"83127de78f7dadb64fd851bc196ceec38bc67f9b5ae847ae430ad377868462d1","impliedFormat":99},{"version":"fc9e4a1dff584b5d927fb1596ecdbcae71adf515f48cf59f88b60664749b96b4","signature":"1af23bba0daf3ba11882c0717a1fe78cf929e13f1a3c23e5d882163a0a307aa9","impliedFormat":99},{"version":"6ad1ad46e865c585f56c25812da5933b3e92672724eff440737c3338c44344d3","signature":"5feb9b864b6ecd4de7ce0b1ffa7f8ebd8be99838ac9fb58041ec6fc1ead681dc","impliedFormat":99},{"version":"647630d8c3f545e4f79ae4f65933e0b0cc793b471326c10675c1d177e48f33a7","signature":"27d711e422d5068b79835f72c3a92901e9858a375162911a7aad65eddbd23576","impliedFormat":99},{"version":"b80c5e60f26fc8559094533d33685e457452dbd9370cf9002c06f50befe31960","signature":"adec8d6fa090f9873b7ceee24c4180057fb6927280413c78d5948e47f16a476e","impliedFormat":99},{"version":"896deb53c900d103a3392e3b1263813935b56c2fca57a2aa619401707ab2af7e","signature":"f25170a49346310bd5ee19ea7314dde199d4261d653f06bb3f1d77dbd1b20427","impliedFormat":99},{"version":"9371ad1662936d64bfc1d95410b39ec650880af2432cdce51873cae049fe9ae8","signature":"6aa7e7d23ab6789ac9971d98d40bf5c944a28041910f297c9f7550aba9563d14","impliedFormat":99},{"version":"2b72fabf6980e0dbf0ceeb7a9916056da475cea5703de24141a4da43ae281f78","signature":"187dcb2a124ada8a0257bd0d305e6ee63beca20cb237c31814b4adda5aaeea4a","impliedFormat":99},{"version":"cce0f3dc24d41f746ea6e6f84cd54b7bb4430ab9cb90e1a42fd6db0ff99f8bf0","signature":"8698c3d42f602b96cf0d97b66f72541a8c6fab54b90d5fcd30bd490e589f3c29","impliedFormat":99},{"version":"64028f3ded2bb20cb662f2a26be010b76c2938cbe9ad4461bca8a9c078a92463","signature":"3174c8ab15f3d6098a8daf1d35465baea663c55d5754276044ac7dc82c9b217b","impliedFormat":99},{"version":"f6415ba20d3c93bc7f63da27a13e577cd4308cbfc59b41269cdffed8edaf69a2","signature":"b1a43667468dc1c947152a6484d8f3808ae7ad901d7af5a1957bb93b85ef46e0","impliedFormat":99},{"version":"659f172d38541fd3587ed2042a9e597250b01f18c8c49c51c353bc095363480d","signature":"9e867732ac58fa1a4b7bfcfd1290616f72b909fee6ed5e6926e813162f1057c6","impliedFormat":99},{"version":"037c077334e0444ba2e56d15ccbcef8e512188f10a2f201bb3b95b85f271a1d4","signature":"d8007c3344f37904591b09aca019aa0d59b220883f13acd7eba5a034e5a7d8ae","impliedFormat":99},{"version":"835a9e60b27081c8af6515253dc1c7a6cd9010af59b48b0e15d5dcb1642ffec0","signature":"8f46fb233854abda67506286c93a6663eca47d94c2b7ef8fe8502eb0177aa2f4","impliedFormat":99},{"version":"f11c64e2b4bf74016e4e5e4730170bcff783179d8accc95dcf150cdcdfa37b0b","signature":"64c1fa518c2c121741cb78006edb099c75029d4ca05a5a002389a8f2232f6855","impliedFormat":99},{"version":"d0ccb82244530a7485a62b098db105eb9b4d6fc5943f8d86f2eee6427f03b9d5","signature":"f8eade3d225f8d6c56e36e7ae1ccde4b9efa3d5e63ebb3eb1321502a89ccc7c6","impliedFormat":99},{"version":"2175f0b86f9d8782f2c090599e8cf68d6de3fde158fd3527dd4b7e6e870e7d14","signature":"e747751ce0f866867398557e1faeac3067d41edbc078bd07de1946162e601d01","impliedFormat":99},{"version":"38d95eef3742890dbd3eee1bd958817ff5de1d60025af0202b9e7d07fdee3f14","signature":"0ef9c1f7913d2b4a15842742ec592b7ec0c803e585572f1a98e5fc9556833eab","impliedFormat":99},{"version":"13bc553447902bcb4a409b93438176c17a590beb9301d0490a8d26a957f72c15","signature":"831924cc6afc1839dec2523a98b364062504c30c2a668d2842842419a2fa260b","impliedFormat":99},{"version":"51770db0ebd7d7d0ae60be043e59ae5a2c42bbb1dd91da6933b3b6e0726d978c","signature":"914d6aa4029b41a5a112b9282f7b1d5ae6b3f46116c43aa613d92778fd0cb3c4","impliedFormat":99},{"version":"4f24fc4f039cecaf2768dafb876ddae0cb5912215d99d252993aeda1ec7a16ba","signature":"cbcd25e7c4eedf3e9df0bc8f80c36a4bd3d84410de35411bb2eb0fe78d7954e9","impliedFormat":99},{"version":"eb5010cbafe9f96abcab8a88222427e870f417bf936df46d76a59780e2fe8fef","signature":"dc7cdcc448d3916f2f0ad5688ba5ebee64d75dd17575f3b4d5ec9a6582ab08aa","impliedFormat":99},{"version":"3e3c92a1eb358f0abd3ef107f6101b985b8f786ad8a3d87c1215c0704e493616","impliedFormat":99},{"version":"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","impliedFormat":99},{"version":"e5064553fc2698775f84642bbf89d84d91b37a068a63b349112f9ae6323f3f59","signature":"f223977be4358942f266814602dd3cfa244f694fb05f6306d992e8c7db486daf","impliedFormat":99},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"053a19c91aaa80cc06d7113a41b7e776972bc1f31a4c7246e0164f6041918979","impliedFormat":99},{"version":"6cdbe55c2ab0898f1111d8057f14ed0d3a7bd513a82017817acb270ae6b639a8","signature":"490687c2676424d6c5ffab2bab3dda44a847e7b6735bbba5dfad0d002032d4d3","impliedFormat":99},{"version":"5a0a6dcc2c4d290cfafd45b10d0bbaf70a848fcc22ddc3abcfc46ecd444106cf","signature":"ffff451c4764999d9af2f6e3684f64f168fb8a64a406e256119f31a18b0a6470","impliedFormat":99},{"version":"a7745f4c9c83500f6e8026570d6874091f18ec37d2b22fae44509b8149db3a47","signature":"51220202066f085b939c63a45ed2a85d688451dd3af2dae49dd1b0c9b838e3a5","impliedFormat":99},{"version":"a533b96d28737cb53ea74a97efb29e2d0aea7456bceef245a9ab08aefea41a20","signature":"d875652ffb9675aa3f5133f7f3b4da3ceb5463b874127cd97e0af9d6d3470655","impliedFormat":99},{"version":"d9a38c70377ec2abd6b056a76934fd73f3718b7e8785b1802ad3f6a1ec24f61b","signature":"4cbd3e197b2810099591ba1e0593911605a342158fd718eb461cf5e21d53f314","impliedFormat":99},{"version":"93930ff8c14161e5dc54ca04e7af2ae7ea34c2de0d2aff7e173c7ecf54279d36","signature":"3d2ab0cc3fbee8711e978785806225a2eec7f55de1ba65690ff1961dcdb1702d","impliedFormat":99},{"version":"b1ca3adcdb5b0c1c9e0cc65576655faa102f062ca0ca44576f4f37aaa3583718","signature":"66a96753d6626f5e6de2b1aa1016d311209533440b297ebd1e016b7c66b6553c","impliedFormat":99},{"version":"69589defd0a1c7506478c3ff7364077c8e044273cfc68af82d54b24b547d2a76","signature":"3f6145ce1b0e571ba66b78b59e0e4ed7af147c2a6ec4f79e362ffa2d42175aa3","impliedFormat":99},{"version":"e689401170c8df754636d8e9ccb3230f280313146480e8208eaa6e49b0fe1768","signature":"75c6a0b4aea1f7ee093b071ecf40d4f5bc74758510506043e39d14feb0ce5387","impliedFormat":99},{"version":"321815a669e5b2929adc1fdf0ae2ddb807bc86688cf344f17a545c61dc421319","signature":"f3534590544c9873eec4f20537950e4675ad9f0334396128cdd8f46beddf540e","impliedFormat":99},{"version":"f18fdb8ca920aabe59316b65aee6651d8563590137e55fdba30886a5323afcf8","signature":"3ee6eb644a8049ca88bff4df69399da1a1b794317830389dac3ee7197635abdb","impliedFormat":99},{"version":"3428443295b8d0a7cfc9ce98723a72ba87e515440cc0545a1025752442f96654","signature":"62638e818cc8e534b030df1aa94629cd659307e8056768c3bc8b2f41c7dc09b0","impliedFormat":99},{"version":"7ceb8889938d933d2377e818919b6ae18f6ed1861b8d52e7b67505bde79f7f4a","signature":"25b3cfd187a008f709c85f8bbebc4db0b2317cecf1dd4a3963200ffeb215eb30","impliedFormat":99},{"version":"4cae51047ef9b3f882a9ba41b0498a3ac141efb85f608fbdd59e6643bd94f036","signature":"e8628e2eae53b6f41555557a7e7dee9fd92ca4d0cf00b813be959ea52828e556","impliedFormat":99},{"version":"28e0e48125f80361e67313545d7d240f8d9123c06d78182a0c376217c6daa36a","signature":"c243b16933d3b29f3684aa60b9b0d624bfb59cf0bdb48791ba8c8f1466b93395","impliedFormat":99},{"version":"02f199f7262396091a4f1773c0e86e3df69857d5e4ce17da5ab03b43ab43780f","signature":"baa94ae44e3f91357364c2981da84293b503addc44af57e489c22ca4f86bed51","impliedFormat":99},{"version":"050b82f0dc4a5b0273fdc5d6b1fb7181dd702c57d333e62723149dae3950ee2c","signature":"802143d369e1839189ae2ee619d6e830626d7bcee2080d568f754f771fd28a44","impliedFormat":99},{"version":"eb7b370b7b3063c2c9b8fb9a0a8c3dd6daa7595636c811f6666986a8f3b31afc","signature":"37519225df2259f2ac764cb062438d37d9c98962bf61267bce7a6a0987f88913","impliedFormat":99},{"version":"9ba17a57c97f708425ff50755f20c79f8e95b092685d8d551dc53ff89b438abc","signature":"498e8d3273af7599923f713a32e225ec1d40058328103499cba1524529f26891","impliedFormat":99},{"version":"0f1c31306e361e87fae11a55244c794eda0c376023d5d54f8ddc0a612e2b3168","signature":"58b00b098fc84d8197ebe77520eb0e12b02ea7cd43ef90a8b2612b57f5425e32","impliedFormat":99},{"version":"17303c17f4ff0a0e6f2e4aef80f0e5ec80f699b0a4be00c8e3f21cf5cf38c5fb","signature":"6124386897329300c5cac2bc9923743a7ea9693ab6190fe74f698fbb49376cc1","impliedFormat":99},{"version":"68632244a18dc43b884020bd9ee99157d587006c88f7aa5eedaff1f4b6b7a588","signature":"09ba065c5f87bc3f4edc22a232804c07b6599792a67bd708a5e3b538bf9791b4","impliedFormat":99},{"version":"125d6468899e401a2355dff5ed85c4d6fba003eb663c71a48a1e95b62b948ff1","signature":"5be64a32c3fb65cd3bd06375f3855c16deb36b21cf9450443d6b1f9683f94ae2","impliedFormat":99},{"version":"e1e471a4e4f3f062d0530dccd4f3b6ca9ed85f40a86d866b668e4e695a12c9a1","signature":"16f159858efc34c022e56afc32b5ea0da6a371017030df6dc21ad21ea7bc137d","impliedFormat":99},{"version":"e949b47572d1efa95e71ef2034811c2d99e455a1ad39df5a0502de368a72f251","signature":"386544823385e3fb32fd05d9438b4c7d58d41edacfaf38380eafc3899d7c1957","impliedFormat":99},{"version":"bc29a6270671e05b824031cb430b0f771766a6b578ff32d35a5b11e5f7ba6ae6","signature":"0c6b35f9004db8066219e61965517b4ba770f4a91ccd4fe5a63d57530d9b0d15","impliedFormat":99},{"version":"456a9443be1601f658f5bdec78dfd7780aa9143b05db1ef594d9ae5b35f394c6","signature":"36adb77ddb8682227319ace4590c2b4955e9c4285191187e31d4b8ebe4f11dfc","impliedFormat":99},{"version":"e493c6fe2636498511bd706663352d8e0c99be09170dfcfbb0673550ad1e0cde","signature":"1ef17da54ebb3ea9f5997f4e049a9f83563e48989654cf3c386cdd60b02bbca4","impliedFormat":99},{"version":"e530ac656c85768e43eff078af0eb5974980a382d0395c5125f6d7a0990c8b7c","signature":"766668294ada7ec970283414df6589a56dc43b3e4e229638cc4a901f09b8fcd7","impliedFormat":99},{"version":"a4fbd112cd7a0f288fa9b7f94e686ff23dc51a09acdd9c0f8350446028ddcc72","signature":"23a12f1cf6ef29c45a8bc2816644a341243588198cdca985f91d3ecefb568cab","impliedFormat":99},{"version":"0f511b1945d919dd27cade5b668368e0c66fc511748407a67e75e2106f49db3b","signature":"5813a937f1ebcd3b638eab8ae8ed7d2019e6754441fc48b91cb47aa8bddf4d04","impliedFormat":99},{"version":"50159aa5a8e70f44b122e916dd4116bf5406bc92c612966b2c1b299fdd67f8e1","signature":"3cf36df70617ba819d60e9b8bc8817e589210817600b86e4d1b2990d2e9aa11d","impliedFormat":99},{"version":"e8616cd0e572378c9e726a302037e2ff98baae215d495d152447815afb674395","signature":"21526396fc86dbaa3c4b720431cb6e5f2f1bab37985ac48eb83a5a2b7287e70e","impliedFormat":99},{"version":"8e55dc967eb32fc602da9a111509cc4508d32d35b559c1988455273d8352db44","signature":"6565e52dd4e111dc2c7dbd4955a74421c5ab03802e85cd933a4e9898373ef8f1","impliedFormat":99},{"version":"bc90fb5b7ac9532ac8bbe8181112e58b9df8daa3b85a44c5122323ee4ecbc2bd","impliedFormat":1},{"version":"9261ae542670cb581169afafa421aeeaf0f6ccd6c8f2d97b8a97ee4be9986c3e","impliedFormat":1},{"version":"6247a016129906c76ba4012d2d77773c919ea33a96830b0a8d522a9790fc7efe","impliedFormat":1},{"version":"01e24df7c7f6c1dabd80333bdd4e61f996b70edec78cc8c372cc1de13d67cfa5","impliedFormat":1},{"version":"f4742762590497b770af445215e3a7cf1965664b39257dba4ce2a4317fc949d8","impliedFormat":1},{"version":"ceeda631f23bd41ca5326b665a2f078199e5e190ab29a9a139e10c9564773042","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b43d676651f4548af6a6ebd0e0d4a9d7583a3d478770ef5207a2931988fe4e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","impliedFormat":1},{"version":"438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","impliedFormat":1},{"version":"0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","impliedFormat":1},{"version":"509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","impliedFormat":1},{"version":"2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5","impliedFormat":1},{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true,"impliedFormat":1},{"version":"550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","impliedFormat":1},{"version":"11aba3fa22da1d81bc86ab9e551c72267d217d0a480d3dda5cada8549597c5e4","impliedFormat":1},{"version":"a1b3f2d5c8492001bef40ffd691ab195562e9e8b886cf9c4ed1246774d674dec","affectsGlobalScope":true,"impliedFormat":1},{"version":"060f0636cb83057f9a758cafc817b7be1e8612c4387dfe3fbadda865958cf8c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"84c8e0dfd0d885abd37c1d213ef0b949dd8ef795291e7e7b1baadbbe4bc0f8a9","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d21da8939908dafa89d693c3e22aabeef28c075b68bb863257e631deef520f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5261e21f183c6c1c3b65784cdab8c2a912b6f4cd5f8044a1421466a8c894f832","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c4a3355af2c490a8af67c4ec304e970424a15ef648a3c3fbb3ee6634461e2cc","affectsGlobalScope":true,"impliedFormat":1},{"version":"06c5dad693aebbff00bd89fccb92bce6c132a6aa6033bb805560fa101e4fe77b","impliedFormat":1},{"version":"6739393f79c9a48ec82c6faa0d6b25d556daf3b6871fc4e5131f5445a13e7d15","impliedFormat":1},{"version":"66a11cff774f91be73e9c9890fe16bcc4bce171d5d7bd47b19a0d3e396c5f4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b9ef3d2c7ea6e6b4c4f5634cfccd609b4c164067809c2da007bf56f52d98647","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c64c2d7be898f9bba3472a95a5e5bcd37ae820ce6c1e2a4903d606ba621f638","affectsGlobalScope":true,"impliedFormat":1},{"version":"452234c0b8169349b658a4b5e2b271608879b3914fcc325735ed21b9cb88d58d","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"eb0a79b91cda3b1bd685c17805cc7a734669b983826f18cc75eeb6266b1eb7cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"326d76935bfa6ffe5b62a6807a59c123629032bd15a806e15103fd255ea0922b","affectsGlobalScope":true,"impliedFormat":1},{"version":"32a6e83d93b6ed30431bdfd124e7717ead7783b53ee07fa36c4f54d52a537893","affectsGlobalScope":true,"impliedFormat":1},{"version":"d0f7e7733d00981d550d8d78722634f27d13b063e8fef6d66ee444efc06d687f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6757e50adf5370607dcfbcc179327b12bdfdd7e1ff19ea14a2bffb1bbeadf900","affectsGlobalScope":true,"impliedFormat":1},{"version":"91353032510f8961e70e92a01f8b44f050cd67d22f6c87c9e5169c657c622aff","impliedFormat":1},{"version":"2d37beb2c0c30087150ccfa9d7622cffdc3a1495b63f0b634cf6b3908cd60fa2","impliedFormat":1},{"version":"81898ad1a6f40cb6160febcb3162d3ecd860cfdcc89800c0a304a7d3289bd908","impliedFormat":1},{"version":"815dd102eeec57edf20162912af4a5436e5a37c87be0b49080368b70d7dd3220","impliedFormat":1},{"version":"85c921975981b0f8ef7722648f935db2bf561c5ff7c195227f0a12e1617320f7","impliedFormat":1},{"version":"58d4246e37aa6c9cff2c1532d987dcdfb151c0859b796a20c14ec2bdc089860e","impliedFormat":1},{"version":"f322cf42f41f8ba551d382851d75e4bebdc4f0eaa14de1e004e9aadd166b4f86","impliedFormat":1},{"version":"dc9458933d33f37b7dbfa1a62f43686cdc0584127c82bccb723ae369e826ef64","impliedFormat":1},{"version":"9ff36cbd52acbc9e6b672f71c1da76f08d7f70007d0d4c2876e640aa2d82ac2e","impliedFormat":1},{"version":"361d4de0001f04e9b98d34018a2a1874ee2830381806b8d9331b6c2ca7d4820a","impliedFormat":1},{"version":"c527d1ec21206c1b8351558f4cb3244fdfeaa17f55428878761a5e98e3fb8398","impliedFormat":1},{"version":"013e53fbe9fa91cd85819c8af717b45be9d9b508dfb6b5983b64995a702bf1b8","impliedFormat":1},{"version":"616b55adc7255bd5b15850a21c0daa3b45d1cbf8dce26aec7a2eed58098a5269","impliedFormat":1},{"version":"4beb984b2662a0500afee965f343f2303ce8255c94f12f983981aa7b5094f6ab","impliedFormat":1},{"version":"0c6f70c910a2956fa4709421470e49cfd83b690837e9c4a9bd7c7eb56e9e205b","affectsGlobalScope":true,"impliedFormat":1},{"version":"2987082a85ac3e93930cc81a83060350bcb52c417280f4687652e931b5a1546c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0cb421ded8dc68ab559987a4981984489c569ec0231600f9add33f804112726","impliedFormat":1}],"root":[[64,130],[135,164],[166,180],[183,205],208,[211,244]],"options":{"composite":true,"declaration":true,"experimentalDecorators":true,"inlineSources":true,"jsx":4,"jsxImportSource":"@ui5/webcomponents-base","module":199,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8,"tsBuildInfoFile":"./.tsbuildinfobuild"},"referencedMap":[[132,1],[295,2],[297,3],[296,2],[298,3],[287,3],[289,3],[292,4],[290,3],[288,3],[286,5],[299,6],[275,7],[246,8],[248,9],[251,10],[280,11],[282,12],[285,13],[274,14],[253,15],[254,16],[252,17],[255,18],[256,19],[257,20],[258,21],[259,22],[260,23],[261,24],[262,25],[263,26],[264,27],[267,28],[266,29],[133,30],[207,31],[209,30],[206,31],[210,31],[134,32],[165,30],[182,33],[164,34],[125,35],[76,36],[166,37],[78,38],[142,39],[123,39],[72,39],[81,39],[114,40],[141,39],[94,41],[117,39],[87,39],[80,42],[167,39],[168,39],[97,43],[95,44],[79,45],[116,46],[169,47],[154,48],[128,49],[184,39],[185,50],[186,51],[187,51],[188,51],[163,52],[189,53],[111,54],[99,55],[151,56],[159,39],[160,57],[162,58],[190,59],[191,60],[90,61],[113,62],[91,63],[161,39],[108,64],[143,62],[105,65],[103,66],[192,62],[193,67],[170,68],[194,39],[178,69],[176,39],[171,70],[173,44],[172,39],[177,44],[174,71],[195,44],[196,44],[175,71],[200,72],[201,44],[202,73],[122,74],[148,44],[89,75],[136,44],[137,76],[112,77],[84,39],[85,39],[86,39],[77,39],[135,39],[82,39],[83,39],[115,39],[74,78],[153,79],[180,80],[157,81],[158,82],[156,83],[109,84],[96,44],[204,85],[203,61],[144,39],[110,86],[106,61],[150,84],[149,84],[205,87],[211,88],[208,89],[147,44],[183,90],[67,39],[129,91],[101,61],[98,61],[104,92],[139,93],[138,94],[130,80],[100,39],[69,95],[68,39],[70,96],[65,97],[66,98],[75,39],[92,39],[93,39],[212,39],[199,39],[213,39],[198,39],[214,39],[215,39],[140,99],[216,44],[217,39],[218,39],[219,39],[120,100],[220,39],[221,101],[222,102],[224,103],[127,39],[126,39],[226,104],[146,39],[227,39],[102,39],[228,80],[107,84],[240,105],[241,106],[242,107],[243,107],[244,39],[229,39],[124,108],[152,39],[230,109],[197,39],[231,44],[232,39],[233,39],[223,39],[121,39],[234,39],[235,39],[73,39],[155,39],[119,39],[118,39],[236,39],[225,110],[145,39],[237,39],[238,39],[71,39],[239,39],[88,111],[300,5],[301,112]],"latestChangedDtsFile":"./util/dragAndDrop/longDragOverHandler.d.ts","version":"5.6.2"}
1
+ {"fileNames":["../../../node_modules/typescript/lib/lib.es5.d.ts","../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../node_modules/typescript/lib/lib.dom.d.ts","../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../node_modules/typescript/lib/lib.es2022.sharedmemory.d.ts","../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../src/thirdparty/preact/preact.module.d.ts","../src/thirdparty/preact/jsx.d.ts","../src/thirdparty/preact/jsxRuntime.module.d.ts","../src/ssr-dom.ts","../src/thirdparty/isPlainObject.ts","../src/thirdparty/_merge.ts","../src/thirdparty/merge.ts","../src/util/whenDOMReady.ts","../src/EventProvider.ts","../src/util/getSingletonElementInstance.ts","../src/getSharedResource.ts","../src/types.ts","../src/CustomElementsRegistry.ts","../src/generated/VersionInfo.ts","../src/CustomElementsScopeUtils.ts","../src/Runtimes.ts","../src/ManagedStyles.ts","../src/FeaturesRegistry.ts","../src/generated/css/FontFace.css.ts","../src/generated/css/OverrideFontFace.css.ts","../src/features/patchPatcher.ts","../src/features/patchPopup.ts","../src/generated/AssetParameters.ts","../src/Location.ts","../src/validateThemeRoot.ts","../src/features/LegacyDateFormats.ts","../src/config/ConfigurationReset.ts","../src/config/FormatSettings.ts","../src/types/AnimationMode.ts","../src/types/CalendarType.ts","../src/InitialConfiguration.ts","../src/RenderQueue.ts","../src/locale/RTLAwareRegistry.ts","../src/Render.ts","../src/theming/ThemeRegistered.ts","../src/asset-registries/Themes.ts","../src/theming/getThemeDesignerTheme.ts","../src/theming/ThemeLoaded.ts","../src/util/createLinkInHead.ts","../src/config/ThemeRoot.ts","../src/theming/applyTheme.ts","../src/config/Theme.ts","../src/locale/languageChange.ts","../src/util/detectNavigatorLanguage.ts","../src/config/Language.ts","../src/locale/Locale.ts","../src/locale/getLocale.ts","../src/asset-registries/LocaleData.ts","../src/features/OpenUI5Support.ts","../src/config/Fonts.ts","../src/FontFace.ts","../src/generated/css/SystemCSSVars.css.ts","../src/SystemCSSVars.ts","../src/Keys.ts","../src/util/isElementHidden.ts","../src/util/isElementClickable.ts","../src/util/FocusableElements.ts","../src/util/getFastNavigationGroups.ts","../src/features/F6Navigation.ts","../src/Device.ts","../src/util/fixSafariActiveState.ts","../src/Boot.ts","../src/util/StringHelper.ts","../src/util/SlotsHelper.ts","../src/UI5ElementMetadata.ts","../src/theming/CustomStyle.ts","../src/theming/getStylesString.ts","../../../node_modules/@types/trusted-types/lib/index.d.ts","../../../node_modules/@types/trusted-types/index.d.ts","../../../node_modules/lit-html/development/directive.d.ts","../../../node_modules/lit-html/development/lit-html.d.ts","../src/generated/css/BusyIndicator.css.ts","../src/features/OpenUI5Element.ts","../src/features/OpenUI5Enablement.ts","../src/theming/getEffectiveStyle.ts","../src/theming/getConstructableStyle.ts","../src/updateShadowRoot.ts","../src/IgnoreCustomElements.ts","../src/DOMObserver.ts","../src/config/NoConflict.ts","../src/locale/getEffectiveDir.ts","../src/util/isValidPropertyName.ts","../src/util/arraysAreEqual.ts","../src/renderer/executeTemplate.ts","../src/features/InputElementsFormSupport.ts","../src/locale/normalizeLocale.ts","../src/locale/nextFallbackLocale.ts","../src/asset-registries/i18n.ts","../src/util/formatMessage.ts","../src/i18nBundle.ts","../src/UI5Element.ts","../src/util/hash2str.ts","../src/jsx-utils.ts","../src/jsx-dev-runtime.ts","../src/jsx-runtime.ts","../src/asset-registries/util/IconCollectionsAlias.ts","../src/asset-registries/util/IconCollectionsByTheme.ts","../src/config/Icons.ts","../src/asset-registries/util/getIconCollectionByTheme.ts","../src/asset-registries/Icons.ts","../src/AssetRegistry.ts","../../../node_modules/lit-html/development/static.d.ts","../src/CustomElementsScope.ts","../src/MediaRange.ts","../src/PropertiesFileFormat.ts","../src/Theming.ts","../src/connectToComponent.ts","../src/decorators/customElement.ts","../src/decorators/event.ts","../src/decorators/event-strict.ts","../src/decorators/property.ts","../src/decorators/slot.ts","../src/decorators/bound.ts","../src/decorators/i18n.ts","../src/decorators.ts","../src/global.d.ts","../src/index.d.ts","../node_modules/@lit-labs/ssr-dom-shim/lib/element-internals.d.ts","../node_modules/@lit-labs/ssr-dom-shim/index.d.ts","../src/ssr-dom-shim.ts","../src/animations/AnimationQueue.ts","../src/animations/animate.ts","../src/animations/scroll.ts","../src/animations/slideDown.ts","../src/animations/slideUp.ts","../src/asset-registries/Illustrations.ts","../src/config/AnimationMode.ts","../src/config/CalendarType.ts","../src/config/Timezone.ts","../src/config/Tooltips.ts","../src/converters/DOMReference.ts","../src/decorators/query.ts","../src/decorators/queryAll.ts","../src/util/getActiveElement.ts","../src/types/NavigationMode.ts","../src/types/ItemNavigationBehavior.ts","../src/delegate/ItemNavigation.ts","../src/delegate/ResizeHandler.ts","../src/delegate/ScrollEnablement.ts","../src/locale/directionChange.ts","../src/locale/applyDirection.ts","../src/renderer/JsxRenderer.ts","../../../node_modules/lit-html/development/directives/repeat.d.ts","../../../node_modules/lit-html/development/directives/class-map.d.ts","../src/renderer/directives/style-map.ts","../../../node_modules/lit-html/development/directives/if-defined.d.ts","../../../node_modules/lit-html/development/directives/unsafe-html.d.ts","../src/renderer/LitRenderer.ts","../src/types/InvisibleMessageMode.ts","../src/types/MovePlacement.ts","../src/types/Orientation.ts","../src/types/SortOrder.ts","../src/types/ValueState.ts","../src/util/AccessibilityTextsHelper.ts","../src/util/Caret.ts","../src/util/ColorConversion.ts","../src/util/FetchHelper.ts","../src/util/HTMLSanitizer.ts","../src/util/InvisibleMessage.ts","../src/util/PopupUtils.ts","../src/util/getEffectiveScrollbarStyle.ts","../src/util/SelectionAssistant.ts","../src/util/isElementTabbable.ts","../src/util/TabbableElements.ts","../src/util/clamp.ts","../src/util/debounce.ts","../src/util/escapeRegex.ts","../src/util/generateHighlightedMarkup.ts","../src/util/getClassCopy.ts","../src/util/getDesigntimePropertyAsArray.ts","../src/util/getEffectiveContentDensity.ts","../src/util/getFileExtension.ts","../src/util/getNormalizedTarget.ts","../src/util/isElementInView.ts","../src/util/throttle.ts","../src/util/toLowercaseEnumValue.ts","../src/util/willShowContent.ts","../src/util/dragAndDrop/DragRegistry.ts","../src/util/dragAndDrop/findClosestPosition.ts","../src/util/dragAndDrop/handleDragOver.ts","../src/util/dragAndDrop/handleDrop.ts","../src/util/dragAndDrop/longDragOverHandler.ts","../../../node_modules/blob-util/dist/blob-util.d.ts","../../../node_modules/cypress/types/cy-blob-util.d.ts","../../../node_modules/cypress/types/bluebird/index.d.ts","../../../node_modules/cypress/types/cy-bluebird.d.ts","../../../node_modules/cypress/types/cy-minimatch.d.ts","../../../node_modules/cypress/types/chai/index.d.ts","../../../node_modules/cypress/types/cy-chai.d.ts","../../../node_modules/cypress/types/lodash/common/common.d.ts","../../../node_modules/cypress/types/lodash/common/array.d.ts","../../../node_modules/cypress/types/lodash/common/collection.d.ts","../../../node_modules/cypress/types/lodash/common/date.d.ts","../../../node_modules/cypress/types/lodash/common/function.d.ts","../../../node_modules/cypress/types/lodash/common/lang.d.ts","../../../node_modules/cypress/types/lodash/common/math.d.ts","../../../node_modules/cypress/types/lodash/common/number.d.ts","../../../node_modules/cypress/types/lodash/common/object.d.ts","../../../node_modules/cypress/types/lodash/common/seq.d.ts","../../../node_modules/cypress/types/lodash/common/string.d.ts","../../../node_modules/cypress/types/lodash/common/util.d.ts","../../../node_modules/cypress/types/lodash/index.d.ts","../../../node_modules/@types/sinonjs__fake-timers/index.d.ts","../../../node_modules/cypress/types/sinon/index.d.ts","../../../node_modules/cypress/types/sinon-chai/index.d.ts","../../../node_modules/cypress/types/mocha/index.d.ts","../../../node_modules/cypress/types/jquery/JQueryStatic.d.ts","../../../node_modules/cypress/types/jquery/JQuery.d.ts","../../../node_modules/cypress/types/jquery/misc.d.ts","../../../node_modules/cypress/types/jquery/legacy.d.ts","../../../node_modules/@types/sizzle/index.d.ts","../../../node_modules/cypress/types/jquery/index.d.ts","../../../node_modules/cypress/types/chai-jquery/index.d.ts","../../../node_modules/cypress/types/cypress-npm-api.d.ts","../../../node_modules/cypress/types/net-stubbing.d.ts","../../../node_modules/eventemitter2/eventemitter2.d.ts","../../../node_modules/buffer/index.d.ts","../../../node_modules/cypress/types/cypress-eventemitter.d.ts","../../../node_modules/cypress/types/cypress-type-helpers.d.ts","../../../node_modules/cypress/types/cypress.d.ts","../../../node_modules/cypress/types/cypress-global-vars.d.ts","../../../node_modules/cypress/types/cypress-expect.d.ts","../../../node_modules/cypress/types/index.d.ts","../../../node_modules/cypress-real-events/getCypressElementCoordinates.d.ts","../../../node_modules/cypress-real-events/commands/realClick.d.ts","../../../node_modules/cypress-real-events/commands/realTouch.d.ts","../../../node_modules/cypress-real-events/commands/realHover.d.ts","../../../node_modules/cypress-real-events/commands/realSwipe.d.ts","../../../node_modules/cypress-real-events/keyCodeDefinitions.d.ts","../../../node_modules/cypress-real-events/commands/realPress.d.ts","../../../node_modules/cypress-real-events/commands/realType.d.ts","../../../node_modules/cypress-real-events/mouseButtonNumbers.d.ts","../../../node_modules/cypress-real-events/commands/mouseDown.d.ts","../../../node_modules/cypress-real-events/commands/mouseUp.d.ts","../../../node_modules/cypress-real-events/commands/mouseMove.d.ts","../../../node_modules/cypress-real-events/commands/mouseWheel.d.ts","../../../node_modules/cypress-real-events/index.d.ts","../../tools/components-package/cypress/support/component.d.ts","../../tools/types/index.d.ts"],"fileIdsList":[[131],[286,287,295],[286,287],[292],[286],[288,289,290,291,293,294,296,297,298,299],[251,275],[246],[248],[251],[279,280],[277,281,282],[247,249,250,252,265,267,268,269,275,276,277,278,282,283,284,285],[270,271,272,273,274],[253,255,256,257,258,259,260,261,262,263,264,265],[253,254,256,257,258,259,260,261,262,263,264,265],[254,255,256,257,258,259,260,261,262,263,264,265],[253,254,255,257,258,259,260,261,262,263,264,265],[253,254,255,256,258,259,260,261,262,263,264,265],[253,254,255,256,257,259,260,261,262,263,264,265],[253,254,255,256,257,258,260,261,262,263,264,265],[253,254,255,256,257,258,259,261,262,263,264,265],[253,254,255,256,257,258,259,260,262,263,264,265],[253,254,255,256,257,258,259,260,261,263,264,265],[253,254,255,256,257,258,259,260,261,262,264,265],[253,254,255,256,257,258,259,260,261,262,263,265],[253,254,255,256,257,258,259,260,261,262,263,264],[251,267],[266],[134],[133,134],[132,133],[181],[99,111,151,158,163],[71,72,75,79,81,98,104,105,112,114,116,122,124,158],[74,75,79,158],[78,81,158,165],[76,77,158],[158],[80,81,82,83,112,113,158],[70,81,86,87,88,90,91,92,93,112,158],[79,158],[72,75,76,95,96,154,158],[154,158],[74,76,77,78,158],[80,115,158],[101,129,158],[67,70,72,75,76,78,96,97,110,111,125,126,127,128,140,141,142,143,144,145,146,147,148,153,158],[78,126,127,154,158],[158,184],[158,185],[74,147,153,158,159,160,162],[74,105,153,158],[81,86,106,110,112,158],[80,86,98,158],[86,106,108,110,149,150,158],[105,158],[105,158,159,160,161],[90,92,94,158],[90,93,94,158],[72,158],[90,94,158],[81,89,90,94,158],[86,90,94,97,106,125,158],[86,90,94,97,100,104,125,158],[88,90,94,102,105,158],[94,158],[75,97,154,158],[158,171,172,173,174,175,176,177],[75,147,154,158],[128,154,158],[117,154,158,197,198,199],[72,123,154,158,186],[74,79,81,117,119,120,121,154,158],[81,91,94,158],[70,81,117,134,135,136,154,158],[81,84,85,89,105,111,158],[73,158],[151,152,158],[75,158],[64,66,126,154,156,158],[64,66,154,156,157,158],[126,154,155,158],[86,158],[97,158,203],[86,107,108,109,158],[64,66,154,158],[81,134,137,154,158,166,206,207,208,209,210],[133,134,158],[158,182],[72,74,97,158],[79,80,81,86,99,100,101,103,112,158],[129,138,154,158],[81,129,130,137,154,158],[68,158],[69,158],[64],[64,65],[139,154,158],[118,119,154,158],[73,125,158,212],[158,197],[158,224],[158,226],[154,158,213],[158,213,214],[154,158,213,241],[123,158],[158,230],[118,158],[87,158],[301]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"5514e54f17d6d74ecefedc73c504eadffdeda79c7ea205cf9febead32d45c4bc","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"9e8ca8ed051c2697578c023d9c29d6df689a083561feba5c14aedee895853999","affectsGlobalScope":true,"impliedFormat":1},{"version":"69e65d976bf166ce4a9e6f6c18f94d2424bf116e90837ace179610dbccad9b42","affectsGlobalScope":true,"impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3d7b04b45033f57351c8434f60b6be1ea71a2dfec2d0a0c3c83badbb0e3e693","affectsGlobalScope":true,"impliedFormat":1},{"version":"956d27abdea9652e8368ce029bb1e0b9174e9678a273529f426df4b3d90abd60","affectsGlobalScope":true,"impliedFormat":1},{"version":"4fa6ed14e98aa80b91f61b9805c653ee82af3502dc21c9da5268d3857772ca05","affectsGlobalScope":true,"impliedFormat":1},{"version":"e6633e05da3ff36e6da2ec170d0d03ccf33de50ca4dc6f5aeecb572cedd162fb","affectsGlobalScope":true,"impliedFormat":1},{"version":"15c1c3d7b2e46e0025417ed6d5f03f419e57e6751f87925ca19dc88297053fe6","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"caccc56c72713969e1cfe5c3d44e5bab151544d9d2b373d7dbe5a1e4166652be","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d540251809289a05349b70ab5f4b7b99f922af66ab3c39ba56a475dcf95d5ff","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb6f9e2d21ddb4f676cd3a078719644080013fd176c2e8b34b18fbd3405670b4","impliedFormat":99},{"version":"3a83ed3811f76941a1e0f422d9ac014929c45d16a38f11ad03e78c65b85cdff5","impliedFormat":99},{"version":"bbb69732bbd650ba04d384c900e4480f0031a26970debf8d2cf429f23610426d","impliedFormat":99},{"version":"71b1d1ccec147635fb1a8774756172226bf1613e523f55d42c48b0a2e402e278","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"af8a94f87c31964962a10bcd7950626d7d744da2730a16f575eba01c439c335d","signature":"3e7e0e2c2bd968e6939442cd6e115a292b9606be92a5014dabd4731799fe2d08","impliedFormat":99},{"version":"82e2a0e05398c4f88fd4ab4a0ac9333fb747004360ff3309e081412cc2d38b36","signature":"8ddde35009f0ca33812f921bb608011e2b4d367a165aa273f89875ad851335f8","impliedFormat":99},{"version":"4ab6414f255dddef94f470c67a87714c22f067696c354b05a3ae58ce3e3ccfc4","signature":"ebc633f5065629dfcd1192a69994bef7a77b2794545d0a7e84e41f33ee815188","impliedFormat":99},{"version":"9626dcd10b85bfc4df6e68381233c51569f6b664dec1c2ad1379308211f54e9d","signature":"9d0059f5c2822282a2611b5bf18db168a4309de5c6a8c0027ff8cac5f3cc9680","impliedFormat":99},{"version":"ed3cc0cb8191db0cc0788627049c8ea6daf56e2ac4fd33e87acdee7b936a6c34","signature":"4c0bec516cf8647bf780206b2640838e07cf4fc45890025b48c463d53d498d27","impliedFormat":99},{"version":"ba94bebed221766b02d68cddd17ef4100cae848ece10aa93ede11e24f34e1a9c","signature":"55b730c15025027cfb4bc3ecbc135c39b8aec3cd77686369f269cfbc3167bc09","impliedFormat":99},{"version":"6fb5197788b5276fbc5aa9a50c29e50df228efde9c3a76f5621c0479abddd92d","signature":"24fab1f6c0b4e63b7fee39cd5915b7389e7be4b72a0dc8e0db47515f1d2d7e6a","impliedFormat":99},{"version":"3f8b4e6c9bf6b79f7c7c741f257ee01e405b94b32e86d5ed7e3eaa9e1e8246d3","signature":"15c7d02c27976aaa2cf30858bd0e160dce77c376824c22d88af723192b4f99e2","impliedFormat":99},{"version":"d136733caf28b124c8c565de8143554d4222890db081c02252b832db4dff2b45","signature":"5439263926f4bd9f9efb6c404032135ef6d05705aaec79b2fec135dde42e3abf","impliedFormat":99},{"version":"d02369f5e97e64973032951e5f2ba40db3eafd9a604b6f69f36d22bb9ccc2627","signature":"3a93156364a2c9f69a6047f30cd4238d3c46b594e3a6992cb8a4c7d0f6ab7cf6","impliedFormat":99},{"version":"3b7c189b53d69174f795c2a1d22b8936a6856d903ae8569746d53919b8486cca","signature":"186c42ea33a8c18eaee6b62357b34512b2bfc777e49343431da46c516bff6a49","impliedFormat":99},{"version":"458682f3281d878a621cde1c45bc7ef192ec3cba43ff8492aea2bdc07b6ac9a6","signature":"5fc86b37da7a304869d547beb1cdcac5c1c47b68c391ef14b255a7d744c9853a","impliedFormat":99},{"version":"6ac2e913ef02c993db8d67ba5263bcdfd9796b116aa04f86a3e0b09024d024b6","signature":"6bbcc993bfb4730be8d7641c6ee705a26648db25dd47318e8c6958e7e48e8cc7","impliedFormat":99},{"version":"8984d958cb6482cfa6a116d31687c6029093ad7c6097be5a17c3ca247799659a","signature":"ea875779624c187aa4ea110d7978a29767064513fa95d3b7a8b93ac4b57f76d5","impliedFormat":99},{"version":"9cd2c10189fce675ab36a6c7b3fd5e41b1358e650ec0effe09bd6bbdcc4867dd","signature":"9e2331b5d42ddd430c0ed9ca1cf477e23d87eee5277161c10db98445e803a9b2","impliedFormat":99},{"version":"d2a7c4053e31406e2ddb74d1a25b3c3e3699ef077ff66ac676c83c09daa88396","signature":"61a7a6caa22123ec788f7234db141aff773a18911ed2b0d3450073a4cc7f1a05","impliedFormat":99},{"version":"2e139b53ea4753ab9659bd869da5abfc2e93af6ff4d5a98532c81514569ff702","signature":"dc68584277bfca4adfa24556e5cd3ad8979e34dd3c96c11613ac1ddc03c02367","impliedFormat":99},{"version":"2d8802922f8a841056def08b93c529f696dbff6eb77629e0f636bad495096a11","signature":"b495964f94d51a37912f80d6e0bbb0995790c4a1090773ccb77e53f48afb028a","impliedFormat":99},{"version":"09d84e6ee3cd250306d2f2ab8631c9ce064bb721cad6b6518877e581e24e7497","signature":"a2f4c66c930ac0cf330fe3f4bcb6ee2ad94427f562118f4268a41146c5855739","impliedFormat":99},{"version":"4fabcac65b6c43729bd0b3d630ebc5f5caeafed60330be92a6f24e9bc64a03ea","signature":"766d87e40da735f7d8256d79d9c31024a8d15801c0264f5144927413240bcf72","impliedFormat":99},{"version":"433293a2266fe13f59f239a6ccb5c48a7680a5707dcd30ab77138263f14d7c6a","signature":"7db27bc2069a9f8bec31d633d1c91e9ec872f9cd1db58b904d51abc47f4699da","impliedFormat":99},{"version":"3c5d1f5a6e2d4b7ccc7af39ed8ffd634a5c15ee7d60b0a10fa4dfcc6ad9a0449","signature":"d65683d71aa438b9f24e497eb5f6c17cd535aa8b9ac85243a56773f2cb4fdda8","impliedFormat":99},{"version":"cd6a41b95e8cdbe5757b0b1172c34d092711a3c409097f87e44169a90e835be3","signature":"11a242a4c61bb53f52146ab754a4530904db4153fd6c9001a996f286f8a246b2","impliedFormat":99},{"version":"833b0307a43e57e88d3b785673e543142846f620bb8f22fa6b46ceb616785e23","signature":"95f3f4557ecf2ac0964b11e722f5520fb00b4a40f47a130e13a14c2919977f04","impliedFormat":99},{"version":"e6a24aff995ba099e7842c3294d5aba42972a194b21997da6f1b59f1f0882306","signature":"5d60fff61c30d76396ba9414886f2a7593c51a818aae683040af7f45ce91f3fa","impliedFormat":99},{"version":"bed3b803239b6e320d1165691306076d476dfe622e1ad1d3bbc43bdcfd8cb69e","signature":"c8a43105076f6584d5817f35bc05df3a37e36c6c7298f5f366c4fa08be1e3c9a","impliedFormat":99},{"version":"fc9c6b088b2fcb6425a3a3472556355449ed191f3a3d97f334d222ecbc275cee","signature":"e18d2d272f87a0eb64744979e9300d38cbbc88ee8683196d85e32449a9458df1","impliedFormat":99},{"version":"2903c762b12a3cef9d391b638b3d9d172821b6ec8265779a469de86477b09695","signature":"e96e73cc3b674185262ed50a9a7f112bfd5d888e483bbfcd6c14336460192b3f","impliedFormat":99},{"version":"8f7801370dc578e6d54ca046aed79d9cfc8beb80d1f9bdbe675b7c1e8bd6862e","signature":"8c1f3a67e415dba00572af5de571271243e9bc6f4f200560a096b0df3c2ef3c3","impliedFormat":99},{"version":"411a6d130148c3e48f5d0a411d9c8a41b00ec1d56f8462557ee10d12ea64542b","signature":"c799577deefbd96083c4c1a94f6fdf8559b062eed10cc138bbf4aeb44b22ed29","impliedFormat":99},{"version":"535b858324525c07fa3b746caa16f178566c4705ca44dbfbc5779977c88d7b9e","signature":"d334248d62050e97c48e2d5c2438c442e0eaef444c9c98f11e19505a9697e785","impliedFormat":99},{"version":"ec333e3f395c567da2998239c2829ab2ab717ca354cd59b2733b3b7b79fdb650","signature":"b4b34ba4a8dc4702e9ad6ee2b8f026320dbb4925d23a60ba68ff539b2f3b29a8","impliedFormat":99},{"version":"26e984d37b3b376167b7eb044e7b49e06ba831a89bac3ee6fc52dee6fa8a4375","signature":"3c607485127c15c5bf9425fa8ecd734ed1bfe4b3a77c5137b73f06e6f4b5df93","impliedFormat":99},{"version":"cca3960d3e16ca1d8a442cb2373e77e34128373bcfdd6ad81f6f216a85cdb8e2","signature":"12a8af586fcf0404c411fe35379268547bd2e0958e4336c7458442d901219105","impliedFormat":99},{"version":"1f21b9be0d809f9a5c1fcb3b5bd98c10bbae2088b65788a400c12f14d9c06b0e","signature":"ac30e92bf282a09133eb645123900ac2870c3fc601b6f58bc41bc71e26d90594","impliedFormat":99},{"version":"fde9debd1fa396990ef681547e97a16772e41f182ce57ddc1f8f08dbfcb4ef39","signature":"e4111898381b03f8ed2da8bf929fe2701a16384debb2bd9b5005c5d6e812508a","impliedFormat":99},{"version":"f823c56b9d2acbec902cc5bfac461fe3e0e4d3628ee2a7d3be3e3ae609a667b1","signature":"2c2a3290a0904df8faecf9086d9e7c181fbf67fbeacd84c7adc8e2fe27c0f840","impliedFormat":99},{"version":"8b4fddf0493694c89a6130524f695f33dcb496edfee216cf45325f44496b50a5","signature":"5be4d759b1cd2008ce3841fd60d55dd541fa29aef05acf646a993cf639a96c15","impliedFormat":99},{"version":"7a4eff3350e39c9ae3b33b597c118c453a8250bbe370833f5cd4c8eb83d6ce93","signature":"f2e77547284b4233f223b24ef174de974cbead72b1ee7b9895c5067104841a6c","impliedFormat":99},{"version":"377e7e44b9dfcb2d9204eaf966145e33dd5480d844a1ea73e5fda78d8fc9a26a","signature":"a318e1ac7accdcecb75587af58fff532a876aec1ebf0a4182b6394fe55d5a774","impliedFormat":99},{"version":"f8bcd70ca25c6721e29d7e4626924fbff882376efb22e9311d26eac41be415bb","signature":"16187460bc80d7f33d11defe01045dcb2b7273d86ac7ca978eec5c18f8e84f85","impliedFormat":99},{"version":"16f232e2501044abf8af3db1d5dc1067d41d87d706ff9afcdcb990d4d7eb42ac","signature":"c5edba8a528592c637cba96d933c4fcb617d5f930c3ccfe0f2a9467082bc1f22","impliedFormat":99},{"version":"aa3c0f167e486ad9bf5386f40300b1b961030e63bc405124e6d7ec1449e31eaa","signature":"10da1363260f410cb9398a98d1f732c3c931f9d70fd94f2707727184a256e0a0","impliedFormat":99},{"version":"5d9cce91e118f529a5783a1a4f697785e150cce74f57af84d9387424fb597d50","signature":"88cc5c7a2d66ec59f981bbe41bf06066bd8b7dfa5db73db7253725e619455be6","impliedFormat":99},{"version":"ef1c58f115ba8dc4b98bc121a4a2d2c05431eeabf536aa8268b688200622b7bd","signature":"38e3cb184fd0fd867a24b5f0596a34c6c77d82a11f152f330e8b23fc2964db29","impliedFormat":99},{"version":"02b6bce1b83b5dae54947339dc7731dabb1664b819a7fba117f7bd5b2bf0d054","signature":"ee218dfe4be43788b75a0def55b9f8ff0bef1b584b91d3cd8a9199336ac13c37","impliedFormat":99},{"version":"6d547041465e131b037d8e76073910410f23e3fb0226b5cb53c53c3fbc102f33","signature":"41d3448d133003a83c425d0d4955ec88fd1d9f95e138672b935c19da96c2691f","impliedFormat":99},{"version":"37b121a347dbf835cdb8cd068e9aa5da2b248d3481310b22600d274d6f567d78","signature":"a261f34d5561f7dc7c3264e222a6ca7670a8edf19c174f7d4482d545a355cc77","impliedFormat":99},{"version":"d34aa0e9ca0605fcf8d29ba3592465c6962f3324990ac9b15f3b6c47076c9327","signature":"15667452478dfaf26fbae1a5afd70089df775681824c82c406c7a0d413dec1b9","impliedFormat":99},{"version":"42862428d670162a61b7123f7df2c85688a9b877e034e62ea21fa95fad2c94f1","signature":"503cd43f394143b21fede11d7f0a7268aacdb97ca7f588ec0df65bf85d912b64","impliedFormat":99},{"version":"e73dca683bae65c34992d1dfd6ec362452d175ad6d3f3702ee71aeaa126860d1","signature":"89cf030e91c8e5c01f15013895d5ab79909247fcc2c5736e8c0239188cceeeeb","impliedFormat":99},{"version":"48367a0c810aa37c7b1f721243782553d6ecef3b391ad503332c1300e5b8e4a2","signature":"0dc99c83649da82dc8db80908a4831289520f89e7225db8b6f16c40adab2d3b8","impliedFormat":99},{"version":"4587d6a10788e2bee52d5f7db91d018b8358ea11b1e42ede926f2dadfbe6dba6","signature":"2cc62ffa90e426cfeddc8ea6c6c2cb0c823bfcc3635e635a279f8dc0dd7f8071","impliedFormat":99},{"version":"68dba9d4f39d9d03d759f09918e5adb7d2326f9d58360330b9217eddbf92f3f1","signature":"f2351c72611269138493c55eb7c1cd3e6fe11f653c914e6d89aa6b098edb704b","impliedFormat":99},{"version":"af928b93f24b2d349fdb8cdd3148b99e4dbd2c31a2a1895375888392cf4399f4","signature":"9d457cc93a12d078d73ea3a91078b3e8670139cc740dca968a54cd0c6528b617","impliedFormat":99},{"version":"dfa69ce928ce9ac616e26df0dd9bc03bc052cd00085e08687a08d311483e00bc","signature":"0912cb9c3ea4d28ea5bda3afe4bb2ec5344172ff645449917ee9561dd3c89ea3","impliedFormat":99},{"version":"c404c8d769ec8a0103f9359b82e0a551bbf62ca7abcdcc29b291c920bf5f5c19","signature":"92d0fb9743a24ca92ce86cea0b452be9a67bad6aee63cf2e7d0e5b34f0e7f28a","impliedFormat":99},{"version":"b033025cf4b580c2e64e9eb304e15a9e511343184e92577e2a8e295e49567c89","signature":"c0175343a77d5717221a680824a25c4902e85c899f85b95df021ffa8cd978a86","impliedFormat":99},{"version":"9867fb8a9486b9e2b04e8a271a283e046d8020e6b273a4dac2d3e0a010a8f563","signature":"f7cf606f8879d93c5876df7a5f022ae5db1136d3289dd9f531ea85420db99fb5","impliedFormat":99},{"version":"7ca550ab1d93bae24a9ed3b45a137e0d1a6321138e09cd4a1741a90b1b029cba","signature":"53167a4e3dfaf5758e99a0736e601d67595d3f4a839e853a3107efe03f08b838","impliedFormat":99},{"version":"d8cc6716c01ddaa27726eea32a6826b3f10e1dbe67316669ab8d079e89885e82","signature":"44f0b484471d49db12cae3fd9947e77deec41d5da8542464f5d633385ed6df71","impliedFormat":99},{"version":"0c08bdb074e034f1754561e6ca21d7a391622fe3a5b64c1f77c649189bf63854","signature":"95b5e9ead1117244f2c7d0fbdbc69b11af1c7f6e351bee35349f8891777d2687","impliedFormat":99},{"version":"eeedc2631a889605ad515f3520608e80711674845740490221d66e402ddb9588","signature":"445d985d1c14ba51c27fb6ad55d826f44bc56ad8ddc4aa3871a68872079b3c4b","impliedFormat":99},{"version":"2fcd2d22b1f30555e785105597cd8f57ed50300e213c4f1bbca6ae149f782c38","impliedFormat":1},{"version":"3c150a2e1758724811db3bdc5c773421819343b1627714e09f29b1f40a5dfb26","affectsGlobalScope":true,"impliedFormat":1},{"version":"7000ec8572390d035ba5ef993953957150d0c38ffb31b56653c97dd78cb6e1aa","impliedFormat":99},{"version":"056892cca68dca10a914f1580ba0e5710d26794e8707225dca9b5717ed702f1e","impliedFormat":99},{"version":"69c330fdd40043b530982e229fcea106741679ae432692e8a2f976e5d0e234b3","signature":"645c2cd797e6a123eab18a2d6b7f2b795c08aeaeb7258694e2f957db5a50812c","impliedFormat":99},{"version":"6d60c303893a83b275c1d0e395e5ec654f7c07938b14a6f43fe35a86ac1c7925","signature":"334b3aac0ed948a5b8fcc7c405dc856403207095636b86e839839754468be895","impliedFormat":99},{"version":"cb4affdc0c199db1a92f8d91d635c6922ec4bcb92113b7a056bce7b48e82b418","signature":"760743226740c3f5e736ec3e9982a435ff9eca08f1b32ffa82e12e6a938944a2","impliedFormat":99},{"version":"d4cdc23f18a17cbfa5c399eb1b2ee5a0ab13fffb883be2c0fe807ef81f40dcdd","signature":"8076be558001f0dc7b93b883d1f490d5ee40c2bfe9fd499a5f5091f44abc5f5d","impliedFormat":99},{"version":"f0bb074b3db3c3e43cd52de2b54c2bfea729269d0918ad5b5088c3a5020901a5","signature":"90c0ba35e305757169bff5bbc146667f959fd1b760b28204fd8751287056ec12","impliedFormat":99},{"version":"8a70099b6e9281dbda80f3ae4fc4bd48c005d9d006a79fb00e3f5ca8a37d1c4e","signature":"0d50de5a6e34fc790ca84cd97f8873c941357541c3583ea09f9410656173db4b","impliedFormat":99},{"version":"e6fec85a467c6f934b36774c7dc79f712c1765c4632ba6802fc856b2db172f30","signature":"dbff8b7e0481d809c602cf732627c508181ba4926521fd44313a4d4786b21fe5","impliedFormat":99},{"version":"0c07a2f995faefe72bb0e92836210a8d1ea9d132027b76462b3dd435dddf9394","signature":"138484e9e4b56102ccbe70146e7231fffeeb419833f146c289a5dd27aefd63cb","impliedFormat":99},{"version":"939f8cc7531fc3dce47e97384694e58339227a38c9c1afb0a7306d8f687b612c","signature":"00fd25cc100487785c9b84ba634deb18f4827363a0583046049da612ede3dee2","impliedFormat":99},{"version":"9d4a3d10d710043b7a08d0b032e53f5add4c50217f7eb76b298397fa75b90bb9","signature":"b5fe3f45bdb3fe1c393f40fbb15458a0aedc270409fb0ee9a66a34e589b45595","impliedFormat":99},{"version":"f996726f632a93f053fb39117ab6c886a28b9630053ffc2261d5b8247982eb5c","signature":"5f0776adaef542cbe0f5a1e5d29c2be98013e489d18cc942e9f09fde7dc600a2","impliedFormat":99},{"version":"3f07cbece06ab1047a62e3c46fb4aeb856230d6238101a7f6efb2f548623259d","signature":"f7ea5d2249d61627f56db3a9c8f280a02a47b5799f41cd04df4ca53f6d181432","impliedFormat":99},{"version":"1590611dc94d07c19748e524fa56c6552c73c061ef2fc1e9790a80ec961d4717","signature":"bf22edaf1df524c58bdfbb40263391bf12112f63cf9ffc3db3556a4090225f9c","impliedFormat":99},{"version":"9625aaaf11ff7e50729eb1f0ef50d404995be06c0d467a9d664652b2b4a9d4f1","signature":"ae7e609ac2c68667c05e70741b9be6be51bf3dd48fdfcdcbabed6db7174c3a82","impliedFormat":99},{"version":"f8508f4ddbcc2c5bce5ba5bd08a81b11f320e0879433506a165881935ad2f0ff","signature":"ee3a2f50568eee122ea3671bb62c236fb39f260d86b593349b9ea821d81156f0","impliedFormat":99},{"version":"6e6b37a4b1cbac2961cf15dcaaf648c63a732c99adcfd3eebfce925e7c5d20c1","signature":"4c81f7b395ad4e6adf0d24db6a2a4fe549ea08e36fe784ac2b15bae93d6d6eab","impliedFormat":99},{"version":"14c33f276adfeae687b9e71e0a0a8a425b6d36ebbf11145472f746fc2ac11988","signature":"9268a50c181881ac154dc64079e9f67b2cc81df1db2c89127bfb46e6a8ca5019","impliedFormat":99},{"version":"da5738d96030fe86a43d1da00ba81ffe3de5cb427ddd27ae58b051e06c5ac318","signature":"7e9f0eea6da8526690b54f196c65a03e59f7b4bc9744e3763a701870db38d41e","impliedFormat":99},{"version":"cd884cb1be068f0596c6a2c61d071aaf51e852b5a15c8b0a07c874788aa48bc1","signature":"562c3ad3df9e3825e64f37ef1632cce65ac437dc6e669087774da1bf79d403fa","impliedFormat":99},{"version":"06bba48b2aea6f3d21d9b092be4cabf48b3d1213181d348d94fd79f66bf1720a","signature":"9b8e497a1375c7c92d5e73e8569c935d8de09b3868a6e527ffe639eeecc2fc41","impliedFormat":99},{"version":"992144b58b4c6703f326b613adad5e382b4ce2b9645e619a582e0eae418c8236","signature":"40d66794352edfd07885a22e3d6cd6500044b04881bea2ce3a2a898cdac760b8","impliedFormat":99},{"version":"8fcaf9e152c2f4578bb8ef810358577d14bde91eb54259c39a7c4c5e67934264","signature":"d121bcc2dff73fadb70b90cf25536259d0fe364561e077a3559b13a0ecc9b39a","impliedFormat":99},{"version":"6fd27fadabd7032ebd98f4e0be65eb4796caa6b17f2f6ad304f2450412fb198b","signature":"7ef6645efc34b2154d9efe6121585021f2a2b3ea52f6961d43aded6703a0d9e2","impliedFormat":99},{"version":"efb2f941ed81a8bb6cdf69eb846921ed35f89abda767f6d9abd0fa9ec6da4560","signature":"81538b624a6090d25de1f373c8ad1de3c9bb1f33146f5bb6add51478dc48ecf0","impliedFormat":99},{"version":"ff4a262f104f4cb94dba89e4a48ba791153abc5d7c03c3a407d71ddf06fb358a","signature":"567896404ae1ca1783725ce6300b672b4043d8f8b3dcbe49a0471157b67e427a","impliedFormat":99},{"version":"0c7256749dcdef93a8b398a77719f47adbb7f809d4725fbd160a7de0fcc7b18d","signature":"66baf3299a941f56086f5663b5fb260a2af793697f699c93953f738af97a07b9","impliedFormat":99},{"version":"b2fd971ef34df1f06380cdfa6431c226a507be26e48fc6c2722afab327295767","signature":"5ea45d6a7fab1289979055dee9959b0704f34cde7d37e6741eca5bf251a7d4d1","impliedFormat":99},{"version":"ec9a474a24457e435dcf5c84ec47720176e7abf1e442b1e08b9ccceb13f87259","signature":"777f5e3ce6ef53162c00773ba39b9b25bb32acaf6ffc01370839eeb91e395153","impliedFormat":99},{"version":"59bdd4b7e6ce46166bd19375283d6cefec6394e702074513b1cb2d1d2563a618","signature":"c892ad664fd4fc9aed1d1b3ec2bcc7a29fb12311fae08ae0f83d1f5825142fe0","impliedFormat":99},{"version":"85244b8ba75c45fd209aa1f10cf80795618724b96d2b1fdf709cbaa210924fd7","signature":"2bb664e6a656720f53885ffc4861dee876f120e4542a16b6468d2c9534ce4638","impliedFormat":99},{"version":"bbc354c6a2740b087f1139e88e90309de480c5390362e2f0d32a145d8d7cf539","impliedFormat":99},{"version":"5efc502618512e9ea8096b093ecbe330521d100f79e8514e5cf3a9e0cdbae9f7","signature":"e96cae0010f79cf8667c74b89809703f5820a81e891f369f6b767b595b1e9678","impliedFormat":99},{"version":"c8a0a3bebc19d99dc9af61fc4d95b78a8f602282352614f584f7c12f69a20af8","signature":"01fd843a5a9647298bcea6a19842fe3ed63b008c04ff80a3868e11d990c5859d","impliedFormat":99},{"version":"9b2093762ef63a2d97dd54ae61edfde270e5d78a8f22b885fdc2debec6bb65b2","signature":"3e956ab73eec9d3624069b248adfc766e8b91e139e7fca15f78807babd9b719f","impliedFormat":99},{"version":"91e02e3cfda1628aec8f8cd3aac0b3aa5dfa6876c1eca26f7bcdbf78574ed11a","signature":"f5b1fe432493c144d8296babc8ccb836684c300043e2ff1ca3754920f5f65263","impliedFormat":99},{"version":"8186d971b892d273a1b60b571e044d0576a461e928601e02cbfb1b0678defa29","signature":"1006612f56e7489a94793143b1c4af76547b8ae733b22810cf3ff0686576027c","impliedFormat":99},{"version":"47dc1b9cf079cab1645c8693a8eb20ea51fbfdb102c6aadb9fc84ce1f4157fda","signature":"ae6d4e164fb07710fe4c679ed5c8c676e69cb428ad922c6207056b51b8fca1ac","impliedFormat":99},{"version":"ff1d86d9f874ea0c7ff79aa3dac03d2d642e1c909884eebbda78b01f2fbf50f3","signature":"893184cd5ed6efcf7d5437d07ebc4f4c9a7661c08a675eca81a2c72270fe3270","impliedFormat":99},{"version":"28f13ffae509d6a8ef76a157c298d35b5025b65ce0a7a5f585e7b06a4b1446fe","signature":"6d8b853525ac4b34400d414cadb4cd101d906d0aebcb1addeb70043106f591b8","impliedFormat":99},{"version":"6777b81beaee6d64386e5de6811790cc1b17196d78bd147f03b5892ace7a2a83","signature":"55ac1c2cbcbe2629e51298183a7a017977809f848d24dd2ee5181ab779c47691","impliedFormat":99},{"version":"afa38a94a717201ab97e5174959d2c433a06398418f0c467ab41851f7757a1f5","signature":"18b93f9dadbb05a43fa209160e7fae964c3da5c7d9b3f8a35168fbb5ff4ae11a","impliedFormat":99},{"version":"d9202a40cb1d345cfce1448e4e3424826ce0a6bacbd3b5b013b1e9e7d3068e91","signature":"978613a46d15cc0716125c3ccf0220f36a37e57cfcbd422d4b1f383107f0db6d","impliedFormat":99},{"version":"d099db2c297290df9cf4efe6549d46a9daf5badbff6741b000fcc49f6b631b53","signature":"5c89aa34a7ba569870223794ce7158dfba6e3df731f365485108359ccb784e67","impliedFormat":99},{"version":"39377e2053958bb117fa8000e73474bf38627c1266aef7cbfc6bf4bfdfb1d4ee","signature":"f224d8043d1cc65a68bd373917dfa1a7fbf08294953af15a4f31bcd9d7b2203a","impliedFormat":99},{"version":"85fee450835486d118016fa366acde0e9716510a6f2cc5e2a3ff61cf15bb6c3d","affectsGlobalScope":true,"impliedFormat":99},{"version":"0918ebcac27af24292a8c21071b6ce0a7c533288e14d354def0e5d50f8822945","impliedFormat":99},{"version":"c3a659a0d1d2101119ea16f30ea5857df60f7896521d50893a458291777a662a","affectsGlobalScope":true,"impliedFormat":99},{"version":"64924661bb998b7b8fa2ac4be582551f093da21e33ef5b653061873366d8aa4f","impliedFormat":99},{"version":"e90878e8ba415222d096e3b2e9c4d5d0dea7f51011df716efdcba01e2c70a13a","signature":"8e609bb71c20b858c77f0e9f90bb1319db8477b13f9f965f1a1e18524bf50881","impliedFormat":99},{"version":"cd5aa06c2b665de4ac88a564b52846674c2dec9d68346ae8cd9ef1b0c5465a99","signature":"83127de78f7dadb64fd851bc196ceec38bc67f9b5ae847ae430ad377868462d1","impliedFormat":99},{"version":"fc9e4a1dff584b5d927fb1596ecdbcae71adf515f48cf59f88b60664749b96b4","signature":"1af23bba0daf3ba11882c0717a1fe78cf929e13f1a3c23e5d882163a0a307aa9","impliedFormat":99},{"version":"6ad1ad46e865c585f56c25812da5933b3e92672724eff440737c3338c44344d3","signature":"5feb9b864b6ecd4de7ce0b1ffa7f8ebd8be99838ac9fb58041ec6fc1ead681dc","impliedFormat":99},{"version":"647630d8c3f545e4f79ae4f65933e0b0cc793b471326c10675c1d177e48f33a7","signature":"27d711e422d5068b79835f72c3a92901e9858a375162911a7aad65eddbd23576","impliedFormat":99},{"version":"b80c5e60f26fc8559094533d33685e457452dbd9370cf9002c06f50befe31960","signature":"adec8d6fa090f9873b7ceee24c4180057fb6927280413c78d5948e47f16a476e","impliedFormat":99},{"version":"896deb53c900d103a3392e3b1263813935b56c2fca57a2aa619401707ab2af7e","signature":"f25170a49346310bd5ee19ea7314dde199d4261d653f06bb3f1d77dbd1b20427","impliedFormat":99},{"version":"9371ad1662936d64bfc1d95410b39ec650880af2432cdce51873cae049fe9ae8","signature":"6aa7e7d23ab6789ac9971d98d40bf5c944a28041910f297c9f7550aba9563d14","impliedFormat":99},{"version":"2b72fabf6980e0dbf0ceeb7a9916056da475cea5703de24141a4da43ae281f78","signature":"187dcb2a124ada8a0257bd0d305e6ee63beca20cb237c31814b4adda5aaeea4a","impliedFormat":99},{"version":"cce0f3dc24d41f746ea6e6f84cd54b7bb4430ab9cb90e1a42fd6db0ff99f8bf0","signature":"8698c3d42f602b96cf0d97b66f72541a8c6fab54b90d5fcd30bd490e589f3c29","impliedFormat":99},{"version":"64028f3ded2bb20cb662f2a26be010b76c2938cbe9ad4461bca8a9c078a92463","signature":"3174c8ab15f3d6098a8daf1d35465baea663c55d5754276044ac7dc82c9b217b","impliedFormat":99},{"version":"f6415ba20d3c93bc7f63da27a13e577cd4308cbfc59b41269cdffed8edaf69a2","signature":"b1a43667468dc1c947152a6484d8f3808ae7ad901d7af5a1957bb93b85ef46e0","impliedFormat":99},{"version":"659f172d38541fd3587ed2042a9e597250b01f18c8c49c51c353bc095363480d","signature":"9e867732ac58fa1a4b7bfcfd1290616f72b909fee6ed5e6926e813162f1057c6","impliedFormat":99},{"version":"037c077334e0444ba2e56d15ccbcef8e512188f10a2f201bb3b95b85f271a1d4","signature":"d8007c3344f37904591b09aca019aa0d59b220883f13acd7eba5a034e5a7d8ae","impliedFormat":99},{"version":"835a9e60b27081c8af6515253dc1c7a6cd9010af59b48b0e15d5dcb1642ffec0","signature":"8f46fb233854abda67506286c93a6663eca47d94c2b7ef8fe8502eb0177aa2f4","impliedFormat":99},{"version":"f11c64e2b4bf74016e4e5e4730170bcff783179d8accc95dcf150cdcdfa37b0b","signature":"64c1fa518c2c121741cb78006edb099c75029d4ca05a5a002389a8f2232f6855","impliedFormat":99},{"version":"d0ccb82244530a7485a62b098db105eb9b4d6fc5943f8d86f2eee6427f03b9d5","signature":"f8eade3d225f8d6c56e36e7ae1ccde4b9efa3d5e63ebb3eb1321502a89ccc7c6","impliedFormat":99},{"version":"2175f0b86f9d8782f2c090599e8cf68d6de3fde158fd3527dd4b7e6e870e7d14","signature":"e747751ce0f866867398557e1faeac3067d41edbc078bd07de1946162e601d01","impliedFormat":99},{"version":"38d95eef3742890dbd3eee1bd958817ff5de1d60025af0202b9e7d07fdee3f14","signature":"0ef9c1f7913d2b4a15842742ec592b7ec0c803e585572f1a98e5fc9556833eab","impliedFormat":99},{"version":"13bc553447902bcb4a409b93438176c17a590beb9301d0490a8d26a957f72c15","signature":"831924cc6afc1839dec2523a98b364062504c30c2a668d2842842419a2fa260b","impliedFormat":99},{"version":"51770db0ebd7d7d0ae60be043e59ae5a2c42bbb1dd91da6933b3b6e0726d978c","signature":"914d6aa4029b41a5a112b9282f7b1d5ae6b3f46116c43aa613d92778fd0cb3c4","impliedFormat":99},{"version":"4f24fc4f039cecaf2768dafb876ddae0cb5912215d99d252993aeda1ec7a16ba","signature":"cbcd25e7c4eedf3e9df0bc8f80c36a4bd3d84410de35411bb2eb0fe78d7954e9","impliedFormat":99},{"version":"eb5010cbafe9f96abcab8a88222427e870f417bf936df46d76a59780e2fe8fef","signature":"dc7cdcc448d3916f2f0ad5688ba5ebee64d75dd17575f3b4d5ec9a6582ab08aa","impliedFormat":99},{"version":"3e3c92a1eb358f0abd3ef107f6101b985b8f786ad8a3d87c1215c0704e493616","impliedFormat":99},{"version":"8a9b7a437bea4cc34e5e103e01573ab3afc4564a22c838942b6dcca0f68020e8","impliedFormat":99},{"version":"e5064553fc2698775f84642bbf89d84d91b37a068a63b349112f9ae6323f3f59","signature":"f223977be4358942f266814602dd3cfa244f694fb05f6306d992e8c7db486daf","impliedFormat":99},{"version":"74fe889b1d2bba4b2893d518ba94e2b20dabe6d19d0c2f9554d9a5d3755710f4","impliedFormat":99},{"version":"053a19c91aaa80cc06d7113a41b7e776972bc1f31a4c7246e0164f6041918979","impliedFormat":99},{"version":"6cdbe55c2ab0898f1111d8057f14ed0d3a7bd513a82017817acb270ae6b639a8","signature":"490687c2676424d6c5ffab2bab3dda44a847e7b6735bbba5dfad0d002032d4d3","impliedFormat":99},{"version":"5a0a6dcc2c4d290cfafd45b10d0bbaf70a848fcc22ddc3abcfc46ecd444106cf","signature":"ffff451c4764999d9af2f6e3684f64f168fb8a64a406e256119f31a18b0a6470","impliedFormat":99},{"version":"a7745f4c9c83500f6e8026570d6874091f18ec37d2b22fae44509b8149db3a47","signature":"51220202066f085b939c63a45ed2a85d688451dd3af2dae49dd1b0c9b838e3a5","impliedFormat":99},{"version":"a533b96d28737cb53ea74a97efb29e2d0aea7456bceef245a9ab08aefea41a20","signature":"d875652ffb9675aa3f5133f7f3b4da3ceb5463b874127cd97e0af9d6d3470655","impliedFormat":99},{"version":"1e441a4fff93cb979669a5a5d8032067bf978643dc32ad68a7a8fb3d329fb280","signature":"a8b78bd5be55e79f7dc77811f1f81d60b9089e67d002bb56451bdec1a8e1ba7b","impliedFormat":99},{"version":"d9a38c70377ec2abd6b056a76934fd73f3718b7e8785b1802ad3f6a1ec24f61b","signature":"4cbd3e197b2810099591ba1e0593911605a342158fd718eb461cf5e21d53f314","impliedFormat":99},{"version":"93930ff8c14161e5dc54ca04e7af2ae7ea34c2de0d2aff7e173c7ecf54279d36","signature":"3d2ab0cc3fbee8711e978785806225a2eec7f55de1ba65690ff1961dcdb1702d","impliedFormat":99},{"version":"b1ca3adcdb5b0c1c9e0cc65576655faa102f062ca0ca44576f4f37aaa3583718","signature":"66a96753d6626f5e6de2b1aa1016d311209533440b297ebd1e016b7c66b6553c","impliedFormat":99},{"version":"69589defd0a1c7506478c3ff7364077c8e044273cfc68af82d54b24b547d2a76","signature":"3f6145ce1b0e571ba66b78b59e0e4ed7af147c2a6ec4f79e362ffa2d42175aa3","impliedFormat":99},{"version":"e689401170c8df754636d8e9ccb3230f280313146480e8208eaa6e49b0fe1768","signature":"75c6a0b4aea1f7ee093b071ecf40d4f5bc74758510506043e39d14feb0ce5387","impliedFormat":99},{"version":"321815a669e5b2929adc1fdf0ae2ddb807bc86688cf344f17a545c61dc421319","signature":"f3534590544c9873eec4f20537950e4675ad9f0334396128cdd8f46beddf540e","impliedFormat":99},{"version":"f18fdb8ca920aabe59316b65aee6651d8563590137e55fdba30886a5323afcf8","signature":"3ee6eb644a8049ca88bff4df69399da1a1b794317830389dac3ee7197635abdb","impliedFormat":99},{"version":"3428443295b8d0a7cfc9ce98723a72ba87e515440cc0545a1025752442f96654","signature":"62638e818cc8e534b030df1aa94629cd659307e8056768c3bc8b2f41c7dc09b0","impliedFormat":99},{"version":"7ceb8889938d933d2377e818919b6ae18f6ed1861b8d52e7b67505bde79f7f4a","signature":"25b3cfd187a008f709c85f8bbebc4db0b2317cecf1dd4a3963200ffeb215eb30","impliedFormat":99},{"version":"4cae51047ef9b3f882a9ba41b0498a3ac141efb85f608fbdd59e6643bd94f036","signature":"e8628e2eae53b6f41555557a7e7dee9fd92ca4d0cf00b813be959ea52828e556","impliedFormat":99},{"version":"28e0e48125f80361e67313545d7d240f8d9123c06d78182a0c376217c6daa36a","signature":"c243b16933d3b29f3684aa60b9b0d624bfb59cf0bdb48791ba8c8f1466b93395","impliedFormat":99},{"version":"02f199f7262396091a4f1773c0e86e3df69857d5e4ce17da5ab03b43ab43780f","signature":"baa94ae44e3f91357364c2981da84293b503addc44af57e489c22ca4f86bed51","impliedFormat":99},{"version":"050b82f0dc4a5b0273fdc5d6b1fb7181dd702c57d333e62723149dae3950ee2c","signature":"802143d369e1839189ae2ee619d6e830626d7bcee2080d568f754f771fd28a44","impliedFormat":99},{"version":"eb7b370b7b3063c2c9b8fb9a0a8c3dd6daa7595636c811f6666986a8f3b31afc","signature":"37519225df2259f2ac764cb062438d37d9c98962bf61267bce7a6a0987f88913","impliedFormat":99},{"version":"9ba17a57c97f708425ff50755f20c79f8e95b092685d8d551dc53ff89b438abc","signature":"498e8d3273af7599923f713a32e225ec1d40058328103499cba1524529f26891","impliedFormat":99},{"version":"0f1c31306e361e87fae11a55244c794eda0c376023d5d54f8ddc0a612e2b3168","signature":"58b00b098fc84d8197ebe77520eb0e12b02ea7cd43ef90a8b2612b57f5425e32","impliedFormat":99},{"version":"17303c17f4ff0a0e6f2e4aef80f0e5ec80f699b0a4be00c8e3f21cf5cf38c5fb","signature":"6124386897329300c5cac2bc9923743a7ea9693ab6190fe74f698fbb49376cc1","impliedFormat":99},{"version":"68632244a18dc43b884020bd9ee99157d587006c88f7aa5eedaff1f4b6b7a588","signature":"09ba065c5f87bc3f4edc22a232804c07b6599792a67bd708a5e3b538bf9791b4","impliedFormat":99},{"version":"125d6468899e401a2355dff5ed85c4d6fba003eb663c71a48a1e95b62b948ff1","signature":"5be64a32c3fb65cd3bd06375f3855c16deb36b21cf9450443d6b1f9683f94ae2","impliedFormat":99},{"version":"e1e471a4e4f3f062d0530dccd4f3b6ca9ed85f40a86d866b668e4e695a12c9a1","signature":"16f159858efc34c022e56afc32b5ea0da6a371017030df6dc21ad21ea7bc137d","impliedFormat":99},{"version":"e949b47572d1efa95e71ef2034811c2d99e455a1ad39df5a0502de368a72f251","signature":"386544823385e3fb32fd05d9438b4c7d58d41edacfaf38380eafc3899d7c1957","impliedFormat":99},{"version":"bc29a6270671e05b824031cb430b0f771766a6b578ff32d35a5b11e5f7ba6ae6","signature":"0c6b35f9004db8066219e61965517b4ba770f4a91ccd4fe5a63d57530d9b0d15","impliedFormat":99},{"version":"da6b891d17f0fe62a6893da0134621160338e5c6c36bb82b80fe5d296d0619d1","signature":"36adb77ddb8682227319ace4590c2b4955e9c4285191187e31d4b8ebe4f11dfc","impliedFormat":99},{"version":"e493c6fe2636498511bd706663352d8e0c99be09170dfcfbb0673550ad1e0cde","signature":"1ef17da54ebb3ea9f5997f4e049a9f83563e48989654cf3c386cdd60b02bbca4","impliedFormat":99},{"version":"e530ac656c85768e43eff078af0eb5974980a382d0395c5125f6d7a0990c8b7c","signature":"766668294ada7ec970283414df6589a56dc43b3e4e229638cc4a901f09b8fcd7","impliedFormat":99},{"version":"a4fbd112cd7a0f288fa9b7f94e686ff23dc51a09acdd9c0f8350446028ddcc72","signature":"23a12f1cf6ef29c45a8bc2816644a341243588198cdca985f91d3ecefb568cab","impliedFormat":99},{"version":"0f511b1945d919dd27cade5b668368e0c66fc511748407a67e75e2106f49db3b","signature":"5813a937f1ebcd3b638eab8ae8ed7d2019e6754441fc48b91cb47aa8bddf4d04","impliedFormat":99},{"version":"50159aa5a8e70f44b122e916dd4116bf5406bc92c612966b2c1b299fdd67f8e1","signature":"3cf36df70617ba819d60e9b8bc8817e589210817600b86e4d1b2990d2e9aa11d","impliedFormat":99},{"version":"e8616cd0e572378c9e726a302037e2ff98baae215d495d152447815afb674395","signature":"21526396fc86dbaa3c4b720431cb6e5f2f1bab37985ac48eb83a5a2b7287e70e","impliedFormat":99},{"version":"8e55dc967eb32fc602da9a111509cc4508d32d35b559c1988455273d8352db44","signature":"6565e52dd4e111dc2c7dbd4955a74421c5ab03802e85cd933a4e9898373ef8f1","impliedFormat":99},{"version":"bc90fb5b7ac9532ac8bbe8181112e58b9df8daa3b85a44c5122323ee4ecbc2bd","impliedFormat":1},{"version":"9261ae542670cb581169afafa421aeeaf0f6ccd6c8f2d97b8a97ee4be9986c3e","impliedFormat":1},{"version":"6247a016129906c76ba4012d2d77773c919ea33a96830b0a8d522a9790fc7efe","impliedFormat":1},{"version":"01e24df7c7f6c1dabd80333bdd4e61f996b70edec78cc8c372cc1de13d67cfa5","impliedFormat":1},{"version":"f4742762590497b770af445215e3a7cf1965664b39257dba4ce2a4317fc949d8","impliedFormat":1},{"version":"ceeda631f23bd41ca5326b665a2f078199e5e190ab29a9a139e10c9564773042","affectsGlobalScope":true,"impliedFormat":1},{"version":"1b43d676651f4548af6a6ebd0e0d4a9d7583a3d478770ef5207a2931988fe4e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"3594c022901a1c8993b0f78a3f534cfb81e7b619ed215348f7f6882f3db02abc","impliedFormat":1},{"version":"438284c7c455a29b9c0e2d1e72abc62ee93d9a163029ffe918a34c5db3b92da2","impliedFormat":1},{"version":"0c75b204aed9cf6ff1c7b4bed87a3ece0d9d6fc857a6350c0c95ed0c38c814e8","impliedFormat":1},{"version":"187119ff4f9553676a884e296089e131e8cc01691c546273b1d0089c3533ce42","impliedFormat":1},{"version":"c9f396e71966bd3a890d8a36a6a497dbf260e9b868158ea7824d4b5421210afe","impliedFormat":1},{"version":"509235563ea2b939e1bbe92aae17e71e6a82ceab8f568b45fb4fce7d72523a32","impliedFormat":1},{"version":"9364c7566b0be2f7b70ff5285eb34686f83ccb01bda529b82d23b2a844653bfb","impliedFormat":1},{"version":"00baffbe8a2f2e4875367479489b5d43b5fc1429ecb4a4cc98cfc3009095f52a","impliedFormat":1},{"version":"c311349ec71bb69399ffc4092853e7d8a86c1ca39ddb4cd129e775c19d985793","impliedFormat":1},{"version":"3c92b6dfd43cc1c2485d9eba5ff0b74a19bb8725b692773ef1d66dac48cda4bd","impliedFormat":1},{"version":"4908e4c00832b26ce77a629de8501b0e23a903c094f9e79a7fec313a15da796a","impliedFormat":1},{"version":"2630a7cbb597e85d713b7ef47f2946d4280d3d4c02733282770741d40672b1a5","impliedFormat":1},{"version":"0714e2046df66c0e93c3330d30dbc0565b3e8cd3ee302cf99e4ede6220e5fec8","affectsGlobalScope":true,"impliedFormat":1},{"version":"550650516d34048712520ffb1fce4a02f2d837761ee45c7d9868a7a35e7b0343","impliedFormat":1},{"version":"11aba3fa22da1d81bc86ab9e551c72267d217d0a480d3dda5cada8549597c5e4","impliedFormat":1},{"version":"a1b3f2d5c8492001bef40ffd691ab195562e9e8b886cf9c4ed1246774d674dec","affectsGlobalScope":true,"impliedFormat":1},{"version":"060f0636cb83057f9a758cafc817b7be1e8612c4387dfe3fbadda865958cf8c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"84c8e0dfd0d885abd37c1d213ef0b949dd8ef795291e7e7b1baadbbe4bc0f8a9","affectsGlobalScope":true,"impliedFormat":1},{"version":"9d21da8939908dafa89d693c3e22aabeef28c075b68bb863257e631deef520f5","affectsGlobalScope":true,"impliedFormat":1},{"version":"5261e21f183c6c1c3b65784cdab8c2a912b6f4cd5f8044a1421466a8c894f832","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c4a3355af2c490a8af67c4ec304e970424a15ef648a3c3fbb3ee6634461e2cc","affectsGlobalScope":true,"impliedFormat":1},{"version":"06c5dad693aebbff00bd89fccb92bce6c132a6aa6033bb805560fa101e4fe77b","impliedFormat":1},{"version":"6739393f79c9a48ec82c6faa0d6b25d556daf3b6871fc4e5131f5445a13e7d15","impliedFormat":1},{"version":"66a11cff774f91be73e9c9890fe16bcc4bce171d5d7bd47b19a0d3e396c5f4ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"0b9ef3d2c7ea6e6b4c4f5634cfccd609b4c164067809c2da007bf56f52d98647","affectsGlobalScope":true,"impliedFormat":1},{"version":"9c64c2d7be898f9bba3472a95a5e5bcd37ae820ce6c1e2a4903d606ba621f638","affectsGlobalScope":true,"impliedFormat":1},{"version":"452234c0b8169349b658a4b5e2b271608879b3914fcc325735ed21b9cb88d58d","impliedFormat":1},{"version":"8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","impliedFormat":1},{"version":"eb0a79b91cda3b1bd685c17805cc7a734669b983826f18cc75eeb6266b1eb7cb","affectsGlobalScope":true,"impliedFormat":1},{"version":"326d76935bfa6ffe5b62a6807a59c123629032bd15a806e15103fd255ea0922b","affectsGlobalScope":true,"impliedFormat":1},{"version":"32a6e83d93b6ed30431bdfd124e7717ead7783b53ee07fa36c4f54d52a537893","affectsGlobalScope":true,"impliedFormat":1},{"version":"d0f7e7733d00981d550d8d78722634f27d13b063e8fef6d66ee444efc06d687f","affectsGlobalScope":true,"impliedFormat":1},{"version":"6757e50adf5370607dcfbcc179327b12bdfdd7e1ff19ea14a2bffb1bbeadf900","affectsGlobalScope":true,"impliedFormat":1},{"version":"91353032510f8961e70e92a01f8b44f050cd67d22f6c87c9e5169c657c622aff","impliedFormat":1},{"version":"2d37beb2c0c30087150ccfa9d7622cffdc3a1495b63f0b634cf6b3908cd60fa2","impliedFormat":1},{"version":"81898ad1a6f40cb6160febcb3162d3ecd860cfdcc89800c0a304a7d3289bd908","impliedFormat":1},{"version":"815dd102eeec57edf20162912af4a5436e5a37c87be0b49080368b70d7dd3220","impliedFormat":1},{"version":"85c921975981b0f8ef7722648f935db2bf561c5ff7c195227f0a12e1617320f7","impliedFormat":1},{"version":"58d4246e37aa6c9cff2c1532d987dcdfb151c0859b796a20c14ec2bdc089860e","impliedFormat":1},{"version":"f322cf42f41f8ba551d382851d75e4bebdc4f0eaa14de1e004e9aadd166b4f86","impliedFormat":1},{"version":"dc9458933d33f37b7dbfa1a62f43686cdc0584127c82bccb723ae369e826ef64","impliedFormat":1},{"version":"9ff36cbd52acbc9e6b672f71c1da76f08d7f70007d0d4c2876e640aa2d82ac2e","impliedFormat":1},{"version":"361d4de0001f04e9b98d34018a2a1874ee2830381806b8d9331b6c2ca7d4820a","impliedFormat":1},{"version":"c527d1ec21206c1b8351558f4cb3244fdfeaa17f55428878761a5e98e3fb8398","impliedFormat":1},{"version":"013e53fbe9fa91cd85819c8af717b45be9d9b508dfb6b5983b64995a702bf1b8","impliedFormat":1},{"version":"616b55adc7255bd5b15850a21c0daa3b45d1cbf8dce26aec7a2eed58098a5269","impliedFormat":1},{"version":"4beb984b2662a0500afee965f343f2303ce8255c94f12f983981aa7b5094f6ab","impliedFormat":1},{"version":"0c6f70c910a2956fa4709421470e49cfd83b690837e9c4a9bd7c7eb56e9e205b","affectsGlobalScope":true,"impliedFormat":1},{"version":"2987082a85ac3e93930cc81a83060350bcb52c417280f4687652e931b5a1546c","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0cb421ded8dc68ab559987a4981984489c569ec0231600f9add33f804112726","impliedFormat":1}],"root":[[64,130],[135,164],[166,180],[183,205],208,[211,245]],"options":{"composite":true,"declaration":true,"experimentalDecorators":true,"inlineSources":true,"jsx":4,"jsxImportSource":"@ui5/webcomponents-base","module":199,"outDir":"./","rootDir":"../src","skipLibCheck":true,"sourceMap":true,"strict":true,"target":8,"tsBuildInfoFile":"./.tsbuildinfobuild"},"referencedMap":[[132,1],[296,2],[298,3],[297,2],[299,3],[288,3],[290,3],[293,4],[291,3],[289,3],[287,5],[300,6],[276,7],[247,8],[249,9],[252,10],[281,11],[283,12],[286,13],[275,14],[254,15],[255,16],[253,17],[256,18],[257,19],[258,20],[259,21],[260,22],[261,23],[262,24],[263,25],[264,26],[265,27],[268,28],[267,29],[133,30],[207,31],[209,30],[206,31],[210,31],[134,32],[165,30],[182,33],[164,34],[125,35],[76,36],[166,37],[78,38],[142,39],[123,39],[72,39],[81,39],[114,40],[141,39],[94,41],[117,39],[87,39],[80,42],[167,39],[168,39],[97,43],[95,44],[79,45],[116,46],[169,47],[154,48],[128,49],[184,39],[185,50],[186,51],[187,51],[188,51],[163,52],[189,53],[111,54],[99,55],[151,56],[159,39],[160,57],[162,58],[190,59],[191,60],[90,61],[113,62],[91,63],[161,39],[108,64],[143,62],[105,65],[103,66],[192,62],[193,67],[170,68],[194,39],[178,69],[176,39],[171,70],[173,44],[172,39],[177,44],[174,71],[195,44],[196,44],[175,71],[200,72],[201,44],[202,73],[122,74],[148,44],[89,75],[136,44],[137,76],[112,77],[84,39],[85,39],[86,39],[77,39],[135,39],[82,39],[83,39],[115,39],[74,78],[153,79],[180,80],[157,81],[158,82],[156,83],[109,84],[96,44],[204,85],[203,61],[144,39],[110,86],[106,61],[150,84],[149,84],[205,87],[211,88],[208,89],[147,44],[183,90],[67,39],[129,91],[101,61],[98,61],[104,92],[139,93],[138,94],[130,80],[100,39],[69,95],[68,39],[70,96],[65,97],[66,98],[75,39],[92,39],[93,39],[212,39],[199,39],[213,39],[198,39],[214,39],[215,39],[216,39],[140,99],[217,44],[218,39],[219,39],[220,39],[120,100],[221,39],[222,101],[223,102],[225,103],[127,39],[126,39],[227,104],[146,39],[228,39],[102,39],[229,80],[107,84],[241,105],[242,106],[243,107],[244,107],[245,39],[230,39],[124,108],[152,39],[231,109],[197,39],[232,44],[233,39],[234,39],[224,39],[121,39],[235,39],[236,39],[73,39],[155,39],[119,39],[118,39],[237,39],[226,110],[145,39],[238,80],[239,39],[71,39],[240,39],[88,111],[301,5],[302,112]],"latestChangedDtsFile":"./util/dragAndDrop/longDragOverHandler.d.ts","version":"5.6.2"}
@@ -1,5 +1,6 @@
1
1
  declare const registerTag: (tag: string) => void;
2
2
  declare const isTagRegistered: (tag: string) => boolean;
3
+ declare const hasRegisteredTags: () => boolean;
3
4
  declare const getAllRegisteredTags: () => string[];
4
5
  declare const recordTagRegistrationFailure: (tag: string) => void;
5
- export { registerTag, isTagRegistered, getAllRegisteredTags, recordTagRegistrationFailure, };
6
+ export { registerTag, isTagRegistered, hasRegisteredTags, getAllRegisteredTags, recordTagRegistrationFailure, };
@@ -12,6 +12,9 @@ const registerTag = (tag) => {
12
12
  const isTagRegistered = (tag) => {
13
13
  return Definitions.has(tag);
14
14
  };
15
+ const hasRegisteredTags = () => {
16
+ return Definitions.size > 0;
17
+ };
15
18
  const getAllRegisteredTags = () => {
16
19
  return [...Definitions.values()];
17
20
  };
@@ -74,5 +77,5 @@ const displayFailedRegistrations = () => {
74
77
  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/06-scoping.md.`;
75
78
  console.warn(message); // eslint-disable-line
76
79
  };
77
- export { registerTag, isTagRegistered, getAllRegisteredTags, recordTagRegistrationFailure, };
80
+ export { registerTag, isTagRegistered, hasRegisteredTags, getAllRegisteredTags, recordTagRegistrationFailure, };
78
81
  //# sourceMappingURL=CustomElementsRegistry.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"CustomElementsRegistry.js","sourceRoot":"","sources":["../src/CustomElementsRegistry.ts"],"names":[],"mappings":"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","sourcesContent":["import getSharedResource from \"./getSharedResource.js\";\nimport { getCurrentRuntimeIndex, compareRuntimes, getAllRuntimes } from \"./Runtimes.js\";\nimport type { Timeout } from \"./types.js\";\n\nconst Tags = getSharedResource<Map<string, number>>(\"Tags\", new Map());\nconst Definitions = new Set<string>();\n\nlet Failures = new Map<number, Set<string>>();\nlet failureTimeout: Timeout | undefined;\n\nconst UNKNOWN_RUNTIME = -1;\n\nconst registerTag = (tag: string) => {\n\tDefinitions.add(tag);\n\tTags.set(tag, getCurrentRuntimeIndex());\n};\n\nconst isTagRegistered = (tag: string) => {\n\treturn Definitions.has(tag);\n};\n\nconst getAllRegisteredTags = () => {\n\treturn [...Definitions.values()];\n};\n\nconst recordTagRegistrationFailure = (tag: string) => {\n\tlet tagRegRuntimeIndex = Tags.get(tag);\n\tif (tagRegRuntimeIndex === undefined) {\n\t\ttagRegRuntimeIndex = 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\n\t}\n\n\tif (!Failures.has(tagRegRuntimeIndex)) {\n\t\tFailures.set(tagRegRuntimeIndex, new Set());\n\t}\n\tFailures.get(tagRegRuntimeIndex)!.add(tag);\n\n\tif (!failureTimeout) {\n\t\tfailureTimeout = setTimeout(() => {\n\t\t\tdisplayFailedRegistrations();\n\t\t\tFailures = new Map();\n\t\t\tfailureTimeout = undefined;\n\t\t}, 1000);\n\t}\n};\n\nconst displayFailedRegistrations = () => {\n\tconst allRuntimes = getAllRuntimes();\n\tconst currentRuntimeIndex = getCurrentRuntimeIndex();\n\tconst currentRuntime = allRuntimes[currentRuntimeIndex];\n\n\tlet message = `Multiple UI5 Web Components instances detected.`;\n\n\tif (allRuntimes.length > 1) {\n\t\tmessage = `${message}\\nLoading order (versions before 1.1.0 not listed): ${allRuntimes.map(runtime => `\\n${runtime.description}`).join(\"\")}`;\n\t}\n\n\t[...Failures.keys()].forEach(otherRuntimeIndex => {\n\t\tlet comparison: number;\n\t\tlet otherRuntime;\n\n\t\tif (otherRuntimeIndex === UNKNOWN_RUNTIME) { // version < 1.1.0 defined the tag\n\t\t\tcomparison = 1; // the current runtime is considered newer\n\t\t\totherRuntime = {\n\t\t\t\tdescription: `Older unknown runtime`,\n\t\t\t};\n\t\t} else {\n\t\t\tcomparison = compareRuntimes(currentRuntimeIndex, otherRuntimeIndex);\n\t\t\totherRuntime = allRuntimes[otherRuntimeIndex];\n\t\t}\n\n\t\tlet compareWord;\n\t\tif (comparison > 0) {\n\t\t\tcompareWord = \"an older\";\n\t\t} else if (comparison < 0) {\n\t\t\tcompareWord = \"a newer\";\n\t\t} else {\n\t\t\tcompareWord = \"the same\";\n\t\t}\n\t\tmessage = `${message}\\n\\n\"${currentRuntime.description}\" failed to define ${Failures.get(otherRuntimeIndex)!.size} tag(s) as they were defined by a runtime of ${compareWord} version \"${otherRuntime.description}\": ${([...Failures.get(otherRuntimeIndex)!]).sort().join(\", \")}.`;\n\n\t\tif (comparison > 0) {\n\t\t\tmessage = `${message}\\nWARNING! If your code uses features of the above web components, unavailable in ${otherRuntime.description}, it might not work as expected!`;\n\t\t} else {\n\t\t\tmessage = `${message}\\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`;\n\t\t}\n\t});\n\n\tmessage = `${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/06-scoping.md.`;\n\n\tconsole.warn(message); // eslint-disable-line\n};\n\nexport {\n\tregisterTag,\n\tisTagRegistered,\n\tgetAllRegisteredTags,\n\trecordTagRegistrationFailure,\n};\n"]}
1
+ {"version":3,"file":"CustomElementsRegistry.js","sourceRoot":"","sources":["../src/CustomElementsRegistry.ts"],"names":[],"mappings":"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","sourcesContent":["import getSharedResource from \"./getSharedResource.js\";\nimport { getCurrentRuntimeIndex, compareRuntimes, getAllRuntimes } from \"./Runtimes.js\";\nimport type { Timeout } from \"./types.js\";\n\nconst Tags = getSharedResource<Map<string, number>>(\"Tags\", new Map());\nconst Definitions = new Set<string>();\n\nlet Failures = new Map<number, Set<string>>();\nlet failureTimeout: Timeout | undefined;\n\nconst UNKNOWN_RUNTIME = -1;\n\nconst registerTag = (tag: string) => {\n\tDefinitions.add(tag);\n\tTags.set(tag, getCurrentRuntimeIndex());\n};\n\nconst isTagRegistered = (tag: string) => {\n\treturn Definitions.has(tag);\n};\n\nconst hasRegisteredTags = () => {\n\treturn Definitions.size > 0;\n};\n\nconst getAllRegisteredTags = () => {\n\treturn [...Definitions.values()];\n};\n\nconst recordTagRegistrationFailure = (tag: string) => {\n\tlet tagRegRuntimeIndex = Tags.get(tag);\n\tif (tagRegRuntimeIndex === undefined) {\n\t\ttagRegRuntimeIndex = 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\n\t}\n\n\tif (!Failures.has(tagRegRuntimeIndex)) {\n\t\tFailures.set(tagRegRuntimeIndex, new Set());\n\t}\n\tFailures.get(tagRegRuntimeIndex)!.add(tag);\n\n\tif (!failureTimeout) {\n\t\tfailureTimeout = setTimeout(() => {\n\t\t\tdisplayFailedRegistrations();\n\t\t\tFailures = new Map();\n\t\t\tfailureTimeout = undefined;\n\t\t}, 1000);\n\t}\n};\n\nconst displayFailedRegistrations = () => {\n\tconst allRuntimes = getAllRuntimes();\n\tconst currentRuntimeIndex = getCurrentRuntimeIndex();\n\tconst currentRuntime = allRuntimes[currentRuntimeIndex];\n\n\tlet message = `Multiple UI5 Web Components instances detected.`;\n\n\tif (allRuntimes.length > 1) {\n\t\tmessage = `${message}\\nLoading order (versions before 1.1.0 not listed): ${allRuntimes.map(runtime => `\\n${runtime.description}`).join(\"\")}`;\n\t}\n\n\t[...Failures.keys()].forEach(otherRuntimeIndex => {\n\t\tlet comparison: number;\n\t\tlet otherRuntime;\n\n\t\tif (otherRuntimeIndex === UNKNOWN_RUNTIME) { // version < 1.1.0 defined the tag\n\t\t\tcomparison = 1; // the current runtime is considered newer\n\t\t\totherRuntime = {\n\t\t\t\tdescription: `Older unknown runtime`,\n\t\t\t};\n\t\t} else {\n\t\t\tcomparison = compareRuntimes(currentRuntimeIndex, otherRuntimeIndex);\n\t\t\totherRuntime = allRuntimes[otherRuntimeIndex];\n\t\t}\n\n\t\tlet compareWord;\n\t\tif (comparison > 0) {\n\t\t\tcompareWord = \"an older\";\n\t\t} else if (comparison < 0) {\n\t\t\tcompareWord = \"a newer\";\n\t\t} else {\n\t\t\tcompareWord = \"the same\";\n\t\t}\n\t\tmessage = `${message}\\n\\n\"${currentRuntime.description}\" failed to define ${Failures.get(otherRuntimeIndex)!.size} tag(s) as they were defined by a runtime of ${compareWord} version \"${otherRuntime.description}\": ${([...Failures.get(otherRuntimeIndex)!]).sort().join(\", \")}.`;\n\n\t\tif (comparison > 0) {\n\t\t\tmessage = `${message}\\nWARNING! If your code uses features of the above web components, unavailable in ${otherRuntime.description}, it might not work as expected!`;\n\t\t} else {\n\t\t\tmessage = `${message}\\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`;\n\t\t}\n\t});\n\n\tmessage = `${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/06-scoping.md.`;\n\n\tconsole.warn(message); // eslint-disable-line\n};\n\nexport {\n\tregisterTag,\n\tisTagRegistered,\n\thasRegisteredTags,\n\tgetAllRegisteredTags,\n\trecordTagRegistrationFailure,\n};\n"]}
@@ -4,7 +4,9 @@ type Rules = {
4
4
  };
5
5
  /**
6
6
  * Sets the suffix to be used for custom elements scoping, f.e. pass "demo" to get tags such as "ui5-button-demo".
7
- * Note: by default all tags starting with "ui5-" will be scoped, unless you change this by calling "setCustomElementsScopingRules"
7
+ *
8
+ * **Note:** By default all tags starting with "ui5-" will be scoped, unless you change this by calling "setCustomElementsScopingRules"
9
+ * **Note:** Setting the scoping suffix must be done before importing any components.
8
10
  *
9
11
  * @public
10
12
  * @param suffix The scoping suffix
@@ -1,3 +1,4 @@
1
+ import { hasRegisteredTags } from "./CustomElementsRegistry.js";
1
2
  import VersionInfo from "./generated/VersionInfo.js";
2
3
  let suf;
3
4
  let rulesObj = {
@@ -7,7 +8,9 @@ let rulesObj = {
7
8
  const tagsCache = new Map(); // true/false means the tag should/should not be cached, undefined means not known yet.
8
9
  /**
9
10
  * Sets the suffix to be used for custom elements scoping, f.e. pass "demo" to get tags such as "ui5-button-demo".
10
- * Note: by default all tags starting with "ui5-" will be scoped, unless you change this by calling "setCustomElementsScopingRules"
11
+ *
12
+ * **Note:** By default all tags starting with "ui5-" will be scoped, unless you change this by calling "setCustomElementsScopingRules"
13
+ * **Note:** Setting the scoping suffix must be done before importing any components.
11
14
  *
12
15
  * @public
13
16
  * @param suffix The scoping suffix
@@ -16,6 +19,10 @@ const setCustomElementsScopingSuffix = (suffix) => {
16
19
  if (!suffix.match(/^[a-zA-Z0-9_-]+$/)) {
17
20
  throw new Error("Only alphanumeric characters and dashes allowed for the scoping suffix");
18
21
  }
22
+ if (hasRegisteredTags()) {
23
+ // eslint-disable-next-line no-console
24
+ console.warn("Setting the scoping suffix must be done before importing any components. For proper usage, read the scoping section: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/06-scoping.md.");
25
+ }
19
26
  suf = suffix;
20
27
  };
21
28
  /**
@@ -1 +1 @@
1
- {"version":3,"file":"CustomElementsScopeUtils.js","sourceRoot":"","sources":["../src/CustomElementsScopeUtils.ts"],"names":[],"mappings":"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","sourcesContent":["import VersionInfo from \"./generated/VersionInfo.js\";\n\nlet suf: string;\n\ntype Rules = {\n\tinclude: Array<RegExp>,\n\texclude: Array<RegExp>,\n};\n\nlet rulesObj: Rules = {\n\tinclude: [/^ui5-/],\n\texclude: [],\n};\n\nconst tagsCache = new Map<string, boolean>(); // true/false means the tag should/should not be cached, undefined means not known yet.\n\n/**\n * Sets the suffix to be used for custom elements scoping, f.e. pass \"demo\" to get tags such as \"ui5-button-demo\".\n * Note: by default all tags starting with \"ui5-\" will be scoped, unless you change this by calling \"setCustomElementsScopingRules\"\n *\n * @public\n * @param suffix The scoping suffix\n */\nconst setCustomElementsScopingSuffix = (suffix: string) => {\n\tif (!suffix.match(/^[a-zA-Z0-9_-]+$/)) {\n\t\tthrow new Error(\"Only alphanumeric characters and dashes allowed for the scoping suffix\");\n\t}\n\n\tsuf = suffix;\n};\n\n/**\n * Returns the currently set scoping suffix, or undefined if not set.\n *\n * @public\n * @returns {String|undefined}\n */\nconst getCustomElementsScopingSuffix = () => {\n\treturn suf;\n};\n\n/**\n * Sets the rules, governing which custom element tags to scope and which not, f.e.\n * setCustomElementsScopingRules({include: [/^ui5-/]}, exclude: [/^ui5-mylib-/, /^ui5-carousel$/]);\n * will scope all elements starting with \"ui5-\" but not the ones starting with \"ui5-mylib-\" and not \"ui5-carousel\".\n *\n * @public\n * @param rules Object with \"include\" and \"exclude\" properties, both arrays of regular expressions. Note that \"include\"\n * rules are applied first and \"exclude\" rules second.\n */\nconst setCustomElementsScopingRules = (rules: Rules) => {\n\tif (!rules || !rules.include) {\n\t\tthrow new Error(`\"rules\" must be an object with at least an \"include\" property`);\n\t}\n\n\tif (!Array.isArray(rules.include) || rules.include.some(rule => !(rule instanceof RegExp))) {\n\t\tthrow new Error(`\"rules.include\" must be an array of regular expressions`);\n\t}\n\n\tif (rules.exclude && (!Array.isArray(rules.exclude) || rules.exclude.some(rule => !(rule instanceof RegExp)))) {\n\t\tthrow new Error(`\"rules.exclude\" must be an array of regular expressions`);\n\t}\n\n\trules.exclude = rules.exclude || [];\n\trulesObj = rules;\n\ttagsCache.clear(); // reset the cache upon setting new rules\n};\n\n/**\n * Returns the rules, governing which custom element tags to scope and which not. By default, all elements\n * starting with \"ui5-\" are scoped. The default rules are: {include: [/^ui5-/]}.\n *\n * @public\n * @returns {Object}\n */\nconst getCustomElementsScopingRules = () => {\n\treturn rulesObj;\n};\n\n/**\n * Determines whether custom elements with the given tag should be scoped or not.\n * The tag is first matched against the \"include\" rules and then against the \"exclude\" rules and the\n * result is cached until new rules are set.\n *\n * @public\n * @param tag\n */\nconst shouldScopeCustomElement = (tag: string) => {\n\tif (!tagsCache.has(tag)) {\n\t\tconst result = rulesObj.include.some(rule => tag.match(rule)) && !rulesObj.exclude.some(rule => tag.match(rule));\n\t\ttagsCache.set(tag, result);\n\t}\n\n\treturn tagsCache.get(tag);\n};\n\n/**\n * Returns the currently set scoping suffix, if any and if the tag should be scoped, or undefined otherwise.\n *\n * @public\n * @param tag\n * @returns {String}\n */\nconst getEffectiveScopingSuffixForTag = (tag: string) => {\n\tif (shouldScopeCustomElement(tag)) {\n\t\treturn getCustomElementsScopingSuffix();\n\t}\n};\n\n/**\n * @public\n * Used for getting a scoped name for a CSS variable using the same transformation used in the build\n * @name the name of the css variable as written in the code\n * @returns a variable name with the current version inserted as available at runtime\n */\nconst getScopedVarName = (name: string) => {\n\tconst versionStr = `v${VersionInfo.version.replaceAll(\".\", \"-\")}`;\n\tconst expr = /(--_?ui5)([^,:)\\s]+)/g;\n\treturn name.replaceAll(expr, `$1-${versionStr}$2`);\n};\n\nexport {\n\tsetCustomElementsScopingSuffix,\n\tgetCustomElementsScopingSuffix,\n\tsetCustomElementsScopingRules,\n\tgetCustomElementsScopingRules,\n\tshouldScopeCustomElement,\n\tgetEffectiveScopingSuffixForTag,\n\tgetScopedVarName,\n};\n"]}
1
+ {"version":3,"file":"CustomElementsScopeUtils.js","sourceRoot":"","sources":["../src/CustomElementsScopeUtils.ts"],"names":[],"mappings":"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","sourcesContent":["import { hasRegisteredTags } from \"./CustomElementsRegistry.js\";\nimport VersionInfo from \"./generated/VersionInfo.js\";\n\nlet suf: string;\n\ntype Rules = {\n\tinclude: Array<RegExp>,\n\texclude: Array<RegExp>,\n};\n\nlet rulesObj: Rules = {\n\tinclude: [/^ui5-/],\n\texclude: [],\n};\n\nconst tagsCache = new Map<string, boolean>(); // true/false means the tag should/should not be cached, undefined means not known yet.\n\n/**\n * Sets the suffix to be used for custom elements scoping, f.e. pass \"demo\" to get tags such as \"ui5-button-demo\".\n *\n * **Note:** By default all tags starting with \"ui5-\" will be scoped, unless you change this by calling \"setCustomElementsScopingRules\"\n * **Note:** Setting the scoping suffix must be done before importing any components.\n *\n * @public\n * @param suffix The scoping suffix\n */\nconst setCustomElementsScopingSuffix = (suffix: string) => {\n\tif (!suffix.match(/^[a-zA-Z0-9_-]+$/)) {\n\t\tthrow new Error(\"Only alphanumeric characters and dashes allowed for the scoping suffix\");\n\t}\n\n\tif (hasRegisteredTags()) {\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.warn(\"Setting the scoping suffix must be done before importing any components. For proper usage, read the scoping section: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/06-scoping.md.\");\n\t}\n\n\tsuf = suffix;\n};\n\n/**\n * Returns the currently set scoping suffix, or undefined if not set.\n *\n * @public\n * @returns {String|undefined}\n */\nconst getCustomElementsScopingSuffix = () => {\n\treturn suf;\n};\n\n/**\n * Sets the rules, governing which custom element tags to scope and which not, f.e.\n * setCustomElementsScopingRules({include: [/^ui5-/]}, exclude: [/^ui5-mylib-/, /^ui5-carousel$/]);\n * will scope all elements starting with \"ui5-\" but not the ones starting with \"ui5-mylib-\" and not \"ui5-carousel\".\n *\n * @public\n * @param rules Object with \"include\" and \"exclude\" properties, both arrays of regular expressions. Note that \"include\"\n * rules are applied first and \"exclude\" rules second.\n */\nconst setCustomElementsScopingRules = (rules: Rules) => {\n\tif (!rules || !rules.include) {\n\t\tthrow new Error(`\"rules\" must be an object with at least an \"include\" property`);\n\t}\n\n\tif (!Array.isArray(rules.include) || rules.include.some(rule => !(rule instanceof RegExp))) {\n\t\tthrow new Error(`\"rules.include\" must be an array of regular expressions`);\n\t}\n\n\tif (rules.exclude && (!Array.isArray(rules.exclude) || rules.exclude.some(rule => !(rule instanceof RegExp)))) {\n\t\tthrow new Error(`\"rules.exclude\" must be an array of regular expressions`);\n\t}\n\n\trules.exclude = rules.exclude || [];\n\trulesObj = rules;\n\ttagsCache.clear(); // reset the cache upon setting new rules\n};\n\n/**\n * Returns the rules, governing which custom element tags to scope and which not. By default, all elements\n * starting with \"ui5-\" are scoped. The default rules are: {include: [/^ui5-/]}.\n *\n * @public\n * @returns {Object}\n */\nconst getCustomElementsScopingRules = () => {\n\treturn rulesObj;\n};\n\n/**\n * Determines whether custom elements with the given tag should be scoped or not.\n * The tag is first matched against the \"include\" rules and then against the \"exclude\" rules and the\n * result is cached until new rules are set.\n *\n * @public\n * @param tag\n */\nconst shouldScopeCustomElement = (tag: string) => {\n\tif (!tagsCache.has(tag)) {\n\t\tconst result = rulesObj.include.some(rule => tag.match(rule)) && !rulesObj.exclude.some(rule => tag.match(rule));\n\t\ttagsCache.set(tag, result);\n\t}\n\n\treturn tagsCache.get(tag);\n};\n\n/**\n * Returns the currently set scoping suffix, if any and if the tag should be scoped, or undefined otherwise.\n *\n * @public\n * @param tag\n * @returns {String}\n */\nconst getEffectiveScopingSuffixForTag = (tag: string) => {\n\tif (shouldScopeCustomElement(tag)) {\n\t\treturn getCustomElementsScopingSuffix();\n\t}\n};\n\n/**\n * @public\n * Used for getting a scoped name for a CSS variable using the same transformation used in the build\n * @name the name of the css variable as written in the code\n * @returns a variable name with the current version inserted as available at runtime\n */\nconst getScopedVarName = (name: string) => {\n\tconst versionStr = `v${VersionInfo.version.replaceAll(\".\", \"-\")}`;\n\tconst expr = /(--_?ui5)([^,:)\\s]+)/g;\n\treturn name.replaceAll(expr, `$1-${versionStr}$2`);\n};\n\nexport {\n\tsetCustomElementsScopingSuffix,\n\tgetCustomElementsScopingSuffix,\n\tsetCustomElementsScopingRules,\n\tgetCustomElementsScopingRules,\n\tshouldScopeCustomElement,\n\tgetEffectiveScopingSuffixForTag,\n\tgetScopedVarName,\n};\n"]}
@@ -1210,6 +1210,58 @@
1210
1210
  }
1211
1211
  ]
1212
1212
  },
1213
+ {
1214
+ "kind": "javascript-module",
1215
+ "path": "dist/types/SortOrder.js",
1216
+ "declarations": [
1217
+ {
1218
+ "kind": "enum",
1219
+ "name": "SortOrder",
1220
+ "description": "Defines the sort order.",
1221
+ "_ui5privacy": "public",
1222
+ "_ui5since": "2.8.0",
1223
+ "members": [
1224
+ {
1225
+ "kind": "field",
1226
+ "static": true,
1227
+ "privacy": "public",
1228
+ "description": "Sorting is not applied.",
1229
+ "default": "None",
1230
+ "name": "None",
1231
+ "readonly": true
1232
+ },
1233
+ {
1234
+ "kind": "field",
1235
+ "static": true,
1236
+ "privacy": "public",
1237
+ "description": "Sorting is applied in ascending order.",
1238
+ "default": "Ascending",
1239
+ "name": "Ascending",
1240
+ "readonly": true
1241
+ },
1242
+ {
1243
+ "kind": "field",
1244
+ "static": true,
1245
+ "privacy": "public",
1246
+ "description": "Sorting is applied in descending order.",
1247
+ "default": "Descending",
1248
+ "name": "Descending",
1249
+ "readonly": true
1250
+ }
1251
+ ]
1252
+ }
1253
+ ],
1254
+ "exports": [
1255
+ {
1256
+ "kind": "js",
1257
+ "name": "default",
1258
+ "declaration": {
1259
+ "name": "SortOrder",
1260
+ "module": "dist/types/SortOrder.js"
1261
+ }
1262
+ }
1263
+ ]
1264
+ },
1213
1265
  {
1214
1266
  "kind": "javascript-module",
1215
1267
  "path": "dist/types/ValueState.js",
@@ -1011,6 +1011,21 @@
1011
1011
  }
1012
1012
  ]
1013
1013
  },
1014
+ {
1015
+ "kind": "javascript-module",
1016
+ "path": "dist/types/SortOrder.js",
1017
+ "declarations": [],
1018
+ "exports": [
1019
+ {
1020
+ "kind": "js",
1021
+ "name": "default",
1022
+ "declaration": {
1023
+ "name": "SortOrder",
1024
+ "module": "dist/types/SortOrder.js"
1025
+ }
1026
+ }
1027
+ ]
1028
+ },
1014
1029
  {
1015
1030
  "kind": "javascript-module",
1016
1031
  "path": "dist/types/ValueState.js",
@@ -1,11 +1,11 @@
1
1
  const VersionInfo = {
2
- version: "2.8.0-rc.0",
2
+ version: "2.8.0-rc.2",
3
3
  major: 2,
4
4
  minor: 8,
5
5
  patch: 0,
6
- suffix: "-rc.0",
6
+ suffix: "-rc.2",
7
7
  isNext: false,
8
- buildTime: 1738829321,
8
+ buildTime: 1740038928,
9
9
  };
10
10
  export default VersionInfo;
11
11
  //# sourceMappingURL=VersionInfo.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"VersionInfo.js","sourceRoot":"","sources":["../../src/generated/VersionInfo.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,GAAG;IACnB,OAAO,EAAE,YAAY;IACrB,KAAK,EAAE,CAAC;IACR,KAAK,EAAE,CAAC;IACR,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,OAAO;IACf,MAAM,EAAE,KAAK;IACb,SAAS,EAAE,UAAU;CACrB,CAAC;AACF,eAAe,WAAW,CAAC","sourcesContent":["const VersionInfo = {\n\tversion: \"2.8.0-rc.0\",\n\tmajor: 2,\n\tminor: 8,\n\tpatch: 0,\n\tsuffix: \"-rc.0\",\n\tisNext: false,\n\tbuildTime: 1738829321,\n};\nexport default VersionInfo;"]}
1
+ {"version":3,"file":"VersionInfo.js","sourceRoot":"","sources":["../../src/generated/VersionInfo.ts"],"names":[],"mappings":"AAAA,MAAM,WAAW,GAAG;IACnB,OAAO,EAAE,YAAY;IACrB,KAAK,EAAE,CAAC;IACR,KAAK,EAAE,CAAC;IACR,KAAK,EAAE,CAAC;IACR,MAAM,EAAE,OAAO;IACf,MAAM,EAAE,KAAK;IACb,SAAS,EAAE,UAAU;CACrB,CAAC;AACF,eAAe,WAAW,CAAC","sourcesContent":["const VersionInfo = {\n\tversion: \"2.8.0-rc.2\",\n\tmajor: 2,\n\tminor: 8,\n\tpatch: 0,\n\tsuffix: \"-rc.2\",\n\tisNext: false,\n\tbuildTime: 1740038928,\n};\nexport default VersionInfo;"]}
package/dist/jsx-utils.js CHANGED
@@ -7,10 +7,19 @@ function convertEventScoping(type, props, key) {
7
7
  // Exteract the kebab-case event: onChange - change, onSelectionChange - selection-change, etc.
8
8
  const pascalEvent = prop.slice("on".length);
9
9
  const kebabCaseEvent = pascalToKebabCase(pascalEvent);
10
- // Attach for the "ui5-" preffixed event
10
+ // Also support camelCase events
11
+ const camelCaseEvent = pascalEvent.charAt(0).toLowerCase() + pascalEvent.slice(1);
12
+ let origEvent;
11
13
  if (kebabCaseEvent in events) {
14
+ origEvent = kebabCaseEvent;
15
+ }
16
+ else if (camelCaseEvent in events) {
17
+ origEvent = camelCaseEvent;
18
+ }
19
+ // Attach for the "ui5-" preffixed event
20
+ if (origEvent) {
12
21
  if ((prop !== "onClick")) {
13
- props[`onui5-${kebabCaseEvent}`] = props[prop];
22
+ props[`onui5-${origEvent}`] = props[prop];
14
23
  // TODO keep native events for now, find a way to mark them for runtime
15
24
  delete props[prop];
16
25
  }
@@ -1 +1 @@
1
- {"version":3,"file":"jsx-utils.js","sourceRoot":"","sources":["../src/jsx-utils.ts"],"names":[],"mappings":"AACA,OAAO,QAAQ,MAAM,oBAAoB,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D,SAAS,mBAAmB,CAAC,IAAuB,EAAE,KAA0B,EAAE,GAAW;IAC5F,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,SAAS,EAAE,CAAC;IAE9C,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;QACjC,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;YAC3B,+FAA+F;YAC/F,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC5C,MAAM,cAAc,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC;YAEtD,wCAAwC;YACxC,IAAI,cAAc,IAAI,MAAM,EAAE,CAAC;gBAC9B,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,EAAE,CAAC;oBAC1B,KAAK,CAAC,SAAS,cAAc,EAAE,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;oBAC/C,uEAAuE;oBACvE,OAAO,KAAK,CAAC,IAAI,CAAC,CAAC;gBACpB,CAAC;YACF,CAAC;QACF,CAAC;IACF,CAAC,CAAC,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,IAAgC;IACjE,OAAO,OAAO,IAAI,KAAK,UAAU,IAAI,aAAa,IAAI,IAAI,CAAC;AAC5D,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,IAAgC,EAAE,KAA0B,EAAE,GAAW;IACnG,IAAI,GAAW,CAAC;IAChB,IAAI,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC;QAC7B,GAAG,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,CAAC;QAClC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IACvC,CAAC;SAAM,CAAC;QACP,GAAG,GAAG,IAAI,CAAC;IACZ,CAAC;IAED,iCAAiC;IACjC,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;QACrC,KAAK,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACrC,CAAC;IAED,OAAO,GAAG,CAAC;AACZ,CAAC","sourcesContent":["import type UI5Element from \"./UI5Element.js\";\nimport hash2str from \"./util/hash2str.js\";\nimport { pascalToKebabCase } from \"./util/StringHelper.js\";\n\nfunction convertEventScoping(type: typeof UI5Element, props: Record<string, any>, key: string) {\n\tconst events = type.getMetadata().getEvents();\n\n\tObject.keys(props).forEach(prop => {\n\t\tif (prop.startsWith(\"on\")) {\n\t\t\t// Exteract the kebab-case event: onChange - change, onSelectionChange - selection-change, etc.\n\t\t\tconst pascalEvent = prop.slice(\"on\".length);\n\t\t\tconst kebabCaseEvent = pascalToKebabCase(pascalEvent);\n\n\t\t\t// Attach for the \"ui5-\" preffixed event\n\t\t\tif (kebabCaseEvent in events) {\n\t\t\t\tif ((prop !== \"onClick\")) {\n\t\t\t\t\tprops[`onui5-${kebabCaseEvent}`] = props[prop];\n\t\t\t\t\t// TODO keep native events for now, find a way to mark them for runtime\n\t\t\t\t\tdelete props[prop];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nexport function isUI5ElementClass(type: string | typeof UI5Element): type is typeof UI5Element {\n\treturn typeof type === \"function\" && \"getMetadata\" in type;\n}\n\nexport function preprocess(type: string | typeof UI5Element, props: Record<string, any>, key: string) {\n\tlet tag: string;\n\tif (isUI5ElementClass(type)) {\n\t\ttag = type.getMetadata().getTag();\n\t\tconvertEventScoping(type, props, key);\n\t} else {\n\t\ttag = type;\n\t}\n\n\t// convert class object to string\n\tif (typeof props.class === \"object\") {\n\t\tprops.class = hash2str(props.class);\n\t}\n\n\treturn tag;\n}\n"]}
1
+ {"version":3,"file":"jsx-utils.js","sourceRoot":"","sources":["../src/jsx-utils.ts"],"names":[],"mappings":"AACA,OAAO,QAAQ,MAAM,oBAAoB,CAAC;AAC1C,OAAO,EAAE,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AAE3D,SAAS,mBAAmB,CAAC,IAAuB,EAAE,KAA0B,EAAE,GAAW;IAC5F,MAAM,MAAM,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,SAAS,EAAE,CAAC;IAE9C,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,EAAE;QACjC,IAAI,IAAI,CAAC,UAAU,CAAC,IAAI,CAAC,EAAE,CAAC;YAC3B,+FAA+F;YAC/F,MAAM,WAAW,GAAG,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC;YAC5C,MAAM,cAAc,GAAG,iBAAiB,CAAC,WAAW,CAAC,CAAC;YACtD,gCAAgC;YAChC,MAAM,cAAc,GAAG,WAAW,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,WAAW,EAAE,GAAG,WAAW,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC;YAElF,IAAI,SAA6B,CAAC;YAClC,IAAI,cAAc,IAAI,MAAM,EAAE,CAAC;gBAC9B,SAAS,GAAG,cAAc,CAAC;YAC5B,CAAC;iBAAM,IAAI,cAAc,IAAI,MAAM,EAAE,CAAC;gBACrC,SAAS,GAAG,cAAc,CAAC;YAC5B,CAAC;YACD,wCAAwC;YACxC,IAAI,SAAS,EAAE,CAAC;gBACf,IAAI,CAAC,IAAI,KAAK,SAAS,CAAC,EAAE,CAAC;oBAC1B,KAAK,CAAC,SAAS,SAAS,EAAE,CAAC,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC;oBAC1C,uEAAuE;oBACvE,OAAO,KAAK,CAAC,IAAI,CAAC,CAAC;gBACpB,CAAC;YACF,CAAC;QACF,CAAC;IACF,CAAC,CAAC,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,iBAAiB,CAAC,IAAgC;IACjE,OAAO,OAAO,IAAI,KAAK,UAAU,IAAI,aAAa,IAAI,IAAI,CAAC;AAC5D,CAAC;AAED,MAAM,UAAU,UAAU,CAAC,IAAgC,EAAE,KAA0B,EAAE,GAAW;IACnG,IAAI,GAAW,CAAC;IAChB,IAAI,iBAAiB,CAAC,IAAI,CAAC,EAAE,CAAC;QAC7B,GAAG,GAAG,IAAI,CAAC,WAAW,EAAE,CAAC,MAAM,EAAE,CAAC;QAClC,mBAAmB,CAAC,IAAI,EAAE,KAAK,EAAE,GAAG,CAAC,CAAC;IACvC,CAAC;SAAM,CAAC;QACP,GAAG,GAAG,IAAI,CAAC;IACZ,CAAC;IAED,iCAAiC;IACjC,IAAI,OAAO,KAAK,CAAC,KAAK,KAAK,QAAQ,EAAE,CAAC;QACrC,KAAK,CAAC,KAAK,GAAG,QAAQ,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC;IACrC,CAAC;IAED,OAAO,GAAG,CAAC;AACZ,CAAC","sourcesContent":["import type UI5Element from \"./UI5Element.js\";\nimport hash2str from \"./util/hash2str.js\";\nimport { pascalToKebabCase } from \"./util/StringHelper.js\";\n\nfunction convertEventScoping(type: typeof UI5Element, props: Record<string, any>, key: string) {\n\tconst events = type.getMetadata().getEvents();\n\n\tObject.keys(props).forEach(prop => {\n\t\tif (prop.startsWith(\"on\")) {\n\t\t\t// Exteract the kebab-case event: onChange - change, onSelectionChange - selection-change, etc.\n\t\t\tconst pascalEvent = prop.slice(\"on\".length);\n\t\t\tconst kebabCaseEvent = pascalToKebabCase(pascalEvent);\n\t\t\t// Also support camelCase events\n\t\t\tconst camelCaseEvent = pascalEvent.charAt(0).toLowerCase() + pascalEvent.slice(1);\n\n\t\t\tlet origEvent: string | undefined;\n\t\t\tif (kebabCaseEvent in events) {\n\t\t\t\torigEvent = kebabCaseEvent;\n\t\t\t} else if (camelCaseEvent in events) {\n\t\t\t\torigEvent = camelCaseEvent;\n\t\t\t}\n\t\t\t// Attach for the \"ui5-\" preffixed event\n\t\t\tif (origEvent) {\n\t\t\t\tif ((prop !== \"onClick\")) {\n\t\t\t\t\tprops[`onui5-${origEvent}`] = props[prop];\n\t\t\t\t\t// TODO keep native events for now, find a way to mark them for runtime\n\t\t\t\t\tdelete props[prop];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nexport function isUI5ElementClass(type: string | typeof UI5Element): type is typeof UI5Element {\n\treturn typeof type === \"function\" && \"getMetadata\" in type;\n}\n\nexport function preprocess(type: string | typeof UI5Element, props: Record<string, any>, key: string) {\n\tlet tag: string;\n\tif (isUI5ElementClass(type)) {\n\t\ttag = type.getMetadata().getTag();\n\t\tconvertEventScoping(type, props, key);\n\t} else {\n\t\ttag = type;\n\t}\n\n\t// convert class object to string\n\tif (typeof props.class === \"object\") {\n\t\tprops.class = hash2str(props.class);\n\t}\n\n\treturn tag;\n}\n"]}
@@ -1,10 +1,10 @@
1
- "use strict";import p from"./getSharedResource.js";import{getCurrentRuntimeIndex as u,compareRuntimes as f,getAllRuntimes as b}from"./Runtimes.js";const m=p("Tags",new Map),d=new Set;let s=new Map,c;const g=-1,h=e=>{d.add(e),m.set(e,u())},w=e=>d.has(e),$=()=>[...d.values()],y=e=>{let n=m.get(e);n===void 0&&(n=g),s.has(n)||s.set(n,new Set),s.get(n).add(e),c||(c=setTimeout(()=>{R(),s=new Map,c=void 0},1e3))},R=()=>{const e=b(),n=u(),l=e[n];let t="Multiple UI5 Web Components instances detected.";e.length>1&&(t=`${t}
1
+ "use strict";import p from"./getSharedResource.js";import{getCurrentRuntimeIndex as u,compareRuntimes as f,getAllRuntimes as b}from"./Runtimes.js";const g=p("Tags",new Map),d=new Set;let s=new Map,c;const m=-1,h=e=>{d.add(e),g.set(e,u())},w=e=>d.has(e),R=()=>d.size>0,T=()=>[...d.values()],$=e=>{let n=g.get(e);n===void 0&&(n=m),s.has(n)||s.set(n,new Set),s.get(n).add(e),c||(c=setTimeout(()=>{y(),s=new Map,c=void 0},1e3))},y=()=>{const e=b(),n=u(),l=e[n];let t="Multiple UI5 Web Components instances detected.";e.length>1&&(t=`${t}
2
2
  Loading order (versions before 1.1.0 not listed): ${e.map(i=>`
3
- ${i.description}`).join("")}`),[...s.keys()].forEach(i=>{let o,r;i===g?(o=1,r={description:"Older unknown runtime"}):(o=f(n,i),r=e[i]);let a;o>0?a="an older":o<0?a="a newer":a="the same",t=`${t}
3
+ ${i.description}`).join("")}`),[...s.keys()].forEach(i=>{let o,r;i===m?(o=1,r={description:"Older unknown runtime"}):(o=f(n,i),r=e[i]);let a;o>0?a="an older":o<0?a="a newer":a="the same",t=`${t}
4
4
 
5
5
  "${l.description}" failed to define ${s.get(i).size} tag(s) as they were defined by a runtime of ${a} version "${r.description}": ${[...s.get(i)].sort().join(", ")}.`,o>0?t=`${t}
6
6
  WARNING! If your code uses features of the above web components, unavailable in ${r.description}, it might not work as expected!`:t=`${t}
7
7
  Since the above web components were defined by the same or newer version runtime, they should be compatible with your code.`}),t=`${t}
8
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/06-scoping.md.`,console.warn(t)};export{h as registerTag,w as isTagRegistered,$ as getAllRegisteredTags,y as recordTagRegistrationFailure};
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/06-scoping.md.`,console.warn(t)};export{h as registerTag,w as isTagRegistered,R as hasRegisteredTags,T as getAllRegisteredTags,$ as recordTagRegistrationFailure};
10
10
  //# sourceMappingURL=CustomElementsRegistry.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/CustomElementsRegistry.ts"],
4
- "sourcesContent": ["import getSharedResource from \"./getSharedResource.js\";\nimport { getCurrentRuntimeIndex, compareRuntimes, getAllRuntimes } from \"./Runtimes.js\";\nimport type { Timeout } from \"./types.js\";\n\nconst Tags = getSharedResource<Map<string, number>>(\"Tags\", new Map());\nconst Definitions = new Set<string>();\n\nlet Failures = new Map<number, Set<string>>();\nlet failureTimeout: Timeout | undefined;\n\nconst UNKNOWN_RUNTIME = -1;\n\nconst registerTag = (tag: string) => {\n\tDefinitions.add(tag);\n\tTags.set(tag, getCurrentRuntimeIndex());\n};\n\nconst isTagRegistered = (tag: string) => {\n\treturn Definitions.has(tag);\n};\n\nconst getAllRegisteredTags = () => {\n\treturn [...Definitions.values()];\n};\n\nconst recordTagRegistrationFailure = (tag: string) => {\n\tlet tagRegRuntimeIndex = Tags.get(tag);\n\tif (tagRegRuntimeIndex === undefined) {\n\t\ttagRegRuntimeIndex = 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\n\t}\n\n\tif (!Failures.has(tagRegRuntimeIndex)) {\n\t\tFailures.set(tagRegRuntimeIndex, new Set());\n\t}\n\tFailures.get(tagRegRuntimeIndex)!.add(tag);\n\n\tif (!failureTimeout) {\n\t\tfailureTimeout = setTimeout(() => {\n\t\t\tdisplayFailedRegistrations();\n\t\t\tFailures = new Map();\n\t\t\tfailureTimeout = undefined;\n\t\t}, 1000);\n\t}\n};\n\nconst displayFailedRegistrations = () => {\n\tconst allRuntimes = getAllRuntimes();\n\tconst currentRuntimeIndex = getCurrentRuntimeIndex();\n\tconst currentRuntime = allRuntimes[currentRuntimeIndex];\n\n\tlet message = `Multiple UI5 Web Components instances detected.`;\n\n\tif (allRuntimes.length > 1) {\n\t\tmessage = `${message}\\nLoading order (versions before 1.1.0 not listed): ${allRuntimes.map(runtime => `\\n${runtime.description}`).join(\"\")}`;\n\t}\n\n\t[...Failures.keys()].forEach(otherRuntimeIndex => {\n\t\tlet comparison: number;\n\t\tlet otherRuntime;\n\n\t\tif (otherRuntimeIndex === UNKNOWN_RUNTIME) { // version < 1.1.0 defined the tag\n\t\t\tcomparison = 1; // the current runtime is considered newer\n\t\t\totherRuntime = {\n\t\t\t\tdescription: `Older unknown runtime`,\n\t\t\t};\n\t\t} else {\n\t\t\tcomparison = compareRuntimes(currentRuntimeIndex, otherRuntimeIndex);\n\t\t\totherRuntime = allRuntimes[otherRuntimeIndex];\n\t\t}\n\n\t\tlet compareWord;\n\t\tif (comparison > 0) {\n\t\t\tcompareWord = \"an older\";\n\t\t} else if (comparison < 0) {\n\t\t\tcompareWord = \"a newer\";\n\t\t} else {\n\t\t\tcompareWord = \"the same\";\n\t\t}\n\t\tmessage = `${message}\\n\\n\"${currentRuntime.description}\" failed to define ${Failures.get(otherRuntimeIndex)!.size} tag(s) as they were defined by a runtime of ${compareWord} version \"${otherRuntime.description}\": ${([...Failures.get(otherRuntimeIndex)!]).sort().join(\", \")}.`;\n\n\t\tif (comparison > 0) {\n\t\t\tmessage = `${message}\\nWARNING! If your code uses features of the above web components, unavailable in ${otherRuntime.description}, it might not work as expected!`;\n\t\t} else {\n\t\t\tmessage = `${message}\\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`;\n\t\t}\n\t});\n\n\tmessage = `${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/06-scoping.md.`;\n\n\tconsole.warn(message); // eslint-disable-line\n};\n\nexport {\n\tregisterTag,\n\tisTagRegistered,\n\tgetAllRegisteredTags,\n\trecordTagRegistrationFailure,\n};\n"],
5
- "mappings": "aAAA,OAAOA,MAAuB,yBAC9B,OAAS,0BAAAC,EAAwB,mBAAAC,EAAiB,kBAAAC,MAAsB,gBAGxE,MAAMC,EAAOJ,EAAuC,OAAQ,IAAI,GAAK,EAC/DK,EAAc,IAAI,IAExB,IAAIC,EAAW,IAAI,IACfC,EAEJ,MAAMC,EAAkB,GAElBC,EAAeC,GAAgB,CACpCL,EAAY,IAAIK,CAAG,EACnBN,EAAK,IAAIM,EAAKT,EAAuB,CAAC,CACvC,EAEMU,EAAmBD,GACjBL,EAAY,IAAIK,CAAG,EAGrBE,EAAuB,IACrB,CAAC,GAAGP,EAAY,OAAO,CAAC,EAG1BQ,EAAgCH,GAAgB,CACrD,IAAII,EAAqBV,EAAK,IAAIM,CAAG,EACjCI,IAAuB,SAC1BA,EAAqBN,GAGjBF,EAAS,IAAIQ,CAAkB,GACnCR,EAAS,IAAIQ,EAAoB,IAAI,GAAK,EAE3CR,EAAS,IAAIQ,CAAkB,EAAG,IAAIJ,CAAG,EAEpCH,IACJA,EAAiB,WAAW,IAAM,CACjCQ,EAA2B,EAC3BT,EAAW,IAAI,IACfC,EAAiB,MAClB,EAAG,GAAI,EAET,EAEMQ,EAA6B,IAAM,CACxC,MAAMC,EAAcb,EAAe,EAC7Bc,EAAsBhB,EAAuB,EAC7CiB,EAAiBF,EAAYC,CAAmB,EAEtD,IAAIE,EAAU,kDAEVH,EAAY,OAAS,IACxBG,EAAU,GAAGA,CAAO;AAAA,oDAAuDH,EAAY,IAAII,GAAW;AAAA,EAAKA,EAAQ,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,IAG3I,CAAC,GAAGd,EAAS,KAAK,CAAC,EAAE,QAAQe,GAAqB,CACjD,IAAIC,EACAC,EAEAF,IAAsBb,GACzBc,EAAa,EACbC,EAAe,CACd,YAAa,uBACd,IAEAD,EAAapB,EAAgBe,EAAqBI,CAAiB,EACnEE,EAAeP,EAAYK,CAAiB,GAG7C,IAAIG,EACAF,EAAa,EAChBE,EAAc,WACJF,EAAa,EACvBE,EAAc,UAEdA,EAAc,WAEfL,EAAU,GAAGA,CAAO;AAAA;AAAA,GAAQD,EAAe,WAAW,sBAAsBZ,EAAS,IAAIe,CAAiB,EAAG,IAAI,gDAAgDG,CAAW,aAAaD,EAAa,WAAW,MAAO,CAAC,GAAGjB,EAAS,IAAIe,CAAiB,CAAE,EAAG,KAAK,EAAE,KAAK,IAAI,CAAC,IAE5QC,EAAa,EAChBH,EAAU,GAAGA,CAAO;AAAA,kFAAqFI,EAAa,WAAW,mCAEjIJ,EAAU,GAAGA,CAAO;AAAA,4HAEtB,CAAC,EAEDA,EAAU,GAAGA,CAAO;AAAA;AAAA,gNAEpB,QAAQ,KAAKA,CAAO,CACrB,EAEA,OACCV,KAAA,YACAE,KAAA,gBACAC,KAAA,qBACAC,KAAA",
6
- "names": ["getSharedResource", "getCurrentRuntimeIndex", "compareRuntimes", "getAllRuntimes", "Tags", "Definitions", "Failures", "failureTimeout", "UNKNOWN_RUNTIME", "registerTag", "tag", "isTagRegistered", "getAllRegisteredTags", "recordTagRegistrationFailure", "tagRegRuntimeIndex", "displayFailedRegistrations", "allRuntimes", "currentRuntimeIndex", "currentRuntime", "message", "runtime", "otherRuntimeIndex", "comparison", "otherRuntime", "compareWord"]
4
+ "sourcesContent": ["import getSharedResource from \"./getSharedResource.js\";\nimport { getCurrentRuntimeIndex, compareRuntimes, getAllRuntimes } from \"./Runtimes.js\";\nimport type { Timeout } from \"./types.js\";\n\nconst Tags = getSharedResource<Map<string, number>>(\"Tags\", new Map());\nconst Definitions = new Set<string>();\n\nlet Failures = new Map<number, Set<string>>();\nlet failureTimeout: Timeout | undefined;\n\nconst UNKNOWN_RUNTIME = -1;\n\nconst registerTag = (tag: string) => {\n\tDefinitions.add(tag);\n\tTags.set(tag, getCurrentRuntimeIndex());\n};\n\nconst isTagRegistered = (tag: string) => {\n\treturn Definitions.has(tag);\n};\n\nconst hasRegisteredTags = () => {\n\treturn Definitions.size > 0;\n};\n\nconst getAllRegisteredTags = () => {\n\treturn [...Definitions.values()];\n};\n\nconst recordTagRegistrationFailure = (tag: string) => {\n\tlet tagRegRuntimeIndex = Tags.get(tag);\n\tif (tagRegRuntimeIndex === undefined) {\n\t\ttagRegRuntimeIndex = 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\n\t}\n\n\tif (!Failures.has(tagRegRuntimeIndex)) {\n\t\tFailures.set(tagRegRuntimeIndex, new Set());\n\t}\n\tFailures.get(tagRegRuntimeIndex)!.add(tag);\n\n\tif (!failureTimeout) {\n\t\tfailureTimeout = setTimeout(() => {\n\t\t\tdisplayFailedRegistrations();\n\t\t\tFailures = new Map();\n\t\t\tfailureTimeout = undefined;\n\t\t}, 1000);\n\t}\n};\n\nconst displayFailedRegistrations = () => {\n\tconst allRuntimes = getAllRuntimes();\n\tconst currentRuntimeIndex = getCurrentRuntimeIndex();\n\tconst currentRuntime = allRuntimes[currentRuntimeIndex];\n\n\tlet message = `Multiple UI5 Web Components instances detected.`;\n\n\tif (allRuntimes.length > 1) {\n\t\tmessage = `${message}\\nLoading order (versions before 1.1.0 not listed): ${allRuntimes.map(runtime => `\\n${runtime.description}`).join(\"\")}`;\n\t}\n\n\t[...Failures.keys()].forEach(otherRuntimeIndex => {\n\t\tlet comparison: number;\n\t\tlet otherRuntime;\n\n\t\tif (otherRuntimeIndex === UNKNOWN_RUNTIME) { // version < 1.1.0 defined the tag\n\t\t\tcomparison = 1; // the current runtime is considered newer\n\t\t\totherRuntime = {\n\t\t\t\tdescription: `Older unknown runtime`,\n\t\t\t};\n\t\t} else {\n\t\t\tcomparison = compareRuntimes(currentRuntimeIndex, otherRuntimeIndex);\n\t\t\totherRuntime = allRuntimes[otherRuntimeIndex];\n\t\t}\n\n\t\tlet compareWord;\n\t\tif (comparison > 0) {\n\t\t\tcompareWord = \"an older\";\n\t\t} else if (comparison < 0) {\n\t\t\tcompareWord = \"a newer\";\n\t\t} else {\n\t\t\tcompareWord = \"the same\";\n\t\t}\n\t\tmessage = `${message}\\n\\n\"${currentRuntime.description}\" failed to define ${Failures.get(otherRuntimeIndex)!.size} tag(s) as they were defined by a runtime of ${compareWord} version \"${otherRuntime.description}\": ${([...Failures.get(otherRuntimeIndex)!]).sort().join(\", \")}.`;\n\n\t\tif (comparison > 0) {\n\t\t\tmessage = `${message}\\nWARNING! If your code uses features of the above web components, unavailable in ${otherRuntime.description}, it might not work as expected!`;\n\t\t} else {\n\t\t\tmessage = `${message}\\nSince the above web components were defined by the same or newer version runtime, they should be compatible with your code.`;\n\t\t}\n\t});\n\n\tmessage = `${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/06-scoping.md.`;\n\n\tconsole.warn(message); // eslint-disable-line\n};\n\nexport {\n\tregisterTag,\n\tisTagRegistered,\n\thasRegisteredTags,\n\tgetAllRegisteredTags,\n\trecordTagRegistrationFailure,\n};\n"],
5
+ "mappings": "aAAA,OAAOA,MAAuB,yBAC9B,OAAS,0BAAAC,EAAwB,mBAAAC,EAAiB,kBAAAC,MAAsB,gBAGxE,MAAMC,EAAOJ,EAAuC,OAAQ,IAAI,GAAK,EAC/DK,EAAc,IAAI,IAExB,IAAIC,EAAW,IAAI,IACfC,EAEJ,MAAMC,EAAkB,GAElBC,EAAeC,GAAgB,CACpCL,EAAY,IAAIK,CAAG,EACnBN,EAAK,IAAIM,EAAKT,EAAuB,CAAC,CACvC,EAEMU,EAAmBD,GACjBL,EAAY,IAAIK,CAAG,EAGrBE,EAAoB,IAClBP,EAAY,KAAO,EAGrBQ,EAAuB,IACrB,CAAC,GAAGR,EAAY,OAAO,CAAC,EAG1BS,EAAgCJ,GAAgB,CACrD,IAAIK,EAAqBX,EAAK,IAAIM,CAAG,EACjCK,IAAuB,SAC1BA,EAAqBP,GAGjBF,EAAS,IAAIS,CAAkB,GACnCT,EAAS,IAAIS,EAAoB,IAAI,GAAK,EAE3CT,EAAS,IAAIS,CAAkB,EAAG,IAAIL,CAAG,EAEpCH,IACJA,EAAiB,WAAW,IAAM,CACjCS,EAA2B,EAC3BV,EAAW,IAAI,IACfC,EAAiB,MAClB,EAAG,GAAI,EAET,EAEMS,EAA6B,IAAM,CACxC,MAAMC,EAAcd,EAAe,EAC7Be,EAAsBjB,EAAuB,EAC7CkB,EAAiBF,EAAYC,CAAmB,EAEtD,IAAIE,EAAU,kDAEVH,EAAY,OAAS,IACxBG,EAAU,GAAGA,CAAO;AAAA,oDAAuDH,EAAY,IAAII,GAAW;AAAA,EAAKA,EAAQ,WAAW,EAAE,EAAE,KAAK,EAAE,CAAC,IAG3I,CAAC,GAAGf,EAAS,KAAK,CAAC,EAAE,QAAQgB,GAAqB,CACjD,IAAIC,EACAC,EAEAF,IAAsBd,GACzBe,EAAa,EACbC,EAAe,CACd,YAAa,uBACd,IAEAD,EAAarB,EAAgBgB,EAAqBI,CAAiB,EACnEE,EAAeP,EAAYK,CAAiB,GAG7C,IAAIG,EACAF,EAAa,EAChBE,EAAc,WACJF,EAAa,EACvBE,EAAc,UAEdA,EAAc,WAEfL,EAAU,GAAGA,CAAO;AAAA;AAAA,GAAQD,EAAe,WAAW,sBAAsBb,EAAS,IAAIgB,CAAiB,EAAG,IAAI,gDAAgDG,CAAW,aAAaD,EAAa,WAAW,MAAO,CAAC,GAAGlB,EAAS,IAAIgB,CAAiB,CAAE,EAAG,KAAK,EAAE,KAAK,IAAI,CAAC,IAE5QC,EAAa,EAChBH,EAAU,GAAGA,CAAO;AAAA,kFAAqFI,EAAa,WAAW,mCAEjIJ,EAAU,GAAGA,CAAO;AAAA,4HAEtB,CAAC,EAEDA,EAAU,GAAGA,CAAO;AAAA;AAAA,gNAEpB,QAAQ,KAAKA,CAAO,CACrB,EAEA,OACCX,KAAA,YACAE,KAAA,gBACAC,KAAA,kBACAC,KAAA,qBACAC,KAAA",
6
+ "names": ["getSharedResource", "getCurrentRuntimeIndex", "compareRuntimes", "getAllRuntimes", "Tags", "Definitions", "Failures", "failureTimeout", "UNKNOWN_RUNTIME", "registerTag", "tag", "isTagRegistered", "hasRegisteredTags", "getAllRegisteredTags", "recordTagRegistrationFailure", "tagRegRuntimeIndex", "displayFailedRegistrations", "allRuntimes", "currentRuntimeIndex", "currentRuntime", "message", "runtime", "otherRuntimeIndex", "comparison", "otherRuntime", "compareWord"]
7
7
  }
@@ -1,2 +1,2 @@
1
- "use strict";import l from"./generated/VersionInfo.js";let o,t={include:[/^ui5-/],exclude:[]};const s=new Map,u=e=>{if(!e.match(/^[a-zA-Z0-9_-]+$/))throw new Error("Only alphanumeric characters and dashes allowed for the scoping suffix");o=e},c=()=>o,a=e=>{if(!e||!e.include)throw new Error('"rules" must be an object with at least an "include" property');if(!Array.isArray(e.include)||e.include.some(r=>!(r instanceof RegExp)))throw new Error('"rules.include" must be an array of regular expressions');if(e.exclude&&(!Array.isArray(e.exclude)||e.exclude.some(r=>!(r instanceof RegExp))))throw new Error('"rules.exclude" must be an array of regular expressions');e.exclude=e.exclude||[],t=e,s.clear()},m=()=>t,i=e=>{if(!s.has(e)){const r=t.include.some(n=>e.match(n))&&!t.exclude.some(n=>e.match(n));s.set(e,r)}return s.get(e)},p=e=>{if(i(e))return c()},d=e=>{const r=`v${l.version.replaceAll(".","-")}`,n=/(--_?ui5)([^,:)\s]+)/g;return e.replaceAll(n,`$1-${r}$2`)};export{u as setCustomElementsScopingSuffix,c as getCustomElementsScopingSuffix,a as setCustomElementsScopingRules,m as getCustomElementsScopingRules,i as shouldScopeCustomElement,p as getEffectiveScopingSuffixForTag,d as getScopedVarName};
1
+ "use strict";import{hasRegisteredTags as a}from"./CustomElementsRegistry.js";import u from"./generated/VersionInfo.js";let s,t={include:[/^ui5-/],exclude:[]};const o=new Map,l=e=>{if(!e.match(/^[a-zA-Z0-9_-]+$/))throw new Error("Only alphanumeric characters and dashes allowed for the scoping suffix");a()&&console.warn("Setting the scoping suffix must be done before importing any components. For proper usage, read the scoping section: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/06-scoping.md."),s=e},c=()=>s,p=e=>{if(!e||!e.include)throw new Error('"rules" must be an object with at least an "include" property');if(!Array.isArray(e.include)||e.include.some(n=>!(n instanceof RegExp)))throw new Error('"rules.include" must be an array of regular expressions');if(e.exclude&&(!Array.isArray(e.exclude)||e.exclude.some(n=>!(n instanceof RegExp))))throw new Error('"rules.exclude" must be an array of regular expressions');e.exclude=e.exclude||[],t=e,o.clear()},m=()=>t,i=e=>{if(!o.has(e)){const n=t.include.some(r=>e.match(r))&&!t.exclude.some(r=>e.match(r));o.set(e,n)}return o.get(e)},g=e=>{if(i(e))return c()},d=e=>{const n=`v${u.version.replaceAll(".","-")}`,r=/(--_?ui5)([^,:)\s]+)/g;return e.replaceAll(r,`$1-${n}$2`)};export{l as setCustomElementsScopingSuffix,c as getCustomElementsScopingSuffix,p as setCustomElementsScopingRules,m as getCustomElementsScopingRules,i as shouldScopeCustomElement,g as getEffectiveScopingSuffixForTag,d as getScopedVarName};
2
2
  //# sourceMappingURL=CustomElementsScopeUtils.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/CustomElementsScopeUtils.ts"],
4
- "sourcesContent": ["import VersionInfo from \"./generated/VersionInfo.js\";\n\nlet suf: string;\n\ntype Rules = {\n\tinclude: Array<RegExp>,\n\texclude: Array<RegExp>,\n};\n\nlet rulesObj: Rules = {\n\tinclude: [/^ui5-/],\n\texclude: [],\n};\n\nconst tagsCache = new Map<string, boolean>(); // true/false means the tag should/should not be cached, undefined means not known yet.\n\n/**\n * Sets the suffix to be used for custom elements scoping, f.e. pass \"demo\" to get tags such as \"ui5-button-demo\".\n * Note: by default all tags starting with \"ui5-\" will be scoped, unless you change this by calling \"setCustomElementsScopingRules\"\n *\n * @public\n * @param suffix The scoping suffix\n */\nconst setCustomElementsScopingSuffix = (suffix: string) => {\n\tif (!suffix.match(/^[a-zA-Z0-9_-]+$/)) {\n\t\tthrow new Error(\"Only alphanumeric characters and dashes allowed for the scoping suffix\");\n\t}\n\n\tsuf = suffix;\n};\n\n/**\n * Returns the currently set scoping suffix, or undefined if not set.\n *\n * @public\n * @returns {String|undefined}\n */\nconst getCustomElementsScopingSuffix = () => {\n\treturn suf;\n};\n\n/**\n * Sets the rules, governing which custom element tags to scope and which not, f.e.\n * setCustomElementsScopingRules({include: [/^ui5-/]}, exclude: [/^ui5-mylib-/, /^ui5-carousel$/]);\n * will scope all elements starting with \"ui5-\" but not the ones starting with \"ui5-mylib-\" and not \"ui5-carousel\".\n *\n * @public\n * @param rules Object with \"include\" and \"exclude\" properties, both arrays of regular expressions. Note that \"include\"\n * rules are applied first and \"exclude\" rules second.\n */\nconst setCustomElementsScopingRules = (rules: Rules) => {\n\tif (!rules || !rules.include) {\n\t\tthrow new Error(`\"rules\" must be an object with at least an \"include\" property`);\n\t}\n\n\tif (!Array.isArray(rules.include) || rules.include.some(rule => !(rule instanceof RegExp))) {\n\t\tthrow new Error(`\"rules.include\" must be an array of regular expressions`);\n\t}\n\n\tif (rules.exclude && (!Array.isArray(rules.exclude) || rules.exclude.some(rule => !(rule instanceof RegExp)))) {\n\t\tthrow new Error(`\"rules.exclude\" must be an array of regular expressions`);\n\t}\n\n\trules.exclude = rules.exclude || [];\n\trulesObj = rules;\n\ttagsCache.clear(); // reset the cache upon setting new rules\n};\n\n/**\n * Returns the rules, governing which custom element tags to scope and which not. By default, all elements\n * starting with \"ui5-\" are scoped. The default rules are: {include: [/^ui5-/]}.\n *\n * @public\n * @returns {Object}\n */\nconst getCustomElementsScopingRules = () => {\n\treturn rulesObj;\n};\n\n/**\n * Determines whether custom elements with the given tag should be scoped or not.\n * The tag is first matched against the \"include\" rules and then against the \"exclude\" rules and the\n * result is cached until new rules are set.\n *\n * @public\n * @param tag\n */\nconst shouldScopeCustomElement = (tag: string) => {\n\tif (!tagsCache.has(tag)) {\n\t\tconst result = rulesObj.include.some(rule => tag.match(rule)) && !rulesObj.exclude.some(rule => tag.match(rule));\n\t\ttagsCache.set(tag, result);\n\t}\n\n\treturn tagsCache.get(tag);\n};\n\n/**\n * Returns the currently set scoping suffix, if any and if the tag should be scoped, or undefined otherwise.\n *\n * @public\n * @param tag\n * @returns {String}\n */\nconst getEffectiveScopingSuffixForTag = (tag: string) => {\n\tif (shouldScopeCustomElement(tag)) {\n\t\treturn getCustomElementsScopingSuffix();\n\t}\n};\n\n/**\n * @public\n * Used for getting a scoped name for a CSS variable using the same transformation used in the build\n * @name the name of the css variable as written in the code\n * @returns a variable name with the current version inserted as available at runtime\n */\nconst getScopedVarName = (name: string) => {\n\tconst versionStr = `v${VersionInfo.version.replaceAll(\".\", \"-\")}`;\n\tconst expr = /(--_?ui5)([^,:)\\s]+)/g;\n\treturn name.replaceAll(expr, `$1-${versionStr}$2`);\n};\n\nexport {\n\tsetCustomElementsScopingSuffix,\n\tgetCustomElementsScopingSuffix,\n\tsetCustomElementsScopingRules,\n\tgetCustomElementsScopingRules,\n\tshouldScopeCustomElement,\n\tgetEffectiveScopingSuffixForTag,\n\tgetScopedVarName,\n};\n"],
5
- "mappings": "aAAA,OAAOA,MAAiB,6BAExB,IAAIC,EAOAC,EAAkB,CACrB,QAAS,CAAC,OAAO,EACjB,QAAS,CAAC,CACX,EAEA,MAAMC,EAAY,IAAI,IAShBC,EAAkCC,GAAmB,CAC1D,GAAI,CAACA,EAAO,MAAM,kBAAkB,EACnC,MAAM,IAAI,MAAM,wEAAwE,EAGzFJ,EAAMI,CACP,EAQMC,EAAiC,IAC/BL,EAYFM,EAAiCC,GAAiB,CACvD,GAAI,CAACA,GAAS,CAACA,EAAM,QACpB,MAAM,IAAI,MAAM,+DAA+D,EAGhF,GAAI,CAAC,MAAM,QAAQA,EAAM,OAAO,GAAKA,EAAM,QAAQ,KAAKC,GAAQ,EAAEA,aAAgB,OAAO,EACxF,MAAM,IAAI,MAAM,yDAAyD,EAG1E,GAAID,EAAM,UAAY,CAAC,MAAM,QAAQA,EAAM,OAAO,GAAKA,EAAM,QAAQ,KAAKC,GAAQ,EAAEA,aAAgB,OAAO,GAC1G,MAAM,IAAI,MAAM,yDAAyD,EAG1ED,EAAM,QAAUA,EAAM,SAAW,CAAC,EAClCN,EAAWM,EACXL,EAAU,MAAM,CACjB,EASMO,EAAgC,IAC9BR,EAWFS,EAA4BC,GAAgB,CACjD,GAAI,CAACT,EAAU,IAAIS,CAAG,EAAG,CACxB,MAAMC,EAASX,EAAS,QAAQ,KAAKO,GAAQG,EAAI,MAAMH,CAAI,CAAC,GAAK,CAACP,EAAS,QAAQ,KAAKO,GAAQG,EAAI,MAAMH,CAAI,CAAC,EAC/GN,EAAU,IAAIS,EAAKC,CAAM,CAC1B,CAEA,OAAOV,EAAU,IAAIS,CAAG,CACzB,EASME,EAAmCF,GAAgB,CACxD,GAAID,EAAyBC,CAAG,EAC/B,OAAON,EAA+B,CAExC,EAQMS,EAAoBC,GAAiB,CAC1C,MAAMC,EAAa,IAAIjB,EAAY,QAAQ,WAAW,IAAK,GAAG,CAAC,GACzDkB,EAAO,wBACb,OAAOF,EAAK,WAAWE,EAAM,MAAMD,CAAU,IAAI,CAClD,EAEA,OACCb,KAAA,+BACAE,KAAA,+BACAC,KAAA,8BACAG,KAAA,8BACAC,KAAA,yBACAG,KAAA,gCACAC,KAAA",
6
- "names": ["VersionInfo", "suf", "rulesObj", "tagsCache", "setCustomElementsScopingSuffix", "suffix", "getCustomElementsScopingSuffix", "setCustomElementsScopingRules", "rules", "rule", "getCustomElementsScopingRules", "shouldScopeCustomElement", "tag", "result", "getEffectiveScopingSuffixForTag", "getScopedVarName", "name", "versionStr", "expr"]
4
+ "sourcesContent": ["import { hasRegisteredTags } from \"./CustomElementsRegistry.js\";\nimport VersionInfo from \"./generated/VersionInfo.js\";\n\nlet suf: string;\n\ntype Rules = {\n\tinclude: Array<RegExp>,\n\texclude: Array<RegExp>,\n};\n\nlet rulesObj: Rules = {\n\tinclude: [/^ui5-/],\n\texclude: [],\n};\n\nconst tagsCache = new Map<string, boolean>(); // true/false means the tag should/should not be cached, undefined means not known yet.\n\n/**\n * Sets the suffix to be used for custom elements scoping, f.e. pass \"demo\" to get tags such as \"ui5-button-demo\".\n *\n * **Note:** By default all tags starting with \"ui5-\" will be scoped, unless you change this by calling \"setCustomElementsScopingRules\"\n * **Note:** Setting the scoping suffix must be done before importing any components.\n *\n * @public\n * @param suffix The scoping suffix\n */\nconst setCustomElementsScopingSuffix = (suffix: string) => {\n\tif (!suffix.match(/^[a-zA-Z0-9_-]+$/)) {\n\t\tthrow new Error(\"Only alphanumeric characters and dashes allowed for the scoping suffix\");\n\t}\n\n\tif (hasRegisteredTags()) {\n\t\t// eslint-disable-next-line no-console\n\t\tconsole.warn(\"Setting the scoping suffix must be done before importing any components. For proper usage, read the scoping section: https://github.com/SAP/ui5-webcomponents/blob/main/docs/2-advanced/06-scoping.md.\");\n\t}\n\n\tsuf = suffix;\n};\n\n/**\n * Returns the currently set scoping suffix, or undefined if not set.\n *\n * @public\n * @returns {String|undefined}\n */\nconst getCustomElementsScopingSuffix = () => {\n\treturn suf;\n};\n\n/**\n * Sets the rules, governing which custom element tags to scope and which not, f.e.\n * setCustomElementsScopingRules({include: [/^ui5-/]}, exclude: [/^ui5-mylib-/, /^ui5-carousel$/]);\n * will scope all elements starting with \"ui5-\" but not the ones starting with \"ui5-mylib-\" and not \"ui5-carousel\".\n *\n * @public\n * @param rules Object with \"include\" and \"exclude\" properties, both arrays of regular expressions. Note that \"include\"\n * rules are applied first and \"exclude\" rules second.\n */\nconst setCustomElementsScopingRules = (rules: Rules) => {\n\tif (!rules || !rules.include) {\n\t\tthrow new Error(`\"rules\" must be an object with at least an \"include\" property`);\n\t}\n\n\tif (!Array.isArray(rules.include) || rules.include.some(rule => !(rule instanceof RegExp))) {\n\t\tthrow new Error(`\"rules.include\" must be an array of regular expressions`);\n\t}\n\n\tif (rules.exclude && (!Array.isArray(rules.exclude) || rules.exclude.some(rule => !(rule instanceof RegExp)))) {\n\t\tthrow new Error(`\"rules.exclude\" must be an array of regular expressions`);\n\t}\n\n\trules.exclude = rules.exclude || [];\n\trulesObj = rules;\n\ttagsCache.clear(); // reset the cache upon setting new rules\n};\n\n/**\n * Returns the rules, governing which custom element tags to scope and which not. By default, all elements\n * starting with \"ui5-\" are scoped. The default rules are: {include: [/^ui5-/]}.\n *\n * @public\n * @returns {Object}\n */\nconst getCustomElementsScopingRules = () => {\n\treturn rulesObj;\n};\n\n/**\n * Determines whether custom elements with the given tag should be scoped or not.\n * The tag is first matched against the \"include\" rules and then against the \"exclude\" rules and the\n * result is cached until new rules are set.\n *\n * @public\n * @param tag\n */\nconst shouldScopeCustomElement = (tag: string) => {\n\tif (!tagsCache.has(tag)) {\n\t\tconst result = rulesObj.include.some(rule => tag.match(rule)) && !rulesObj.exclude.some(rule => tag.match(rule));\n\t\ttagsCache.set(tag, result);\n\t}\n\n\treturn tagsCache.get(tag);\n};\n\n/**\n * Returns the currently set scoping suffix, if any and if the tag should be scoped, or undefined otherwise.\n *\n * @public\n * @param tag\n * @returns {String}\n */\nconst getEffectiveScopingSuffixForTag = (tag: string) => {\n\tif (shouldScopeCustomElement(tag)) {\n\t\treturn getCustomElementsScopingSuffix();\n\t}\n};\n\n/**\n * @public\n * Used for getting a scoped name for a CSS variable using the same transformation used in the build\n * @name the name of the css variable as written in the code\n * @returns a variable name with the current version inserted as available at runtime\n */\nconst getScopedVarName = (name: string) => {\n\tconst versionStr = `v${VersionInfo.version.replaceAll(\".\", \"-\")}`;\n\tconst expr = /(--_?ui5)([^,:)\\s]+)/g;\n\treturn name.replaceAll(expr, `$1-${versionStr}$2`);\n};\n\nexport {\n\tsetCustomElementsScopingSuffix,\n\tgetCustomElementsScopingSuffix,\n\tsetCustomElementsScopingRules,\n\tgetCustomElementsScopingRules,\n\tshouldScopeCustomElement,\n\tgetEffectiveScopingSuffixForTag,\n\tgetScopedVarName,\n};\n"],
5
+ "mappings": "aAAA,OAAS,qBAAAA,MAAyB,8BAClC,OAAOC,MAAiB,6BAExB,IAAIC,EAOAC,EAAkB,CACrB,QAAS,CAAC,OAAO,EACjB,QAAS,CAAC,CACX,EAEA,MAAMC,EAAY,IAAI,IAWhBC,EAAkCC,GAAmB,CAC1D,GAAI,CAACA,EAAO,MAAM,kBAAkB,EACnC,MAAM,IAAI,MAAM,wEAAwE,EAGrFN,EAAkB,GAErB,QAAQ,KAAK,wMAAwM,EAGtNE,EAAMI,CACP,EAQMC,EAAiC,IAC/BL,EAYFM,EAAiCC,GAAiB,CACvD,GAAI,CAACA,GAAS,CAACA,EAAM,QACpB,MAAM,IAAI,MAAM,+DAA+D,EAGhF,GAAI,CAAC,MAAM,QAAQA,EAAM,OAAO,GAAKA,EAAM,QAAQ,KAAKC,GAAQ,EAAEA,aAAgB,OAAO,EACxF,MAAM,IAAI,MAAM,yDAAyD,EAG1E,GAAID,EAAM,UAAY,CAAC,MAAM,QAAQA,EAAM,OAAO,GAAKA,EAAM,QAAQ,KAAKC,GAAQ,EAAEA,aAAgB,OAAO,GAC1G,MAAM,IAAI,MAAM,yDAAyD,EAG1ED,EAAM,QAAUA,EAAM,SAAW,CAAC,EAClCN,EAAWM,EACXL,EAAU,MAAM,CACjB,EASMO,EAAgC,IAC9BR,EAWFS,EAA4BC,GAAgB,CACjD,GAAI,CAACT,EAAU,IAAIS,CAAG,EAAG,CACxB,MAAMC,EAASX,EAAS,QAAQ,KAAKO,GAAQG,EAAI,MAAMH,CAAI,CAAC,GAAK,CAACP,EAAS,QAAQ,KAAKO,GAAQG,EAAI,MAAMH,CAAI,CAAC,EAC/GN,EAAU,IAAIS,EAAKC,CAAM,CAC1B,CAEA,OAAOV,EAAU,IAAIS,CAAG,CACzB,EASME,EAAmCF,GAAgB,CACxD,GAAID,EAAyBC,CAAG,EAC/B,OAAON,EAA+B,CAExC,EAQMS,EAAoBC,GAAiB,CAC1C,MAAMC,EAAa,IAAIjB,EAAY,QAAQ,WAAW,IAAK,GAAG,CAAC,GACzDkB,EAAO,wBACb,OAAOF,EAAK,WAAWE,EAAM,MAAMD,CAAU,IAAI,CAClD,EAEA,OACCb,KAAA,+BACAE,KAAA,+BACAC,KAAA,8BACAG,KAAA,8BACAC,KAAA,yBACAG,KAAA,gCACAC,KAAA",
6
+ "names": ["hasRegisteredTags", "VersionInfo", "suf", "rulesObj", "tagsCache", "setCustomElementsScopingSuffix", "suffix", "getCustomElementsScopingSuffix", "setCustomElementsScopingRules", "rules", "rule", "getCustomElementsScopingRules", "shouldScopeCustomElement", "tag", "result", "getEffectiveScopingSuffixForTag", "getScopedVarName", "name", "versionStr", "expr"]
7
7
  }
@@ -1,2 +1,2 @@
1
- "use strict";const e={version:"2.8.0-rc.0",major:2,minor:8,patch:0,suffix:"-rc.0",isNext:!1,buildTime:1738829321};export default e;
1
+ "use strict";const e={version:"2.8.0-rc.2",major:2,minor:8,patch:0,suffix:"-rc.2",isNext:!1,buildTime:1740038928};export default e;
2
2
  //# sourceMappingURL=VersionInfo.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/generated/VersionInfo.ts"],
4
- "sourcesContent": ["const VersionInfo = {\n\tversion: \"2.8.0-rc.0\",\n\tmajor: 2,\n\tminor: 8,\n\tpatch: 0,\n\tsuffix: \"-rc.0\",\n\tisNext: false,\n\tbuildTime: 1738829321,\n};\nexport default VersionInfo;"],
4
+ "sourcesContent": ["const VersionInfo = {\n\tversion: \"2.8.0-rc.2\",\n\tmajor: 2,\n\tminor: 8,\n\tpatch: 0,\n\tsuffix: \"-rc.2\",\n\tisNext: false,\n\tbuildTime: 1740038928,\n};\nexport default VersionInfo;"],
5
5
  "mappings": "aAAA,MAAMA,EAAc,CACnB,QAAS,aACT,MAAO,EACP,MAAO,EACP,MAAO,EACP,OAAQ,QACR,OAAQ,GACR,UAAW,UACZ,EACA,eAAeA",
6
6
  "names": ["VersionInfo"]
7
7
  }
@@ -1,2 +1,2 @@
1
- "use strict";import c from"./util/hash2str.js";import{pascalToKebabCase as f}from"./util/StringHelper.js";function l(t,e,a){const n=t.getMetadata().getEvents();Object.keys(e).forEach(s=>{if(s.startsWith("on")){const o=s.slice(2),i=f(o);i in n&&s!=="onClick"&&(e[`onui5-${i}`]=e[s],delete e[s])}})}export function isUI5ElementClass(t){return typeof t=="function"&&"getMetadata"in t}export function preprocess(t,e,a){let n;return isUI5ElementClass(t)?(n=t.getMetadata().getTag(),l(t,e,a)):n=t,typeof e.class=="object"&&(e.class=c(e.class)),n}
1
+ "use strict";import f from"./util/hash2str.js";import{pascalToKebabCase as r}from"./util/StringHelper.js";function g(e,t,o){const n=e.getMetadata().getEvents();Object.keys(t).forEach(s=>{if(s.startsWith("on")){const a=s.slice(2),c=r(a),l=a.charAt(0).toLowerCase()+a.slice(1);let i;c in n?i=c:l in n&&(i=l),i&&s!=="onClick"&&(t[`onui5-${i}`]=t[s],delete t[s])}})}export function isUI5ElementClass(e){return typeof e=="function"&&"getMetadata"in e}export function preprocess(e,t,o){let n;return isUI5ElementClass(e)?(n=e.getMetadata().getTag(),g(e,t,o)):n=e,typeof t.class=="object"&&(t.class=f(t.class)),n}
2
2
  //# sourceMappingURL=jsx-utils.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/jsx-utils.ts"],
4
- "sourcesContent": ["import type UI5Element from \"./UI5Element.js\";\nimport hash2str from \"./util/hash2str.js\";\nimport { pascalToKebabCase } from \"./util/StringHelper.js\";\n\nfunction convertEventScoping(type: typeof UI5Element, props: Record<string, any>, key: string) {\n\tconst events = type.getMetadata().getEvents();\n\n\tObject.keys(props).forEach(prop => {\n\t\tif (prop.startsWith(\"on\")) {\n\t\t\t// Exteract the kebab-case event: onChange - change, onSelectionChange - selection-change, etc.\n\t\t\tconst pascalEvent = prop.slice(\"on\".length);\n\t\t\tconst kebabCaseEvent = pascalToKebabCase(pascalEvent);\n\n\t\t\t// Attach for the \"ui5-\" preffixed event\n\t\t\tif (kebabCaseEvent in events) {\n\t\t\t\tif ((prop !== \"onClick\")) {\n\t\t\t\t\tprops[`onui5-${kebabCaseEvent}`] = props[prop];\n\t\t\t\t\t// TODO keep native events for now, find a way to mark them for runtime\n\t\t\t\t\tdelete props[prop];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nexport function isUI5ElementClass(type: string | typeof UI5Element): type is typeof UI5Element {\n\treturn typeof type === \"function\" && \"getMetadata\" in type;\n}\n\nexport function preprocess(type: string | typeof UI5Element, props: Record<string, any>, key: string) {\n\tlet tag: string;\n\tif (isUI5ElementClass(type)) {\n\t\ttag = type.getMetadata().getTag();\n\t\tconvertEventScoping(type, props, key);\n\t} else {\n\t\ttag = type;\n\t}\n\n\t// convert class object to string\n\tif (typeof props.class === \"object\") {\n\t\tprops.class = hash2str(props.class);\n\t}\n\n\treturn tag;\n}\n"],
5
- "mappings": "aACA,OAAOA,MAAc,qBACrB,OAAS,qBAAAC,MAAyB,yBAElC,SAASC,EAAoBC,EAAyBC,EAA4BC,EAAa,CAC9F,MAAMC,EAASH,EAAK,YAAY,EAAE,UAAU,EAE5C,OAAO,KAAKC,CAAK,EAAE,QAAQG,GAAQ,CAClC,GAAIA,EAAK,WAAW,IAAI,EAAG,CAE1B,MAAMC,EAAcD,EAAK,MAAM,CAAW,EACpCE,EAAiBR,EAAkBO,CAAW,EAGhDC,KAAkBH,GAChBC,IAAS,YACbH,EAAM,SAASK,CAAc,EAAE,EAAIL,EAAMG,CAAI,EAE7C,OAAOH,EAAMG,CAAI,EAGpB,CACD,CAAC,CACF,CAEO,gBAAS,kBAAkBJ,EAA6D,CAC9F,OAAO,OAAOA,GAAS,YAAc,gBAAiBA,CACvD,CAEO,gBAAS,WAAWA,EAAkCC,EAA4BC,EAAa,CACrG,IAAIK,EACJ,OAAI,kBAAkBP,CAAI,GACzBO,EAAMP,EAAK,YAAY,EAAE,OAAO,EAChCD,EAAoBC,EAAMC,EAAOC,CAAG,GAEpCK,EAAMP,EAIH,OAAOC,EAAM,OAAU,WAC1BA,EAAM,MAAQJ,EAASI,EAAM,KAAK,GAG5BM,CACR",
6
- "names": ["hash2str", "pascalToKebabCase", "convertEventScoping", "type", "props", "key", "events", "prop", "pascalEvent", "kebabCaseEvent", "tag"]
4
+ "sourcesContent": ["import type UI5Element from \"./UI5Element.js\";\nimport hash2str from \"./util/hash2str.js\";\nimport { pascalToKebabCase } from \"./util/StringHelper.js\";\n\nfunction convertEventScoping(type: typeof UI5Element, props: Record<string, any>, key: string) {\n\tconst events = type.getMetadata().getEvents();\n\n\tObject.keys(props).forEach(prop => {\n\t\tif (prop.startsWith(\"on\")) {\n\t\t\t// Exteract the kebab-case event: onChange - change, onSelectionChange - selection-change, etc.\n\t\t\tconst pascalEvent = prop.slice(\"on\".length);\n\t\t\tconst kebabCaseEvent = pascalToKebabCase(pascalEvent);\n\t\t\t// Also support camelCase events\n\t\t\tconst camelCaseEvent = pascalEvent.charAt(0).toLowerCase() + pascalEvent.slice(1);\n\n\t\t\tlet origEvent: string | undefined;\n\t\t\tif (kebabCaseEvent in events) {\n\t\t\t\torigEvent = kebabCaseEvent;\n\t\t\t} else if (camelCaseEvent in events) {\n\t\t\t\torigEvent = camelCaseEvent;\n\t\t\t}\n\t\t\t// Attach for the \"ui5-\" preffixed event\n\t\t\tif (origEvent) {\n\t\t\t\tif ((prop !== \"onClick\")) {\n\t\t\t\t\tprops[`onui5-${origEvent}`] = props[prop];\n\t\t\t\t\t// TODO keep native events for now, find a way to mark them for runtime\n\t\t\t\t\tdelete props[prop];\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t});\n}\n\nexport function isUI5ElementClass(type: string | typeof UI5Element): type is typeof UI5Element {\n\treturn typeof type === \"function\" && \"getMetadata\" in type;\n}\n\nexport function preprocess(type: string | typeof UI5Element, props: Record<string, any>, key: string) {\n\tlet tag: string;\n\tif (isUI5ElementClass(type)) {\n\t\ttag = type.getMetadata().getTag();\n\t\tconvertEventScoping(type, props, key);\n\t} else {\n\t\ttag = type;\n\t}\n\n\t// convert class object to string\n\tif (typeof props.class === \"object\") {\n\t\tprops.class = hash2str(props.class);\n\t}\n\n\treturn tag;\n}\n"],
5
+ "mappings": "aACA,OAAOA,MAAc,qBACrB,OAAS,qBAAAC,MAAyB,yBAElC,SAASC,EAAoBC,EAAyBC,EAA4BC,EAAa,CAC9F,MAAMC,EAASH,EAAK,YAAY,EAAE,UAAU,EAE5C,OAAO,KAAKC,CAAK,EAAE,QAAQG,GAAQ,CAClC,GAAIA,EAAK,WAAW,IAAI,EAAG,CAE1B,MAAMC,EAAcD,EAAK,MAAM,CAAW,EACpCE,EAAiBR,EAAkBO,CAAW,EAE9CE,EAAiBF,EAAY,OAAO,CAAC,EAAE,YAAY,EAAIA,EAAY,MAAM,CAAC,EAEhF,IAAIG,EACAF,KAAkBH,EACrBK,EAAYF,EACFC,KAAkBJ,IAC5BK,EAAYD,GAGTC,GACEJ,IAAS,YACbH,EAAM,SAASO,CAAS,EAAE,EAAIP,EAAMG,CAAI,EAExC,OAAOH,EAAMG,CAAI,EAGpB,CACD,CAAC,CACF,CAEO,gBAAS,kBAAkBJ,EAA6D,CAC9F,OAAO,OAAOA,GAAS,YAAc,gBAAiBA,CACvD,CAEO,gBAAS,WAAWA,EAAkCC,EAA4BC,EAAa,CACrG,IAAIO,EACJ,OAAI,kBAAkBT,CAAI,GACzBS,EAAMT,EAAK,YAAY,EAAE,OAAO,EAChCD,EAAoBC,EAAMC,EAAOC,CAAG,GAEpCO,EAAMT,EAIH,OAAOC,EAAM,OAAU,WAC1BA,EAAM,MAAQJ,EAASI,EAAM,KAAK,GAG5BQ,CACR",
6
+ "names": ["hash2str", "pascalToKebabCase", "convertEventScoping", "type", "props", "key", "events", "prop", "pascalEvent", "kebabCaseEvent", "camelCaseEvent", "origEvent", "tag"]
7
7
  }
@@ -1,2 +1,2 @@
1
- "use strict";import{HTMLElement as o,Element as s,customElements as l}from"@lit-labs/ssr-dom-shim";globalThis.HTMLElement??=o,globalThis.Element??=s,globalThis.customElements??=l;class i{}globalThis.Node??=i;class S{}globalThis.FileList??=S;const t=new WeakMap;globalThis.Document&&!("adoptedStyleSheets"in Document.prototype)&&Object.defineProperty(Document.prototype,"adoptedStyleSheets",{get(){return t.get(this)||[]},set(e){t.set(this,e)}}),globalThis.ShadowRoot&&!("adoptedStyleSheets"in ShadowRoot.prototype)&&Object.defineProperty(ShadowRoot.prototype,"adoptedStyleSheets",{get(){return t.get(this)||[]},set(e){t.set(this,e)}}),globalThis.CSSStyleSheet&&!("replaceSync"in CSSStyleSheet.prototype)&&Object.defineProperty(CSSStyleSheet.prototype,"replaceSync",{value(e){return this.cssText=e,e}}),globalThis.ResizeObserver=class{observe(){}unobserve(){}disconnect(){}},globalThis.HTMLElement.prototype.showPopover=function(){};
1
+ "use strict";import{HTMLElement as o,Element as s,customElements as l,ElementInternals as i}from"@lit-labs/ssr-dom-shim";globalThis.HTMLElement??=o,globalThis.Element??=s,globalThis.customElements??=l;class n{}globalThis.Node??=n;class r{}globalThis.FileList??=r;const t=new WeakMap;globalThis.Document&&!("adoptedStyleSheets"in Document.prototype)&&Object.defineProperty(Document.prototype,"adoptedStyleSheets",{get(){return t.get(this)||[]},set(e){t.set(this,e)}}),globalThis.ShadowRoot&&!("adoptedStyleSheets"in ShadowRoot.prototype)&&Object.defineProperty(ShadowRoot.prototype,"adoptedStyleSheets",{get(){return t.get(this)||[]},set(e){t.set(this,e)}}),globalThis.CSSStyleSheet&&!("replaceSync"in CSSStyleSheet.prototype)&&Object.defineProperty(CSSStyleSheet.prototype,"replaceSync",{value(e){return this.cssText=e,e}}),globalThis.ResizeObserver=class{observe(){}unobserve(){}disconnect(){}},globalThis.HTMLElement.prototype.showPopover=function(){},globalThis.HTMLElement.prototype.attachInternals=function(){return new i};
2
2
  //# sourceMappingURL=ssr-dom-shim.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/ssr-dom-shim.ts"],
4
- "sourcesContent": ["/* eslint-disable max-classes-per-file */\nimport { HTMLElement, Element, customElements } from \"@lit-labs/ssr-dom-shim\";\n\nglobalThis.HTMLElement ??= HTMLElement;\nglobalThis.Element ??= Element;\nglobalThis.customElements ??= customElements;\n\nclass NodeShim {}\nglobalThis.Node ??= NodeShim as object as typeof Node;\n\nclass FileListShim {}\nglobalThis.FileList ??= FileListShim as object as typeof FileList;\n\n// ------- JS DOM shims -------\n\n// Polyfill `adoptedStyleSheets` globally for both `Document` and `ShadowRoot`\nconst adoptedSheetsStore = new WeakMap();\n\nif (globalThis.Document && !(\"adoptedStyleSheets\" in Document.prototype)) {\n Object.defineProperty(Document.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\nif (globalThis.ShadowRoot && !(\"adoptedStyleSheets\" in ShadowRoot.prototype)) {\n Object.defineProperty(ShadowRoot.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\n// Polyfill CSSStyleSheet to provide `replaceSync`\nif (globalThis.CSSStyleSheet && !(\"replaceSync\" in CSSStyleSheet.prototype)) {\n Object.defineProperty(CSSStyleSheet.prototype, \"replaceSync\", {\n value(cssText: string) {\n this.cssText = cssText;\n return cssText;\n },\n });\n }\n\n// Empty resize observer\nglobalThis.ResizeObserver = class ResizeObserver {\n observe() {\n // do nothing\n }\n unobserve() {\n // do nothing\n }\n disconnect() {\n // do nothing\n }\n};\n\n// empty showPopover method\nglobalThis.HTMLElement.prototype.showPopover = function () {};\n"],
5
- "mappings": "aACA,OAAS,eAAAA,EAAa,WAAAC,EAAS,kBAAAC,MAAsB,yBAErD,WAAW,cAAgBF,EAC3B,WAAW,UAAYC,EACvB,WAAW,iBAAmBC,EAE9B,MAAMC,CAAS,CAAC,CAChB,WAAW,OAASA,EAEpB,MAAMC,CAAa,CAAC,CACpB,WAAW,WAAaA,EAKxB,MAAMC,EAAqB,IAAI,QAE3B,WAAW,UAAY,EAAE,uBAAwB,SAAS,YAC5D,OAAO,eAAe,SAAS,UAAW,qBAAsB,CAC9D,KAAM,CACJ,OAAOA,EAAmB,IAAI,IAAI,GAAK,CAAC,CAC1C,EACA,IAAIC,EAAyB,CAC3BD,EAAmB,IAAI,KAAMC,CAAM,CACrC,CACF,CAAC,EAGC,WAAW,YAAc,EAAE,uBAAwB,WAAW,YAChE,OAAO,eAAe,WAAW,UAAW,qBAAsB,CAChE,KAAM,CACJ,OAAOD,EAAmB,IAAI,IAAI,GAAK,CAAC,CAC1C,EACA,IAAIC,EAAyB,CAC3BD,EAAmB,IAAI,KAAMC,CAAM,CACrC,CACF,CAAC,EAIC,WAAW,eAAiB,EAAE,gBAAiB,cAAc,YAC7D,OAAO,eAAe,cAAc,UAAW,cAAe,CAC5D,MAAMC,EAAiB,CACrB,YAAK,QAAUA,EACRA,CACT,CACF,CAAC,EAIL,WAAW,eAAiB,KAAqB,CAC7C,SAAU,CAEV,CACA,WAAY,CAEZ,CACA,YAAa,CAEb,CACJ,EAGA,WAAW,YAAY,UAAU,YAAc,UAAY,CAAC",
6
- "names": ["HTMLElement", "Element", "customElements", "NodeShim", "FileListShim", "adoptedSheetsStore", "sheets", "cssText"]
4
+ "sourcesContent": ["/* eslint-disable max-classes-per-file */\nimport { HTMLElement, Element, customElements, ElementInternals } from \"@lit-labs/ssr-dom-shim\";\n\nglobalThis.HTMLElement ??= HTMLElement;\nglobalThis.Element ??= Element;\nglobalThis.customElements ??= customElements;\n\nclass NodeShim {}\nglobalThis.Node ??= NodeShim as object as typeof Node;\n\nclass FileListShim {}\nglobalThis.FileList ??= FileListShim as object as typeof FileList;\n\n// ------- JS DOM shims -------\n\n// Polyfill `adoptedStyleSheets` globally for both `Document` and `ShadowRoot`\nconst adoptedSheetsStore = new WeakMap();\n\nif (globalThis.Document && !(\"adoptedStyleSheets\" in Document.prototype)) {\n Object.defineProperty(Document.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\nif (globalThis.ShadowRoot && !(\"adoptedStyleSheets\" in ShadowRoot.prototype)) {\n Object.defineProperty(ShadowRoot.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\n// Polyfill CSSStyleSheet to provide `replaceSync`\nif (globalThis.CSSStyleSheet && !(\"replaceSync\" in CSSStyleSheet.prototype)) {\n Object.defineProperty(CSSStyleSheet.prototype, \"replaceSync\", {\n value(cssText: string) {\n this.cssText = cssText;\n return cssText;\n },\n });\n }\n\n// Empty resize observer\nglobalThis.ResizeObserver = class ResizeObserver {\n observe() {\n // do nothing\n }\n unobserve() {\n // do nothing\n }\n disconnect() {\n // do nothing\n }\n};\n\n// empty showPopover method\nglobalThis.HTMLElement.prototype.showPopover = function () {};\n\n// ElementInternals\nglobalThis.HTMLElement.prototype.attachInternals = function() {\n return new ElementInternals();\n}"],
5
+ "mappings": "aACA,OAAS,eAAAA,EAAa,WAAAC,EAAS,kBAAAC,EAAgB,oBAAAC,MAAwB,yBAEvE,WAAW,cAAgBH,EAC3B,WAAW,UAAYC,EACvB,WAAW,iBAAmBC,EAE9B,MAAME,CAAS,CAAC,CAChB,WAAW,OAASA,EAEpB,MAAMC,CAAa,CAAC,CACpB,WAAW,WAAaA,EAKxB,MAAMC,EAAqB,IAAI,QAE3B,WAAW,UAAY,EAAE,uBAAwB,SAAS,YAC5D,OAAO,eAAe,SAAS,UAAW,qBAAsB,CAC9D,KAAM,CACJ,OAAOA,EAAmB,IAAI,IAAI,GAAK,CAAC,CAC1C,EACA,IAAIC,EAAyB,CAC3BD,EAAmB,IAAI,KAAMC,CAAM,CACrC,CACF,CAAC,EAGC,WAAW,YAAc,EAAE,uBAAwB,WAAW,YAChE,OAAO,eAAe,WAAW,UAAW,qBAAsB,CAChE,KAAM,CACJ,OAAOD,EAAmB,IAAI,IAAI,GAAK,CAAC,CAC1C,EACA,IAAIC,EAAyB,CAC3BD,EAAmB,IAAI,KAAMC,CAAM,CACrC,CACF,CAAC,EAIC,WAAW,eAAiB,EAAE,gBAAiB,cAAc,YAC7D,OAAO,eAAe,cAAc,UAAW,cAAe,CAC5D,MAAMC,EAAiB,CACrB,YAAK,QAAUA,EACRA,CACT,CACF,CAAC,EAIL,WAAW,eAAiB,KAAqB,CAC7C,SAAU,CAEV,CACA,WAAY,CAEZ,CACA,YAAa,CAEb,CACJ,EAGA,WAAW,YAAY,UAAU,YAAc,UAAY,CAAC,EAG5D,WAAW,YAAY,UAAU,gBAAkB,UAAW,CAC1D,OAAO,IAAIL,CACf",
6
+ "names": ["HTMLElement", "Element", "customElements", "ElementInternals", "NodeShim", "FileListShim", "adoptedSheetsStore", "sheets", "cssText"]
7
7
  }
@@ -0,0 +1,2 @@
1
+ "use strict";var e=(n=>(n.None="None",n.Ascending="Ascending",n.Descending="Descending",n))(e||{});export default e;
2
+ //# sourceMappingURL=SortOrder.js.map
@@ -0,0 +1,7 @@
1
+ {
2
+ "version": 3,
3
+ "sources": ["../../../src/types/SortOrder.ts"],
4
+ "sourcesContent": ["/**\n * Defines the sort order.\n *\n * @public\n * @since 2.8.0\n */\nenum SortOrder {\n\t/**\n\t * Sorting is not applied.\n\t * @public\n\t */\n\tNone = \"None\",\n\n\t/**\n\t * Sorting is applied in ascending order.\n\t * @public\n\t */\n\tAscending = \"Ascending\",\n\n\t/**\n\t * Sorting is applied in descending order.\n\t * @public\n\t */\n\tDescending = \"Descending\",\n}\n\nexport default SortOrder;\n"],
5
+ "mappings": "aAMA,IAAKA,OAKJA,EAAA,KAAO,OAMPA,EAAA,UAAY,YAMZA,EAAA,WAAa,aAjBTA,OAAA,IAoBL,eAAeA",
6
+ "names": ["SortOrder"]
7
+ }
@@ -1,2 +1,2 @@
1
- "use strict";function i(e,r){let t=!1;return(...u)=>{t||(e(...u),t=!0,setTimeout(()=>{t=!1},r))}}export default i;
1
+ "use strict";function n(e,o){let t=null,l=null;return function(...u){if(l){t=u;return}e(...u),l=setTimeout(()=>{t&&(e(...t),t=null),l=null},o)}}export default n;
2
2
  //# sourceMappingURL=throttle.js.map
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../src/util/throttle.ts"],
4
- "sourcesContent": ["function throttle(func: () => void, delay: number): () => void {\n\tlet wait = false;\n\n\treturn (...args) => {\n\t\tif (wait) {\n\t\t\treturn;\n\t\t}\n\n\t\tfunc(...args);\n\t\twait = true;\n\t\tsetTimeout(() => {\n\t\t\twait = false;\n\t\t}, delay);\n\t};\n}\nexport default throttle;\n"],
5
- "mappings": "aAAA,SAASA,EAASC,EAAkBC,EAA2B,CAC9D,IAAIC,EAAO,GAEX,MAAO,IAAIC,IAAS,CACfD,IAIJF,EAAK,GAAGG,CAAI,EACZD,EAAO,GACP,WAAW,IAAM,CAChBA,EAAO,EACR,EAAGD,CAAK,EACT,CACD,CACA,eAAeF",
6
- "names": ["throttle", "func", "delay", "wait", "args"]
4
+ "sourcesContent": ["import type { Timeout } from \"../types.js\";\n\nfunction throttle(func: () => void, delay: number): () => void {\n\tlet lastArgs: [] | null = null; // used to ensure an explicit last call after the delay\n\tlet throttleTimeout: Timeout | null = null;\n\n\treturn function throttled(...args) {\n\t\tif (throttleTimeout) {\n\t\t\tlastArgs = args;\n\t\t\treturn;\n\t\t}\n\n\t\tfunc(...args);\n\t\tthrottleTimeout = setTimeout(() => {\n\t\t\tif (lastArgs) {\n\t\t\t\tfunc(...lastArgs);\n\t\t\t\tlastArgs = null;\n\t\t\t}\n\t\t\tthrottleTimeout = null;\n\t\t}, delay);\n\t};\n}\n\nexport default throttle;\n"],
5
+ "mappings": "aAEA,SAASA,EAASC,EAAkBC,EAA2B,CAC9D,IAAIC,EAAsB,KACtBC,EAAkC,KAEtC,OAAO,YAAsBC,EAAM,CAClC,GAAID,EAAiB,CACpBD,EAAWE,EACX,MACD,CAEAJ,EAAK,GAAGI,CAAI,EACZD,EAAkB,WAAW,IAAM,CAC9BD,IACHF,EAAK,GAAGE,CAAQ,EAChBA,EAAW,MAEZC,EAAkB,IACnB,EAAGF,CAAK,CACT,CACD,CAEA,eAAeF",
6
+ "names": ["throttle", "func", "delay", "lastArgs", "throttleTimeout", "args"]
7
7
  }
@@ -1,5 +1,5 @@
1
1
  /* eslint-disable max-classes-per-file */
2
- import { HTMLElement, Element, customElements } from "@lit-labs/ssr-dom-shim";
2
+ import { HTMLElement, Element, customElements, ElementInternals } from "@lit-labs/ssr-dom-shim";
3
3
  globalThis.HTMLElement ??= HTMLElement;
4
4
  globalThis.Element ??= Element;
5
5
  globalThis.customElements ??= customElements;
@@ -55,4 +55,8 @@ globalThis.ResizeObserver = class ResizeObserver {
55
55
  };
56
56
  // empty showPopover method
57
57
  globalThis.HTMLElement.prototype.showPopover = function () { };
58
+ // ElementInternals
59
+ globalThis.HTMLElement.prototype.attachInternals = function () {
60
+ return new ElementInternals();
61
+ };
58
62
  //# sourceMappingURL=ssr-dom-shim.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ssr-dom-shim.js","sourceRoot":"","sources":["../src/ssr-dom-shim.ts"],"names":[],"mappings":"AAAA,yCAAyC;AACzC,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE9E,UAAU,CAAC,WAAW,KAAK,WAAW,CAAC;AACvC,UAAU,CAAC,OAAO,KAAK,OAAO,CAAC;AAC/B,UAAU,CAAC,cAAc,KAAK,cAAc,CAAC;AAE7C,MAAM,QAAQ;CAAG;AACjB,UAAU,CAAC,IAAI,KAAK,QAAiC,CAAC;AAEtD,MAAM,YAAY;CAAG;AACrB,UAAU,CAAC,QAAQ,KAAK,YAAyC,CAAC;AAElE,+BAA+B;AAE/B,8EAA8E;AAC9E,MAAM,kBAAkB,GAAG,IAAI,OAAO,EAAE,CAAC;AAEzC,IAAI,UAAU,CAAC,QAAQ,IAAI,CAAC,CAAC,oBAAoB,IAAI,QAAQ,CAAC,SAAS,CAAC,EAAE,CAAC;IACzE,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,oBAAoB,EAAE;QAC9D,GAAG;YACD,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;QAC5C,CAAC;QACD,GAAG,CAAC,MAAuB;YACzB,kBAAkB,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACvC,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAED,IAAI,UAAU,CAAC,UAAU,IAAI,CAAC,CAAC,oBAAoB,IAAI,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;IAC7E,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,oBAAoB,EAAE;QAChE,GAAG;YACD,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;QAC5C,CAAC;QACD,GAAG,CAAC,MAAuB;YACzB,kBAAkB,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACvC,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAED,kDAAkD;AAClD,IAAI,UAAU,CAAC,aAAa,IAAI,CAAC,CAAC,aAAa,IAAI,aAAa,CAAC,SAAS,CAAC,EAAE,CAAC;IAC1E,MAAM,CAAC,cAAc,CAAC,aAAa,CAAC,SAAS,EAAE,aAAa,EAAE;QAC5D,KAAK,CAAC,OAAe;YACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,OAAO,OAAO,CAAC;QACjB,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAEH,wBAAwB;AACxB,UAAU,CAAC,cAAc,GAAG,MAAM,cAAc;IAC5C,OAAO;QACL,aAAa;IACf,CAAC;IACD,SAAS;QACP,aAAa;IACf,CAAC;IACD,UAAU;QACR,aAAa;IACf,CAAC;CACJ,CAAC;AAEF,2BAA2B;AAC3B,UAAU,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,cAAa,CAAC,CAAC","sourcesContent":["/* eslint-disable max-classes-per-file */\nimport { HTMLElement, Element, customElements } from \"@lit-labs/ssr-dom-shim\";\n\nglobalThis.HTMLElement ??= HTMLElement;\nglobalThis.Element ??= Element;\nglobalThis.customElements ??= customElements;\n\nclass NodeShim {}\nglobalThis.Node ??= NodeShim as object as typeof Node;\n\nclass FileListShim {}\nglobalThis.FileList ??= FileListShim as object as typeof FileList;\n\n// ------- JS DOM shims -------\n\n// Polyfill `adoptedStyleSheets` globally for both `Document` and `ShadowRoot`\nconst adoptedSheetsStore = new WeakMap();\n\nif (globalThis.Document && !(\"adoptedStyleSheets\" in Document.prototype)) {\n Object.defineProperty(Document.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\nif (globalThis.ShadowRoot && !(\"adoptedStyleSheets\" in ShadowRoot.prototype)) {\n Object.defineProperty(ShadowRoot.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\n// Polyfill CSSStyleSheet to provide `replaceSync`\nif (globalThis.CSSStyleSheet && !(\"replaceSync\" in CSSStyleSheet.prototype)) {\n Object.defineProperty(CSSStyleSheet.prototype, \"replaceSync\", {\n value(cssText: string) {\n this.cssText = cssText;\n return cssText;\n },\n });\n }\n\n// Empty resize observer\nglobalThis.ResizeObserver = class ResizeObserver {\n observe() {\n // do nothing\n }\n unobserve() {\n // do nothing\n }\n disconnect() {\n // do nothing\n }\n};\n\n// empty showPopover method\nglobalThis.HTMLElement.prototype.showPopover = function () {};\n"]}
1
+ {"version":3,"file":"ssr-dom-shim.js","sourceRoot":"","sources":["../src/ssr-dom-shim.ts"],"names":[],"mappings":"AAAA,yCAAyC;AACzC,OAAO,EAAE,WAAW,EAAE,OAAO,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,wBAAwB,CAAC;AAEhG,UAAU,CAAC,WAAW,KAAK,WAAW,CAAC;AACvC,UAAU,CAAC,OAAO,KAAK,OAAO,CAAC;AAC/B,UAAU,CAAC,cAAc,KAAK,cAAc,CAAC;AAE7C,MAAM,QAAQ;CAAG;AACjB,UAAU,CAAC,IAAI,KAAK,QAAiC,CAAC;AAEtD,MAAM,YAAY;CAAG;AACrB,UAAU,CAAC,QAAQ,KAAK,YAAyC,CAAC;AAElE,+BAA+B;AAE/B,8EAA8E;AAC9E,MAAM,kBAAkB,GAAG,IAAI,OAAO,EAAE,CAAC;AAEzC,IAAI,UAAU,CAAC,QAAQ,IAAI,CAAC,CAAC,oBAAoB,IAAI,QAAQ,CAAC,SAAS,CAAC,EAAE,CAAC;IACzE,MAAM,CAAC,cAAc,CAAC,QAAQ,CAAC,SAAS,EAAE,oBAAoB,EAAE;QAC9D,GAAG;YACD,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;QAC5C,CAAC;QACD,GAAG,CAAC,MAAuB;YACzB,kBAAkB,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACvC,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAED,IAAI,UAAU,CAAC,UAAU,IAAI,CAAC,CAAC,oBAAoB,IAAI,UAAU,CAAC,SAAS,CAAC,EAAE,CAAC;IAC7E,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,SAAS,EAAE,oBAAoB,EAAE;QAChE,GAAG;YACD,OAAO,kBAAkB,CAAC,GAAG,CAAC,IAAI,CAAC,IAAI,EAAE,CAAC;QAC5C,CAAC;QACD,GAAG,CAAC,MAAuB;YACzB,kBAAkB,CAAC,GAAG,CAAC,IAAI,EAAE,MAAM,CAAC,CAAC;QACvC,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAED,kDAAkD;AAClD,IAAI,UAAU,CAAC,aAAa,IAAI,CAAC,CAAC,aAAa,IAAI,aAAa,CAAC,SAAS,CAAC,EAAE,CAAC;IAC1E,MAAM,CAAC,cAAc,CAAC,aAAa,CAAC,SAAS,EAAE,aAAa,EAAE;QAC5D,KAAK,CAAC,OAAe;YACnB,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;YACvB,OAAO,OAAO,CAAC;QACjB,CAAC;KACF,CAAC,CAAC;AACL,CAAC;AAEH,wBAAwB;AACxB,UAAU,CAAC,cAAc,GAAG,MAAM,cAAc;IAC5C,OAAO;QACL,aAAa;IACf,CAAC;IACD,SAAS;QACP,aAAa;IACf,CAAC;IACD,UAAU;QACR,aAAa;IACf,CAAC;CACJ,CAAC;AAEF,2BAA2B;AAC3B,UAAU,CAAC,WAAW,CAAC,SAAS,CAAC,WAAW,GAAG,cAAa,CAAC,CAAC;AAE9D,oBAAoB;AACpB,UAAU,CAAC,WAAW,CAAC,SAAS,CAAC,eAAe,GAAG;IAC/C,OAAO,IAAI,gBAAgB,EAAE,CAAC;AAClC,CAAC,CAAA","sourcesContent":["/* eslint-disable max-classes-per-file */\nimport { HTMLElement, Element, customElements, ElementInternals } from \"@lit-labs/ssr-dom-shim\";\n\nglobalThis.HTMLElement ??= HTMLElement;\nglobalThis.Element ??= Element;\nglobalThis.customElements ??= customElements;\n\nclass NodeShim {}\nglobalThis.Node ??= NodeShim as object as typeof Node;\n\nclass FileListShim {}\nglobalThis.FileList ??= FileListShim as object as typeof FileList;\n\n// ------- JS DOM shims -------\n\n// Polyfill `adoptedStyleSheets` globally for both `Document` and `ShadowRoot`\nconst adoptedSheetsStore = new WeakMap();\n\nif (globalThis.Document && !(\"adoptedStyleSheets\" in Document.prototype)) {\n Object.defineProperty(Document.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\nif (globalThis.ShadowRoot && !(\"adoptedStyleSheets\" in ShadowRoot.prototype)) {\n Object.defineProperty(ShadowRoot.prototype, \"adoptedStyleSheets\", {\n get() {\n return adoptedSheetsStore.get(this) || [];\n },\n set(sheets: CSSStyleSheet[]) {\n adoptedSheetsStore.set(this, sheets);\n },\n });\n}\n\n// Polyfill CSSStyleSheet to provide `replaceSync`\nif (globalThis.CSSStyleSheet && !(\"replaceSync\" in CSSStyleSheet.prototype)) {\n Object.defineProperty(CSSStyleSheet.prototype, \"replaceSync\", {\n value(cssText: string) {\n this.cssText = cssText;\n return cssText;\n },\n });\n }\n\n// Empty resize observer\nglobalThis.ResizeObserver = class ResizeObserver {\n observe() {\n // do nothing\n }\n unobserve() {\n // do nothing\n }\n disconnect() {\n // do nothing\n }\n};\n\n// empty showPopover method\nglobalThis.HTMLElement.prototype.showPopover = function () {};\n\n// ElementInternals\nglobalThis.HTMLElement.prototype.attachInternals = function() {\n return new ElementInternals();\n}"]}
@@ -0,0 +1,24 @@
1
+ /**
2
+ * Defines the sort order.
3
+ *
4
+ * @public
5
+ * @since 2.8.0
6
+ */
7
+ declare enum SortOrder {
8
+ /**
9
+ * Sorting is not applied.
10
+ * @public
11
+ */
12
+ None = "None",
13
+ /**
14
+ * Sorting is applied in ascending order.
15
+ * @public
16
+ */
17
+ Ascending = "Ascending",
18
+ /**
19
+ * Sorting is applied in descending order.
20
+ * @public
21
+ */
22
+ Descending = "Descending"
23
+ }
24
+ export default SortOrder;
@@ -0,0 +1,26 @@
1
+ /**
2
+ * Defines the sort order.
3
+ *
4
+ * @public
5
+ * @since 2.8.0
6
+ */
7
+ var SortOrder;
8
+ (function (SortOrder) {
9
+ /**
10
+ * Sorting is not applied.
11
+ * @public
12
+ */
13
+ SortOrder["None"] = "None";
14
+ /**
15
+ * Sorting is applied in ascending order.
16
+ * @public
17
+ */
18
+ SortOrder["Ascending"] = "Ascending";
19
+ /**
20
+ * Sorting is applied in descending order.
21
+ * @public
22
+ */
23
+ SortOrder["Descending"] = "Descending";
24
+ })(SortOrder || (SortOrder = {}));
25
+ export default SortOrder;
26
+ //# sourceMappingURL=SortOrder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"SortOrder.js","sourceRoot":"","sources":["../../src/types/SortOrder.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AACH,IAAK,SAkBJ;AAlBD,WAAK,SAAS;IACb;;;OAGG;IACH,0BAAa,CAAA;IAEb;;;OAGG;IACH,oCAAuB,CAAA;IAEvB;;;OAGG;IACH,sCAAyB,CAAA;AAC1B,CAAC,EAlBI,SAAS,KAAT,SAAS,QAkBb;AAED,eAAe,SAAS,CAAC","sourcesContent":["/**\n * Defines the sort order.\n *\n * @public\n * @since 2.8.0\n */\nenum SortOrder {\n\t/**\n\t * Sorting is not applied.\n\t * @public\n\t */\n\tNone = \"None\",\n\n\t/**\n\t * Sorting is applied in ascending order.\n\t * @public\n\t */\n\tAscending = \"Ascending\",\n\n\t/**\n\t * Sorting is applied in descending order.\n\t * @public\n\t */\n\tDescending = \"Descending\",\n}\n\nexport default SortOrder;\n"]}
@@ -1,13 +1,18 @@
1
1
  function throttle(func, delay) {
2
- let wait = false;
3
- return (...args) => {
4
- if (wait) {
2
+ let lastArgs = null; // used to ensure an explicit last call after the delay
3
+ let throttleTimeout = null;
4
+ return function throttled(...args) {
5
+ if (throttleTimeout) {
6
+ lastArgs = args;
5
7
  return;
6
8
  }
7
9
  func(...args);
8
- wait = true;
9
- setTimeout(() => {
10
- wait = false;
10
+ throttleTimeout = setTimeout(() => {
11
+ if (lastArgs) {
12
+ func(...lastArgs);
13
+ lastArgs = null;
14
+ }
15
+ throttleTimeout = null;
11
16
  }, delay);
12
17
  };
13
18
  }
@@ -1 +1 @@
1
- {"version":3,"file":"throttle.js","sourceRoot":"","sources":["../../src/util/throttle.ts"],"names":[],"mappings":"AAAA,SAAS,QAAQ,CAAC,IAAgB,EAAE,KAAa;IAChD,IAAI,IAAI,GAAG,KAAK,CAAC;IAEjB,OAAO,CAAC,GAAG,IAAI,EAAE,EAAE;QAClB,IAAI,IAAI,EAAE,CAAC;YACV,OAAO;QACR,CAAC;QAED,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QACd,IAAI,GAAG,IAAI,CAAC;QACZ,UAAU,CAAC,GAAG,EAAE;YACf,IAAI,GAAG,KAAK,CAAC;QACd,CAAC,EAAE,KAAK,CAAC,CAAC;IACX,CAAC,CAAC;AACH,CAAC;AACD,eAAe,QAAQ,CAAC","sourcesContent":["function throttle(func: () => void, delay: number): () => void {\n\tlet wait = false;\n\n\treturn (...args) => {\n\t\tif (wait) {\n\t\t\treturn;\n\t\t}\n\n\t\tfunc(...args);\n\t\twait = true;\n\t\tsetTimeout(() => {\n\t\t\twait = false;\n\t\t}, delay);\n\t};\n}\nexport default throttle;\n"]}
1
+ {"version":3,"file":"throttle.js","sourceRoot":"","sources":["../../src/util/throttle.ts"],"names":[],"mappings":"AAEA,SAAS,QAAQ,CAAC,IAAgB,EAAE,KAAa;IAChD,IAAI,QAAQ,GAAc,IAAI,CAAC,CAAC,uDAAuD;IACvF,IAAI,eAAe,GAAmB,IAAI,CAAC;IAE3C,OAAO,SAAS,SAAS,CAAC,GAAG,IAAI;QAChC,IAAI,eAAe,EAAE,CAAC;YACrB,QAAQ,GAAG,IAAI,CAAC;YAChB,OAAO;QACR,CAAC;QAED,IAAI,CAAC,GAAG,IAAI,CAAC,CAAC;QACd,eAAe,GAAG,UAAU,CAAC,GAAG,EAAE;YACjC,IAAI,QAAQ,EAAE,CAAC;gBACd,IAAI,CAAC,GAAG,QAAQ,CAAC,CAAC;gBAClB,QAAQ,GAAG,IAAI,CAAC;YACjB,CAAC;YACD,eAAe,GAAG,IAAI,CAAC;QACxB,CAAC,EAAE,KAAK,CAAC,CAAC;IACX,CAAC,CAAC;AACH,CAAC;AAED,eAAe,QAAQ,CAAC","sourcesContent":["import type { Timeout } from \"../types.js\";\n\nfunction throttle(func: () => void, delay: number): () => void {\n\tlet lastArgs: [] | null = null; // used to ensure an explicit last call after the delay\n\tlet throttleTimeout: Timeout | null = null;\n\n\treturn function throttled(...args) {\n\t\tif (throttleTimeout) {\n\t\t\tlastArgs = args;\n\t\t\treturn;\n\t\t}\n\n\t\tfunc(...args);\n\t\tthrottleTimeout = setTimeout(() => {\n\t\t\tif (lastArgs) {\n\t\t\t\tfunc(...lastArgs);\n\t\t\t\tlastArgs = null;\n\t\t\t}\n\t\t\tthrottleTimeout = null;\n\t\t}, delay);\n\t};\n}\n\nexport default throttle;\n"]}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ui5/webcomponents-base",
3
- "version": "2.8.0-rc.0",
3
+ "version": "2.8.0-rc.2",
4
4
  "description": "UI5 Web Components: webcomponents.base",
5
5
  "author": "SAP SE (https://www.sap.com)",
6
6
  "license": "Apache-2.0",
@@ -57,8 +57,8 @@
57
57
  },
58
58
  "devDependencies": {
59
59
  "@openui5/sap.ui.core": "1.120.17",
60
- "@ui5/webcomponents-tools": "2.8.0-rc.0",
61
- "chromedriver": "^131.0.0",
60
+ "@ui5/webcomponents-tools": "2.8.0-rc.2",
61
+ "chromedriver": "^132.0.0",
62
62
  "clean-css": "^5.2.2",
63
63
  "copy-and-watch": "^0.1.5",
64
64
  "cross-env": "^7.0.3",
@@ -68,5 +68,5 @@
68
68
  "resolve": "^1.20.0",
69
69
  "touch": "^3.1.0"
70
70
  },
71
- "gitHead": "8ec6a8928a1f691e8ca272f0f2c32f49e46c6992"
71
+ "gitHead": "3f2bb39755164a9074948fca90a65818ac89af7c"
72
72
  }