{"version":3,"names":["queryNonceMetaTagContent","doc","_a","_b","_c","head","querySelector","getAttribute","undefined","getDynamicImportFunction","namespace","concat","replace","patchBrowser","plt","$cssShim$","win","__cssshim","scriptElm","Array","from","querySelectorAll","find","s","RegExp","NAMESPACE","test","src","opts","history","scrollRestoration","then","resourcesUrl","URL","location","href","patchDynamicImport","customElements","module","import","promiseResolve","base","orgScriptElm","importFunctionName","Function","Math","random","e","moduleMap_1","Map","url","mod","get","script_1","createElement","type","crossOrigin","createObjectURL","Blob","nonce","$nonce$","setAttribute","Promise","resolve","onload","m","remove","set","appendChild","options","bootstrapLazy","state","fid","isPasswordTextField","isPasswordVisible","size","portion","existsCheckbox","enableOptOut","consentCategories","disableConsentConvenience","disableConsentAnalysis","disableConsentMarketing","cookieName","cookieSameSite","cookieSecure","consentDomain","consentPath","consentLifetimeAccepted","consentLifetimeDeclined","disableDeclineAll","dataProcessingThirdParty","dataProcessingOutsideEea","consents","preventAutoOpenActive","preventAutoOpenUrlParameter","disableLanguageSelector","disableIcons","visible","logging","jsonConfigTag","locale","fallbackLocale","linkUrlConvenience","linkUrlAnalysis","linkUrlMarketing","linkUrlPolicy","linkUrlImprint","linksTarget","googleConsentModeIntegration","experimentalActivateStatisticsRequests","internalConsents","consentMetaData","internalCategoryList","viewState","currentLocale","localizationContent","jsonConfiguration","footerLinks","show","disabledConvenience","disabledAnalysis","disabledMarketing","preventAutoOpen","consentData","categoryLinksData","footerLinksData","uiTextContent","uiCategoryLinksData","uiFooterLinksData","uiTextMoreInfoPrivacySettings","uiTextThirdPartyAndEuDesc","uiCheckboxList","iconClass","extDataProcessingPurposeListDescElement","dialogTitle","closeButton","label","ariaLabel","dropdownId","languageList","defaultLanguage","dropdownItemList","indeterminate","disabled","icon","iconPosition","target","fixed","isDynamicWidth","optionsList","defaultValue","source","name","iconTitle"],"sources":["node_modules/@stencil/core/internal/client/patch-browser.js","@lazy-browser-entrypoint?app-data=conditional"],"sourcesContent":["/*\n Stencil Client Patch Browser v2.22.3 | MIT Licensed | https://stenciljs.com\n */\nimport { BUILD, NAMESPACE } from '@stencil/core/internal/app-data';\nimport { consoleDevInfo, plt, win, doc, promiseResolve, H } from '@stencil/core';\n/**\n * Helper method for querying a `meta` tag that contains a nonce value\n * out of a DOM's head.\n *\n * @param doc The DOM containing the `head` to query against\n * @returns The content of the meta tag representing the nonce value, or `undefined` if no tag\n * exists or the tag has no content.\n */\nfunction queryNonceMetaTagContent(doc) {\n var _a, _b, _c;\n return (_c = (_b = (_a = doc.head) === null || _a === void 0 ? void 0 : _a.querySelector('meta[name=\"csp-nonce\"]')) === null || _b === void 0 ? void 0 : _b.getAttribute('content')) !== null && _c !== void 0 ? _c : undefined;\n}\nconst getDynamicImportFunction = (namespace) => `__sc_import_${namespace.replace(/\\s|-/g, '_')}`;\nconst patchBrowser = () => {\n // NOTE!! This fn cannot use async/await!\n if (BUILD.isDev && !BUILD.isTesting) {\n consoleDevInfo('Running in development mode.');\n }\n if (BUILD.cssVarShim) {\n // shim css vars\n plt.$cssShim$ = win.__cssshim;\n }\n if (BUILD.cloneNodeFix) {\n // opted-in to polyfill cloneNode() for slot polyfilled components\n patchCloneNodeFix(H.prototype);\n }\n if (BUILD.profile && !performance.mark) {\n // not all browsers support performance.mark/measure (Safari 10)\n // because the mark/measure APIs are designed to write entries to a buffer in the browser that does not exist,\n // simply stub the implementations out.\n // TODO(STENCIL-323): Remove this patch when support for older browsers is removed (breaking)\n // @ts-ignore\n performance.mark = performance.measure = () => {\n /*noop*/\n };\n performance.getEntriesByName = () => [];\n }\n // @ts-ignore\n const scriptElm = BUILD.scriptDataOpts || BUILD.safari10 || BUILD.dynamicImportShim\n ? Array.from(doc.querySelectorAll('script')).find((s) => new RegExp(`\\/${NAMESPACE}(\\\\.esm)?\\\\.js($|\\\\?|#)`).test(s.src) ||\n s.getAttribute('data-stencil-namespace') === NAMESPACE)\n : null;\n const importMeta = import.meta.url;\n const opts = BUILD.scriptDataOpts ? scriptElm['data-opts'] || {} : {};\n if (BUILD.safari10 && 'onbeforeload' in scriptElm && !history.scrollRestoration /* IS_ESM_BUILD */) {\n // Safari < v11 support: This IF is true if it's Safari below v11.\n // This fn cannot use async/await since Safari didn't support it until v11,\n // however, Safari 10 did support modules. Safari 10 also didn't support \"nomodule\",\n // so both the ESM file and nomodule file would get downloaded. Only Safari\n // has 'onbeforeload' in the script, and \"history.scrollRestoration\" was added\n // to Safari in v11. Return a noop then() so the async/await ESM code doesn't continue.\n // IS_ESM_BUILD is replaced at build time so this check doesn't happen in systemjs builds.\n return {\n then() {\n /* promise noop */\n },\n };\n }\n if (!BUILD.safari10 && importMeta !== '') {\n opts.resourcesUrl = new URL('.', importMeta).href;\n }\n else if (BUILD.dynamicImportShim || BUILD.safari10) {\n opts.resourcesUrl = new URL('.', new URL(scriptElm.getAttribute('data-resources-url') || scriptElm.src, win.location.href)).href;\n if (BUILD.dynamicImportShim) {\n patchDynamicImport(opts.resourcesUrl, scriptElm);\n }\n if (BUILD.dynamicImportShim && !win.customElements) {\n // module support, but no custom elements support (Old Edge)\n // @ts-ignore\n return import(/* webpackChunkName: \"polyfills-dom\" */ './dom.js').then(() => opts);\n }\n }\n return promiseResolve(opts);\n};\nconst patchDynamicImport = (base, orgScriptElm) => {\n const importFunctionName = getDynamicImportFunction(NAMESPACE);\n try {\n // test if this browser supports dynamic imports\n // There is a caching issue in V8, that breaks using import() in Function\n // By generating a random string, we can workaround it\n // Check https://bugs.chromium.org/p/chromium/issues/detail?id=990810 for more info\n win[importFunctionName] = new Function('w', `return import(w);//${Math.random()}`);\n }\n catch (e) {\n // this shim is specifically for browsers that do support \"esm\" imports\n // however, they do NOT support \"dynamic\" imports\n // basically this code is for old Edge, v18 and below\n const moduleMap = new Map();\n win[importFunctionName] = (src) => {\n var _a;\n const url = new URL(src, base).href;\n let mod = moduleMap.get(url);\n if (!mod) {\n const script = doc.createElement('script');\n script.type = 'module';\n script.crossOrigin = orgScriptElm.crossOrigin;\n script.src = URL.createObjectURL(new Blob([`import * as m from '${url}'; window.${importFunctionName}.m = m;`], {\n type: 'application/javascript',\n }));\n // Apply CSP nonce to the script tag if it exists\n const nonce = (_a = plt.$nonce$) !== null && _a !== void 0 ? _a : queryNonceMetaTagContent(doc);\n if (nonce != null) {\n script.setAttribute('nonce', nonce);\n }\n mod = new Promise((resolve) => {\n script.onload = () => {\n resolve(win[importFunctionName].m);\n script.remove();\n };\n });\n moduleMap.set(url, mod);\n doc.head.appendChild(script);\n }\n return mod;\n };\n }\n};\nconst patchCloneNodeFix = (HTMLElementPrototype) => {\n const nativeCloneNodeFn = HTMLElementPrototype.cloneNode;\n HTMLElementPrototype.cloneNode = function (deep) {\n if (this.nodeName === 'TEMPLATE') {\n return nativeCloneNodeFn.call(this, deep);\n }\n const clonedNode = nativeCloneNodeFn.call(this, false);\n const srcChildNodes = this.childNodes;\n if (deep) {\n for (let i = 0; i < srcChildNodes.length; i++) {\n // Node.ATTRIBUTE_NODE === 2, and checking because IE11\n if (srcChildNodes[i].nodeType !== 2) {\n clonedNode.appendChild(srcChildNodes[i].cloneNode(true));\n }\n }\n }\n return clonedNode;\n };\n};\nexport { patchBrowser };\n","export { setNonce } from '@stencil/core';\nimport { bootstrapLazy } from '@stencil/core';\nimport { patchBrowser } from '@stencil/core/internal/client/patch-browser';\nimport { globalScripts } from '@stencil/core/internal/app-globals';\npatchBrowser().then(options => {\n globalScripts();\n return bootstrapLazy([/*!__STENCIL_LAZY_DATA__*/], options);\n});\n"],"mappings":"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"}