@public-ui/themes 3.0.9-rc.2 → 3.0.9

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.
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","sources":["../../components/dist/esm/common-Dd0zJQbD.js","../../components/dist/esm/browser-DiRe0qUf.js","../../components/dist/esm/bem-BBRwGb1a.js","../../components/dist/esm/bem-C27SfH6w.js","../../components/dist/esm/events-9-skLO0f.js","../../components/dist/esm/index.js","../../default/src/index.ts","../../ecl/src/ecl-ec/index.ts","../../ecl/src/ecl-eu/index.ts"],"sourcesContent":["/*!\n * KoliBri - The accessible HTML-Standard\n */\nfunction getDefaultExportFromCjs (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nvar loglevel$1 = {exports: {}};\n\n/*\n* loglevel - https://github.com/pimterry/loglevel\n*\n* Copyright (c) 2013 Tim Perry\n* Licensed under the MIT license.\n*/\nvar loglevel = loglevel$1.exports;\n\nvar hasRequiredLoglevel;\n\nfunction requireLoglevel () {\n\tif (hasRequiredLoglevel) return loglevel$1.exports;\n\thasRequiredLoglevel = 1;\n\t(function (module) {\n\t\t(function (root, definition) {\n\t\t if (module.exports) {\n\t\t module.exports = definition();\n\t\t } else {\n\t\t root.log = definition();\n\t\t }\n\t\t}(loglevel, function () {\n\n\t\t // Slightly dubious tricks to cut down minimized file size\n\t\t var noop = function() {};\n\t\t var undefinedType = \"undefined\";\n\t\t var isIE = (typeof window !== undefinedType) && (typeof window.navigator !== undefinedType) && (\n\t\t /Trident\\/|MSIE /.test(window.navigator.userAgent)\n\t\t );\n\n\t\t var logMethods = [\n\t\t \"trace\",\n\t\t \"debug\",\n\t\t \"info\",\n\t\t \"warn\",\n\t\t \"error\"\n\t\t ];\n\n\t\t var _loggersByName = {};\n\t\t var defaultLogger = null;\n\n\t\t // Cross-browser bind equivalent that works at least back to IE6\n\t\t function bindMethod(obj, methodName) {\n\t\t var method = obj[methodName];\n\t\t if (typeof method.bind === 'function') {\n\t\t return method.bind(obj);\n\t\t } else {\n\t\t try {\n\t\t return Function.prototype.bind.call(method, obj);\n\t\t } catch (e) {\n\t\t // Missing bind shim or IE8 + Modernizr, fallback to wrapping\n\t\t return function() {\n\t\t return Function.prototype.apply.apply(method, [obj, arguments]);\n\t\t };\n\t\t }\n\t\t }\n\t\t }\n\n\t\t // Trace() doesn't print the message in IE, so for that case we need to wrap it\n\t\t function traceForIE() {\n\t\t if (console.log) {\n\t\t if (console.log.apply) {\n\t\t console.log.apply(console, arguments);\n\t\t } else {\n\t\t // In old IE, native console methods themselves don't have apply().\n\t\t Function.prototype.apply.apply(console.log, [console, arguments]);\n\t\t }\n\t\t }\n\t\t if (console.trace) console.trace();\n\t\t }\n\n\t\t // Build the best logging method possible for this env\n\t\t // Wherever possible we want to bind, not wrap, to preserve stack traces\n\t\t function realMethod(methodName) {\n\t\t if (methodName === 'debug') {\n\t\t methodName = 'log';\n\t\t }\n\n\t\t if (typeof console === undefinedType) {\n\t\t return false; // No method possible, for now - fixed later by enableLoggingWhenConsoleArrives\n\t\t } else if (methodName === 'trace' && isIE) {\n\t\t return traceForIE;\n\t\t } else if (console[methodName] !== undefined) {\n\t\t return bindMethod(console, methodName);\n\t\t } else if (console.log !== undefined) {\n\t\t return bindMethod(console, 'log');\n\t\t } else {\n\t\t return noop;\n\t\t }\n\t\t }\n\n\t\t // These private functions always need `this` to be set properly\n\n\t\t function replaceLoggingMethods() {\n\t\t /*jshint validthis:true */\n\t\t var level = this.getLevel();\n\n\t\t // Replace the actual methods.\n\t\t for (var i = 0; i < logMethods.length; i++) {\n\t\t var methodName = logMethods[i];\n\t\t this[methodName] = (i < level) ?\n\t\t noop :\n\t\t this.methodFactory(methodName, level, this.name);\n\t\t }\n\n\t\t // Define log.log as an alias for log.debug\n\t\t this.log = this.debug;\n\n\t\t // Return any important warnings.\n\t\t if (typeof console === undefinedType && level < this.levels.SILENT) {\n\t\t return \"No console available for logging\";\n\t\t }\n\t\t }\n\n\t\t // In old IE versions, the console isn't present until you first open it.\n\t\t // We build realMethod() replacements here that regenerate logging methods\n\t\t function enableLoggingWhenConsoleArrives(methodName) {\n\t\t return function () {\n\t\t if (typeof console !== undefinedType) {\n\t\t replaceLoggingMethods.call(this);\n\t\t this[methodName].apply(this, arguments);\n\t\t }\n\t\t };\n\t\t }\n\n\t\t // By default, we use closely bound real methods wherever possible, and\n\t\t // otherwise we wait for a console to appear, and then try again.\n\t\t function defaultMethodFactory(methodName, _level, _loggerName) {\n\t\t /*jshint validthis:true */\n\t\t return realMethod(methodName) ||\n\t\t enableLoggingWhenConsoleArrives.apply(this, arguments);\n\t\t }\n\n\t\t function Logger(name, factory) {\n\t\t // Private instance variables.\n\t\t var self = this;\n\t\t /**\n\t\t * The level inherited from a parent logger (or a global default). We\n\t\t * cache this here rather than delegating to the parent so that it stays\n\t\t * in sync with the actual logging methods that we have installed (the\n\t\t * parent could change levels but we might not have rebuilt the loggers\n\t\t * in this child yet).\n\t\t * @type {number}\n\t\t */\n\t\t var inheritedLevel;\n\t\t /**\n\t\t * The default level for this logger, if any. If set, this overrides\n\t\t * `inheritedLevel`.\n\t\t * @type {number|null}\n\t\t */\n\t\t var defaultLevel;\n\t\t /**\n\t\t * A user-specific level for this logger. If set, this overrides\n\t\t * `defaultLevel`.\n\t\t * @type {number|null}\n\t\t */\n\t\t var userLevel;\n\n\t\t var storageKey = \"loglevel\";\n\t\t if (typeof name === \"string\") {\n\t\t storageKey += \":\" + name;\n\t\t } else if (typeof name === \"symbol\") {\n\t\t storageKey = undefined;\n\t\t }\n\n\t\t function persistLevelIfPossible(levelNum) {\n\t\t var levelName = (logMethods[levelNum] || 'silent').toUpperCase();\n\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t // Use localStorage if available\n\t\t try {\n\t\t window.localStorage[storageKey] = levelName;\n\t\t return;\n\t\t } catch (ignore) {}\n\n\t\t // Use session cookie as fallback\n\t\t try {\n\t\t window.document.cookie =\n\t\t encodeURIComponent(storageKey) + \"=\" + levelName + \";\";\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t function getPersistedLevel() {\n\t\t var storedLevel;\n\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t try {\n\t\t storedLevel = window.localStorage[storageKey];\n\t\t } catch (ignore) {}\n\n\t\t // Fallback to cookies if local storage gives us nothing\n\t\t if (typeof storedLevel === undefinedType) {\n\t\t try {\n\t\t var cookie = window.document.cookie;\n\t\t var cookieName = encodeURIComponent(storageKey);\n\t\t var location = cookie.indexOf(cookieName + \"=\");\n\t\t if (location !== -1) {\n\t\t storedLevel = /^([^;]+)/.exec(\n\t\t cookie.slice(location + cookieName.length + 1)\n\t\t )[1];\n\t\t }\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t // If the stored level is not valid, treat it as if nothing was stored.\n\t\t if (self.levels[storedLevel] === undefined) {\n\t\t storedLevel = undefined;\n\t\t }\n\n\t\t return storedLevel;\n\t\t }\n\n\t\t function clearPersistedLevel() {\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t // Use localStorage if available\n\t\t try {\n\t\t window.localStorage.removeItem(storageKey);\n\t\t } catch (ignore) {}\n\n\t\t // Use session cookie as fallback\n\t\t try {\n\t\t window.document.cookie =\n\t\t encodeURIComponent(storageKey) + \"=; expires=Thu, 01 Jan 1970 00:00:00 UTC\";\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t function normalizeLevel(input) {\n\t\t var level = input;\n\t\t if (typeof level === \"string\" && self.levels[level.toUpperCase()] !== undefined) {\n\t\t level = self.levels[level.toUpperCase()];\n\t\t }\n\t\t if (typeof level === \"number\" && level >= 0 && level <= self.levels.SILENT) {\n\t\t return level;\n\t\t } else {\n\t\t throw new TypeError(\"log.setLevel() called with invalid level: \" + input);\n\t\t }\n\t\t }\n\n\t\t /*\n\t\t *\n\t\t * Public logger API - see https://github.com/pimterry/loglevel for details\n\t\t *\n\t\t */\n\n\t\t self.name = name;\n\n\t\t self.levels = { \"TRACE\": 0, \"DEBUG\": 1, \"INFO\": 2, \"WARN\": 3,\n\t\t \"ERROR\": 4, \"SILENT\": 5};\n\n\t\t self.methodFactory = factory || defaultMethodFactory;\n\n\t\t self.getLevel = function () {\n\t\t if (userLevel != null) {\n\t\t return userLevel;\n\t\t } else if (defaultLevel != null) {\n\t\t return defaultLevel;\n\t\t } else {\n\t\t return inheritedLevel;\n\t\t }\n\t\t };\n\n\t\t self.setLevel = function (level, persist) {\n\t\t userLevel = normalizeLevel(level);\n\t\t if (persist !== false) { // defaults to true\n\t\t persistLevelIfPossible(userLevel);\n\t\t }\n\n\t\t // NOTE: in v2, this should call rebuild(), which updates children.\n\t\t return replaceLoggingMethods.call(self);\n\t\t };\n\n\t\t self.setDefaultLevel = function (level) {\n\t\t defaultLevel = normalizeLevel(level);\n\t\t if (!getPersistedLevel()) {\n\t\t self.setLevel(level, false);\n\t\t }\n\t\t };\n\n\t\t self.resetLevel = function () {\n\t\t userLevel = null;\n\t\t clearPersistedLevel();\n\t\t replaceLoggingMethods.call(self);\n\t\t };\n\n\t\t self.enableAll = function(persist) {\n\t\t self.setLevel(self.levels.TRACE, persist);\n\t\t };\n\n\t\t self.disableAll = function(persist) {\n\t\t self.setLevel(self.levels.SILENT, persist);\n\t\t };\n\n\t\t self.rebuild = function () {\n\t\t if (defaultLogger !== self) {\n\t\t inheritedLevel = normalizeLevel(defaultLogger.getLevel());\n\t\t }\n\t\t replaceLoggingMethods.call(self);\n\n\t\t if (defaultLogger === self) {\n\t\t for (var childName in _loggersByName) {\n\t\t _loggersByName[childName].rebuild();\n\t\t }\n\t\t }\n\t\t };\n\n\t\t // Initialize all the internal levels.\n\t\t inheritedLevel = normalizeLevel(\n\t\t defaultLogger ? defaultLogger.getLevel() : \"WARN\"\n\t\t );\n\t\t var initialLevel = getPersistedLevel();\n\t\t if (initialLevel != null) {\n\t\t userLevel = normalizeLevel(initialLevel);\n\t\t }\n\t\t replaceLoggingMethods.call(self);\n\t\t }\n\n\t\t /*\n\t\t *\n\t\t * Top-level API\n\t\t *\n\t\t */\n\n\t\t defaultLogger = new Logger();\n\n\t\t defaultLogger.getLogger = function getLogger(name) {\n\t\t if ((typeof name !== \"symbol\" && typeof name !== \"string\") || name === \"\") {\n\t\t throw new TypeError(\"You must supply a name when creating a logger.\");\n\t\t }\n\n\t\t var logger = _loggersByName[name];\n\t\t if (!logger) {\n\t\t logger = _loggersByName[name] = new Logger(\n\t\t name,\n\t\t defaultLogger.methodFactory\n\t\t );\n\t\t }\n\t\t return logger;\n\t\t };\n\n\t\t // Grab the current global log variable in case of overwrite\n\t\t var _log = (typeof window !== undefinedType) ? window.log : undefined;\n\t\t defaultLogger.noConflict = function() {\n\t\t if (typeof window !== undefinedType &&\n\t\t window.log === defaultLogger) {\n\t\t window.log = _log;\n\t\t }\n\n\t\t return defaultLogger;\n\t\t };\n\n\t\t defaultLogger.getLoggers = function getLoggers() {\n\t\t return _loggersByName;\n\t\t };\n\n\t\t // ES6 default export, for compatibility\n\t\t defaultLogger['default'] = defaultLogger;\n\n\t\t return defaultLogger;\n\t\t})); \n\t} (loglevel$1));\n\treturn loglevel$1.exports;\n}\n\nvar loglevelExports = requireLoglevel();\nvar h = /*@__PURE__*/getDefaultExportFromCjs(loglevelExports);\n\nconst I=(t,e)=>s=>s(t,e),P=(t,e)=>s=>s(t,e,{append:false}),$=()=>{const t=typeof process<\"u\"&&process.env?process.env:{},e=t.NODE_ENV===\"test\",s=\"VITEST\"in t,a=\"JEST_WORKER_ID\"in t,o=\"PLAYWRIGHT_TEST_BASE_URL\"in t,r=t.CI===\"true\",i=t.TEST===\"true\"||t.IS_TEST===\"true\",c=typeof navigator<\"u\"&&navigator.webdriver===true,m=typeof navigator<\"u\"&&/playwright|puppeteer|webdriver|selenium|testcafe/i.test(navigator.userAgent);return e||s||a||o||r||i||c||m},n$1={A11yUi:{CSS_STYLE_CACHE:new Map,IS_TEST_ENVIRONMENT:$(),PERFORMANCE_MEASURES:new Map,STYLING_TASK_QUEUE:new Map,THEMES:new Map,showAverageTimes:()=>{const t={};for(const[s,a]of n$1.A11yUi.PERFORMANCE_MEASURES.entries())t[s]=[a.totalTime/a.count,a.count];const e=Object.entries(t).sort((s,a)=>a[1][0]-s[1][0]);return console.table(Object.fromEntries(e.map(([s,[a,o]])=>[s,{\"avg (ms)\":parseFloat(a.toFixed(2)),count:o}]))),t}}};let d=true,f$1=false;const j=/^[a-z][a-z0-9]{1,}(-[a-z0-9]+)?$/,F=t=>typeof t==\"string\"&&j.test(t),E=t=>{if(!F(t))throw new Error(`[Theming] The theme identifier \"${typeof t==\"string\"?t:\"\"}\" (Type: ${typeof t}) is not valid. Please use only follow this pattern: /^[a-z][a-z0-9]{1,}(-[a-z0-9]+)?$/`)},g=t=>t.replace(/\\/\\*[\\s\\S]*?\\*\\//g,\"\").replace(/\\s*([{},;])\\s*/g,\"$1\").replace(/:\\s+/g,\":\").replace(/\\s+/g,\" \").replace(/;\\}/g,\"}\").trim(),Y=(t,e,s,a)=>u$1(t,e,s,a),u$1=(t,e,s,a)=>{a=a??{},a.append=a.append??false,E(t),d&&!f$1&&(f$1=true,h.warn(`[Theming] The theme process is locked. This means that the theme \"${t}\" should not be patched.\n\n import { register } from 'adopted-style-sheets';\n import { defineCustomElements } from '...';\n import { THEME } from '...';\n\n register(THEME, defineCustomElements)\n .then(() => {\n // run your app or website\n })\n .catch(console.warn);`));let o=n$1.A11yUi.THEMES.get(t);if(o||(o=new Map,n$1.A11yUi.THEMES.set(t,o)),a.append&&o.has(e)){const r=o.get(e);o.set(e,g(`${r}${s}`));}else o.set(e,g(s));},k=(t,e,s,a)=>p(t,e,s,a),p=(t,e,s,a)=>(E(t),typeof e==\"object\"&&e!==null&&Object.getOwnPropertyNames(e).forEach(o=>{const r=e[o],i=o.toLowerCase(),c=typeof a?.transformTagName==\"function\"&&![\"GLOBAL\",\"PROPERTIES\"].includes(o)?a.transformTagName(i):o;typeof r==\"string\"&&r.length>0&&u$1(t,c.toUpperCase(),r,s);}),t),S=t=>{if(t instanceof HTMLElement){if(typeof t.dataset.theme==\"string\")return t;{let e=t.parentNode;for(;e instanceof ShadowRoot;)e=e.host;return S(e)}}else return null},A=(t={})=>t.themeEncroachCss===\"false\"||t.themeReset===\"true\"?false:{mode:t.themeEncroachCssMode===\"after\"||t.themeEncroachCssMode===\"before\"?t.themeEncroachCssMode:\"before\"},C=()=>typeof n$1.A11yUi.Theme==\"object\"&&n$1.A11yUi.Theme!==null&&typeof n$1.A11yUi.Theme.cache==\"boolean\"&&typeof n$1.A11yUi.Theme.encroachCss==\"object\"&&n$1.A11yUi.Theme.encroachCss!==null&&typeof n$1.A11yUi.Theme.encroachCss.mode==\"string\"&&typeof n$1.A11yUi.Theme.name==\"string\",G=()=>!(typeof n$1.A11yUi.Theme==\"object\"&&n$1.A11yUi.Theme!==null)||n$1.A11yUi.Theme.name!==\"default\",b=t=>{if(C())return n$1.A11yUi.Theme;{const e={cache:true,encroachCss:A(),loglevel:\"silent\",mode:\"csr\",name:null},s=S(t);return s instanceof HTMLElement&&(e.cache=s.dataset.themeCache!==\"false\",e.encroachCss=A(s.dataset),e.loglevel=s.dataset.themeLoglevel===\"debug\"?s.dataset.themeLoglevel:\"silent\",e.mode=s.dataset.themeMode===\"ssr\"?s.dataset.themeMode:\"csr\",e.name=s.dataset.theme||null),e}},B=(t,e)=>({cache:e.cache!==false,detect:e.detect===\"auto\"?\"auto\":\"fixed\",encroachCss:e.encroachCss===false?false:typeof e.encroachCss==\"object\"&&e.encroachCss!=null&&(e.encroachCss.mode===\"after\"||e.encroachCss.mode===\"before\")?e.encroachCss:{mode:\"before\"},loglevel:e.loglevel===\"debug\"?e.loglevel:\"silent\",mode:e.mode===\"ssr\"?e.mode:\"csr\",name:typeof e.name==\"string\"?e.name:t}),K=(t,e)=>{C()===false&&G()&&typeof e==\"object\"&&e!==null&&(e=B(t,e),e.detect===\"fixed\"?(e.name===null&&typeof t==\"string\"&&(e.name=t),t===e.name&&(n$1.A11yUi.Theme=e,h.info(`[Theming] Theme \"${t}\" was set as default theme.`))):f$1||(f$1=true,h.warn(\"[Theming] The presetting of theme options is only relevant by using 'fixed' detection mode.\")));};let U=false;const V=(t,e,s={})=>{U||(U=true,d=false,typeof window<\"u\"&&(window.A11yUi=n$1.A11yUi)),typeof t==\"function\"?t=new Set([t]):Array.isArray(t)&&(t=new Set(t)),t instanceof Set&&t.forEach(o=>{typeof o==\"function\"&&o.length===1?K(o((r,i,c)=>p(r,i,c,s)),{cache:s.theme?.cache,detect:s.theme?.detect,encroachCss:s.theme?.encroachCss,mode:s.theme?.mode,name:s.theme?.name}):h.error(\"[Theming] An attempt was made to load an incompatible theme.\");}),d=true,typeof e==\"function\"?e=new Set([e]):Array.isArray(e)&&(e=new Set(e));const a=[];return e.forEach(o=>{const r=o();r instanceof Promise&&a.push(r);}),Promise.all(a)};const w=new Set,W=/--[^;]+/g,q=/:/,J=typeof MutationObserver<\"u\";let M=25,N=()=>{M=Math.min(25+Math.log2(n$1.A11yUi.STYLING_TASK_QUEUE.size+1)*20,250);};const X=(t,e)=>{let s=e.match(W);if(Array.isArray(s)){s=s.filter(o=>q.test(o));const a=document.createElement(\"style\");a.innerHTML=`.${t} {${s.join(\";\")}}`,document.querySelector(\"head\")?.appendChild(a);}w.add(t);},y=(t,e)=>{const s=n$1.A11yUi.THEMES.get(t);return s instanceof Map&&s.has(e)?s.get(e):\"\"},Z=t=>{for(const e of Array.from(t.childNodes))if(e instanceof HTMLStyleElement&&e.tagName===\"STYLE\"&&e.dataset.themingFallback===void 0)t.removeChild(e);else break},ee=(t,e)=>{try{if(n$1.A11yUi.Theme?.mode===\"ssr\")throw new Error(\"SSR\");const s=[];e.forEach(a=>{const o=new CSSStyleSheet;o.replaceSync(a),s.push(o);}),t.adoptedStyleSheets=s;}catch{[...e].reverse().forEach((a,o)=>{if(typeof a!=\"string\"||a.length===0)return;const r=document.createElement(\"style\");switch(r.dataset.themingFallback=\"\",o){case 4:r.dataset.themingBaseA11y=\"\";break;case 3:r.dataset.themingBaseGlobal=\"\";break;case 2:r.dataset.themingBaseComponent=\"\";break;case 1:r.dataset.themingCustomGlobal=\"\";break;case 0:r.dataset.themingCustomComponent=\"\";break;default:r.dataset.themingUnknown=\"\";break}r.innerHTML=a,t.insertBefore(r,t.firstChild);});}},te=(t,e,s)=>{if(s!==false){const a=[...Array.from(t.childNodes).filter(r=>r instanceof HTMLStyleElement&&r.tagName===\"STYLE\")];let o;try{o=[...Array.from(t.adoptedStyleSheets)];}catch{o=[];}s?.mode===\"before\"?(a.reverse().forEach(r=>e.unshift(r.innerHTML)),o.reverse().forEach(r=>e.unshift(Array.from(r.cssRules).map(i=>i.cssText).join(\"\")))):s?.mode===\"after\"&&(a.forEach(r=>e.push(r.innerHTML)),o.forEach(r=>e.push(Array.from(r.cssRules).map(i=>i.cssText).join(\"\"))));}},se=(t,e,s)=>{const a=e.name||\"default\";let o;try{if(t.shadowRoot===null)throw new Error(\"ShadowRoot is null\");o=t.shadowRoot;}catch{o=t;}if(n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.has(t.tagName))v(t,o,n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.get(t.tagName),s);else {const r=y(a,\"PROPERTIES\"),i=y(a,\"GLOBAL\"),c=y(a,t.tagName);w.has(a)===false&&X(a,i);const m=[r,i,c];te(o,m,e.encroachCss),e.cache===true&&(n$1.A11yUi.CSS_STYLE_CACHE.has(a)===false&&n$1.A11yUi.CSS_STYLE_CACHE.set(a,new Map),n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.set(t.tagName,m)),v(t,o,m,s);}},v=(t,e,s,a)=>{const o=performance.now();if(Z(e),ee(e,s),H(t),a(),n$1.A11yUi.PERFORMANCE_MEASURES.has(t.tagName)){const r=n$1.A11yUi.PERFORMANCE_MEASURES.get(t.tagName);r.count+=1,r.totalTime+=performance.now()-o;}else n$1.A11yUi.PERFORMANCE_MEASURES.set(t.tagName,{count:1,totalTime:performance.now()-o});},L=t=>{const e=n$1.A11yUi.STYLING_TASK_QUEUE.get(t);if(e){const{resetCss:s,themeDetails:a}=e;se(t,a,s),H(t);}};let T=t=>{const e=setTimeout(()=>{clearTimeout(e),t.classList.contains(\"hydrated\")?L(t):T(t);},M);};const ae={attributes:true,attributeFilter:[\"class\"],childList:false,subtree:false},oe={attributes:true,attributeFilter:[],childList:false,subtree:false},R=J?new MutationObserver((t,e)=>{for(const s of t){const a=s.target;a.classList.contains(\"hydrated\")&&(L(a),e.observe(a,oe));}}):null;R&&(T=t=>R.observe(t,ae),N=()=>{});let _=t=>{const e=getComputedStyle(t).getPropertyValue(\"--theme-visibility-delay\").trim();if(e.endsWith(\"ms\"))return parseFloat(e);if(e.endsWith(\"s\"))return parseFloat(e)*1e3;{const s=parseFloat(e);return isNaN(s)?0:s}};n$1.A11yUi.IS_TEST_ENVIRONMENT&&(_=()=>0);const O=(t,e)=>{t.style.setProperty(\"visibility\",e),t.dataset.themed=\"\";},re=(t,e)=>{const s=t.style.visibility||null;n$1.A11yUi.STYLING_TASK_QUEUE.set(t,{resetCss:()=>{const a=_(t);a>0?setTimeout(()=>{O(t,s);},a):O(t,s);},themeDetails:e}),t.style.setProperty(\"visibility\",\"hidden\",\"important\"),T(t);},H=t=>{n$1.A11yUi.STYLING_TASK_QUEUE.delete(t),N();},ne=(t,e)=>{re(t,{...n$1.A11yUi.Theme,...e});};class ie{Prefix;Key;Tag;createTheme=(e,s)=>P(e,s);createTranslation=(e,s)=>I(e,s);constructor(e,s,a){this.Prefix=e,this.Key=Object.getOwnPropertyNames(s),this.Tag=Object.getOwnPropertyNames(a);}}\n\nvar KeyEnum;\n(function (KeyEnum) {\n KeyEnum[KeyEnum[\"error\"] = 0] = \"error\";\n KeyEnum[KeyEnum[\"warning\"] = 1] = \"warning\";\n KeyEnum[KeyEnum[\"info\"] = 2] = \"info\";\n KeyEnum[KeyEnum[\"success\"] = 3] = \"success\";\n KeyEnum[KeyEnum[\"message\"] = 4] = \"message\";\n KeyEnum[KeyEnum[\"close\"] = 5] = \"close\";\n KeyEnum[KeyEnum[\"form-description\"] = 6] = \"form-description\";\n KeyEnum[KeyEnum[\"of\"] = 7] = \"of\";\n KeyEnum[KeyEnum[\"characters\"] = 8] = \"characters\";\n KeyEnum[KeyEnum[\"new\"] = 9] = \"new\";\n KeyEnum[KeyEnum[\"no-entries\"] = 10] = \"no-entries\";\n KeyEnum[KeyEnum[\"change-order\"] = 11] = \"change-order\";\n KeyEnum[KeyEnum[\"action-running\"] = 12] = \"action-running\";\n KeyEnum[KeyEnum[\"action-done\"] = 13] = \"action-done\";\n KeyEnum[KeyEnum[\"page-first\"] = 14] = \"page-first\";\n KeyEnum[KeyEnum[\"page-back\"] = 15] = \"page-back\";\n KeyEnum[KeyEnum[\"page-next\"] = 16] = \"page-next\";\n KeyEnum[KeyEnum[\"page-last\"] = 17] = \"page-last\";\n KeyEnum[KeyEnum[\"entries-per-site\"] = 18] = \"entries-per-site\";\n KeyEnum[KeyEnum[\"page-current\"] = 19] = \"page-current\";\n KeyEnum[KeyEnum[\"page-selected\"] = 20] = \"page-selected\";\n KeyEnum[KeyEnum[\"page-per-site\"] = 21] = \"page-per-site\";\n KeyEnum[KeyEnum[\"logo-description\"] = 22] = \"logo-description\";\n KeyEnum[KeyEnum[\"open-link-in-tab\"] = 23] = \"open-link-in-tab\";\n KeyEnum[KeyEnum[\"kolibri-logo\"] = 24] = \"kolibri-logo\";\n})(KeyEnum || (KeyEnum = {}));\n\nvar TagEnum;\n(function (TagEnum) {\n TagEnum[TagEnum[\"abbr\"] = 0] = \"abbr\";\n TagEnum[TagEnum[\"accordion\"] = 1] = \"accordion\";\n TagEnum[TagEnum[\"alert\"] = 2] = \"alert\";\n TagEnum[TagEnum[\"avatar\"] = 3] = \"avatar\";\n TagEnum[TagEnum[\"badge\"] = 4] = \"badge\";\n TagEnum[TagEnum[\"breadcrumb\"] = 5] = \"breadcrumb\";\n TagEnum[TagEnum[\"button\"] = 6] = \"button\";\n TagEnum[TagEnum[\"button-link\"] = 7] = \"button-link\";\n TagEnum[TagEnum[\"card\"] = 8] = \"card\";\n TagEnum[TagEnum[\"combobox\"] = 9] = \"combobox\";\n TagEnum[TagEnum[\"details\"] = 10] = \"details\";\n TagEnum[TagEnum[\"drawer\"] = 11] = \"drawer\";\n TagEnum[TagEnum[\"form\"] = 12] = \"form\";\n TagEnum[TagEnum[\"heading\"] = 13] = \"heading\";\n TagEnum[TagEnum[\"icon\"] = 14] = \"icon\";\n TagEnum[TagEnum[\"image\"] = 15] = \"image\";\n TagEnum[TagEnum[\"input-checkbox\"] = 16] = \"input-checkbox\";\n TagEnum[TagEnum[\"input-color\"] = 17] = \"input-color\";\n TagEnum[TagEnum[\"input-date\"] = 18] = \"input-date\";\n TagEnum[TagEnum[\"input-email\"] = 19] = \"input-email\";\n TagEnum[TagEnum[\"input-file\"] = 20] = \"input-file\";\n TagEnum[TagEnum[\"input-number\"] = 21] = \"input-number\";\n TagEnum[TagEnum[\"input-password\"] = 22] = \"input-password\";\n TagEnum[TagEnum[\"input-radio\"] = 23] = \"input-radio\";\n TagEnum[TagEnum[\"input-range\"] = 24] = \"input-range\";\n TagEnum[TagEnum[\"input-text\"] = 25] = \"input-text\";\n TagEnum[TagEnum[\"kolibri\"] = 26] = \"kolibri\";\n TagEnum[TagEnum[\"link\"] = 27] = \"link\";\n TagEnum[TagEnum[\"link-button\"] = 28] = \"link-button\";\n TagEnum[TagEnum[\"logo\"] = 29] = \"logo\";\n TagEnum[TagEnum[\"modal\"] = 30] = \"modal\";\n TagEnum[TagEnum[\"nav\"] = 31] = \"nav\";\n TagEnum[TagEnum[\"pagination\"] = 32] = \"pagination\";\n TagEnum[TagEnum[\"popover-button\"] = 33] = \"popover-button\";\n TagEnum[TagEnum[\"progress\"] = 34] = \"progress\";\n TagEnum[TagEnum[\"quote\"] = 35] = \"quote\";\n TagEnum[TagEnum[\"select\"] = 36] = \"select\";\n TagEnum[TagEnum[\"single-select\"] = 37] = \"single-select\";\n TagEnum[TagEnum[\"skip-nav\"] = 38] = \"skip-nav\";\n TagEnum[TagEnum[\"spin\"] = 39] = \"spin\";\n TagEnum[TagEnum[\"split-button\"] = 40] = \"split-button\";\n TagEnum[TagEnum[\"symbol\"] = 41] = \"symbol\";\n TagEnum[TagEnum[\"table\"] = 42] = \"table\";\n TagEnum[TagEnum[\"table-stateful\"] = 43] = \"table-stateful\";\n TagEnum[TagEnum[\"table-stateless\"] = 44] = \"table-stateless\";\n TagEnum[TagEnum[\"tabs\"] = 45] = \"tabs\";\n TagEnum[TagEnum[\"textarea\"] = 46] = \"textarea\";\n TagEnum[TagEnum[\"toast-container\"] = 47] = \"toast-container\";\n TagEnum[TagEnum[\"toolbar\"] = 48] = \"toolbar\";\n TagEnum[TagEnum[\"tooltip\"] = 49] = \"tooltip\";\n TagEnum[TagEnum[\"tree\"] = 50] = \"tree\";\n TagEnum[TagEnum[\"tree-item\"] = 51] = \"tree-item\";\n})(TagEnum || (TagEnum = {}));\n\nconst getWindow = () => {\n if (typeof window !== 'undefined')\n return window;\n return {};\n};\nconst getDocument = () => {\n const win = getWindow();\n if (win && typeof win.document !== 'undefined')\n return win.document;\n return {};\n};\nconst MODES = ['development', 'production', 'test'];\nlet runtimeMode = 'production';\nconst setRuntimeMode = (mode) => {\n try {\n if (MODES.includes(mode)) {\n runtimeMode = mode;\n }\n else {\n throw new Error(`Invalid NODE_ENV value: ${mode}. Expected one of ${MODES.join(', ')}.`);\n }\n }\n catch (e) {\n runtimeMode = 'production';\n }\n};\nconst getInitialMode = () => {\n try {\n const nodeEnv = typeof process !== 'undefined' && process.env ? process.env['NODE_ENV'] : undefined;\n if (nodeEnv && MODES.includes(nodeEnv)) {\n return nodeEnv;\n }\n }\n catch (e) {\n }\n return 'production';\n};\nsetRuntimeMode(getInitialMode());\nlet EXPERIMENTAL_MODE = false;\nlet COLOR_CONTRAST_ANALYSIS = false;\nconst isDevMode = () => runtimeMode === 'development';\nconst isTestMode = () => runtimeMode === 'test';\nconst getExperimentalMode = () => EXPERIMENTAL_MODE === true;\nconst setExperimentalMode = (mode) => {\n EXPERIMENTAL_MODE = mode === true;\n};\nconst getColorContrastAnalysis = () => COLOR_CONTRAST_ANALYSIS === true;\nconst setColorContrastAnalysis = (mode) => {\n COLOR_CONTRAST_ANALYSIS = mode === true;\n};\nconst LOG_STYLE = 'color: white; background: #666; font-weight: bold; padding: .25em .5em; border-radius: 3px; border: 1px solid #000';\nconst mapToArray = (msg) => {\n return Array.isArray(msg) ? msg : [msg];\n};\nconst getLogLabel = (label) => {\n return `%c${label}`;\n};\nconst handleClassifier = (label, classifier) => {\n if (typeof classifier === 'string' && classifier.length > 0) {\n return `${getLogLabel(label)} | ${classifier}`;\n }\n else {\n return getLogLabel(label);\n }\n};\nconst getShield = (label, options) => {\n return [handleClassifier(label, options === null || options === void 0 ? void 0 : options.classifier), `${LOG_STYLE};${(options === null || options === void 0 ? void 0 : options.overwriteStyle) || ''}`];\n};\nconst isDevModeOrForceLog = (forceLog) => isDevMode() || forceLog === true;\nclass Logger {\n constructor(label) {\n this.label = label;\n }\n debug(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.debug(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n info(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.info(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n trace(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.trace(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n warn(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.warn(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n error(msg, options) {\n console.error(...getShield(this.label, options), ...mapToArray(msg));\n }\n throw(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n throw new Error(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n}\nconst Log = new Logger('KoliBri');\n\nconst a11yCache = new Set();\nconst a11yHint = (msg, options) => {\n if (a11yCache.has(msg) === false || false) {\n a11yCache.add(msg);\n Log.debug([msg].concat([]), {\n classifier: `✋ a11y`,\n forceLog: false,\n overwriteStyle: '; background-color: #09f',\n });\n }\n};\nconst deprecatedCache = new Set();\nconst deprecatedHint = (msg, options) => {\n if (deprecatedCache.has(msg) === false || false) {\n deprecatedCache.add(msg);\n Log.warn([msg].concat([]), {\n classifier: `🔥 deprecated`,\n forceLog: false,\n overwriteStyle: '; background-color: #f00',\n });\n }\n};\nconst devCache = new Set();\nconst devHint = (msg, options) => {\n if (devCache.has(msg) === false || !!(options === null || options === void 0 ? void 0 : options.force)) {\n devCache.add(msg);\n Log.debug([msg].concat((options === null || options === void 0 ? void 0 : options.details) || []), {\n classifier: `💻 dev`,\n forceLog: !!(options === null || options === void 0 ? void 0 : options.force),\n overwriteStyle: '; background-color: #f09',\n });\n }\n};\nconst devWarning = (msg, options) => {\n if (devCache.has(msg) === false || false) {\n devCache.add(msg);\n Log.warn([msg].concat([]), {\n classifier: `⚠️ dev`,\n forceLog: false,\n overwriteStyle: '; background-color: #f09',\n });\n }\n};\nconst featureCache = new Set();\nconst featureHint = (msg, done = false, options) => {\n if (featureCache.has(msg) === false || false) {\n featureCache.add(msg);\n msg += done === true ? ' ✅' : '';\n Log.debug([msg].concat([]), {\n classifier: `🌟 feature`,\n forceLog: false,\n overwriteStyle: '; background-color: #309',\n });\n }\n};\ndevHint(`We appreciate any feedback, comments, screenshots, or demo links of an application based on KoliBri (kolibri@itzbund.de). Thank you!`);\nconst uiUxCache = new Set();\nconst uiUxHint = (msg, options) => {\n if (uiUxCache.has(msg) === false || false) {\n uiUxCache.add(msg);\n Log.debug([msg].concat([]), {\n classifier: `📑 ui/ux`,\n forceLog: false,\n overwriteStyle: '; background-color: #060;',\n });\n }\n};\nconst a11yHintDisabled = () => {\n a11yHint(`\"Disabled\" limits accessibility and visibility. From an accessibility perspective, we recommend using the readonly attribute instead of disabled.\\n- https://uxdesign.cc/is-it-ok-to-grey-out-disabled-buttons-8afa74a0fae`);\n};\nconst a11yHintLabelingLandmarks = (value) => {\n if (typeof value !== 'string' || value === '') {\n a11yHint(`Some structural elements, such as the nav tag, can be used multiple times on a webpage. To distinguish between similarly named structural elements, it is necessary to set an ARIA label.\\n- https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Navigation_Role#accessibility_concerns`);\n }\n};\nconst uiUxHintMillerscheZahl = (className, length = 8) => {\n if (length > 7) {\n uiUxHint(`[${className}] Within navigation structures, it is recommended to use no more than 7 menu items.\n\nLink:\n- https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two`);\n }\n};\n\nvar n=.2126,r=.7152,t=.0722,e=1/12.92;function u(n){return Math.pow((n+.055)/1.055,2.4)}function a(a){var i=a[0]/255,c=a[1]/255,o=a[2]/255,s=i<=.03928?i*e:u(i),f=c<=.03928?c*e:u(c),l=o<=.03928?o*e:u(o);return s*n+f*r+l*t}function i(n){var r=255;8===(n=n.replace(/^#/,\"\")).length&&(r=parseInt(n.slice(6,8),16),n=n.substring(0,6)),4===n.length&&(r=parseInt(n.slice(3,4).repeat(2),16),n=n.substring(0,3)),3===n.length&&(n=n[0]+n[0]+n[1]+n[1]+n[2]+n[2]);var t=parseInt(n,16);return [t>>16,t>>8&255,255&t,r]}function c(n,r){return (Math.max(n,r)+.05)/(Math.min(n,r)+.05)}function o(n,r){return c(a(n),a(r))}function s(n,r){return o(i(n),i(r))}function f(n){return n>=7?\"AAA\":n>=4.5?\"AA\":n>=3?\"AA Large\":\"Fail\"}\n\nvar colorName;\nvar hasRequiredColorName;\n\nfunction requireColorName () {\n\tif (hasRequiredColorName) return colorName;\n\thasRequiredColorName = 1;\n\r\n\tcolorName = {\r\n\t\t\"aliceblue\": [240, 248, 255],\r\n\t\t\"antiquewhite\": [250, 235, 215],\r\n\t\t\"aqua\": [0, 255, 255],\r\n\t\t\"aquamarine\": [127, 255, 212],\r\n\t\t\"azure\": [240, 255, 255],\r\n\t\t\"beige\": [245, 245, 220],\r\n\t\t\"bisque\": [255, 228, 196],\r\n\t\t\"black\": [0, 0, 0],\r\n\t\t\"blanchedalmond\": [255, 235, 205],\r\n\t\t\"blue\": [0, 0, 255],\r\n\t\t\"blueviolet\": [138, 43, 226],\r\n\t\t\"brown\": [165, 42, 42],\r\n\t\t\"burlywood\": [222, 184, 135],\r\n\t\t\"cadetblue\": [95, 158, 160],\r\n\t\t\"chartreuse\": [127, 255, 0],\r\n\t\t\"chocolate\": [210, 105, 30],\r\n\t\t\"coral\": [255, 127, 80],\r\n\t\t\"cornflowerblue\": [100, 149, 237],\r\n\t\t\"cornsilk\": [255, 248, 220],\r\n\t\t\"crimson\": [220, 20, 60],\r\n\t\t\"cyan\": [0, 255, 255],\r\n\t\t\"darkblue\": [0, 0, 139],\r\n\t\t\"darkcyan\": [0, 139, 139],\r\n\t\t\"darkgoldenrod\": [184, 134, 11],\r\n\t\t\"darkgray\": [169, 169, 169],\r\n\t\t\"darkgreen\": [0, 100, 0],\r\n\t\t\"darkgrey\": [169, 169, 169],\r\n\t\t\"darkkhaki\": [189, 183, 107],\r\n\t\t\"darkmagenta\": [139, 0, 139],\r\n\t\t\"darkolivegreen\": [85, 107, 47],\r\n\t\t\"darkorange\": [255, 140, 0],\r\n\t\t\"darkorchid\": [153, 50, 204],\r\n\t\t\"darkred\": [139, 0, 0],\r\n\t\t\"darksalmon\": [233, 150, 122],\r\n\t\t\"darkseagreen\": [143, 188, 143],\r\n\t\t\"darkslateblue\": [72, 61, 139],\r\n\t\t\"darkslategray\": [47, 79, 79],\r\n\t\t\"darkslategrey\": [47, 79, 79],\r\n\t\t\"darkturquoise\": [0, 206, 209],\r\n\t\t\"darkviolet\": [148, 0, 211],\r\n\t\t\"deeppink\": [255, 20, 147],\r\n\t\t\"deepskyblue\": [0, 191, 255],\r\n\t\t\"dimgray\": [105, 105, 105],\r\n\t\t\"dimgrey\": [105, 105, 105],\r\n\t\t\"dodgerblue\": [30, 144, 255],\r\n\t\t\"firebrick\": [178, 34, 34],\r\n\t\t\"floralwhite\": [255, 250, 240],\r\n\t\t\"forestgreen\": [34, 139, 34],\r\n\t\t\"fuchsia\": [255, 0, 255],\r\n\t\t\"gainsboro\": [220, 220, 220],\r\n\t\t\"ghostwhite\": [248, 248, 255],\r\n\t\t\"gold\": [255, 215, 0],\r\n\t\t\"goldenrod\": [218, 165, 32],\r\n\t\t\"gray\": [128, 128, 128],\r\n\t\t\"green\": [0, 128, 0],\r\n\t\t\"greenyellow\": [173, 255, 47],\r\n\t\t\"grey\": [128, 128, 128],\r\n\t\t\"honeydew\": [240, 255, 240],\r\n\t\t\"hotpink\": [255, 105, 180],\r\n\t\t\"indianred\": [205, 92, 92],\r\n\t\t\"indigo\": [75, 0, 130],\r\n\t\t\"ivory\": [255, 255, 240],\r\n\t\t\"khaki\": [240, 230, 140],\r\n\t\t\"lavender\": [230, 230, 250],\r\n\t\t\"lavenderblush\": [255, 240, 245],\r\n\t\t\"lawngreen\": [124, 252, 0],\r\n\t\t\"lemonchiffon\": [255, 250, 205],\r\n\t\t\"lightblue\": [173, 216, 230],\r\n\t\t\"lightcoral\": [240, 128, 128],\r\n\t\t\"lightcyan\": [224, 255, 255],\r\n\t\t\"lightgoldenrodyellow\": [250, 250, 210],\r\n\t\t\"lightgray\": [211, 211, 211],\r\n\t\t\"lightgreen\": [144, 238, 144],\r\n\t\t\"lightgrey\": [211, 211, 211],\r\n\t\t\"lightpink\": [255, 182, 193],\r\n\t\t\"lightsalmon\": [255, 160, 122],\r\n\t\t\"lightseagreen\": [32, 178, 170],\r\n\t\t\"lightskyblue\": [135, 206, 250],\r\n\t\t\"lightslategray\": [119, 136, 153],\r\n\t\t\"lightslategrey\": [119, 136, 153],\r\n\t\t\"lightsteelblue\": [176, 196, 222],\r\n\t\t\"lightyellow\": [255, 255, 224],\r\n\t\t\"lime\": [0, 255, 0],\r\n\t\t\"limegreen\": [50, 205, 50],\r\n\t\t\"linen\": [250, 240, 230],\r\n\t\t\"magenta\": [255, 0, 255],\r\n\t\t\"maroon\": [128, 0, 0],\r\n\t\t\"mediumaquamarine\": [102, 205, 170],\r\n\t\t\"mediumblue\": [0, 0, 205],\r\n\t\t\"mediumorchid\": [186, 85, 211],\r\n\t\t\"mediumpurple\": [147, 112, 219],\r\n\t\t\"mediumseagreen\": [60, 179, 113],\r\n\t\t\"mediumslateblue\": [123, 104, 238],\r\n\t\t\"mediumspringgreen\": [0, 250, 154],\r\n\t\t\"mediumturquoise\": [72, 209, 204],\r\n\t\t\"mediumvioletred\": [199, 21, 133],\r\n\t\t\"midnightblue\": [25, 25, 112],\r\n\t\t\"mintcream\": [245, 255, 250],\r\n\t\t\"mistyrose\": [255, 228, 225],\r\n\t\t\"moccasin\": [255, 228, 181],\r\n\t\t\"navajowhite\": [255, 222, 173],\r\n\t\t\"navy\": [0, 0, 128],\r\n\t\t\"oldlace\": [253, 245, 230],\r\n\t\t\"olive\": [128, 128, 0],\r\n\t\t\"olivedrab\": [107, 142, 35],\r\n\t\t\"orange\": [255, 165, 0],\r\n\t\t\"orangered\": [255, 69, 0],\r\n\t\t\"orchid\": [218, 112, 214],\r\n\t\t\"palegoldenrod\": [238, 232, 170],\r\n\t\t\"palegreen\": [152, 251, 152],\r\n\t\t\"paleturquoise\": [175, 238, 238],\r\n\t\t\"palevioletred\": [219, 112, 147],\r\n\t\t\"papayawhip\": [255, 239, 213],\r\n\t\t\"peachpuff\": [255, 218, 185],\r\n\t\t\"peru\": [205, 133, 63],\r\n\t\t\"pink\": [255, 192, 203],\r\n\t\t\"plum\": [221, 160, 221],\r\n\t\t\"powderblue\": [176, 224, 230],\r\n\t\t\"purple\": [128, 0, 128],\r\n\t\t\"rebeccapurple\": [102, 51, 153],\r\n\t\t\"red\": [255, 0, 0],\r\n\t\t\"rosybrown\": [188, 143, 143],\r\n\t\t\"royalblue\": [65, 105, 225],\r\n\t\t\"saddlebrown\": [139, 69, 19],\r\n\t\t\"salmon\": [250, 128, 114],\r\n\t\t\"sandybrown\": [244, 164, 96],\r\n\t\t\"seagreen\": [46, 139, 87],\r\n\t\t\"seashell\": [255, 245, 238],\r\n\t\t\"sienna\": [160, 82, 45],\r\n\t\t\"silver\": [192, 192, 192],\r\n\t\t\"skyblue\": [135, 206, 235],\r\n\t\t\"slateblue\": [106, 90, 205],\r\n\t\t\"slategray\": [112, 128, 144],\r\n\t\t\"slategrey\": [112, 128, 144],\r\n\t\t\"snow\": [255, 250, 250],\r\n\t\t\"springgreen\": [0, 255, 127],\r\n\t\t\"steelblue\": [70, 130, 180],\r\n\t\t\"tan\": [210, 180, 140],\r\n\t\t\"teal\": [0, 128, 128],\r\n\t\t\"thistle\": [216, 191, 216],\r\n\t\t\"tomato\": [255, 99, 71],\r\n\t\t\"turquoise\": [64, 224, 208],\r\n\t\t\"violet\": [238, 130, 238],\r\n\t\t\"wheat\": [245, 222, 179],\r\n\t\t\"white\": [255, 255, 255],\r\n\t\t\"whitesmoke\": [245, 245, 245],\r\n\t\t\"yellow\": [255, 255, 0],\r\n\t\t\"yellowgreen\": [154, 205, 50]\r\n\t};\n\treturn colorName;\n}\n\n/**\n * @module color-parse\n */\n\nvar colorParse;\nvar hasRequiredColorParse;\n\nfunction requireColorParse () {\n\tif (hasRequiredColorParse) return colorParse;\n\thasRequiredColorParse = 1;\n\n\tvar names = requireColorName();\n\n\tcolorParse = parse;\n\n\t/**\n\t * Base hues\n\t * http://dev.w3.org/csswg/css-color/#typedef-named-hue\n\t */\n\t//FIXME: use external hue detector\n\tvar baseHues = {\n\t\tred: 0,\n\t\torange: 60,\n\t\tyellow: 120,\n\t\tgreen: 180,\n\t\tblue: 240,\n\t\tpurple: 300\n\t};\n\n\t/**\n\t * Parse color from the string passed\n\t *\n\t * @return {Object} A space indicator `space`, an array `values` and `alpha`\n\t */\n\tfunction parse(cstr) {\n\t\tvar m, parts = [], alpha = 1, space;\n\n\t\tif (typeof cstr === 'string') {\n\t\t\tcstr = cstr.toLowerCase();\n\n\t\t\t//keyword\n\t\t\tif (names[cstr]) {\n\t\t\t\tparts = names[cstr].slice();\n\t\t\t\tspace = 'rgb';\n\t\t\t}\n\n\t\t\t//reserved words\n\t\t\telse if (cstr === 'transparent') {\n\t\t\t\talpha = 0;\n\t\t\t\tspace = 'rgb';\n\t\t\t\tparts = [0, 0, 0];\n\t\t\t}\n\n\t\t\t//hex\n\t\t\telse if (/^#[A-Fa-f0-9]+$/.test(cstr)) {\n\t\t\t\tvar base = cstr.slice(1);\n\t\t\t\tvar size = base.length;\n\t\t\t\tvar isShort = size <= 4;\n\t\t\t\talpha = 1;\n\n\t\t\t\tif (isShort) {\n\t\t\t\t\tparts = [\n\t\t\t\t\t\tparseInt(base[0] + base[0], 16),\n\t\t\t\t\t\tparseInt(base[1] + base[1], 16),\n\t\t\t\t\t\tparseInt(base[2] + base[2], 16)\n\t\t\t\t\t];\n\t\t\t\t\tif (size === 4) {\n\t\t\t\t\t\talpha = parseInt(base[3] + base[3], 16) / 255;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tparts = [\n\t\t\t\t\t\tparseInt(base[0] + base[1], 16),\n\t\t\t\t\t\tparseInt(base[2] + base[3], 16),\n\t\t\t\t\t\tparseInt(base[4] + base[5], 16)\n\t\t\t\t\t];\n\t\t\t\t\tif (size === 8) {\n\t\t\t\t\t\talpha = parseInt(base[6] + base[7], 16) / 255;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!parts[0]) parts[0] = 0;\n\t\t\t\tif (!parts[1]) parts[1] = 0;\n\t\t\t\tif (!parts[2]) parts[2] = 0;\n\n\t\t\t\tspace = 'rgb';\n\t\t\t}\n\n\t\t\t//color space\n\t\t\telse if (m = /^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\\s*\\(([^\\)]*)\\)/.exec(cstr)) {\n\t\t\t\tvar name = m[1];\n\t\t\t\tvar isRGB = name === 'rgb';\n\t\t\t\tvar base = name.replace(/a$/, '');\n\t\t\t\tspace = base;\n\t\t\t\tvar size = base === 'cmyk' ? 4 : base === 'gray' ? 1 : 3;\n\t\t\t\tparts = m[2].trim()\n\t\t\t\t\t.split(/\\s*[,\\/]\\s*|\\s+/)\n\t\t\t\t\t.map(function (x, i) {\n\t\t\t\t\t\t//<percentage>\n\t\t\t\t\t\tif (/%$/.test(x)) {\n\t\t\t\t\t\t\t//alpha\n\t\t\t\t\t\t\tif (i === size) return parseFloat(x) / 100\n\t\t\t\t\t\t\t//rgb\n\t\t\t\t\t\t\tif (base === 'rgb') return parseFloat(x) * 255 / 100\n\t\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t\t}\n\t\t\t\t\t\t//hue\n\t\t\t\t\t\telse if (base[i] === 'h') {\n\t\t\t\t\t\t\t//<deg>\n\t\t\t\t\t\t\tif (/deg$/.test(x)) {\n\t\t\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t//<base-hue>\n\t\t\t\t\t\t\telse if (baseHues[x] !== undefined) {\n\t\t\t\t\t\t\t\treturn baseHues[x]\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t});\n\n\t\t\t\tif (name === base) parts.push(1);\n\t\t\t\talpha = (isRGB) ? 1 : (parts[size] === undefined) ? 1 : parts[size];\n\t\t\t\tparts = parts.slice(0, size);\n\t\t\t}\n\n\t\t\t//named channels case\n\t\t\telse if (cstr.length > 10 && /[0-9](?:\\s|\\/)/.test(cstr)) {\n\t\t\t\tparts = cstr.match(/([0-9]+)/g).map(function (value) {\n\t\t\t\t\treturn parseFloat(value)\n\t\t\t\t});\n\n\t\t\t\tspace = cstr.match(/([a-z])/ig).join('').toLowerCase();\n\t\t\t}\n\t\t}\n\n\t\t//numeric case\n\t\telse if (!isNaN(cstr)) {\n\t\t\tspace = 'rgb';\n\t\t\tparts = [cstr >>> 16, (cstr & 0x00ff00) >>> 8, cstr & 0x0000ff];\n\t\t}\n\n\t\t//array-like\n\t\telse if (Array.isArray(cstr) || cstr.length) {\n\t\t\tparts = [cstr[0], cstr[1], cstr[2]];\n\t\t\tspace = 'rgb';\n\t\t\talpha = cstr.length === 4 ? cstr[3] : 1;\n\t\t}\n\n\t\t//object case - detects css cases of rgb and hsl\n\t\telse if (cstr instanceof Object) {\n\t\t\tif (cstr.r != null || cstr.red != null || cstr.R != null) {\n\t\t\t\tspace = 'rgb';\n\t\t\t\tparts = [\n\t\t\t\t\tcstr.r || cstr.red || cstr.R || 0,\n\t\t\t\t\tcstr.g || cstr.green || cstr.G || 0,\n\t\t\t\t\tcstr.b || cstr.blue || cstr.B || 0\n\t\t\t\t];\n\t\t\t}\n\t\t\telse {\n\t\t\t\tspace = 'hsl';\n\t\t\t\tparts = [\n\t\t\t\t\tcstr.h || cstr.hue || cstr.H || 0,\n\t\t\t\t\tcstr.s || cstr.saturation || cstr.S || 0,\n\t\t\t\t\tcstr.l || cstr.lightness || cstr.L || cstr.b || cstr.brightness\n\t\t\t\t];\n\t\t\t}\n\n\t\t\talpha = cstr.a || cstr.alpha || cstr.opacity || 1;\n\n\t\t\tif (cstr.opacity != null) alpha /= 100;\n\t\t}\n\n\t\treturn {\n\t\t\tspace: space,\n\t\t\tvalues: parts,\n\t\t\talpha: alpha\n\t\t}\n\t}\n\treturn colorParse;\n}\n\nvar colorParseExports = requireColorParse();\nvar parse = /*@__PURE__*/getDefaultExportFromCjs(colorParseExports);\n\n/**\n * RGB space.\n *\n * @module color-space/rgb\n */\nconst rgb = {\n\tmin: [0, 0, 0],\n\tmax: [255, 255, 255]};\n\n/**\n * @module color-space/hsl\n */\n\nvar hsl = {\n\tname: 'hsl',\n\tmin: [0, 0, 0],\n\tmax: [360, 100, 100],\n\tchannel: ['hue', 'saturation', 'lightness'],\n\talias: ['HSL'],\n\n\trgb: function (hsl) {\n\t\tvar h = hsl[0] / 360, s = hsl[1] / 100, l = hsl[2] / 100, t1, t2, t3, rgb, val, i = 0;\n\n\t\tif (s === 0) return val = l * 255, [val, val, val];\n\n\t\tt2 = l < 0.5 ? l * (1 + s) : l + s - l * s;\n\t\tt1 = 2 * l - t2;\n\n\t\trgb = [0, 0, 0];\n\t\tfor (; i < 3;) {\n\t\t\tt3 = h + 1 / 3 * - (i - 1);\n\t\t\tt3 < 0 ? t3++ : t3 > 1 && t3--;\n\t\t\tval = 6 * t3 < 1 ? t1 + (t2 - t1) * 6 * t3 :\n\t\t\t\t2 * t3 < 1 ? t2 :\n\t\t\t\t\t3 * t3 < 2 ? t1 + (t2 - t1) * (2 / 3 - t3) * 6 :\n\t\t\t\t\t\tt1;\n\t\t\trgb[i++] = val * 255;\n\t\t}\n\n\t\treturn rgb;\n\t}\n};\n\n\n//extend rgb\nrgb.hsl = function (rgb) {\n\tvar r = rgb[0] / 255,\n\t\tg = rgb[1] / 255,\n\t\tb = rgb[2] / 255,\n\t\tmin = Math.min(r, g, b),\n\t\tmax = Math.max(r, g, b),\n\t\tdelta = max - min,\n\t\th, s, l;\n\n\tif (max === min) {\n\t\th = 0;\n\t}\n\telse if (r === max) {\n\t\th = (g - b) / delta;\n\t}\n\telse if (g === max) {\n\t\th = 2 + (b - r) / delta;\n\t}\n\telse if (b === max) {\n\t\th = 4 + (r - g) / delta;\n\t}\n\n\t//FIXME h is possibly undefined\n\t//@ts-ignore\n\th = Math.min(h * 60, 360);\n\n\tif (h < 0) {\n\t\th += 360;\n\t}\n\n\tl = (min + max) / 2;\n\n\tif (max === min) {\n\t\ts = 0;\n\t}\n\telse if (l <= 0.5) {\n\t\ts = delta / (max + min);\n\t}\n\telse {\n\t\ts = delta / (2 - max - min);\n\t}\n\n\treturn [h, s * 100, l * 100];\n};\n\nvar rgbaConvert = {exports: {}};\n\nvar hasRequiredRgbaConvert;\n\nfunction requireRgbaConvert () {\n\tif (hasRequiredRgbaConvert) return rgbaConvert.exports;\n\thasRequiredRgbaConvert = 1;\n\trgbaConvert.exports = arr;\n\trgbaConvert.exports.arr = arr;\n\trgbaConvert.exports.obj = obj;\n\trgbaConvert.exports.css = css;\n\trgbaConvert.exports.hex = hex;\n\trgbaConvert.exports.num = num;\n\n\tfunction arr(data) {\n\t var a = parse(data);\n\t if (a.length == 3) {\n\t return a.concat(255)\n\t } else {\n\t a[3] = Math.round(a[3]);\n\t return a\n\t }\n\t}\n\n\tfunction obj(data) {\n\t var a = parse(data);\n\t return {\n\t r: a[0],\n\t g: a[1],\n\t b: a[2],\n\t a: a.length == 3\n\t ? 255\n\t : Math.round(a[3])\n\t }\n\t}\n\n\tfunction css(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\n\t return a[3] == 255\n\t ? 'rgb(' + a[0] + ', ' + a[1] + ', ' + a[2] + ')'\n\t : a[3] == 0\n\t ? 'rgba(' + a[0] + ', ' + a[1] + ', ' + a[2] + ', 0)'\n\t : 'rgba(' + a[0] + ', ' + a[1] + ', ' + a[2] + ', ' + String(a[3] / 255).substr(1) + ')'\n\t}\n\n\tfunction hex(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\t var opaque = a[3] == 255;\n\t var r = num2hex(a[0]);\n\t var g = num2hex(a[1]);\n\t var b = num2hex(a[2]);\n\t var a = num2hex(Math.round(a[3]));\n\t var is = isshort(r, g, b, a);\n\t if (opaque) {\n\t return is\n\t ? '#' + r.charAt(0) + g.charAt(0) + b.charAt(0)\n\t : '#' + r + g + b\n\t }\n\t return is\n\t ? '#' + r.charAt(0) + g.charAt(0) + b.charAt(0) + a.charAt(0)\n\t : '#' + r + g + b + a\n\t}\n\n\tfunction num(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\t else a[3] = Math.round(a[3]);\n\t return ((a[3] << 24) >>> 0 | a[0] << 16 | a[1] << 8 | a[2]) >>> 0\n\t}\n\n\tfunction parse(data) {\n\t if (typeof data == 'string') {\n\t data = data.toLowerCase();\n\t return name(data)\n\t || hex3(data)\n\t || hex6(data)\n\t || rgb(data)\n\t || rgba(data)\n\t || [0, 0, 0, 255]\n\t }\n\t return object(data)\n\t || array(data)\n\t || number(data)\n\t || [0, 0, 0, 255]\n\t}\n\n\tfunction num2hex(num) {\n\t var s = num.toString(16);\n\t return s.length == 1\n\t ? '0' + s\n\t : s\n\t}\n\n\tfunction isshort(r, g, b, a) {\n\t var h = ['ff', '00', '11', '22', '33', '44', '55', '66',\n\t '77', '88', '99', 'aa', 'bb', 'cc', 'dd', 'ee'];\n\t return h.indexOf(r) != -1\n\t && h.indexOf(g) != -1\n\t && h.indexOf(b) != -1\n\t && h.indexOf(a) != -1\n\t}\n\n\tfunction name(str) {\n\t if (str == 'red') return [255, 0, 0]\n\t if (str == 'green') return [0, 255, 0]\n\t if (str == 'blue') return [0, 0, 255]\n\t if (str == 'black') return [0, 0, 0]\n\t if (str == 'white') return [255, 255, 255]\n\t if (str == 'cyan') return [0, 255, 255]\n\t if (str == 'gray') return [128, 128, 128]\n\t if (str == 'grey') return [128, 128, 128]\n\t if (str == 'magenta') return [255, 0, 255]\n\t // ok, not the real css `pink` but my personal `magenta` alias\n\t // `pink` is simpler than `fuchsia`, whatever...\n\t if (str == 'pink') return [255, 0, 255]\n\t if (str == 'yellow') return [255, 255, 0]\n\t}\n\n\tfunction hex2num(str) {\n\t return str.length == 1\n\t ? parseInt(str + str, 16)\n\t : parseInt(str, 16)\n\t}\n\n\tfunction hex3(str) {\n\t var s = str.replace(/^#/,'');\n\t var l = s.length;\n\t if (l == 3 || l == 4) {\n\t var r = hex2num(s[0]);\n\t var g = hex2num(s[1]);\n\t var b = hex2num(s[2]);\n\t var a = l == 3\n\t ? 255\n\t : hex2num(s[3]);\n\n\t if (isNaN(r) || isNaN(g) || isNaN(b) || isNaN(a)) return\n\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction hex6(str) {\n\t var s = str.replace(/^#/,'');\n\t var l = s.length;\n\t if (l == 6 || l == 8) {\n\t var r = hex2num(s.slice(0, 2));\n\t var g = hex2num(s.slice(2, 4));\n\t var b = hex2num(s.slice(4, 6));\n\t var a = l == 6\n\t ? 255\n\t : hex2num(s.slice(6, 8));\n\n\t if (isNaN(r) || isNaN(g) || isNaN(b) || isNaN(a)) return\n\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction getnum(val, integer) {\n\t if (typeof val != 'number') return -1\n\t if (integer === true && Math.floor(val) !== val) return -1\n\t return val >= 0 && val <= 255\n\t ? val\n\t : -1\n\t}\n\n\tfunction object(obj) {\n\t if (Object.prototype.toString.call(obj) === '[object Object]'\n\t && Object.getPrototypeOf(obj) === Object.getPrototypeOf({})) {\n\t var r = getnum(obj.r != undefined ? obj.r : obj.red != undefined ? obj.red : 0, true);\n\t var g = getnum(obj.g != undefined ? obj.g : obj.green != undefined ? obj.green : 0, true);\n\t var b = getnum(obj.b != undefined ? obj.b : obj.blue != undefined ? obj.blue : 0, true);\n\t var a = getnum(obj.a != undefined ? obj.a : obj.alpha != undefined ? obj.alpha : 255, true);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\n\tfunction array(arr) {\n\t if (Array.isArray(arr) && (arr.length == 3 || arr.length == 4)) {\n\t var r = getnum(arr[0], true);\n\t var g = getnum(arr[1], true);\n\t var b = getnum(arr[2], true);\n\t var a = getnum(arr[3] != undefined ? arr[3] : 255, true);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\n\tfunction number(num) {\n\t if (typeof num == 'number' && Math.floor(num) == num && num <= 4294967295 && num >= 0) {\n\t var a = num >> 24 & 255;\n\t var r = num >> 16 & 255;\n\t var g = num >> 8 & 255;\n\t var b = num & 255;\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction rgb(str) {\n\t if (str.substr(0, 4) == 'rgb(') {\n\t str = str.match(/^rgb\\(([^)]+)\\)/)[1];\n\t var t = str.split(/ *, */).map(Number);\n\t var r = getnum(t[0], true);\n\t var g = getnum(t[1], true);\n\t var b = getnum(t[2], true);\n\t if (r != -1 && g != -1 && b != -1) {\n\t return [r, g, b, 255]\n\t }\n\t }\n\t}\n\n\tfunction rgba(str) {\n\t if (str.substr(0, 5) == 'rgba(') {\n\t str = str.match(/^rgba\\(([^)]+)\\)/)[1];\n\t var t = str.split(/ *, */).map(Number);\n\t var r = getnum(t[0], true);\n\t var g = getnum(t[1], true);\n\t var b = getnum(t[2], true);\n\t var a = getnum(t[3] * 255);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\treturn rgbaConvert.exports;\n}\n\nvar rgbaConvertExports = requireRgbaConvert();\nvar rgba = /*@__PURE__*/getDefaultExportFromCjs(rgbaConvertExports);\n\nvar cjs$1 = {};\n\nvar hasRequiredCjs$1;\n\nfunction requireCjs$1 () {\n\tif (hasRequiredCjs$1) return cjs$1;\n\thasRequiredCjs$1 = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.querySelectorAll = void 0;\n\t\tconst pushNodes = (set, domNodes) => {\n\t\t domNodes.forEach((domNode) => {\n\t\t if (set.has(domNode) === false) {\n\t\t set.add(domNode);\n\t\t }\n\t\t });\n\t\t};\n\t\tconst querySelectorAll = (selector, node = document) => {\n\t\t if (node instanceof Document ||\n\t\t node instanceof HTMLElement ||\n\t\t node instanceof ShadowRoot) {\n\t\t const domNodes = new Set();\n\t\t pushNodes(domNodes, node.querySelectorAll(selector));\n\t\t const nodeList = node.querySelectorAll('[class*=\"hydrated\"]');\n\t\t for (let i = 0; i < nodeList.length; i++) {\n\t\t const shadowRoot = nodeList[i].shadowRoot;\n\t\t if (typeof shadowRoot === \"object\" && shadowRoot !== null) {\n\t\t pushNodes(domNodes, (0, exports.querySelectorAll)(selector, shadowRoot));\n\t\t }\n\t\t else {\n\t\t pushNodes(domNodes, (0, exports.querySelectorAll)(selector, nodeList[i]));\n\t\t }\n\t\t }\n\t\t return Array.from(domNodes);\n\t\t }\n\t\t else {\n\t\t throw new Error(`The parameter document for the method querySelectorAll is not type of Document, HTMLElement or ShadowRoot.`);\n\t\t }\n\t\t};\n\t\texports.querySelectorAll = querySelectorAll;\n\t\t\n\t} (cjs$1));\n\treturn cjs$1;\n}\n\nvar cjsExports$1 = requireCjs$1();\n\nvar cjs = {};\n\nvar hasRequiredCjs;\n\nfunction requireCjs () {\n\tif (hasRequiredCjs) return cjs;\n\thasRequiredCjs = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.querySelector = void 0;\n\t\tconst querySelector = (selector, node = document) => {\n\t\t if (node instanceof Document ||\n\t\t node instanceof HTMLElement ||\n\t\t node instanceof ShadowRoot) {\n\t\t let domNode = node.querySelector(selector);\n\t\t if (domNode === null) {\n\t\t const nodeList = node.querySelectorAll('[class*=\"hydrated\"]');\n\t\t for (let i = 0; i < nodeList.length; i++) {\n\t\t const shadowRoot = nodeList[i].shadowRoot;\n\t\t if (typeof shadowRoot === \"object\" && shadowRoot !== null) {\n\t\t domNode = (0, exports.querySelector)(selector, shadowRoot);\n\t\t }\n\t\t else {\n\t\t domNode = (0, exports.querySelector)(selector, nodeList[i]);\n\t\t }\n\t\t if (domNode !== null) {\n\t\t break;\n\t\t }\n\t\t }\n\t\t }\n\t\t return domNode;\n\t\t }\n\t\t else {\n\t\t throw new Error(`The parameter document for the method querySelector is not type of Document, HTMLElement or ShadowRoot.`);\n\t\t }\n\t\t};\n\t\texports.querySelector = querySelector;\n\t\t\n\t} (cjs));\n\treturn cjs;\n}\n\nvar cjsExports = requireCjs();\n\nconst OBJECT_OBJECT = /\\[object Object\\]/;\nconst objectObjectHandler = (value, cb) => {\n if (typeof value === 'string' && OBJECT_OBJECT.test(value)) {\n return;\n }\n cb();\n};\nconst emptyStringByArrayHandler = (value, cb) => {\n if (typeof value === 'string' && value === '') {\n return;\n }\n cb();\n};\nconst setEventTarget = (event, target) => {\n if (getExperimentalMode()) {\n Log.debug([event, target]);\n Log.debug(`↑ We propagate the (submit) event to this target.`);\n }\n Object.defineProperty(event, 'target', {\n value: target,\n writable: false,\n });\n};\nconst patchState = (component) => {\n var _a, _b, _c;\n (_a = component.nextHooks) === null || _a === void 0 ? void 0 : _a.forEach((hooks, key) => {\n var _a;\n const beforePatch = hooks.get('beforePatch');\n if (typeof beforePatch === 'function') {\n beforePatch((_a = component.nextState) === null || _a === void 0 ? void 0 : _a.get(key), component.nextState, component, key);\n }\n });\n if (((_b = component.nextState) === null || _b === void 0 ? void 0 : _b.size) > 0) {\n component.state = Object.assign(Object.assign({}, component.state), Object.fromEntries(component.nextState));\n delete component.nextState;\n (_c = component.nextHooks) === null || _c === void 0 ? void 0 : _c.forEach((hooks, key) => {\n const afterPatch = hooks.get('afterPatch');\n if (typeof afterPatch === 'function') {\n afterPatch(component.state[key], component.state, component, key);\n }\n });\n }\n delete component.nextHooks;\n};\nconst setState = (component, propName, value, hooks = {}) => {\n var _a, _b;\n if (component.nextHooks === undefined) {\n component.nextHooks = new Map();\n }\n if (component.nextState === undefined) {\n component.nextState = new Map();\n }\n const nextHooks = component.nextHooks.get(propName);\n if (nextHooks instanceof Map === false) {\n component.nextHooks.set(propName, new Map());\n }\n if (typeof hooks.afterPatch === 'function') {\n (_a = component.nextHooks.get(propName)) === null || _a === void 0 ? void 0 : _a.set('afterPatch', hooks.afterPatch);\n }\n if (typeof hooks.beforePatch === 'function') {\n (_b = component.nextHooks.get(propName)) === null || _b === void 0 ? void 0 : _b.set('beforePatch', hooks.beforePatch);\n }\n component.nextState.set(propName, value);\n patchState(component);\n};\nconst logWarn = (component, propName, value, requiredGeneric) => {\n devHint(`[${component.constructor.name}] The property value: (${value}) for '${propName}' is not valid. Allowed values are: ${Array.from(requiredGeneric).join(', ')}`);\n};\nfunction watchValidator(component, propName, validationFunction, requiredGeneric, value, options = {}) {\n if (validationFunction(value)) {\n setState(component, propName, value, options.hooks);\n }\n else if (value === undefined && options.required !== true && validationFunction(options.defaultValue)) {\n setState(component, propName, options.defaultValue, options.hooks);\n }\n else {\n if (!options.required) {\n requiredGeneric.add(null);\n }\n logWarn(component, propName, value, requiredGeneric);\n }\n}\nconst watchBoolean = (component, propName, value, options) => {\n watchValidator(component, propName, (value) => typeof value === 'boolean', new Set(['Boolean {true, false}']), value, options);\n};\nconst watchString = (component, propName, value, options = {}) => {\n const minLength = typeof options.minLength === 'number' ? options === null || options === void 0 ? void 0 : options.minLength : 0;\n watchValidator(component, propName, (value) => typeof value === 'string' && value.length >= minLength && (typeof (options === null || options === void 0 ? void 0 : options.maxLength) === 'undefined' || value.length <= options.maxLength), new Set([`String`]), value, options);\n};\nconst watchNumber = (component, propName, value, options) => {\n watchValidator(component, propName, (value) => typeof value === 'number' &&\n (typeof (options === null || options === void 0 ? void 0 : options.min) === 'undefined' || (typeof (options === null || options === void 0 ? void 0 : options.min) === 'number' && value >= options.min)) &&\n (typeof (options === null || options === void 0 ? void 0 : options.max) === 'undefined' || (typeof (options === null || options === void 0 ? void 0 : options.max) === 'number' && value <= options.max)), new Set(['Number']), value, options);\n};\nconst watchJsonArrayString = (component, propName, itemValidation, value, arrayValidation = (items) => items === items, options = {}) => {\n emptyStringByArrayHandler(value, () => {\n objectObjectHandler(value, () => {\n if (typeof value === 'undefined') {\n value = [];\n }\n try {\n try {\n value = parseJson(value);\n }\n catch (e) {\n }\n if (Array.isArray(value)) {\n const invalid = value.find((item) => !itemValidation(item));\n if (invalid === undefined && arrayValidation(value)) {\n setState(component, propName, value, options.hooks);\n }\n else {\n objectObjectHandler(invalid, () => {\n Log.debug(invalid);\n throw new Error(`↑ The schema for the property (_options) is not valid. The value will not be changed.`);\n });\n }\n }\n else {\n objectObjectHandler(value, () => {\n Log.debug(value);\n throw new Error(`↑ The schema for the property (_options) is not valid. The value will not be changed.`);\n });\n }\n }\n catch (error) {\n Log.debug(error);\n }\n });\n });\n};\nconst stringifyJson = (value) => {\n try {\n return JSON.stringify(value).replace(/\"/g, \"'\");\n }\n catch (error) {\n Log.warn(['stringifyJson', value]);\n Log.error(`↑ The JSON could not be converted to a string. A stringifiable JSON is expected.`);\n throw new Error();\n }\n};\nconst JSON_CHARS = /^[{[]/;\nconst parseJson = (value) => {\n if (typeof value === 'string') {\n try {\n return JSON.parse(value);\n }\n catch (error) {\n if (JSON_CHARS.test(value)) {\n try {\n return JSON.parse(value.replace(/'/g, '\"'));\n }\n catch (error) {\n Log.warn(['parseJson', value]);\n Log.error(`↑ The JSON string could not be parsed. Make sure that single quotes in the text are escaped (&#8216;).`);\n }\n }\n }\n }\n throw new Error();\n};\nconst mapBoolean2String = (value) => {\n return typeof value === 'boolean' ? (value === true ? 'true' : 'false') : undefined;\n};\nconst mapStringOrBoolean2String = (value) => {\n return typeof value === 'string' ? value : mapBoolean2String(value);\n};\nconst koliBriQuerySelector = (selector, node) => cjsExports.querySelector(selector, node || getDocument());\nconst koliBriQuerySelectorAll = (selector, node) => cjsExports$1.querySelectorAll(selector, node || getDocument());\nlet DEFAULT_COLOR_CONTRAST = null;\nconst getDefaultColorContrast = () => {\n DEFAULT_COLOR_CONTRAST = DEFAULT_COLOR_CONTRAST || {\n backgroundColor: '#00000000',\n color: '#00000000',\n domNode: getDocument().body,\n level: 'Fail',\n score: 1,\n };\n return DEFAULT_COLOR_CONTRAST;\n};\nconst TRANSPARENT_REGEXP = /(\\d+, ){3}0\\)/;\nconst koliBriA11yColorContrast = (domNode, a11yColorContrast = getDefaultColorContrast()) => {\n const computedStyle = getComputedStyle(domNode);\n const hexBG = TRANSPARENT_REGEXP.test(computedStyle.backgroundColor) ? a11yColorContrast.backgroundColor : rgba.hex(computedStyle.backgroundColor);\n const hexC = TRANSPARENT_REGEXP.test(computedStyle.color) ? a11yColorContrast.color : rgba.hex(computedStyle.color);\n const diff = s(hexBG, hexC);\n const contrast = {\n backgroundColor: hexBG,\n color: hexC,\n domNode: domNode,\n level: f(diff),\n score: diff,\n };\n if (diff < 4.5) {\n Log.error([\n 'Color-Contrast-Error',\n {\n backgroundColor: contrast.backgroundColor,\n color: contrast.color,\n level: contrast.level,\n score: contrast.score,\n },\n contrast.domNode,\n ]);\n }\n return contrast;\n};\nconst koliBriQuerySelectorColors = (selector, a11yColorContrast = getDefaultColorContrast()) => {\n if (a11yColorContrast.domNode instanceof HTMLElement) {\n a11yColorContrast = koliBriA11yColorContrast(a11yColorContrast.domNode, a11yColorContrast);\n }\n const selectedNode = a11yColorContrast.domNode.querySelector(selector);\n if (selectedNode === null) {\n const nodeList = a11yColorContrast.domNode.querySelectorAll('[class=\"hydrated\"]');\n for (let i = 0; i < nodeList.length; i++) {\n a11yColorContrast.domNode = nodeList[i];\n a11yColorContrast = koliBriQuerySelectorColors(selector, a11yColorContrast);\n if (a11yColorContrast.domNode !== null) {\n break;\n }\n }\n return a11yColorContrast;\n }\n else {\n return koliBriA11yColorContrast(selectedNode, a11yColorContrast);\n }\n};\nclass KoliBriUtils {\n static queryHtmlElementColors(targetNode, a11yColorContrast, recursion = false, log = true) {\n let returnValue = null;\n if (recursion === true || KoliBriUtils.executionLock === false) {\n if (recursion === false) {\n KoliBriUtils.cache.clear();\n KoliBriUtils.cache.set(a11yColorContrast.domNode, a11yColorContrast);\n KoliBriUtils.executionLock = true;\n if (log === true) {\n Log.debug(`[KoliBriUtils] Color contrast analysis started...`);\n }\n }\n if (targetNode === a11yColorContrast.domNode) {\n returnValue = a11yColorContrast;\n }\n else {\n const children = new Set();\n if (a11yColorContrast.domNode.shadowRoot) {\n const shadowChildren = a11yColorContrast.domNode.shadowRoot.children;\n for (let i = 0; i < shadowChildren.length; i++) {\n children.add(shadowChildren[i]);\n }\n }\n const slotElement = a11yColorContrast.domNode;\n if (typeof slotElement.assignedNodes === 'function') {\n const slotChildren = slotElement.assignedNodes();\n for (let i = 0; i < slotChildren.length; i++) {\n if (slotChildren[i] instanceof HTMLElement) {\n children.add(slotChildren[i]);\n }\n }\n }\n const domChildren = a11yColorContrast.domNode.children;\n for (let i = 0; i < domChildren.length; i++) {\n children.add(domChildren[i]);\n }\n const arrayChildren = Array.from(children);\n for (let i = 0; i < arrayChildren.length; i++) {\n let colorContrast = KoliBriUtils.cache.get(arrayChildren[i]);\n if (colorContrast === undefined) {\n colorContrast = koliBriA11yColorContrast(arrayChildren[i], a11yColorContrast);\n }\n KoliBriUtils.cache.set(arrayChildren[i], colorContrast);\n const colors = KoliBriUtils.queryHtmlElementColors(targetNode, colorContrast, true, false);\n if (colors !== null) {\n returnValue = colors;\n break;\n }\n }\n }\n }\n else {\n Log.debug(`[KoliBriUtils] Call aborted because a color contrast analysis is currently being executed.`);\n }\n if (recursion === false) {\n if (log === true) {\n Log.debug(`[KoliBriUtils] Color contrast analysis finished (${KoliBriUtils.cache.size} DOM elements are analysed).`);\n }\n KoliBriUtils.executionLock = false;\n KoliBriUtils.cache.clear();\n }\n return returnValue;\n }\n}\nKoliBriUtils.executionLock = false;\nKoliBriUtils.cache = new Map();\nclass KoliBriDevHelper {\n}\nKoliBriDevHelper.getCssStyle = y;\nKoliBriDevHelper.patchTheme = k;\nKoliBriDevHelper.patchThemeTag = Y;\nKoliBriDevHelper.querySelector = koliBriQuerySelector;\nKoliBriDevHelper.querySelectorAll = koliBriQuerySelectorAll;\nKoliBriDevHelper.stringifyJson = stringifyJson;\n\nconst isObject = (value) => typeof value === 'object' && value !== null;\nconst isString = (value, minLength = 0) => typeof value === 'string' && value.length >= minLength;\nconst isStyle = (style) => {\n if (typeof style === 'object' && style !== null) {\n for (const property in style) {\n if (isString(property, 1) === false) {\n return false;\n }\n }\n }\n else {\n return isString(style, 1);\n }\n return true;\n};\nconst STATE_CHANGE_EVENT = new Event('StateChange');\n\nexport { getColorContrastAnalysis as $, parse as A, hsl as B, rgb as C, rgba as D, s as E, isStyle as F, isObject as G, watchJsonArrayString as H, uiUxHintMillerscheZahl as I, getExperimentalMode as J, KeyEnum as K, Log as L, setEventTarget as M, watchNumber as N, emptyStringByArrayHandler as O, koliBriQuerySelector as P, mapStringOrBoolean2String as Q, mapBoolean2String as R, STATE_CHANGE_EVENT as S, TagEnum as T, isDevMode as U, V, koliBriA11yColorContrast as W, koliBriQuerySelectorAll as X, koliBriQuerySelectorColors as Y, KoliBriUtils as Z, stringifyJson as _, KoliBriDevHelper as a, b, a11yHintLabelingLandmarks as c, watchBoolean as d, watchString as e, featureHint as f, isString as g, deprecatedHint as h, ie as i, devHint as j, devWarning as k, setRuntimeMode as l, getDefaultExportFromCjs as m, ne as n, objectObjectHandler as o, parseJson as p, a11yHint as q, a11yHintDisabled as r, setState as s, getDocument as t, uiUxHint as u, setExperimentalMode as v, watchValidator as w, setColorContrastAnalysis as x, getWindow as y, isTestMode as z };\n//# sourceMappingURL=common-Dd0zJQbD.js.map\n\n//# sourceMappingURL=common-Dd0zJQbD.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { m as getDefaultExportFromCjs } from './common-Dd0zJQbD.js';\n\nvar easyBem;\nvar hasRequiredEasyBem;\n\nfunction requireEasyBem () {\n\tif (hasRequiredEasyBem) return easyBem;\n\thasRequiredEasyBem = 1;\n\r\n\t/**\r\n\t * BEM class name factory.\r\n\t *\r\n\t * @typedef {Function} Bem\r\n\t * @param {String|Object} [elementOrMods] Element name or hash object with mods\r\n\t * @param {Object} [mods] Hash object with mods\r\n\t * @returns {String}\r\n\t */\r\n\r\n\t/**\r\n\t * Returns BEM class name factory.\r\n\t *\r\n\t * @param {String} componentName Block name\r\n\t * @returns {Bem}\r\n\t */\r\n\teasyBem = function bem(componentName) {\r\n\t return function (elementOrMods, mods) {\r\n\t if (!elementOrMods) {\r\n\t return componentName;\r\n\t }\r\n\r\n\t var element;\r\n\r\n\t if (typeof elementOrMods === 'string') {\r\n\t element = elementOrMods;\r\n\t } else {\r\n\t mods = elementOrMods;\r\n\t }\r\n\r\n\t var base = componentName;\r\n\t if (element) {\r\n\t base += '__' + element;\r\n\t }\r\n\r\n\t return base + (\r\n\t mods\r\n\t ? Object.keys(mods).reduce(function (result, name) {\r\n\t var value = mods[name];\r\n\r\n\t if (value) {\r\n\t result += ' ' + (\r\n\t typeof value === 'boolean'\r\n\t ? (base + '--' + name)\r\n\t : (base + '--' + name + '_' + value)\r\n\t );\r\n\t }\r\n\r\n\t return result;\r\n\t }, '')\r\n\t : ''\r\n\t );\r\n\t };\r\n\t};\n\treturn easyBem;\n}\n\nvar easyBemExports = requireEasyBem();\nvar a = /*@__PURE__*/getDefaultExportFromCjs(easyBemExports);\n\nfunction c(){const e=new Map,n=(t,o,r)=>{try{return e.get(t)(o,r)}catch{return e.set(t,a(t)).get(t)(o,r)}};return n.forBlock=t=>{const o=(r,s)=>n(t,r,s);return o.forElement=r=>s=>n(t,r,s),o},n}\n\nexport { c };\n//# sourceMappingURL=browser-DiRe0qUf.js.map\n\n//# sourceMappingURL=browser-DiRe0qUf.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { c } from './browser-DiRe0qUf.js';\n\nconst bem = c();\nconst BEM = {\n 'kol-icon': {\n elements: {\n icon: { modifiers: null },\n },\n modifiers: null,\n },\n};\nconst BEM_CLASS_ICON = bem('kol-icon');\nconst BEM_CLASS_ICON__ICON = bem('kol-icon', 'icon');\n\nexport { BEM as B, BEM_CLASS_ICON as a, BEM_CLASS_ICON__ICON as b };\n//# sourceMappingURL=bem-BBRwGb1a.js.map\n\n//# sourceMappingURL=bem-BBRwGb1a.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { c } from './browser-DiRe0qUf.js';\n\nconst bem = c();\nconst BEM = {\n 'kol-alert': {\n elements: {\n closer: { modifiers: null },\n heading: { modifiers: new Set(['h0', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']) },\n icon: { modifiers: null },\n content: { modifiers: null },\n container: { modifiers: null },\n },\n modifiers: new Set(['hasCloser', 'type-default', 'type-error', 'type-info', 'type-success', 'type-warning', 'variant-card', 'variant-msg']),\n },\n};\nconst BEM_CLASS_ALERT__CLOSER = bem('kol-alert', 'closer');\nconst BEM_CLASS_ALERT__CONTENT = bem('kol-alert', 'content');\nconst BEM_CLASS_ALERT__ICON = bem('kol-alert', 'icon');\n\nexport { BEM as B, BEM_CLASS_ALERT__ICON as a, bem as b, BEM_CLASS_ALERT__CONTENT as c, BEM_CLASS_ALERT__CLOSER as d };\n//# sourceMappingURL=bem-C27SfH6w.js.map\n\n//# sourceMappingURL=bem-C27SfH6w.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nvar KolEvent;\n(function (KolEvent) {\n KolEvent[\"blur\"] = \"kolBlur\";\n KolEvent[\"change\"] = \"kolChange\";\n KolEvent[\"changePage\"] = \"kolChangePage\";\n KolEvent[\"changePageSize\"] = \"kolChangePageSize\";\n KolEvent[\"click\"] = \"kolClick\";\n KolEvent[\"close\"] = \"kolClose\";\n KolEvent[\"create\"] = \"kolCreate\";\n KolEvent[\"focus\"] = \"kolFocus\";\n KolEvent[\"input\"] = \"kolInput\";\n KolEvent[\"keydown\"] = \"kolKeydown\";\n KolEvent[\"mousedown\"] = \"kolMousedown\";\n KolEvent[\"reset\"] = \"kolReset\";\n KolEvent[\"select\"] = \"kolSelect\";\n KolEvent[\"selectionChange\"] = \"kolSelectionChange\";\n KolEvent[\"settingsChange\"] = \"settingsChange\";\n KolEvent[\"sort\"] = \"kolSort\";\n KolEvent[\"submit\"] = \"kolSubmit\";\n KolEvent[\"toggle\"] = \"kolToggle\";\n})(KolEvent || (KolEvent = {}));\nfunction createKoliBriEvent(event, detail) {\n return new CustomEvent(event, {\n bubbles: true,\n cancelable: true,\n composed: true,\n detail: detail,\n });\n}\nfunction dispatchDomEvent(target, event, detail) {\n target.dispatchEvent(createKoliBriEvent(event, detail));\n}\n\nexport { KolEvent as K, dispatchDomEvent as d };\n//# sourceMappingURL=events-9-skLO0f.js.map\n\n//# sourceMappingURL=events-9-skLO0f.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nexport { B as BEM_ICON } from './bem-BBRwGb1a.js';\nexport { s as setCurrentLocation } from './ariaCurrentService-YoLNpD5S.js';\nimport { i as isInitialized } from './bootstrap-CB4ow_3r.js';\nexport { b as bootstrap, r as register } from './bootstrap-CB4ow_3r.js';\nimport { K as KolToastContainerTag } from './component-names-CkE54Ym7.js';\nimport { i as ie, K as KeyEnum, T as TagEnum, L as Log } from './common-Dd0zJQbD.js';\nexport { a as KoliBriDevHelper } from './common-Dd0zJQbD.js';\nexport { B as BEM_ALERT } from './bem-C27SfH6w.js';\nexport { K as KolEvent } from './events-9-skLO0f.js';\nexport { i as isTooltipOpen } from './tooltip-open-tracking-rBbBgPWP.js';\nimport './browser-DiRe0qUf.js';\nimport './i18n-Bqrkf471.js';\n\nconst KoliBri = new ie('kol', KeyEnum, TagEnum);\n\nclass ToasterService {\n constructor(document, options) {\n var _a;\n this.document = document;\n this.options = options;\n this.toastContainerElement = this.document.createElement(KolToastContainerTag);\n this.document.body.prepend(this.toastContainerElement);\n if ((_a = this.options) === null || _a === void 0 ? void 0 : _a.defaultVariant) {\n Log.info(`ToasterService: Default variant is deprecated. Use 'card' variant for all toasts instead.`);\n }\n }\n static getInstance(document, options) {\n if (!isInitialized()) {\n throw new Error('Toaster: Call KoliBri bootstrap/register method first.');\n }\n let instance = this.instances.get(document);\n if (!instance) {\n instance = new ToasterService(document, options);\n this.instances.set(document, instance);\n }\n return instance;\n }\n dispose() {\n const element = this.toastContainerElement;\n if (element) {\n this.toastContainerElement = undefined;\n element.remove();\n }\n else {\n Log.warn('Toaster service is already disposed.');\n }\n }\n enqueue(toast) {\n if (this.toastContainerElement && typeof this.toastContainerElement.enqueue === 'function') {\n return this.toastContainerElement.enqueue(toast);\n }\n }\n closeAll(immediate = false) {\n if (this.toastContainerElement && typeof this.toastContainerElement.closeAll === 'function') {\n void this.toastContainerElement.closeAll(immediate);\n }\n }\n}\nToasterService.instances = new Map();\n\nvar Bundesministerium;\n(function (Bundesministerium) {\n Bundesministerium[\"Die Bundesregierung\"] = \"BReg\";\n Bundesministerium[\"Bundesministerium der Finanzen\"] = \"BMF\";\n Bundesministerium[\"Bundesministerium des Innern, f\\u00FCr Bau und Heimat\"] = \"BMI\";\n Bundesministerium[\"Ausw\\u00E4rtiges Amt\"] = \"AA\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Wirtschaft und Energie\"] = \"BMWi\";\n Bundesministerium[\"Bundesministerium der Justiz und f\\u00FCr Verbraucherschutz\"] = \"BMJV\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Arbeit und Soziales\"] = \"BMAS\";\n Bundesministerium[\"Bundesministerium der Verteidigung\"] = \"BMVg\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Ern\\u00E4hrung und Landwirtschaft\"] = \"BMEL\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Familie, Senioren, Frauen und Jugend\"] = \"BMFSFJ\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Gesundheit\"] = \"BMG\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Verkehr und digitale Infrastruktur\"] = \"BMVI\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Umwelt, Naturschutz und nukleare Sicherheit\"] = \"BMU\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Bildung und Forschung\"] = \"BMBF\";\n Bundesministerium[\"Bundesministerium f\\u00FCr wirtschaftliche Zusammenarbeit und Entwicklung\"] = \"BMZ\";\n})(Bundesministerium || (Bundesministerium = {}));\nconst BUNDESMINISTERIEN = Object.getOwnPropertyNames(Bundesministerium);\nvar Bundesamt;\n(function (Bundesamt) {\n Bundesamt[\"Beschaffungsamt des Bundesministeriums des Innern\"] = \"BeschA\";\n Bundesamt[\"Bundesamt f\\u00FCr Ausr\\u00FCstung, Informationstechnik und Nutzung der Bundeswehr\"] = \"BAAINBw\";\n Bundesamt[\"Bundesamt f\\u00FCr \\u00E4u\\u00DFere Restitutionen\"] = \"BAR\";\n Bundesamt[\"Bundesamt f\\u00FCr Bauwesen und Raumordnung\"] = \"BBR\";\n Bundesamt[\"Bundesamt f\\u00FCr Bev\\u00F6lkerungsschutz und Katastrophenhilfe\"] = \"BBK\";\n Bundesamt[\"Bundesamt f\\u00FCr Familie und zivilgesellschaftliche Aufgaben\"] = \"BAFzA\";\n Bundesamt[\"Bundesamt f\\u00FCr G\\u00FCterverkehr\"] = \"BAG\";\n Bundesamt[\"Bundesamt f\\u00FCr Justiz\"] = \"BfJ\";\n Bundesamt[\"Bundesamt f\\u00FCr Kartographie und Geod\\u00E4sie\"] = \"BKG\";\n Bundesamt[\"Bundesamt f\\u00FCr kerntechnische Entsorgungssicherheit\"] = \"BASE\";\n Bundesamt[\"Bundesamt f\\u00FCr Migration und Fl\\u00FCchtlinge\"] = \"BAMF\";\n Bundesamt[\"Bundesamt f\\u00FCr Sicherheit in der Informationstechnik\"] = \"BSI\";\n Bundesamt[\"Bundesamt f\\u00FCr Verbraucherschutz und Lebensmittelsicherheit\"] = \"BVL\";\n Bundesamt[\"Bundesamt f\\u00FCr Verfassungsschutz\"] = \"BfV\";\n Bundesamt[\"Bundesamt f\\u00FCr Wirtschaft und Ausfuhrkontrolle\"] = \"BAFA\";\n Bundesamt[\"Bundesamt f\\u00FCr zentrale Dienste und offene Verm\\u00F6gensfragen\"] = \"BADV\";\n Bundesamt[\"Bundesanstalt f\\u00FCr Verwaltungsdienstleistungen\"] = \"BAV\";\n Bundesamt[\"Bundesarchiv\"] = \"BArch\";\n Bundesamt[\"Bundesaufsichtsamt f\\u00FCr Flugsicherung\"] = \"BAF\";\n Bundesamt[\"Bundesausgleichsamt\"] = \"BAA\";\n Bundesamt[\"Bundeskartellamt\"] = \"BKartA\";\n Bundesamt[\"Bundeskriminalamt\"] = \"BKA\";\n Bundesamt[\"Bundesnachrichtendienst\"] = \"BND\";\n Bundesamt[\"Bundesnetzagentur f\\u00FCr Elektrizit\\u00E4t, Gas, Telekommunikation, Post und Eisenbahnen\"] = \"BNetzA\";\n Bundesamt[\"Bundespolizeipr\\u00E4sidium\"] = \"BPOLP\";\n Bundesamt[\"Bundespr\\u00FCfstelle f\\u00FCr jugendgef\\u00E4hrdende Medien\"] = \"BPjM\";\n Bundesamt[\"Bundessortenamt\"] = \"BSA\";\n Bundesamt[\"Bundessprachenamt\"] = \"BSprA\";\n Bundesamt[\"Bundesamt f\\u00FCr Soziale Sicherung\"] = \"BAS\";\n Bundesamt[\"Bundesverwaltungsamt\"] = \"BVA\";\n Bundesamt[\"Bundeszentralamt f\\u00FCr Steuern\"] = \"BZSt\";\n Bundesamt[\"Deutsches Patent- und Markenamt\"] = \"DPMA\";\n Bundesamt[\"Eisenbahn-Bundesamt\"] = \"EBA\";\n Bundesamt[\"Generalzolldirektion\"] = \"GZD\";\n Bundesamt[\"Milit\\u00E4rischer Abschirmdienst\"] = \"MAD\";\n Bundesamt[\"Zentrale Stelle f\\u00FCr Informationstechnik im Sicherheitsbereich\"] = \"ZITiS\";\n})(Bundesamt || (Bundesamt = {}));\nconst BUNDESAEMTER = Object.getOwnPropertyNames(Bundesamt);\nvar Bundesanstalt;\n(function (Bundesanstalt) {\n Bundesanstalt[\"Informationstechnikzentrum Bund\"] = \"ITZBund\";\n Bundesanstalt[\"Bundesanstalt f\\u00FCr den Digitalfunk der Beh\\u00F6rden und Organisationen mit Sicherheitsaufgaben\"] = \"BDBOS\";\n Bundesanstalt[\"Bundesanstalt f\\u00FCr Landwirtschaft und Ern\\u00E4hrung\"] = \"BLE\";\n Bundesanstalt[\"Bundesanstalt Technisches Hilfswerk\"] = \"THW\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Arzneimittel und Medizinprodukte\"] = \"BfArM\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Bev\\u00F6lkerungsforschung\"] = \"BiB\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Sportwissenschaft\"] = \"BISp\";\n})(Bundesanstalt || (Bundesanstalt = {}));\nconst BUNDESANSTALTEN = Object.getOwnPropertyNames(Bundesanstalt);\nconst BUND_LOGO_TEXT_MAP = new Map();\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Die Bundesregierung'], ['Die', 'Bundesregierung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Finanzen'], ['Bundesministerium', 'der Finanzen']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium des Innern, für Bau und Heimat'], ['Bundesministerium', 'des Inneren, für Bau', 'und Heimat']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Auswärtiges Amt'], ['Auswärtiges Amt']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Wirtschaft und Energie'], ['Bundesministerium', 'für Wirtschaft', 'und Energie']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Justiz und für Verbraucherschutz'], [\n 'Bundesministerium',\n 'der Justiz und',\n 'für Verbraucherschutz',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Arbeit und Soziales'], ['Bundesministerium', 'für Arbeit und Soziales']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Verteidigung'], ['Bundesministerium', 'der Verteidigung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Bildung und Forschung'], ['Bundesministerium', 'für Bildung', 'und Forschung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Ernährung und Landwirtschaft'], ['Bundesministerium', 'für Ernährung', 'und Landwirtschaft']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Familie, Senioren, Frauen und Jugend'], [\n 'Bundesministerium',\n 'für Familie, Senioren, Frauen',\n 'und Jugend',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Gesundheit'], ['Bundesministerium', 'für Gesundheit']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit'], [\n 'Bundesministerium',\n 'für Umwelt, Naturschutz',\n 'und nukleare Sicherheit',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Verkehr und digitale Infrastruktur'], [\n 'Bundesministerium',\n 'für Verkehr und',\n 'digitale Infrastruktur',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung'], [\n 'Bundesministerium',\n 'für wirtschaftliche Zusammenarbeit',\n 'und Entwicklung',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Beschaffungsamt des Bundesministeriums des Innern'], ['Beschaffungsamt', 'des Bundesministeriums', 'des Innern']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für äußere Restitutionen'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Bauwesen und Raumordnung'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Bevölkerungsschutz und Katastrophenhilfe'], ['Bundesamt', 'für Bevölkerungsschutz', 'und Katastrophenhilfe']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Familie und zivilgesellschaftliche Aufgaben'], [\n 'Bundesamt',\n 'für Familie und',\n 'zivilgesellschaftliche Aufgaben',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Güterverkehr'], ['Bundesamt', 'für Güterverkehr']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Justiz'], ['Bundesamt für', 'Justiz']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Kartographie und Geodäsie'], ['Bundesamt für', 'Kartographie und Geodäsie']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für kerntechnische Entsorgungssicherheit'], ['Bundesamt für', 'kerntechnische', 'Entsorgungssicherheit']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Migration und Flüchtlinge'], ['Bundesamt', 'für Migration', 'und Flüchtlinge']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Sicherheit in der Informationstechnik'], ['Bundesamt', 'für Sicherheit in der', 'Informationstechnik']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Verbraucherschutz und Lebensmittelsicherheit'], [\n 'Bundesamt für',\n 'Verbraucherschutz und',\n 'Lebensmittelsicherheit',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Verfassungsschutz'], ['Bundesamt für', 'Verfassungsschutz']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Wirtschaft und Ausfuhrkontrolle'], ['Bundesamt', 'für Wirtschaft', 'Ausfuhrkontrolle']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für zentrale Dienste und offene Vermögensfragen'], [\n 'Bundesamt',\n 'für zentrale Dienste und',\n 'offene Vermögensfragen',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesanstalt für Verwaltungsdienstleistungen'], ['Bundesanstalt', 'für Verwaltungsdienstleistungen']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesarchiv'], ['Das', 'Bundesarchiv']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesaufsichtsamt für Flugsicherung'], ['Bundesaufsichtsamt', 'für Flugsicherung']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesausgleichsamt'], ['Bundesausgleichsamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeskartellamt'], ['Bundeskartellamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeskriminalamt'], ['Bundeskriminalamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesnachrichtendienst'], ['Bundesnachrichtendienst']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesnetzagentur für Elektrizität, Gas, Telekommunikation, Post und Eisenbahnen'], ['Bundesnetzagentur']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundespolizeipräsidium'], ['Bundespolizeipräsidium']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesprüfstelle für jugendgefährdende Medien'], ['Bundesprüfstelle', 'für jugendgefährdende', 'Medien']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundessortenamt'], ['Bundessortenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundessprachenamt'], ['Bundessprachenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Soziale Sicherung'], ['Bundesamt', 'für Soziale Sicherung']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesverwaltungsamt'], ['Bundesverwaltungsamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeszentralamt für Steuern'], ['Bundeszentralamt', 'für Steuern']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Deutsches Patent- und Markenamt'], ['Deutsches', 'Patent- und Markenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Eisenbahn-Bundesamt'], ['Eisenbahn-Bundesamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Generalzolldirektion'], ['Generalzolldirektion']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Militärischer Abschirmdienst'], ['Bundesamt für den', 'Militärischen Abschirmdienst']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Zentrale Stelle für Informationstechnik im Sicherheitsbereich'], [\n 'Zentrale Stelle',\n 'für Informationstechnik',\n 'im Sicherheitsbereich',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Informationstechnikzentrum Bund'], ['Informations', 'Technik', 'Zentrum Bund']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt für den Digitalfunk der Behörden und Organisationen mit Sicherheitsaufgaben'], [\n 'Bundesanstalt',\n 'für den Digitalfunk der Behörden und',\n 'Organisationen mit Sicherheitsaufgaben',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt für Landwirtschaft und Ernährung'], ['Bundesanstalt für', 'Landwirtschaft und Ernährung']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt Technisches Hilfswerk'], ['Bundesanstalt', 'Technisches Hilfswerk']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Arzneimittel und Medizinprodukte'], ['Bundesinstitut', 'für Arzneimittel', 'und Medizinprodukte']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Bevölkerungsforschung'], ['Bundesinstitut', 'für Bevölkerungsforschung']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Sportwissenschaft'], ['Bundesinstitut', 'für Sportwissenschaft']);\n\nexport { BUNDESAEMTER, BUNDESANSTALTEN, BUNDESMINISTERIEN, BUND_LOGO_TEXT_MAP, Bundesamt, Bundesanstalt, Bundesministerium, KoliBri, ToasterService, isInitialized };\n//# sourceMappingURL=index.js.map\n",null,null,null],"names":["exports","bem","globalCss","abbrCss","accordionCss","alertCss","badgeCss","breadcrumbCss","buttonCss","buttonLinkCss","cardCss","comboboxCss","detailsCss","drawerCss","formCss","headingCss","iconCss","inputCheckboxCss","inputColorCss","inputDateCss","inputEmailCss","inputFileCss","inputNumberCss","inputPasswordCss","inputRadioCss","inputRangeCss","inputTextCss","linkCss","linkButtonCss","modalCss","navCss","paginationCss","popoverButtonCss","progressCss","selectCss","singleSelect","skipNavCss","splitButtonCss","tableStatefulCss","tableStatelessCss","tabsCss","textareaCss","toastContainerCss","toolbarCss","treeCss","treeItemCss","ComboboxCss","singleSelectCss","spinCss"],"mappings":"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"}
1
+ {"version":3,"file":"index.mjs","sources":["../../components/dist/esm/common-Dd0zJQbD.js","../../components/dist/esm/browser-DiRe0qUf.js","../../components/dist/esm/bem-BBRwGb1a.js","../../components/dist/esm/bem-C27SfH6w.js","../../components/dist/esm/events-9-skLO0f.js","../../components/dist/esm/index.js","../../default/src/index.ts","../../ecl/src/ecl-ec/index.ts","../../ecl/src/ecl-eu/index.ts"],"sourcesContent":["/*!\n * KoliBri - The accessible HTML-Standard\n */\nfunction getDefaultExportFromCjs (x) {\n\treturn x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;\n}\n\nvar loglevel$1 = {exports: {}};\n\n/*\n* loglevel - https://github.com/pimterry/loglevel\n*\n* Copyright (c) 2013 Tim Perry\n* Licensed under the MIT license.\n*/\nvar loglevel = loglevel$1.exports;\n\nvar hasRequiredLoglevel;\n\nfunction requireLoglevel () {\n\tif (hasRequiredLoglevel) return loglevel$1.exports;\n\thasRequiredLoglevel = 1;\n\t(function (module) {\n\t\t(function (root, definition) {\n\t\t if (module.exports) {\n\t\t module.exports = definition();\n\t\t } else {\n\t\t root.log = definition();\n\t\t }\n\t\t}(loglevel, function () {\n\n\t\t // Slightly dubious tricks to cut down minimized file size\n\t\t var noop = function() {};\n\t\t var undefinedType = \"undefined\";\n\t\t var isIE = (typeof window !== undefinedType) && (typeof window.navigator !== undefinedType) && (\n\t\t /Trident\\/|MSIE /.test(window.navigator.userAgent)\n\t\t );\n\n\t\t var logMethods = [\n\t\t \"trace\",\n\t\t \"debug\",\n\t\t \"info\",\n\t\t \"warn\",\n\t\t \"error\"\n\t\t ];\n\n\t\t var _loggersByName = {};\n\t\t var defaultLogger = null;\n\n\t\t // Cross-browser bind equivalent that works at least back to IE6\n\t\t function bindMethod(obj, methodName) {\n\t\t var method = obj[methodName];\n\t\t if (typeof method.bind === 'function') {\n\t\t return method.bind(obj);\n\t\t } else {\n\t\t try {\n\t\t return Function.prototype.bind.call(method, obj);\n\t\t } catch (e) {\n\t\t // Missing bind shim or IE8 + Modernizr, fallback to wrapping\n\t\t return function() {\n\t\t return Function.prototype.apply.apply(method, [obj, arguments]);\n\t\t };\n\t\t }\n\t\t }\n\t\t }\n\n\t\t // Trace() doesn't print the message in IE, so for that case we need to wrap it\n\t\t function traceForIE() {\n\t\t if (console.log) {\n\t\t if (console.log.apply) {\n\t\t console.log.apply(console, arguments);\n\t\t } else {\n\t\t // In old IE, native console methods themselves don't have apply().\n\t\t Function.prototype.apply.apply(console.log, [console, arguments]);\n\t\t }\n\t\t }\n\t\t if (console.trace) console.trace();\n\t\t }\n\n\t\t // Build the best logging method possible for this env\n\t\t // Wherever possible we want to bind, not wrap, to preserve stack traces\n\t\t function realMethod(methodName) {\n\t\t if (methodName === 'debug') {\n\t\t methodName = 'log';\n\t\t }\n\n\t\t if (typeof console === undefinedType) {\n\t\t return false; // No method possible, for now - fixed later by enableLoggingWhenConsoleArrives\n\t\t } else if (methodName === 'trace' && isIE) {\n\t\t return traceForIE;\n\t\t } else if (console[methodName] !== undefined) {\n\t\t return bindMethod(console, methodName);\n\t\t } else if (console.log !== undefined) {\n\t\t return bindMethod(console, 'log');\n\t\t } else {\n\t\t return noop;\n\t\t }\n\t\t }\n\n\t\t // These private functions always need `this` to be set properly\n\n\t\t function replaceLoggingMethods() {\n\t\t /*jshint validthis:true */\n\t\t var level = this.getLevel();\n\n\t\t // Replace the actual methods.\n\t\t for (var i = 0; i < logMethods.length; i++) {\n\t\t var methodName = logMethods[i];\n\t\t this[methodName] = (i < level) ?\n\t\t noop :\n\t\t this.methodFactory(methodName, level, this.name);\n\t\t }\n\n\t\t // Define log.log as an alias for log.debug\n\t\t this.log = this.debug;\n\n\t\t // Return any important warnings.\n\t\t if (typeof console === undefinedType && level < this.levels.SILENT) {\n\t\t return \"No console available for logging\";\n\t\t }\n\t\t }\n\n\t\t // In old IE versions, the console isn't present until you first open it.\n\t\t // We build realMethod() replacements here that regenerate logging methods\n\t\t function enableLoggingWhenConsoleArrives(methodName) {\n\t\t return function () {\n\t\t if (typeof console !== undefinedType) {\n\t\t replaceLoggingMethods.call(this);\n\t\t this[methodName].apply(this, arguments);\n\t\t }\n\t\t };\n\t\t }\n\n\t\t // By default, we use closely bound real methods wherever possible, and\n\t\t // otherwise we wait for a console to appear, and then try again.\n\t\t function defaultMethodFactory(methodName, _level, _loggerName) {\n\t\t /*jshint validthis:true */\n\t\t return realMethod(methodName) ||\n\t\t enableLoggingWhenConsoleArrives.apply(this, arguments);\n\t\t }\n\n\t\t function Logger(name, factory) {\n\t\t // Private instance variables.\n\t\t var self = this;\n\t\t /**\n\t\t * The level inherited from a parent logger (or a global default). We\n\t\t * cache this here rather than delegating to the parent so that it stays\n\t\t * in sync with the actual logging methods that we have installed (the\n\t\t * parent could change levels but we might not have rebuilt the loggers\n\t\t * in this child yet).\n\t\t * @type {number}\n\t\t */\n\t\t var inheritedLevel;\n\t\t /**\n\t\t * The default level for this logger, if any. If set, this overrides\n\t\t * `inheritedLevel`.\n\t\t * @type {number|null}\n\t\t */\n\t\t var defaultLevel;\n\t\t /**\n\t\t * A user-specific level for this logger. If set, this overrides\n\t\t * `defaultLevel`.\n\t\t * @type {number|null}\n\t\t */\n\t\t var userLevel;\n\n\t\t var storageKey = \"loglevel\";\n\t\t if (typeof name === \"string\") {\n\t\t storageKey += \":\" + name;\n\t\t } else if (typeof name === \"symbol\") {\n\t\t storageKey = undefined;\n\t\t }\n\n\t\t function persistLevelIfPossible(levelNum) {\n\t\t var levelName = (logMethods[levelNum] || 'silent').toUpperCase();\n\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t // Use localStorage if available\n\t\t try {\n\t\t window.localStorage[storageKey] = levelName;\n\t\t return;\n\t\t } catch (ignore) {}\n\n\t\t // Use session cookie as fallback\n\t\t try {\n\t\t window.document.cookie =\n\t\t encodeURIComponent(storageKey) + \"=\" + levelName + \";\";\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t function getPersistedLevel() {\n\t\t var storedLevel;\n\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t try {\n\t\t storedLevel = window.localStorage[storageKey];\n\t\t } catch (ignore) {}\n\n\t\t // Fallback to cookies if local storage gives us nothing\n\t\t if (typeof storedLevel === undefinedType) {\n\t\t try {\n\t\t var cookie = window.document.cookie;\n\t\t var cookieName = encodeURIComponent(storageKey);\n\t\t var location = cookie.indexOf(cookieName + \"=\");\n\t\t if (location !== -1) {\n\t\t storedLevel = /^([^;]+)/.exec(\n\t\t cookie.slice(location + cookieName.length + 1)\n\t\t )[1];\n\t\t }\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t // If the stored level is not valid, treat it as if nothing was stored.\n\t\t if (self.levels[storedLevel] === undefined) {\n\t\t storedLevel = undefined;\n\t\t }\n\n\t\t return storedLevel;\n\t\t }\n\n\t\t function clearPersistedLevel() {\n\t\t if (typeof window === undefinedType || !storageKey) return;\n\n\t\t // Use localStorage if available\n\t\t try {\n\t\t window.localStorage.removeItem(storageKey);\n\t\t } catch (ignore) {}\n\n\t\t // Use session cookie as fallback\n\t\t try {\n\t\t window.document.cookie =\n\t\t encodeURIComponent(storageKey) + \"=; expires=Thu, 01 Jan 1970 00:00:00 UTC\";\n\t\t } catch (ignore) {}\n\t\t }\n\n\t\t function normalizeLevel(input) {\n\t\t var level = input;\n\t\t if (typeof level === \"string\" && self.levels[level.toUpperCase()] !== undefined) {\n\t\t level = self.levels[level.toUpperCase()];\n\t\t }\n\t\t if (typeof level === \"number\" && level >= 0 && level <= self.levels.SILENT) {\n\t\t return level;\n\t\t } else {\n\t\t throw new TypeError(\"log.setLevel() called with invalid level: \" + input);\n\t\t }\n\t\t }\n\n\t\t /*\n\t\t *\n\t\t * Public logger API - see https://github.com/pimterry/loglevel for details\n\t\t *\n\t\t */\n\n\t\t self.name = name;\n\n\t\t self.levels = { \"TRACE\": 0, \"DEBUG\": 1, \"INFO\": 2, \"WARN\": 3,\n\t\t \"ERROR\": 4, \"SILENT\": 5};\n\n\t\t self.methodFactory = factory || defaultMethodFactory;\n\n\t\t self.getLevel = function () {\n\t\t if (userLevel != null) {\n\t\t return userLevel;\n\t\t } else if (defaultLevel != null) {\n\t\t return defaultLevel;\n\t\t } else {\n\t\t return inheritedLevel;\n\t\t }\n\t\t };\n\n\t\t self.setLevel = function (level, persist) {\n\t\t userLevel = normalizeLevel(level);\n\t\t if (persist !== false) { // defaults to true\n\t\t persistLevelIfPossible(userLevel);\n\t\t }\n\n\t\t // NOTE: in v2, this should call rebuild(), which updates children.\n\t\t return replaceLoggingMethods.call(self);\n\t\t };\n\n\t\t self.setDefaultLevel = function (level) {\n\t\t defaultLevel = normalizeLevel(level);\n\t\t if (!getPersistedLevel()) {\n\t\t self.setLevel(level, false);\n\t\t }\n\t\t };\n\n\t\t self.resetLevel = function () {\n\t\t userLevel = null;\n\t\t clearPersistedLevel();\n\t\t replaceLoggingMethods.call(self);\n\t\t };\n\n\t\t self.enableAll = function(persist) {\n\t\t self.setLevel(self.levels.TRACE, persist);\n\t\t };\n\n\t\t self.disableAll = function(persist) {\n\t\t self.setLevel(self.levels.SILENT, persist);\n\t\t };\n\n\t\t self.rebuild = function () {\n\t\t if (defaultLogger !== self) {\n\t\t inheritedLevel = normalizeLevel(defaultLogger.getLevel());\n\t\t }\n\t\t replaceLoggingMethods.call(self);\n\n\t\t if (defaultLogger === self) {\n\t\t for (var childName in _loggersByName) {\n\t\t _loggersByName[childName].rebuild();\n\t\t }\n\t\t }\n\t\t };\n\n\t\t // Initialize all the internal levels.\n\t\t inheritedLevel = normalizeLevel(\n\t\t defaultLogger ? defaultLogger.getLevel() : \"WARN\"\n\t\t );\n\t\t var initialLevel = getPersistedLevel();\n\t\t if (initialLevel != null) {\n\t\t userLevel = normalizeLevel(initialLevel);\n\t\t }\n\t\t replaceLoggingMethods.call(self);\n\t\t }\n\n\t\t /*\n\t\t *\n\t\t * Top-level API\n\t\t *\n\t\t */\n\n\t\t defaultLogger = new Logger();\n\n\t\t defaultLogger.getLogger = function getLogger(name) {\n\t\t if ((typeof name !== \"symbol\" && typeof name !== \"string\") || name === \"\") {\n\t\t throw new TypeError(\"You must supply a name when creating a logger.\");\n\t\t }\n\n\t\t var logger = _loggersByName[name];\n\t\t if (!logger) {\n\t\t logger = _loggersByName[name] = new Logger(\n\t\t name,\n\t\t defaultLogger.methodFactory\n\t\t );\n\t\t }\n\t\t return logger;\n\t\t };\n\n\t\t // Grab the current global log variable in case of overwrite\n\t\t var _log = (typeof window !== undefinedType) ? window.log : undefined;\n\t\t defaultLogger.noConflict = function() {\n\t\t if (typeof window !== undefinedType &&\n\t\t window.log === defaultLogger) {\n\t\t window.log = _log;\n\t\t }\n\n\t\t return defaultLogger;\n\t\t };\n\n\t\t defaultLogger.getLoggers = function getLoggers() {\n\t\t return _loggersByName;\n\t\t };\n\n\t\t // ES6 default export, for compatibility\n\t\t defaultLogger['default'] = defaultLogger;\n\n\t\t return defaultLogger;\n\t\t})); \n\t} (loglevel$1));\n\treturn loglevel$1.exports;\n}\n\nvar loglevelExports = requireLoglevel();\nvar h = /*@__PURE__*/getDefaultExportFromCjs(loglevelExports);\n\nconst I=(t,e)=>s=>s(t,e),P=(t,e)=>s=>s(t,e,{append:false}),$=()=>{const t=typeof process<\"u\"&&process.env?process.env:{},e=t.NODE_ENV===\"test\",s=\"VITEST\"in t,a=\"JEST_WORKER_ID\"in t,o=\"PLAYWRIGHT_TEST_BASE_URL\"in t,r=t.CI===\"true\",i=t.TEST===\"true\"||t.IS_TEST===\"true\",c=typeof navigator<\"u\"&&navigator.webdriver===true,m=typeof navigator<\"u\"&&/playwright|puppeteer|webdriver|selenium|testcafe/i.test(navigator.userAgent);return e||s||a||o||r||i||c||m},n$1={A11yUi:{CSS_STYLE_CACHE:new Map,IS_TEST_ENVIRONMENT:$(),PERFORMANCE_MEASURES:new Map,STYLING_TASK_QUEUE:new Map,THEMES:new Map,showAverageTimes:()=>{const t={};for(const[s,a]of n$1.A11yUi.PERFORMANCE_MEASURES.entries())t[s]=[a.totalTime/a.count,a.count];const e=Object.entries(t).sort((s,a)=>a[1][0]-s[1][0]);return console.table(Object.fromEntries(e.map(([s,[a,o]])=>[s,{\"avg (ms)\":parseFloat(a.toFixed(2)),count:o}]))),t}}};let d=true,f$1=false;const j=/^[a-z][a-z0-9]{1,}(-[a-z0-9]+)?$/,F=t=>typeof t==\"string\"&&j.test(t),E=t=>{if(!F(t))throw new Error(`[Theming] The theme identifier \"${typeof t==\"string\"?t:\"\"}\" (Type: ${typeof t}) is not valid. Please use only follow this pattern: /^[a-z][a-z0-9]{1,}(-[a-z0-9]+)?$/`)},g=t=>t.replace(/\\/\\*[\\s\\S]*?\\*\\//g,\"\").replace(/\\s*([{},;])\\s*/g,\"$1\").replace(/:\\s+/g,\":\").replace(/\\s+/g,\" \").replace(/;\\}/g,\"}\").trim(),Y=(t,e,s,a)=>u$1(t,e,s,a),u$1=(t,e,s,a)=>{a=a??{},a.append=a.append??false,E(t),d&&!f$1&&(f$1=true,h.warn(`[Theming] The theme process is locked. This means that the theme \"${t}\" should not be patched.\n\n import { register } from 'adopted-style-sheets';\n import { defineCustomElements } from '...';\n import { THEME } from '...';\n\n register(THEME, defineCustomElements)\n .then(() => {\n // run your app or website\n })\n .catch(console.warn);`));let o=n$1.A11yUi.THEMES.get(t);if(o||(o=new Map,n$1.A11yUi.THEMES.set(t,o)),a.append&&o.has(e)){const r=o.get(e);o.set(e,g(`${r}${s}`));}else o.set(e,g(s));},k=(t,e,s,a)=>p(t,e,s,a),p=(t,e,s,a)=>(E(t),typeof e==\"object\"&&e!==null&&Object.getOwnPropertyNames(e).forEach(o=>{const r=e[o],i=o.toLowerCase(),c=typeof a?.transformTagName==\"function\"&&![\"GLOBAL\",\"PROPERTIES\"].includes(o)?a.transformTagName(i):o;typeof r==\"string\"&&r.length>0&&u$1(t,c.toUpperCase(),r,s);}),t),S=t=>{if(t instanceof HTMLElement){if(typeof t.dataset.theme==\"string\")return t;{let e=t.parentNode;for(;e instanceof ShadowRoot;)e=e.host;return S(e)}}else return null},A=(t={})=>t.themeEncroachCss===\"false\"||t.themeReset===\"true\"?false:{mode:t.themeEncroachCssMode===\"after\"||t.themeEncroachCssMode===\"before\"?t.themeEncroachCssMode:\"before\"},C=()=>typeof n$1.A11yUi.Theme==\"object\"&&n$1.A11yUi.Theme!==null&&typeof n$1.A11yUi.Theme.cache==\"boolean\"&&typeof n$1.A11yUi.Theme.encroachCss==\"object\"&&n$1.A11yUi.Theme.encroachCss!==null&&typeof n$1.A11yUi.Theme.encroachCss.mode==\"string\"&&typeof n$1.A11yUi.Theme.name==\"string\",G=()=>!(typeof n$1.A11yUi.Theme==\"object\"&&n$1.A11yUi.Theme!==null)||n$1.A11yUi.Theme.name!==\"default\",b=t=>{if(C())return n$1.A11yUi.Theme;{const e={cache:true,encroachCss:A(),loglevel:\"silent\",mode:\"csr\",name:null},s=S(t);return s instanceof HTMLElement&&(e.cache=s.dataset.themeCache!==\"false\",e.encroachCss=A(s.dataset),e.loglevel=s.dataset.themeLoglevel===\"debug\"?s.dataset.themeLoglevel:\"silent\",e.mode=s.dataset.themeMode===\"ssr\"?s.dataset.themeMode:\"csr\",e.name=s.dataset.theme||null),e}},B=(t,e)=>({cache:e.cache!==false,detect:e.detect===\"auto\"?\"auto\":\"fixed\",encroachCss:e.encroachCss===false?false:typeof e.encroachCss==\"object\"&&e.encroachCss!=null&&(e.encroachCss.mode===\"after\"||e.encroachCss.mode===\"before\")?e.encroachCss:{mode:\"before\"},loglevel:e.loglevel===\"debug\"?e.loglevel:\"silent\",mode:e.mode===\"ssr\"?e.mode:\"csr\",name:typeof e.name==\"string\"?e.name:t}),K=(t,e)=>{C()===false&&G()&&typeof e==\"object\"&&e!==null&&(e=B(t,e),e.detect===\"fixed\"?(e.name===null&&typeof t==\"string\"&&(e.name=t),t===e.name&&(n$1.A11yUi.Theme=e,h.info(`[Theming] Theme \"${t}\" was set as default theme.`))):f$1||(f$1=true,h.warn(\"[Theming] The presetting of theme options is only relevant by using 'fixed' detection mode.\")));};let U=false;const V=(t,e,s={})=>{U||(U=true,d=false,typeof window<\"u\"&&(window.A11yUi=n$1.A11yUi)),typeof t==\"function\"?t=new Set([t]):Array.isArray(t)&&(t=new Set(t)),t instanceof Set&&t.forEach(o=>{typeof o==\"function\"&&o.length===1?K(o((r,i,c)=>p(r,i,c,s)),{cache:s.theme?.cache,detect:s.theme?.detect,encroachCss:s.theme?.encroachCss,mode:s.theme?.mode,name:s.theme?.name}):h.error(\"[Theming] An attempt was made to load an incompatible theme.\");}),d=true,typeof e==\"function\"?e=new Set([e]):Array.isArray(e)&&(e=new Set(e));const a=[];return e.forEach(o=>{const r=o();r instanceof Promise&&a.push(r);}),Promise.all(a)};const w=new Set,W=/--[^;]+/g,q=/:/,J=typeof MutationObserver<\"u\";let M=25,N=()=>{M=Math.min(25+Math.log2(n$1.A11yUi.STYLING_TASK_QUEUE.size+1)*20,250);};const X=(t,e)=>{let s=e.match(W);if(Array.isArray(s)){s=s.filter(o=>q.test(o));const a=document.createElement(\"style\");a.innerHTML=`.${t} {${s.join(\";\")}}`,document.querySelector(\"head\")?.appendChild(a);}w.add(t);},y=(t,e)=>{const s=n$1.A11yUi.THEMES.get(t);return s instanceof Map&&s.has(e)?s.get(e):\"\"},Z=t=>{for(const e of Array.from(t.childNodes))if(e instanceof HTMLStyleElement&&e.tagName===\"STYLE\"&&e.dataset.themingFallback===void 0)t.removeChild(e);else break},ee=(t,e)=>{try{if(n$1.A11yUi.Theme?.mode===\"ssr\")throw new Error(\"SSR\");const s=[];e.forEach(a=>{const o=new CSSStyleSheet;o.replaceSync(a),s.push(o);}),t.adoptedStyleSheets=s;}catch{[...e].reverse().forEach((a,o)=>{if(typeof a!=\"string\"||a.length===0)return;const r=document.createElement(\"style\");switch(r.dataset.themingFallback=\"\",o){case 4:r.dataset.themingBaseA11y=\"\";break;case 3:r.dataset.themingBaseGlobal=\"\";break;case 2:r.dataset.themingBaseComponent=\"\";break;case 1:r.dataset.themingCustomGlobal=\"\";break;case 0:r.dataset.themingCustomComponent=\"\";break;default:r.dataset.themingUnknown=\"\";break}r.innerHTML=a,t.insertBefore(r,t.firstChild);});}},te=(t,e,s)=>{if(s!==false){const a=[...Array.from(t.childNodes).filter(r=>r instanceof HTMLStyleElement&&r.tagName===\"STYLE\")];let o;try{o=[...Array.from(t.adoptedStyleSheets)];}catch{o=[];}s?.mode===\"before\"?(a.reverse().forEach(r=>e.unshift(r.innerHTML)),o.reverse().forEach(r=>e.unshift(Array.from(r.cssRules).map(i=>i.cssText).join(\"\")))):s?.mode===\"after\"&&(a.forEach(r=>e.push(r.innerHTML)),o.forEach(r=>e.push(Array.from(r.cssRules).map(i=>i.cssText).join(\"\"))));}},se=(t,e,s)=>{const a=e.name||\"default\";let o;try{if(t.shadowRoot===null)throw new Error(\"ShadowRoot is null\");o=t.shadowRoot;}catch{o=t;}if(n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.has(t.tagName))v(t,o,n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.get(t.tagName),s);else {const r=y(a,\"PROPERTIES\"),i=y(a,\"GLOBAL\"),c=y(a,t.tagName);w.has(a)===false&&X(a,i);const m=[r,i,c];te(o,m,e.encroachCss),e.cache===true&&(n$1.A11yUi.CSS_STYLE_CACHE.has(a)===false&&n$1.A11yUi.CSS_STYLE_CACHE.set(a,new Map),n$1.A11yUi.CSS_STYLE_CACHE.get(a)?.set(t.tagName,m)),v(t,o,m,s);}},v=(t,e,s,a)=>{const o=performance.now();if(Z(e),ee(e,s),H(t),a(),n$1.A11yUi.PERFORMANCE_MEASURES.has(t.tagName)){const r=n$1.A11yUi.PERFORMANCE_MEASURES.get(t.tagName);r.count+=1,r.totalTime+=performance.now()-o;}else n$1.A11yUi.PERFORMANCE_MEASURES.set(t.tagName,{count:1,totalTime:performance.now()-o});},L=t=>{const e=n$1.A11yUi.STYLING_TASK_QUEUE.get(t);if(e){const{resetCss:s,themeDetails:a}=e;se(t,a,s),H(t);}};let T=t=>{const e=setTimeout(()=>{clearTimeout(e),t.classList.contains(\"hydrated\")?L(t):T(t);},M);};const ae={attributes:true,attributeFilter:[\"class\"],childList:false,subtree:false},oe={attributes:true,attributeFilter:[],childList:false,subtree:false},R=J?new MutationObserver((t,e)=>{for(const s of t){const a=s.target;a.classList.contains(\"hydrated\")&&(L(a),e.observe(a,oe));}}):null;R&&(T=t=>R.observe(t,ae),N=()=>{});let _=t=>{const e=getComputedStyle(t).getPropertyValue(\"--theme-visibility-delay\").trim();if(e.endsWith(\"ms\"))return parseFloat(e);if(e.endsWith(\"s\"))return parseFloat(e)*1e3;{const s=parseFloat(e);return isNaN(s)?0:s}};n$1.A11yUi.IS_TEST_ENVIRONMENT&&(_=()=>0);const O=(t,e)=>{t.style.setProperty(\"visibility\",e),t.dataset.themed=\"\";},re=(t,e)=>{const s=t.style.visibility||null;n$1.A11yUi.STYLING_TASK_QUEUE.set(t,{resetCss:()=>{const a=_(t);a>0?setTimeout(()=>{O(t,s);},a):O(t,s);},themeDetails:e}),t.style.setProperty(\"visibility\",\"hidden\",\"important\"),T(t);},H=t=>{n$1.A11yUi.STYLING_TASK_QUEUE.delete(t),N();},ne=(t,e)=>{re(t,{...n$1.A11yUi.Theme,...e});};class ie{Prefix;Key;Tag;createTheme=(e,s)=>P(e,s);createTranslation=(e,s)=>I(e,s);constructor(e,s,a){this.Prefix=e,this.Key=Object.getOwnPropertyNames(s),this.Tag=Object.getOwnPropertyNames(a);}}\n\nvar KeyEnum;\n(function (KeyEnum) {\n KeyEnum[KeyEnum[\"error\"] = 0] = \"error\";\n KeyEnum[KeyEnum[\"warning\"] = 1] = \"warning\";\n KeyEnum[KeyEnum[\"info\"] = 2] = \"info\";\n KeyEnum[KeyEnum[\"success\"] = 3] = \"success\";\n KeyEnum[KeyEnum[\"message\"] = 4] = \"message\";\n KeyEnum[KeyEnum[\"close\"] = 5] = \"close\";\n KeyEnum[KeyEnum[\"form-description\"] = 6] = \"form-description\";\n KeyEnum[KeyEnum[\"of\"] = 7] = \"of\";\n KeyEnum[KeyEnum[\"characters\"] = 8] = \"characters\";\n KeyEnum[KeyEnum[\"new\"] = 9] = \"new\";\n KeyEnum[KeyEnum[\"no-entries\"] = 10] = \"no-entries\";\n KeyEnum[KeyEnum[\"change-order\"] = 11] = \"change-order\";\n KeyEnum[KeyEnum[\"action-running\"] = 12] = \"action-running\";\n KeyEnum[KeyEnum[\"action-done\"] = 13] = \"action-done\";\n KeyEnum[KeyEnum[\"page-first\"] = 14] = \"page-first\";\n KeyEnum[KeyEnum[\"page-back\"] = 15] = \"page-back\";\n KeyEnum[KeyEnum[\"page-next\"] = 16] = \"page-next\";\n KeyEnum[KeyEnum[\"page-last\"] = 17] = \"page-last\";\n KeyEnum[KeyEnum[\"entries-per-site\"] = 18] = \"entries-per-site\";\n KeyEnum[KeyEnum[\"page-current\"] = 19] = \"page-current\";\n KeyEnum[KeyEnum[\"page-selected\"] = 20] = \"page-selected\";\n KeyEnum[KeyEnum[\"page-per-site\"] = 21] = \"page-per-site\";\n KeyEnum[KeyEnum[\"logo-description\"] = 22] = \"logo-description\";\n KeyEnum[KeyEnum[\"open-link-in-tab\"] = 23] = \"open-link-in-tab\";\n KeyEnum[KeyEnum[\"kolibri-logo\"] = 24] = \"kolibri-logo\";\n})(KeyEnum || (KeyEnum = {}));\n\nvar TagEnum;\n(function (TagEnum) {\n TagEnum[TagEnum[\"abbr\"] = 0] = \"abbr\";\n TagEnum[TagEnum[\"accordion\"] = 1] = \"accordion\";\n TagEnum[TagEnum[\"alert\"] = 2] = \"alert\";\n TagEnum[TagEnum[\"avatar\"] = 3] = \"avatar\";\n TagEnum[TagEnum[\"badge\"] = 4] = \"badge\";\n TagEnum[TagEnum[\"breadcrumb\"] = 5] = \"breadcrumb\";\n TagEnum[TagEnum[\"button\"] = 6] = \"button\";\n TagEnum[TagEnum[\"button-link\"] = 7] = \"button-link\";\n TagEnum[TagEnum[\"card\"] = 8] = \"card\";\n TagEnum[TagEnum[\"combobox\"] = 9] = \"combobox\";\n TagEnum[TagEnum[\"details\"] = 10] = \"details\";\n TagEnum[TagEnum[\"drawer\"] = 11] = \"drawer\";\n TagEnum[TagEnum[\"form\"] = 12] = \"form\";\n TagEnum[TagEnum[\"heading\"] = 13] = \"heading\";\n TagEnum[TagEnum[\"icon\"] = 14] = \"icon\";\n TagEnum[TagEnum[\"image\"] = 15] = \"image\";\n TagEnum[TagEnum[\"input-checkbox\"] = 16] = \"input-checkbox\";\n TagEnum[TagEnum[\"input-color\"] = 17] = \"input-color\";\n TagEnum[TagEnum[\"input-date\"] = 18] = \"input-date\";\n TagEnum[TagEnum[\"input-email\"] = 19] = \"input-email\";\n TagEnum[TagEnum[\"input-file\"] = 20] = \"input-file\";\n TagEnum[TagEnum[\"input-number\"] = 21] = \"input-number\";\n TagEnum[TagEnum[\"input-password\"] = 22] = \"input-password\";\n TagEnum[TagEnum[\"input-radio\"] = 23] = \"input-radio\";\n TagEnum[TagEnum[\"input-range\"] = 24] = \"input-range\";\n TagEnum[TagEnum[\"input-text\"] = 25] = \"input-text\";\n TagEnum[TagEnum[\"kolibri\"] = 26] = \"kolibri\";\n TagEnum[TagEnum[\"link\"] = 27] = \"link\";\n TagEnum[TagEnum[\"link-button\"] = 28] = \"link-button\";\n TagEnum[TagEnum[\"logo\"] = 29] = \"logo\";\n TagEnum[TagEnum[\"modal\"] = 30] = \"modal\";\n TagEnum[TagEnum[\"nav\"] = 31] = \"nav\";\n TagEnum[TagEnum[\"pagination\"] = 32] = \"pagination\";\n TagEnum[TagEnum[\"popover-button\"] = 33] = \"popover-button\";\n TagEnum[TagEnum[\"progress\"] = 34] = \"progress\";\n TagEnum[TagEnum[\"quote\"] = 35] = \"quote\";\n TagEnum[TagEnum[\"select\"] = 36] = \"select\";\n TagEnum[TagEnum[\"single-select\"] = 37] = \"single-select\";\n TagEnum[TagEnum[\"skip-nav\"] = 38] = \"skip-nav\";\n TagEnum[TagEnum[\"spin\"] = 39] = \"spin\";\n TagEnum[TagEnum[\"split-button\"] = 40] = \"split-button\";\n TagEnum[TagEnum[\"symbol\"] = 41] = \"symbol\";\n TagEnum[TagEnum[\"table\"] = 42] = \"table\";\n TagEnum[TagEnum[\"table-stateful\"] = 43] = \"table-stateful\";\n TagEnum[TagEnum[\"table-stateless\"] = 44] = \"table-stateless\";\n TagEnum[TagEnum[\"tabs\"] = 45] = \"tabs\";\n TagEnum[TagEnum[\"textarea\"] = 46] = \"textarea\";\n TagEnum[TagEnum[\"toast-container\"] = 47] = \"toast-container\";\n TagEnum[TagEnum[\"toolbar\"] = 48] = \"toolbar\";\n TagEnum[TagEnum[\"tooltip\"] = 49] = \"tooltip\";\n TagEnum[TagEnum[\"tree\"] = 50] = \"tree\";\n TagEnum[TagEnum[\"tree-item\"] = 51] = \"tree-item\";\n})(TagEnum || (TagEnum = {}));\n\nconst getWindow = () => {\n if (typeof window !== 'undefined')\n return window;\n return {};\n};\nconst getDocument = () => {\n const win = getWindow();\n if (win && typeof win.document !== 'undefined')\n return win.document;\n return {};\n};\nconst MODES = ['development', 'production', 'test'];\nlet runtimeMode = 'production';\nconst setRuntimeMode = (mode) => {\n try {\n if (MODES.includes(mode)) {\n runtimeMode = mode;\n }\n else {\n throw new Error(`Invalid NODE_ENV value: ${mode}. Expected one of ${MODES.join(', ')}.`);\n }\n }\n catch (e) {\n runtimeMode = 'production';\n }\n};\nconst getInitialMode = () => {\n try {\n const nodeEnv = typeof process !== 'undefined' && process.env ? process.env['NODE_ENV'] : undefined;\n if (nodeEnv && MODES.includes(nodeEnv)) {\n return nodeEnv;\n }\n }\n catch (e) {\n }\n return 'production';\n};\nsetRuntimeMode(getInitialMode());\nlet EXPERIMENTAL_MODE = false;\nlet COLOR_CONTRAST_ANALYSIS = false;\nconst isDevMode = () => runtimeMode === 'development';\nconst isTestMode = () => runtimeMode === 'test';\nconst getExperimentalMode = () => EXPERIMENTAL_MODE === true;\nconst setExperimentalMode = (mode) => {\n EXPERIMENTAL_MODE = mode === true;\n};\nconst getColorContrastAnalysis = () => COLOR_CONTRAST_ANALYSIS === true;\nconst setColorContrastAnalysis = (mode) => {\n COLOR_CONTRAST_ANALYSIS = mode === true;\n};\nconst LOG_STYLE = 'color: white; background: #666; font-weight: bold; padding: .25em .5em; border-radius: 3px; border: 1px solid #000';\nconst mapToArray = (msg) => {\n return Array.isArray(msg) ? msg : [msg];\n};\nconst getLogLabel = (label) => {\n return `%c${label}`;\n};\nconst handleClassifier = (label, classifier) => {\n if (typeof classifier === 'string' && classifier.length > 0) {\n return `${getLogLabel(label)} | ${classifier}`;\n }\n else {\n return getLogLabel(label);\n }\n};\nconst getShield = (label, options) => {\n return [handleClassifier(label, options === null || options === void 0 ? void 0 : options.classifier), `${LOG_STYLE};${(options === null || options === void 0 ? void 0 : options.overwriteStyle) || ''}`];\n};\nconst isDevModeOrForceLog = (forceLog) => isDevMode() || forceLog === true;\nclass Logger {\n constructor(label) {\n this.label = label;\n }\n debug(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.debug(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n info(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.info(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n trace(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.trace(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n warn(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n console.warn(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n error(msg, options) {\n console.error(...getShield(this.label, options), ...mapToArray(msg));\n }\n throw(msg, options) {\n if (isDevModeOrForceLog(options === null || options === void 0 ? void 0 : options.forceLog)) {\n throw new Error(...getShield(this.label, options), ...mapToArray(msg));\n }\n }\n}\nconst Log = new Logger('KoliBri');\n\nconst a11yCache = new Set();\nconst a11yHint = (msg, options) => {\n if (a11yCache.has(msg) === false || false) {\n a11yCache.add(msg);\n Log.debug([msg].concat([]), {\n classifier: `✋ a11y`,\n forceLog: false,\n overwriteStyle: '; background-color: #09f',\n });\n }\n};\nconst deprecatedCache = new Set();\nconst deprecatedHint = (msg, options) => {\n if (deprecatedCache.has(msg) === false || false) {\n deprecatedCache.add(msg);\n Log.warn([msg].concat([]), {\n classifier: `🔥 deprecated`,\n forceLog: false,\n overwriteStyle: '; background-color: #f00',\n });\n }\n};\nconst devCache = new Set();\nconst devHint = (msg, options) => {\n if (devCache.has(msg) === false || !!(options === null || options === void 0 ? void 0 : options.force)) {\n devCache.add(msg);\n Log.debug([msg].concat((options === null || options === void 0 ? void 0 : options.details) || []), {\n classifier: `💻 dev`,\n forceLog: !!(options === null || options === void 0 ? void 0 : options.force),\n overwriteStyle: '; background-color: #f09',\n });\n }\n};\nconst devWarning = (msg, options) => {\n if (devCache.has(msg) === false || false) {\n devCache.add(msg);\n Log.warn([msg].concat([]), {\n classifier: `⚠️ dev`,\n forceLog: false,\n overwriteStyle: '; background-color: #f09',\n });\n }\n};\nconst featureCache = new Set();\nconst featureHint = (msg, done = false, options) => {\n if (featureCache.has(msg) === false || false) {\n featureCache.add(msg);\n msg += done === true ? ' ✅' : '';\n Log.debug([msg].concat([]), {\n classifier: `🌟 feature`,\n forceLog: false,\n overwriteStyle: '; background-color: #309',\n });\n }\n};\ndevHint(`We appreciate any feedback, comments, screenshots, or demo links of an application based on KoliBri (kolibri@itzbund.de). Thank you!`);\nconst uiUxCache = new Set();\nconst uiUxHint = (msg, options) => {\n if (uiUxCache.has(msg) === false || false) {\n uiUxCache.add(msg);\n Log.debug([msg].concat([]), {\n classifier: `📑 ui/ux`,\n forceLog: false,\n overwriteStyle: '; background-color: #060;',\n });\n }\n};\nconst a11yHintDisabled = () => {\n a11yHint(`\"Disabled\" limits accessibility and visibility. From an accessibility perspective, we recommend using the readonly attribute instead of disabled.\\n- https://uxdesign.cc/is-it-ok-to-grey-out-disabled-buttons-8afa74a0fae`);\n};\nconst a11yHintLabelingLandmarks = (value) => {\n if (typeof value !== 'string' || value === '') {\n a11yHint(`Some structural elements, such as the nav tag, can be used multiple times on a webpage. To distinguish between similarly named structural elements, it is necessary to set an ARIA label.\\n- https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Roles/Navigation_Role#accessibility_concerns`);\n }\n};\nconst uiUxHintMillerscheZahl = (className, length = 8) => {\n if (length > 7) {\n uiUxHint(`[${className}] Within navigation structures, it is recommended to use no more than 7 menu items.\n\nLink:\n- https://en.wikipedia.org/wiki/The_Magical_Number_Seven,_Plus_or_Minus_Two`);\n }\n};\n\nvar n=.2126,r=.7152,t=.0722,e=1/12.92;function u(n){return Math.pow((n+.055)/1.055,2.4)}function a(a){var i=a[0]/255,c=a[1]/255,o=a[2]/255,s=i<=.03928?i*e:u(i),f=c<=.03928?c*e:u(c),l=o<=.03928?o*e:u(o);return s*n+f*r+l*t}function i(n){var r=255;8===(n=n.replace(/^#/,\"\")).length&&(r=parseInt(n.slice(6,8),16),n=n.substring(0,6)),4===n.length&&(r=parseInt(n.slice(3,4).repeat(2),16),n=n.substring(0,3)),3===n.length&&(n=n[0]+n[0]+n[1]+n[1]+n[2]+n[2]);var t=parseInt(n,16);return [t>>16,t>>8&255,255&t,r]}function c(n,r){return (Math.max(n,r)+.05)/(Math.min(n,r)+.05)}function o(n,r){return c(a(n),a(r))}function s(n,r){return o(i(n),i(r))}function f(n){return n>=7?\"AAA\":n>=4.5?\"AA\":n>=3?\"AA Large\":\"Fail\"}\n\nvar colorName;\nvar hasRequiredColorName;\n\nfunction requireColorName () {\n\tif (hasRequiredColorName) return colorName;\n\thasRequiredColorName = 1;\n\r\n\tcolorName = {\r\n\t\t\"aliceblue\": [240, 248, 255],\r\n\t\t\"antiquewhite\": [250, 235, 215],\r\n\t\t\"aqua\": [0, 255, 255],\r\n\t\t\"aquamarine\": [127, 255, 212],\r\n\t\t\"azure\": [240, 255, 255],\r\n\t\t\"beige\": [245, 245, 220],\r\n\t\t\"bisque\": [255, 228, 196],\r\n\t\t\"black\": [0, 0, 0],\r\n\t\t\"blanchedalmond\": [255, 235, 205],\r\n\t\t\"blue\": [0, 0, 255],\r\n\t\t\"blueviolet\": [138, 43, 226],\r\n\t\t\"brown\": [165, 42, 42],\r\n\t\t\"burlywood\": [222, 184, 135],\r\n\t\t\"cadetblue\": [95, 158, 160],\r\n\t\t\"chartreuse\": [127, 255, 0],\r\n\t\t\"chocolate\": [210, 105, 30],\r\n\t\t\"coral\": [255, 127, 80],\r\n\t\t\"cornflowerblue\": [100, 149, 237],\r\n\t\t\"cornsilk\": [255, 248, 220],\r\n\t\t\"crimson\": [220, 20, 60],\r\n\t\t\"cyan\": [0, 255, 255],\r\n\t\t\"darkblue\": [0, 0, 139],\r\n\t\t\"darkcyan\": [0, 139, 139],\r\n\t\t\"darkgoldenrod\": [184, 134, 11],\r\n\t\t\"darkgray\": [169, 169, 169],\r\n\t\t\"darkgreen\": [0, 100, 0],\r\n\t\t\"darkgrey\": [169, 169, 169],\r\n\t\t\"darkkhaki\": [189, 183, 107],\r\n\t\t\"darkmagenta\": [139, 0, 139],\r\n\t\t\"darkolivegreen\": [85, 107, 47],\r\n\t\t\"darkorange\": [255, 140, 0],\r\n\t\t\"darkorchid\": [153, 50, 204],\r\n\t\t\"darkred\": [139, 0, 0],\r\n\t\t\"darksalmon\": [233, 150, 122],\r\n\t\t\"darkseagreen\": [143, 188, 143],\r\n\t\t\"darkslateblue\": [72, 61, 139],\r\n\t\t\"darkslategray\": [47, 79, 79],\r\n\t\t\"darkslategrey\": [47, 79, 79],\r\n\t\t\"darkturquoise\": [0, 206, 209],\r\n\t\t\"darkviolet\": [148, 0, 211],\r\n\t\t\"deeppink\": [255, 20, 147],\r\n\t\t\"deepskyblue\": [0, 191, 255],\r\n\t\t\"dimgray\": [105, 105, 105],\r\n\t\t\"dimgrey\": [105, 105, 105],\r\n\t\t\"dodgerblue\": [30, 144, 255],\r\n\t\t\"firebrick\": [178, 34, 34],\r\n\t\t\"floralwhite\": [255, 250, 240],\r\n\t\t\"forestgreen\": [34, 139, 34],\r\n\t\t\"fuchsia\": [255, 0, 255],\r\n\t\t\"gainsboro\": [220, 220, 220],\r\n\t\t\"ghostwhite\": [248, 248, 255],\r\n\t\t\"gold\": [255, 215, 0],\r\n\t\t\"goldenrod\": [218, 165, 32],\r\n\t\t\"gray\": [128, 128, 128],\r\n\t\t\"green\": [0, 128, 0],\r\n\t\t\"greenyellow\": [173, 255, 47],\r\n\t\t\"grey\": [128, 128, 128],\r\n\t\t\"honeydew\": [240, 255, 240],\r\n\t\t\"hotpink\": [255, 105, 180],\r\n\t\t\"indianred\": [205, 92, 92],\r\n\t\t\"indigo\": [75, 0, 130],\r\n\t\t\"ivory\": [255, 255, 240],\r\n\t\t\"khaki\": [240, 230, 140],\r\n\t\t\"lavender\": [230, 230, 250],\r\n\t\t\"lavenderblush\": [255, 240, 245],\r\n\t\t\"lawngreen\": [124, 252, 0],\r\n\t\t\"lemonchiffon\": [255, 250, 205],\r\n\t\t\"lightblue\": [173, 216, 230],\r\n\t\t\"lightcoral\": [240, 128, 128],\r\n\t\t\"lightcyan\": [224, 255, 255],\r\n\t\t\"lightgoldenrodyellow\": [250, 250, 210],\r\n\t\t\"lightgray\": [211, 211, 211],\r\n\t\t\"lightgreen\": [144, 238, 144],\r\n\t\t\"lightgrey\": [211, 211, 211],\r\n\t\t\"lightpink\": [255, 182, 193],\r\n\t\t\"lightsalmon\": [255, 160, 122],\r\n\t\t\"lightseagreen\": [32, 178, 170],\r\n\t\t\"lightskyblue\": [135, 206, 250],\r\n\t\t\"lightslategray\": [119, 136, 153],\r\n\t\t\"lightslategrey\": [119, 136, 153],\r\n\t\t\"lightsteelblue\": [176, 196, 222],\r\n\t\t\"lightyellow\": [255, 255, 224],\r\n\t\t\"lime\": [0, 255, 0],\r\n\t\t\"limegreen\": [50, 205, 50],\r\n\t\t\"linen\": [250, 240, 230],\r\n\t\t\"magenta\": [255, 0, 255],\r\n\t\t\"maroon\": [128, 0, 0],\r\n\t\t\"mediumaquamarine\": [102, 205, 170],\r\n\t\t\"mediumblue\": [0, 0, 205],\r\n\t\t\"mediumorchid\": [186, 85, 211],\r\n\t\t\"mediumpurple\": [147, 112, 219],\r\n\t\t\"mediumseagreen\": [60, 179, 113],\r\n\t\t\"mediumslateblue\": [123, 104, 238],\r\n\t\t\"mediumspringgreen\": [0, 250, 154],\r\n\t\t\"mediumturquoise\": [72, 209, 204],\r\n\t\t\"mediumvioletred\": [199, 21, 133],\r\n\t\t\"midnightblue\": [25, 25, 112],\r\n\t\t\"mintcream\": [245, 255, 250],\r\n\t\t\"mistyrose\": [255, 228, 225],\r\n\t\t\"moccasin\": [255, 228, 181],\r\n\t\t\"navajowhite\": [255, 222, 173],\r\n\t\t\"navy\": [0, 0, 128],\r\n\t\t\"oldlace\": [253, 245, 230],\r\n\t\t\"olive\": [128, 128, 0],\r\n\t\t\"olivedrab\": [107, 142, 35],\r\n\t\t\"orange\": [255, 165, 0],\r\n\t\t\"orangered\": [255, 69, 0],\r\n\t\t\"orchid\": [218, 112, 214],\r\n\t\t\"palegoldenrod\": [238, 232, 170],\r\n\t\t\"palegreen\": [152, 251, 152],\r\n\t\t\"paleturquoise\": [175, 238, 238],\r\n\t\t\"palevioletred\": [219, 112, 147],\r\n\t\t\"papayawhip\": [255, 239, 213],\r\n\t\t\"peachpuff\": [255, 218, 185],\r\n\t\t\"peru\": [205, 133, 63],\r\n\t\t\"pink\": [255, 192, 203],\r\n\t\t\"plum\": [221, 160, 221],\r\n\t\t\"powderblue\": [176, 224, 230],\r\n\t\t\"purple\": [128, 0, 128],\r\n\t\t\"rebeccapurple\": [102, 51, 153],\r\n\t\t\"red\": [255, 0, 0],\r\n\t\t\"rosybrown\": [188, 143, 143],\r\n\t\t\"royalblue\": [65, 105, 225],\r\n\t\t\"saddlebrown\": [139, 69, 19],\r\n\t\t\"salmon\": [250, 128, 114],\r\n\t\t\"sandybrown\": [244, 164, 96],\r\n\t\t\"seagreen\": [46, 139, 87],\r\n\t\t\"seashell\": [255, 245, 238],\r\n\t\t\"sienna\": [160, 82, 45],\r\n\t\t\"silver\": [192, 192, 192],\r\n\t\t\"skyblue\": [135, 206, 235],\r\n\t\t\"slateblue\": [106, 90, 205],\r\n\t\t\"slategray\": [112, 128, 144],\r\n\t\t\"slategrey\": [112, 128, 144],\r\n\t\t\"snow\": [255, 250, 250],\r\n\t\t\"springgreen\": [0, 255, 127],\r\n\t\t\"steelblue\": [70, 130, 180],\r\n\t\t\"tan\": [210, 180, 140],\r\n\t\t\"teal\": [0, 128, 128],\r\n\t\t\"thistle\": [216, 191, 216],\r\n\t\t\"tomato\": [255, 99, 71],\r\n\t\t\"turquoise\": [64, 224, 208],\r\n\t\t\"violet\": [238, 130, 238],\r\n\t\t\"wheat\": [245, 222, 179],\r\n\t\t\"white\": [255, 255, 255],\r\n\t\t\"whitesmoke\": [245, 245, 245],\r\n\t\t\"yellow\": [255, 255, 0],\r\n\t\t\"yellowgreen\": [154, 205, 50]\r\n\t};\n\treturn colorName;\n}\n\n/**\n * @module color-parse\n */\n\nvar colorParse;\nvar hasRequiredColorParse;\n\nfunction requireColorParse () {\n\tif (hasRequiredColorParse) return colorParse;\n\thasRequiredColorParse = 1;\n\n\tvar names = requireColorName();\n\n\tcolorParse = parse;\n\n\t/**\n\t * Base hues\n\t * http://dev.w3.org/csswg/css-color/#typedef-named-hue\n\t */\n\t//FIXME: use external hue detector\n\tvar baseHues = {\n\t\tred: 0,\n\t\torange: 60,\n\t\tyellow: 120,\n\t\tgreen: 180,\n\t\tblue: 240,\n\t\tpurple: 300\n\t};\n\n\t/**\n\t * Parse color from the string passed\n\t *\n\t * @return {Object} A space indicator `space`, an array `values` and `alpha`\n\t */\n\tfunction parse(cstr) {\n\t\tvar m, parts = [], alpha = 1, space;\n\n\t\tif (typeof cstr === 'string') {\n\t\t\tcstr = cstr.toLowerCase();\n\n\t\t\t//keyword\n\t\t\tif (names[cstr]) {\n\t\t\t\tparts = names[cstr].slice();\n\t\t\t\tspace = 'rgb';\n\t\t\t}\n\n\t\t\t//reserved words\n\t\t\telse if (cstr === 'transparent') {\n\t\t\t\talpha = 0;\n\t\t\t\tspace = 'rgb';\n\t\t\t\tparts = [0, 0, 0];\n\t\t\t}\n\n\t\t\t//hex\n\t\t\telse if (/^#[A-Fa-f0-9]+$/.test(cstr)) {\n\t\t\t\tvar base = cstr.slice(1);\n\t\t\t\tvar size = base.length;\n\t\t\t\tvar isShort = size <= 4;\n\t\t\t\talpha = 1;\n\n\t\t\t\tif (isShort) {\n\t\t\t\t\tparts = [\n\t\t\t\t\t\tparseInt(base[0] + base[0], 16),\n\t\t\t\t\t\tparseInt(base[1] + base[1], 16),\n\t\t\t\t\t\tparseInt(base[2] + base[2], 16)\n\t\t\t\t\t];\n\t\t\t\t\tif (size === 4) {\n\t\t\t\t\t\talpha = parseInt(base[3] + base[3], 16) / 255;\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t\telse {\n\t\t\t\t\tparts = [\n\t\t\t\t\t\tparseInt(base[0] + base[1], 16),\n\t\t\t\t\t\tparseInt(base[2] + base[3], 16),\n\t\t\t\t\t\tparseInt(base[4] + base[5], 16)\n\t\t\t\t\t];\n\t\t\t\t\tif (size === 8) {\n\t\t\t\t\t\talpha = parseInt(base[6] + base[7], 16) / 255;\n\t\t\t\t\t}\n\t\t\t\t}\n\n\t\t\t\tif (!parts[0]) parts[0] = 0;\n\t\t\t\tif (!parts[1]) parts[1] = 0;\n\t\t\t\tif (!parts[2]) parts[2] = 0;\n\n\t\t\t\tspace = 'rgb';\n\t\t\t}\n\n\t\t\t//color space\n\t\t\telse if (m = /^((?:rgb|hs[lvb]|hwb|cmyk?|xy[zy]|gray|lab|lchu?v?|[ly]uv|lms)a?)\\s*\\(([^\\)]*)\\)/.exec(cstr)) {\n\t\t\t\tvar name = m[1];\n\t\t\t\tvar isRGB = name === 'rgb';\n\t\t\t\tvar base = name.replace(/a$/, '');\n\t\t\t\tspace = base;\n\t\t\t\tvar size = base === 'cmyk' ? 4 : base === 'gray' ? 1 : 3;\n\t\t\t\tparts = m[2].trim()\n\t\t\t\t\t.split(/\\s*[,\\/]\\s*|\\s+/)\n\t\t\t\t\t.map(function (x, i) {\n\t\t\t\t\t\t//<percentage>\n\t\t\t\t\t\tif (/%$/.test(x)) {\n\t\t\t\t\t\t\t//alpha\n\t\t\t\t\t\t\tif (i === size) return parseFloat(x) / 100\n\t\t\t\t\t\t\t//rgb\n\t\t\t\t\t\t\tif (base === 'rgb') return parseFloat(x) * 255 / 100\n\t\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t\t}\n\t\t\t\t\t\t//hue\n\t\t\t\t\t\telse if (base[i] === 'h') {\n\t\t\t\t\t\t\t//<deg>\n\t\t\t\t\t\t\tif (/deg$/.test(x)) {\n\t\t\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t//<base-hue>\n\t\t\t\t\t\t\telse if (baseHues[x] !== undefined) {\n\t\t\t\t\t\t\t\treturn baseHues[x]\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t\treturn parseFloat(x)\n\t\t\t\t\t});\n\n\t\t\t\tif (name === base) parts.push(1);\n\t\t\t\talpha = (isRGB) ? 1 : (parts[size] === undefined) ? 1 : parts[size];\n\t\t\t\tparts = parts.slice(0, size);\n\t\t\t}\n\n\t\t\t//named channels case\n\t\t\telse if (cstr.length > 10 && /[0-9](?:\\s|\\/)/.test(cstr)) {\n\t\t\t\tparts = cstr.match(/([0-9]+)/g).map(function (value) {\n\t\t\t\t\treturn parseFloat(value)\n\t\t\t\t});\n\n\t\t\t\tspace = cstr.match(/([a-z])/ig).join('').toLowerCase();\n\t\t\t}\n\t\t}\n\n\t\t//numeric case\n\t\telse if (!isNaN(cstr)) {\n\t\t\tspace = 'rgb';\n\t\t\tparts = [cstr >>> 16, (cstr & 0x00ff00) >>> 8, cstr & 0x0000ff];\n\t\t}\n\n\t\t//array-like\n\t\telse if (Array.isArray(cstr) || cstr.length) {\n\t\t\tparts = [cstr[0], cstr[1], cstr[2]];\n\t\t\tspace = 'rgb';\n\t\t\talpha = cstr.length === 4 ? cstr[3] : 1;\n\t\t}\n\n\t\t//object case - detects css cases of rgb and hsl\n\t\telse if (cstr instanceof Object) {\n\t\t\tif (cstr.r != null || cstr.red != null || cstr.R != null) {\n\t\t\t\tspace = 'rgb';\n\t\t\t\tparts = [\n\t\t\t\t\tcstr.r || cstr.red || cstr.R || 0,\n\t\t\t\t\tcstr.g || cstr.green || cstr.G || 0,\n\t\t\t\t\tcstr.b || cstr.blue || cstr.B || 0\n\t\t\t\t];\n\t\t\t}\n\t\t\telse {\n\t\t\t\tspace = 'hsl';\n\t\t\t\tparts = [\n\t\t\t\t\tcstr.h || cstr.hue || cstr.H || 0,\n\t\t\t\t\tcstr.s || cstr.saturation || cstr.S || 0,\n\t\t\t\t\tcstr.l || cstr.lightness || cstr.L || cstr.b || cstr.brightness\n\t\t\t\t];\n\t\t\t}\n\n\t\t\talpha = cstr.a || cstr.alpha || cstr.opacity || 1;\n\n\t\t\tif (cstr.opacity != null) alpha /= 100;\n\t\t}\n\n\t\treturn {\n\t\t\tspace: space,\n\t\t\tvalues: parts,\n\t\t\talpha: alpha\n\t\t}\n\t}\n\treturn colorParse;\n}\n\nvar colorParseExports = requireColorParse();\nvar parse = /*@__PURE__*/getDefaultExportFromCjs(colorParseExports);\n\n/**\n * RGB space.\n *\n * @module color-space/rgb\n */\nconst rgb = {\n\tmin: [0, 0, 0],\n\tmax: [255, 255, 255]};\n\n/**\n * @module color-space/hsl\n */\n\nvar hsl = {\n\tname: 'hsl',\n\tmin: [0, 0, 0],\n\tmax: [360, 100, 100],\n\tchannel: ['hue', 'saturation', 'lightness'],\n\talias: ['HSL'],\n\n\trgb: function (hsl) {\n\t\tvar h = hsl[0] / 360, s = hsl[1] / 100, l = hsl[2] / 100, t1, t2, t3, rgb, val, i = 0;\n\n\t\tif (s === 0) return val = l * 255, [val, val, val];\n\n\t\tt2 = l < 0.5 ? l * (1 + s) : l + s - l * s;\n\t\tt1 = 2 * l - t2;\n\n\t\trgb = [0, 0, 0];\n\t\tfor (; i < 3;) {\n\t\t\tt3 = h + 1 / 3 * - (i - 1);\n\t\t\tt3 < 0 ? t3++ : t3 > 1 && t3--;\n\t\t\tval = 6 * t3 < 1 ? t1 + (t2 - t1) * 6 * t3 :\n\t\t\t\t2 * t3 < 1 ? t2 :\n\t\t\t\t\t3 * t3 < 2 ? t1 + (t2 - t1) * (2 / 3 - t3) * 6 :\n\t\t\t\t\t\tt1;\n\t\t\trgb[i++] = val * 255;\n\t\t}\n\n\t\treturn rgb;\n\t}\n};\n\n\n//extend rgb\nrgb.hsl = function (rgb) {\n\tvar r = rgb[0] / 255,\n\t\tg = rgb[1] / 255,\n\t\tb = rgb[2] / 255,\n\t\tmin = Math.min(r, g, b),\n\t\tmax = Math.max(r, g, b),\n\t\tdelta = max - min,\n\t\th, s, l;\n\n\tif (max === min) {\n\t\th = 0;\n\t}\n\telse if (r === max) {\n\t\th = (g - b) / delta;\n\t}\n\telse if (g === max) {\n\t\th = 2 + (b - r) / delta;\n\t}\n\telse if (b === max) {\n\t\th = 4 + (r - g) / delta;\n\t}\n\n\t//FIXME h is possibly undefined\n\t//@ts-ignore\n\th = Math.min(h * 60, 360);\n\n\tif (h < 0) {\n\t\th += 360;\n\t}\n\n\tl = (min + max) / 2;\n\n\tif (max === min) {\n\t\ts = 0;\n\t}\n\telse if (l <= 0.5) {\n\t\ts = delta / (max + min);\n\t}\n\telse {\n\t\ts = delta / (2 - max - min);\n\t}\n\n\treturn [h, s * 100, l * 100];\n};\n\nvar rgbaConvert = {exports: {}};\n\nvar hasRequiredRgbaConvert;\n\nfunction requireRgbaConvert () {\n\tif (hasRequiredRgbaConvert) return rgbaConvert.exports;\n\thasRequiredRgbaConvert = 1;\n\trgbaConvert.exports = arr;\n\trgbaConvert.exports.arr = arr;\n\trgbaConvert.exports.obj = obj;\n\trgbaConvert.exports.css = css;\n\trgbaConvert.exports.hex = hex;\n\trgbaConvert.exports.num = num;\n\n\tfunction arr(data) {\n\t var a = parse(data);\n\t if (a.length == 3) {\n\t return a.concat(255)\n\t } else {\n\t a[3] = Math.round(a[3]);\n\t return a\n\t }\n\t}\n\n\tfunction obj(data) {\n\t var a = parse(data);\n\t return {\n\t r: a[0],\n\t g: a[1],\n\t b: a[2],\n\t a: a.length == 3\n\t ? 255\n\t : Math.round(a[3])\n\t }\n\t}\n\n\tfunction css(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\n\t return a[3] == 255\n\t ? 'rgb(' + a[0] + ', ' + a[1] + ', ' + a[2] + ')'\n\t : a[3] == 0\n\t ? 'rgba(' + a[0] + ', ' + a[1] + ', ' + a[2] + ', 0)'\n\t : 'rgba(' + a[0] + ', ' + a[1] + ', ' + a[2] + ', ' + String(a[3] / 255).substr(1) + ')'\n\t}\n\n\tfunction hex(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\t var opaque = a[3] == 255;\n\t var r = num2hex(a[0]);\n\t var g = num2hex(a[1]);\n\t var b = num2hex(a[2]);\n\t var a = num2hex(Math.round(a[3]));\n\t var is = isshort(r, g, b, a);\n\t if (opaque) {\n\t return is\n\t ? '#' + r.charAt(0) + g.charAt(0) + b.charAt(0)\n\t : '#' + r + g + b\n\t }\n\t return is\n\t ? '#' + r.charAt(0) + g.charAt(0) + b.charAt(0) + a.charAt(0)\n\t : '#' + r + g + b + a\n\t}\n\n\tfunction num(data) {\n\t var a = parse(data);\n\t if (a.length == 3) a.push(255);\n\t else a[3] = Math.round(a[3]);\n\t return ((a[3] << 24) >>> 0 | a[0] << 16 | a[1] << 8 | a[2]) >>> 0\n\t}\n\n\tfunction parse(data) {\n\t if (typeof data == 'string') {\n\t data = data.toLowerCase();\n\t return name(data)\n\t || hex3(data)\n\t || hex6(data)\n\t || rgb(data)\n\t || rgba(data)\n\t || [0, 0, 0, 255]\n\t }\n\t return object(data)\n\t || array(data)\n\t || number(data)\n\t || [0, 0, 0, 255]\n\t}\n\n\tfunction num2hex(num) {\n\t var s = num.toString(16);\n\t return s.length == 1\n\t ? '0' + s\n\t : s\n\t}\n\n\tfunction isshort(r, g, b, a) {\n\t var h = ['ff', '00', '11', '22', '33', '44', '55', '66',\n\t '77', '88', '99', 'aa', 'bb', 'cc', 'dd', 'ee'];\n\t return h.indexOf(r) != -1\n\t && h.indexOf(g) != -1\n\t && h.indexOf(b) != -1\n\t && h.indexOf(a) != -1\n\t}\n\n\tfunction name(str) {\n\t if (str == 'red') return [255, 0, 0]\n\t if (str == 'green') return [0, 255, 0]\n\t if (str == 'blue') return [0, 0, 255]\n\t if (str == 'black') return [0, 0, 0]\n\t if (str == 'white') return [255, 255, 255]\n\t if (str == 'cyan') return [0, 255, 255]\n\t if (str == 'gray') return [128, 128, 128]\n\t if (str == 'grey') return [128, 128, 128]\n\t if (str == 'magenta') return [255, 0, 255]\n\t // ok, not the real css `pink` but my personal `magenta` alias\n\t // `pink` is simpler than `fuchsia`, whatever...\n\t if (str == 'pink') return [255, 0, 255]\n\t if (str == 'yellow') return [255, 255, 0]\n\t}\n\n\tfunction hex2num(str) {\n\t return str.length == 1\n\t ? parseInt(str + str, 16)\n\t : parseInt(str, 16)\n\t}\n\n\tfunction hex3(str) {\n\t var s = str.replace(/^#/,'');\n\t var l = s.length;\n\t if (l == 3 || l == 4) {\n\t var r = hex2num(s[0]);\n\t var g = hex2num(s[1]);\n\t var b = hex2num(s[2]);\n\t var a = l == 3\n\t ? 255\n\t : hex2num(s[3]);\n\n\t if (isNaN(r) || isNaN(g) || isNaN(b) || isNaN(a)) return\n\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction hex6(str) {\n\t var s = str.replace(/^#/,'');\n\t var l = s.length;\n\t if (l == 6 || l == 8) {\n\t var r = hex2num(s.slice(0, 2));\n\t var g = hex2num(s.slice(2, 4));\n\t var b = hex2num(s.slice(4, 6));\n\t var a = l == 6\n\t ? 255\n\t : hex2num(s.slice(6, 8));\n\n\t if (isNaN(r) || isNaN(g) || isNaN(b) || isNaN(a)) return\n\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction getnum(val, integer) {\n\t if (typeof val != 'number') return -1\n\t if (integer === true && Math.floor(val) !== val) return -1\n\t return val >= 0 && val <= 255\n\t ? val\n\t : -1\n\t}\n\n\tfunction object(obj) {\n\t if (Object.prototype.toString.call(obj) === '[object Object]'\n\t && Object.getPrototypeOf(obj) === Object.getPrototypeOf({})) {\n\t var r = getnum(obj.r != undefined ? obj.r : obj.red != undefined ? obj.red : 0, true);\n\t var g = getnum(obj.g != undefined ? obj.g : obj.green != undefined ? obj.green : 0, true);\n\t var b = getnum(obj.b != undefined ? obj.b : obj.blue != undefined ? obj.blue : 0, true);\n\t var a = getnum(obj.a != undefined ? obj.a : obj.alpha != undefined ? obj.alpha : 255, true);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\n\tfunction array(arr) {\n\t if (Array.isArray(arr) && (arr.length == 3 || arr.length == 4)) {\n\t var r = getnum(arr[0], true);\n\t var g = getnum(arr[1], true);\n\t var b = getnum(arr[2], true);\n\t var a = getnum(arr[3] != undefined ? arr[3] : 255, true);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\n\tfunction number(num) {\n\t if (typeof num == 'number' && Math.floor(num) == num && num <= 4294967295 && num >= 0) {\n\t var a = num >> 24 & 255;\n\t var r = num >> 16 & 255;\n\t var g = num >> 8 & 255;\n\t var b = num & 255;\n\t return [r, g, b, a]\n\t }\n\t}\n\n\tfunction rgb(str) {\n\t if (str.substr(0, 4) == 'rgb(') {\n\t str = str.match(/^rgb\\(([^)]+)\\)/)[1];\n\t var t = str.split(/ *, */).map(Number);\n\t var r = getnum(t[0], true);\n\t var g = getnum(t[1], true);\n\t var b = getnum(t[2], true);\n\t if (r != -1 && g != -1 && b != -1) {\n\t return [r, g, b, 255]\n\t }\n\t }\n\t}\n\n\tfunction rgba(str) {\n\t if (str.substr(0, 5) == 'rgba(') {\n\t str = str.match(/^rgba\\(([^)]+)\\)/)[1];\n\t var t = str.split(/ *, */).map(Number);\n\t var r = getnum(t[0], true);\n\t var g = getnum(t[1], true);\n\t var b = getnum(t[2], true);\n\t var a = getnum(t[3] * 255);\n\t if (r != -1 && g != -1 && b != -1 && a != -1) {\n\t return [r, g, b, a]\n\t }\n\t }\n\t}\n\treturn rgbaConvert.exports;\n}\n\nvar rgbaConvertExports = requireRgbaConvert();\nvar rgba = /*@__PURE__*/getDefaultExportFromCjs(rgbaConvertExports);\n\nvar cjs$1 = {};\n\nvar hasRequiredCjs$1;\n\nfunction requireCjs$1 () {\n\tif (hasRequiredCjs$1) return cjs$1;\n\thasRequiredCjs$1 = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.querySelectorAll = void 0;\n\t\tconst pushNodes = (set, domNodes) => {\n\t\t domNodes.forEach((domNode) => {\n\t\t if (set.has(domNode) === false) {\n\t\t set.add(domNode);\n\t\t }\n\t\t });\n\t\t};\n\t\tconst querySelectorAll = (selector, node = document) => {\n\t\t if (node instanceof Document ||\n\t\t node instanceof HTMLElement ||\n\t\t node instanceof ShadowRoot) {\n\t\t const domNodes = new Set();\n\t\t pushNodes(domNodes, node.querySelectorAll(selector));\n\t\t const nodeList = node.querySelectorAll('[class*=\"hydrated\"]');\n\t\t for (let i = 0; i < nodeList.length; i++) {\n\t\t const shadowRoot = nodeList[i].shadowRoot;\n\t\t if (typeof shadowRoot === \"object\" && shadowRoot !== null) {\n\t\t pushNodes(domNodes, (0, exports.querySelectorAll)(selector, shadowRoot));\n\t\t }\n\t\t else {\n\t\t pushNodes(domNodes, (0, exports.querySelectorAll)(selector, nodeList[i]));\n\t\t }\n\t\t }\n\t\t return Array.from(domNodes);\n\t\t }\n\t\t else {\n\t\t throw new Error(`The parameter document for the method querySelectorAll is not type of Document, HTMLElement or ShadowRoot.`);\n\t\t }\n\t\t};\n\t\texports.querySelectorAll = querySelectorAll;\n\t\t\n\t} (cjs$1));\n\treturn cjs$1;\n}\n\nvar cjsExports$1 = requireCjs$1();\n\nvar cjs = {};\n\nvar hasRequiredCjs;\n\nfunction requireCjs () {\n\tif (hasRequiredCjs) return cjs;\n\thasRequiredCjs = 1;\n\t(function (exports) {\n\t\tObject.defineProperty(exports, \"__esModule\", { value: true });\n\t\texports.querySelector = void 0;\n\t\tconst querySelector = (selector, node = document) => {\n\t\t if (node instanceof Document ||\n\t\t node instanceof HTMLElement ||\n\t\t node instanceof ShadowRoot) {\n\t\t let domNode = node.querySelector(selector);\n\t\t if (domNode === null) {\n\t\t const nodeList = node.querySelectorAll('[class*=\"hydrated\"]');\n\t\t for (let i = 0; i < nodeList.length; i++) {\n\t\t const shadowRoot = nodeList[i].shadowRoot;\n\t\t if (typeof shadowRoot === \"object\" && shadowRoot !== null) {\n\t\t domNode = (0, exports.querySelector)(selector, shadowRoot);\n\t\t }\n\t\t else {\n\t\t domNode = (0, exports.querySelector)(selector, nodeList[i]);\n\t\t }\n\t\t if (domNode !== null) {\n\t\t break;\n\t\t }\n\t\t }\n\t\t }\n\t\t return domNode;\n\t\t }\n\t\t else {\n\t\t throw new Error(`The parameter document for the method querySelector is not type of Document, HTMLElement or ShadowRoot.`);\n\t\t }\n\t\t};\n\t\texports.querySelector = querySelector;\n\t\t\n\t} (cjs));\n\treturn cjs;\n}\n\nvar cjsExports = requireCjs();\n\nconst OBJECT_OBJECT = /\\[object Object\\]/;\nconst objectObjectHandler = (value, cb) => {\n if (typeof value === 'string' && OBJECT_OBJECT.test(value)) {\n return;\n }\n cb();\n};\nconst emptyStringByArrayHandler = (value, cb) => {\n if (typeof value === 'string' && value === '') {\n return;\n }\n cb();\n};\nconst setEventTarget = (event, target) => {\n if (getExperimentalMode()) {\n Log.debug([event, target]);\n Log.debug(`↑ We propagate the (submit) event to this target.`);\n }\n Object.defineProperty(event, 'target', {\n value: target,\n writable: false,\n });\n};\nconst patchState = (component) => {\n var _a, _b, _c;\n (_a = component.nextHooks) === null || _a === void 0 ? void 0 : _a.forEach((hooks, key) => {\n var _a;\n const beforePatch = hooks.get('beforePatch');\n if (typeof beforePatch === 'function') {\n beforePatch((_a = component.nextState) === null || _a === void 0 ? void 0 : _a.get(key), component.nextState, component, key);\n }\n });\n if (((_b = component.nextState) === null || _b === void 0 ? void 0 : _b.size) > 0) {\n component.state = Object.assign(Object.assign({}, component.state), Object.fromEntries(component.nextState));\n delete component.nextState;\n (_c = component.nextHooks) === null || _c === void 0 ? void 0 : _c.forEach((hooks, key) => {\n const afterPatch = hooks.get('afterPatch');\n if (typeof afterPatch === 'function') {\n afterPatch(component.state[key], component.state, component, key);\n }\n });\n }\n delete component.nextHooks;\n};\nconst setState = (component, propName, value, hooks = {}) => {\n var _a, _b;\n if (component.nextHooks === undefined) {\n component.nextHooks = new Map();\n }\n if (component.nextState === undefined) {\n component.nextState = new Map();\n }\n const nextHooks = component.nextHooks.get(propName);\n if (nextHooks instanceof Map === false) {\n component.nextHooks.set(propName, new Map());\n }\n if (typeof hooks.afterPatch === 'function') {\n (_a = component.nextHooks.get(propName)) === null || _a === void 0 ? void 0 : _a.set('afterPatch', hooks.afterPatch);\n }\n if (typeof hooks.beforePatch === 'function') {\n (_b = component.nextHooks.get(propName)) === null || _b === void 0 ? void 0 : _b.set('beforePatch', hooks.beforePatch);\n }\n component.nextState.set(propName, value);\n patchState(component);\n};\nconst logWarn = (component, propName, value, requiredGeneric) => {\n devHint(`[${component.constructor.name}] The property value: (${value}) for '${propName}' is not valid. Allowed values are: ${Array.from(requiredGeneric).join(', ')}`);\n};\nfunction watchValidator(component, propName, validationFunction, requiredGeneric, value, options = {}) {\n if (validationFunction(value)) {\n setState(component, propName, value, options.hooks);\n }\n else if (value === undefined && options.required !== true && validationFunction(options.defaultValue)) {\n setState(component, propName, options.defaultValue, options.hooks);\n }\n else {\n if (!options.required) {\n requiredGeneric.add(null);\n }\n logWarn(component, propName, value, requiredGeneric);\n }\n}\nconst watchBoolean = (component, propName, value, options) => {\n watchValidator(component, propName, (value) => typeof value === 'boolean', new Set(['Boolean {true, false}']), value, options);\n};\nconst watchString = (component, propName, value, options = {}) => {\n const minLength = typeof options.minLength === 'number' ? options === null || options === void 0 ? void 0 : options.minLength : 0;\n watchValidator(component, propName, (value) => typeof value === 'string' && value.length >= minLength && (typeof (options === null || options === void 0 ? void 0 : options.maxLength) === 'undefined' || value.length <= options.maxLength), new Set([`String`]), value, options);\n};\nconst watchNumber = (component, propName, value, options) => {\n watchValidator(component, propName, (value) => typeof value === 'number' &&\n (typeof (options === null || options === void 0 ? void 0 : options.min) === 'undefined' || (typeof (options === null || options === void 0 ? void 0 : options.min) === 'number' && value >= options.min)) &&\n (typeof (options === null || options === void 0 ? void 0 : options.max) === 'undefined' || (typeof (options === null || options === void 0 ? void 0 : options.max) === 'number' && value <= options.max)), new Set(['Number']), value, options);\n};\nconst watchJsonArrayString = (component, propName, itemValidation, value, arrayValidation = (items) => items === items, options = {}) => {\n emptyStringByArrayHandler(value, () => {\n objectObjectHandler(value, () => {\n if (typeof value === 'undefined') {\n value = [];\n }\n try {\n try {\n value = parseJson(value);\n }\n catch (e) {\n }\n if (Array.isArray(value)) {\n const invalid = value.find((item) => !itemValidation(item));\n if (invalid === undefined && arrayValidation(value)) {\n setState(component, propName, value, options.hooks);\n }\n else {\n objectObjectHandler(invalid, () => {\n Log.debug(invalid);\n throw new Error(`↑ The schema for the property (_options) is not valid. The value will not be changed.`);\n });\n }\n }\n else {\n objectObjectHandler(value, () => {\n Log.debug(value);\n throw new Error(`↑ The schema for the property (_options) is not valid. The value will not be changed.`);\n });\n }\n }\n catch (error) {\n Log.debug(error);\n }\n });\n });\n};\nconst stringifyJson = (value) => {\n try {\n return JSON.stringify(value).replace(/\"/g, \"'\");\n }\n catch (error) {\n Log.warn(['stringifyJson', value]);\n Log.error(`↑ The JSON could not be converted to a string. A stringifiable JSON is expected.`);\n throw new Error();\n }\n};\nconst JSON_CHARS = /^[{[]/;\nconst parseJson = (value) => {\n if (typeof value === 'string') {\n try {\n return JSON.parse(value);\n }\n catch (error) {\n if (JSON_CHARS.test(value)) {\n try {\n return JSON.parse(value.replace(/'/g, '\"'));\n }\n catch (error) {\n Log.warn(['parseJson', value]);\n Log.error(`↑ The JSON string could not be parsed. Make sure that single quotes in the text are escaped (&#8216;).`);\n }\n }\n }\n }\n throw new Error();\n};\nconst mapBoolean2String = (value) => {\n return typeof value === 'boolean' ? (value === true ? 'true' : 'false') : undefined;\n};\nconst mapStringOrBoolean2String = (value) => {\n return typeof value === 'string' ? value : mapBoolean2String(value);\n};\nconst koliBriQuerySelector = (selector, node) => cjsExports.querySelector(selector, node || getDocument());\nconst koliBriQuerySelectorAll = (selector, node) => cjsExports$1.querySelectorAll(selector, node || getDocument());\nlet DEFAULT_COLOR_CONTRAST = null;\nconst getDefaultColorContrast = () => {\n DEFAULT_COLOR_CONTRAST = DEFAULT_COLOR_CONTRAST || {\n backgroundColor: '#00000000',\n color: '#00000000',\n domNode: getDocument().body,\n level: 'Fail',\n score: 1,\n };\n return DEFAULT_COLOR_CONTRAST;\n};\nconst TRANSPARENT_REGEXP = /(\\d+, ){3}0\\)/;\nconst koliBriA11yColorContrast = (domNode, a11yColorContrast = getDefaultColorContrast()) => {\n const computedStyle = getComputedStyle(domNode);\n const hexBG = TRANSPARENT_REGEXP.test(computedStyle.backgroundColor) ? a11yColorContrast.backgroundColor : rgba.hex(computedStyle.backgroundColor);\n const hexC = TRANSPARENT_REGEXP.test(computedStyle.color) ? a11yColorContrast.color : rgba.hex(computedStyle.color);\n const diff = s(hexBG, hexC);\n const contrast = {\n backgroundColor: hexBG,\n color: hexC,\n domNode: domNode,\n level: f(diff),\n score: diff,\n };\n if (diff < 4.5) {\n Log.error([\n 'Color-Contrast-Error',\n {\n backgroundColor: contrast.backgroundColor,\n color: contrast.color,\n level: contrast.level,\n score: contrast.score,\n },\n contrast.domNode,\n ]);\n }\n return contrast;\n};\nconst koliBriQuerySelectorColors = (selector, a11yColorContrast = getDefaultColorContrast()) => {\n if (a11yColorContrast.domNode instanceof HTMLElement) {\n a11yColorContrast = koliBriA11yColorContrast(a11yColorContrast.domNode, a11yColorContrast);\n }\n const selectedNode = a11yColorContrast.domNode.querySelector(selector);\n if (selectedNode === null) {\n const nodeList = a11yColorContrast.domNode.querySelectorAll('[class=\"hydrated\"]');\n for (let i = 0; i < nodeList.length; i++) {\n a11yColorContrast.domNode = nodeList[i];\n a11yColorContrast = koliBriQuerySelectorColors(selector, a11yColorContrast);\n if (a11yColorContrast.domNode !== null) {\n break;\n }\n }\n return a11yColorContrast;\n }\n else {\n return koliBriA11yColorContrast(selectedNode, a11yColorContrast);\n }\n};\nclass KoliBriUtils {\n static queryHtmlElementColors(targetNode, a11yColorContrast, recursion = false, log = true) {\n let returnValue = null;\n if (recursion === true || KoliBriUtils.executionLock === false) {\n if (recursion === false) {\n KoliBriUtils.cache.clear();\n KoliBriUtils.cache.set(a11yColorContrast.domNode, a11yColorContrast);\n KoliBriUtils.executionLock = true;\n if (log === true) {\n Log.debug(`[KoliBriUtils] Color contrast analysis started...`);\n }\n }\n if (targetNode === a11yColorContrast.domNode) {\n returnValue = a11yColorContrast;\n }\n else {\n const children = new Set();\n if (a11yColorContrast.domNode.shadowRoot) {\n const shadowChildren = a11yColorContrast.domNode.shadowRoot.children;\n for (let i = 0; i < shadowChildren.length; i++) {\n children.add(shadowChildren[i]);\n }\n }\n const slotElement = a11yColorContrast.domNode;\n if (typeof slotElement.assignedNodes === 'function') {\n const slotChildren = slotElement.assignedNodes();\n for (let i = 0; i < slotChildren.length; i++) {\n if (slotChildren[i] instanceof HTMLElement) {\n children.add(slotChildren[i]);\n }\n }\n }\n const domChildren = a11yColorContrast.domNode.children;\n for (let i = 0; i < domChildren.length; i++) {\n children.add(domChildren[i]);\n }\n const arrayChildren = Array.from(children);\n for (let i = 0; i < arrayChildren.length; i++) {\n let colorContrast = KoliBriUtils.cache.get(arrayChildren[i]);\n if (colorContrast === undefined) {\n colorContrast = koliBriA11yColorContrast(arrayChildren[i], a11yColorContrast);\n }\n KoliBriUtils.cache.set(arrayChildren[i], colorContrast);\n const colors = KoliBriUtils.queryHtmlElementColors(targetNode, colorContrast, true, false);\n if (colors !== null) {\n returnValue = colors;\n break;\n }\n }\n }\n }\n else {\n Log.debug(`[KoliBriUtils] Call aborted because a color contrast analysis is currently being executed.`);\n }\n if (recursion === false) {\n if (log === true) {\n Log.debug(`[KoliBriUtils] Color contrast analysis finished (${KoliBriUtils.cache.size} DOM elements are analysed).`);\n }\n KoliBriUtils.executionLock = false;\n KoliBriUtils.cache.clear();\n }\n return returnValue;\n }\n}\nKoliBriUtils.executionLock = false;\nKoliBriUtils.cache = new Map();\nclass KoliBriDevHelper {\n}\nKoliBriDevHelper.getCssStyle = y;\nKoliBriDevHelper.patchTheme = k;\nKoliBriDevHelper.patchThemeTag = Y;\nKoliBriDevHelper.querySelector = koliBriQuerySelector;\nKoliBriDevHelper.querySelectorAll = koliBriQuerySelectorAll;\nKoliBriDevHelper.stringifyJson = stringifyJson;\n\nconst isObject = (value) => typeof value === 'object' && value !== null;\nconst isString = (value, minLength = 0) => typeof value === 'string' && value.length >= minLength;\nconst isStyle = (style) => {\n if (typeof style === 'object' && style !== null) {\n for (const property in style) {\n if (isString(property, 1) === false) {\n return false;\n }\n }\n }\n else {\n return isString(style, 1);\n }\n return true;\n};\nconst STATE_CHANGE_EVENT = new Event('StateChange');\n\nexport { getColorContrastAnalysis as $, parse as A, hsl as B, rgb as C, rgba as D, s as E, isStyle as F, isObject as G, watchJsonArrayString as H, uiUxHintMillerscheZahl as I, getExperimentalMode as J, KeyEnum as K, Log as L, setEventTarget as M, watchNumber as N, emptyStringByArrayHandler as O, koliBriQuerySelector as P, mapStringOrBoolean2String as Q, mapBoolean2String as R, STATE_CHANGE_EVENT as S, TagEnum as T, isDevMode as U, V, koliBriA11yColorContrast as W, koliBriQuerySelectorAll as X, koliBriQuerySelectorColors as Y, KoliBriUtils as Z, stringifyJson as _, KoliBriDevHelper as a, b, a11yHintLabelingLandmarks as c, watchBoolean as d, watchString as e, featureHint as f, isString as g, deprecatedHint as h, ie as i, devHint as j, devWarning as k, setRuntimeMode as l, getDefaultExportFromCjs as m, ne as n, objectObjectHandler as o, parseJson as p, a11yHint as q, a11yHintDisabled as r, setState as s, getDocument as t, uiUxHint as u, setExperimentalMode as v, watchValidator as w, setColorContrastAnalysis as x, getWindow as y, isTestMode as z };\n//# sourceMappingURL=common-Dd0zJQbD.js.map\n\n//# sourceMappingURL=common-Dd0zJQbD.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { m as getDefaultExportFromCjs } from './common-Dd0zJQbD.js';\n\nvar easyBem;\nvar hasRequiredEasyBem;\n\nfunction requireEasyBem () {\n\tif (hasRequiredEasyBem) return easyBem;\n\thasRequiredEasyBem = 1;\n\r\n\t/**\r\n\t * BEM class name factory.\r\n\t *\r\n\t * @typedef {Function} Bem\r\n\t * @param {String|Object} [elementOrMods] Element name or hash object with mods\r\n\t * @param {Object} [mods] Hash object with mods\r\n\t * @returns {String}\r\n\t */\r\n\r\n\t/**\r\n\t * Returns BEM class name factory.\r\n\t *\r\n\t * @param {String} componentName Block name\r\n\t * @returns {Bem}\r\n\t */\r\n\teasyBem = function bem(componentName) {\r\n\t return function (elementOrMods, mods) {\r\n\t if (!elementOrMods) {\r\n\t return componentName;\r\n\t }\r\n\r\n\t var element;\r\n\r\n\t if (typeof elementOrMods === 'string') {\r\n\t element = elementOrMods;\r\n\t } else {\r\n\t mods = elementOrMods;\r\n\t }\r\n\r\n\t var base = componentName;\r\n\t if (element) {\r\n\t base += '__' + element;\r\n\t }\r\n\r\n\t return base + (\r\n\t mods\r\n\t ? Object.keys(mods).reduce(function (result, name) {\r\n\t var value = mods[name];\r\n\r\n\t if (value) {\r\n\t result += ' ' + (\r\n\t typeof value === 'boolean'\r\n\t ? (base + '--' + name)\r\n\t : (base + '--' + name + '_' + value)\r\n\t );\r\n\t }\r\n\r\n\t return result;\r\n\t }, '')\r\n\t : ''\r\n\t );\r\n\t };\r\n\t};\n\treturn easyBem;\n}\n\nvar easyBemExports = requireEasyBem();\nvar a = /*@__PURE__*/getDefaultExportFromCjs(easyBemExports);\n\nfunction c(){const e=new Map,n=(t,o,r)=>{try{return e.get(t)(o,r)}catch{return e.set(t,a(t)).get(t)(o,r)}};return n.forBlock=t=>{const o=(r,s)=>n(t,r,s);return o.forElement=r=>s=>n(t,r,s),o},n}\n\nexport { c };\n//# sourceMappingURL=browser-DiRe0qUf.js.map\n\n//# sourceMappingURL=browser-DiRe0qUf.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { c } from './browser-DiRe0qUf.js';\n\nconst bem = c();\nconst BEM = {\n 'kol-icon': {\n elements: {\n icon: { modifiers: null },\n },\n modifiers: null,\n },\n};\nconst BEM_CLASS_ICON = bem('kol-icon');\nconst BEM_CLASS_ICON__ICON = bem('kol-icon', 'icon');\n\nexport { BEM as B, BEM_CLASS_ICON as a, BEM_CLASS_ICON__ICON as b };\n//# sourceMappingURL=bem-BBRwGb1a.js.map\n\n//# sourceMappingURL=bem-BBRwGb1a.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nimport { c } from './browser-DiRe0qUf.js';\n\nconst bem = c();\nconst BEM = {\n 'kol-alert': {\n elements: {\n closer: { modifiers: null },\n heading: { modifiers: new Set(['h0', 'h1', 'h2', 'h3', 'h4', 'h5', 'h6']) },\n icon: { modifiers: null },\n content: { modifiers: null },\n container: { modifiers: null },\n },\n modifiers: new Set(['hasCloser', 'type-default', 'type-error', 'type-info', 'type-success', 'type-warning', 'variant-card', 'variant-msg']),\n },\n};\nconst BEM_CLASS_ALERT__CLOSER = bem('kol-alert', 'closer');\nconst BEM_CLASS_ALERT__CONTENT = bem('kol-alert', 'content');\nconst BEM_CLASS_ALERT__ICON = bem('kol-alert', 'icon');\n\nexport { BEM as B, BEM_CLASS_ALERT__ICON as a, bem as b, BEM_CLASS_ALERT__CONTENT as c, BEM_CLASS_ALERT__CLOSER as d };\n//# sourceMappingURL=bem-C27SfH6w.js.map\n\n//# sourceMappingURL=bem-C27SfH6w.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nvar KolEvent;\n(function (KolEvent) {\n KolEvent[\"blur\"] = \"kolBlur\";\n KolEvent[\"change\"] = \"kolChange\";\n KolEvent[\"changePage\"] = \"kolChangePage\";\n KolEvent[\"changePageSize\"] = \"kolChangePageSize\";\n KolEvent[\"click\"] = \"kolClick\";\n KolEvent[\"close\"] = \"kolClose\";\n KolEvent[\"create\"] = \"kolCreate\";\n KolEvent[\"focus\"] = \"kolFocus\";\n KolEvent[\"input\"] = \"kolInput\";\n KolEvent[\"keydown\"] = \"kolKeydown\";\n KolEvent[\"mousedown\"] = \"kolMousedown\";\n KolEvent[\"reset\"] = \"kolReset\";\n KolEvent[\"select\"] = \"kolSelect\";\n KolEvent[\"selectionChange\"] = \"kolSelectionChange\";\n KolEvent[\"settingsChange\"] = \"settingsChange\";\n KolEvent[\"sort\"] = \"kolSort\";\n KolEvent[\"submit\"] = \"kolSubmit\";\n KolEvent[\"toggle\"] = \"kolToggle\";\n})(KolEvent || (KolEvent = {}));\nfunction createKoliBriEvent(event, detail) {\n return new CustomEvent(event, {\n bubbles: true,\n cancelable: true,\n composed: true,\n detail: detail,\n });\n}\nfunction dispatchDomEvent(target, event, detail) {\n target.dispatchEvent(createKoliBriEvent(event, detail));\n}\n\nexport { KolEvent as K, dispatchDomEvent as d };\n//# sourceMappingURL=events-9-skLO0f.js.map\n\n//# sourceMappingURL=events-9-skLO0f.js.map","/*!\n * KoliBri - The accessible HTML-Standard\n */\nexport { B as BEM_ICON } from './bem-BBRwGb1a.js';\nexport { s as setCurrentLocation } from './ariaCurrentService-YoLNpD5S.js';\nimport { i as isInitialized } from './bootstrap-DcyDkVEo.js';\nexport { b as bootstrap, r as register } from './bootstrap-DcyDkVEo.js';\nimport { K as KolToastContainerTag } from './component-names-C3fyby67.js';\nimport { i as ie, K as KeyEnum, T as TagEnum, L as Log } from './common-Dd0zJQbD.js';\nexport { a as KoliBriDevHelper } from './common-Dd0zJQbD.js';\nexport { B as BEM_ALERT } from './bem-C27SfH6w.js';\nexport { K as KolEvent } from './events-9-skLO0f.js';\nexport { i as isTooltipOpen } from './tooltip-open-tracking-rBbBgPWP.js';\nimport './browser-DiRe0qUf.js';\nimport './i18n-CfLoIZ8T.js';\n\nconst KoliBri = new ie('kol', KeyEnum, TagEnum);\n\nclass ToasterService {\n constructor(document, options) {\n var _a;\n this.document = document;\n this.options = options;\n this.toastContainerElement = this.document.createElement(KolToastContainerTag);\n this.document.body.prepend(this.toastContainerElement);\n if ((_a = this.options) === null || _a === void 0 ? void 0 : _a.defaultVariant) {\n Log.info(`ToasterService: Default variant is deprecated. Use 'card' variant for all toasts instead.`);\n }\n }\n static getInstance(document, options) {\n if (!isInitialized()) {\n throw new Error('Toaster: Call KoliBri bootstrap/register method first.');\n }\n let instance = this.instances.get(document);\n if (!instance) {\n instance = new ToasterService(document, options);\n this.instances.set(document, instance);\n }\n return instance;\n }\n dispose() {\n const element = this.toastContainerElement;\n if (element) {\n this.toastContainerElement = undefined;\n element.remove();\n }\n else {\n Log.warn('Toaster service is already disposed.');\n }\n }\n enqueue(toast) {\n if (this.toastContainerElement && typeof this.toastContainerElement.enqueue === 'function') {\n return this.toastContainerElement.enqueue(toast);\n }\n }\n closeAll(immediate = false) {\n if (this.toastContainerElement && typeof this.toastContainerElement.closeAll === 'function') {\n void this.toastContainerElement.closeAll(immediate);\n }\n }\n}\nToasterService.instances = new Map();\n\nvar Bundesministerium;\n(function (Bundesministerium) {\n Bundesministerium[\"Die Bundesregierung\"] = \"BReg\";\n Bundesministerium[\"Bundesministerium der Finanzen\"] = \"BMF\";\n Bundesministerium[\"Bundesministerium des Innern, f\\u00FCr Bau und Heimat\"] = \"BMI\";\n Bundesministerium[\"Ausw\\u00E4rtiges Amt\"] = \"AA\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Wirtschaft und Energie\"] = \"BMWi\";\n Bundesministerium[\"Bundesministerium der Justiz und f\\u00FCr Verbraucherschutz\"] = \"BMJV\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Arbeit und Soziales\"] = \"BMAS\";\n Bundesministerium[\"Bundesministerium der Verteidigung\"] = \"BMVg\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Ern\\u00E4hrung und Landwirtschaft\"] = \"BMEL\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Familie, Senioren, Frauen und Jugend\"] = \"BMFSFJ\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Gesundheit\"] = \"BMG\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Verkehr und digitale Infrastruktur\"] = \"BMVI\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Umwelt, Naturschutz und nukleare Sicherheit\"] = \"BMU\";\n Bundesministerium[\"Bundesministerium f\\u00FCr Bildung und Forschung\"] = \"BMBF\";\n Bundesministerium[\"Bundesministerium f\\u00FCr wirtschaftliche Zusammenarbeit und Entwicklung\"] = \"BMZ\";\n})(Bundesministerium || (Bundesministerium = {}));\nconst BUNDESMINISTERIEN = Object.getOwnPropertyNames(Bundesministerium);\nvar Bundesamt;\n(function (Bundesamt) {\n Bundesamt[\"Beschaffungsamt des Bundesministeriums des Innern\"] = \"BeschA\";\n Bundesamt[\"Bundesamt f\\u00FCr Ausr\\u00FCstung, Informationstechnik und Nutzung der Bundeswehr\"] = \"BAAINBw\";\n Bundesamt[\"Bundesamt f\\u00FCr \\u00E4u\\u00DFere Restitutionen\"] = \"BAR\";\n Bundesamt[\"Bundesamt f\\u00FCr Bauwesen und Raumordnung\"] = \"BBR\";\n Bundesamt[\"Bundesamt f\\u00FCr Bev\\u00F6lkerungsschutz und Katastrophenhilfe\"] = \"BBK\";\n Bundesamt[\"Bundesamt f\\u00FCr Familie und zivilgesellschaftliche Aufgaben\"] = \"BAFzA\";\n Bundesamt[\"Bundesamt f\\u00FCr G\\u00FCterverkehr\"] = \"BAG\";\n Bundesamt[\"Bundesamt f\\u00FCr Justiz\"] = \"BfJ\";\n Bundesamt[\"Bundesamt f\\u00FCr Kartographie und Geod\\u00E4sie\"] = \"BKG\";\n Bundesamt[\"Bundesamt f\\u00FCr kerntechnische Entsorgungssicherheit\"] = \"BASE\";\n Bundesamt[\"Bundesamt f\\u00FCr Migration und Fl\\u00FCchtlinge\"] = \"BAMF\";\n Bundesamt[\"Bundesamt f\\u00FCr Sicherheit in der Informationstechnik\"] = \"BSI\";\n Bundesamt[\"Bundesamt f\\u00FCr Verbraucherschutz und Lebensmittelsicherheit\"] = \"BVL\";\n Bundesamt[\"Bundesamt f\\u00FCr Verfassungsschutz\"] = \"BfV\";\n Bundesamt[\"Bundesamt f\\u00FCr Wirtschaft und Ausfuhrkontrolle\"] = \"BAFA\";\n Bundesamt[\"Bundesamt f\\u00FCr zentrale Dienste und offene Verm\\u00F6gensfragen\"] = \"BADV\";\n Bundesamt[\"Bundesanstalt f\\u00FCr Verwaltungsdienstleistungen\"] = \"BAV\";\n Bundesamt[\"Bundesarchiv\"] = \"BArch\";\n Bundesamt[\"Bundesaufsichtsamt f\\u00FCr Flugsicherung\"] = \"BAF\";\n Bundesamt[\"Bundesausgleichsamt\"] = \"BAA\";\n Bundesamt[\"Bundeskartellamt\"] = \"BKartA\";\n Bundesamt[\"Bundeskriminalamt\"] = \"BKA\";\n Bundesamt[\"Bundesnachrichtendienst\"] = \"BND\";\n Bundesamt[\"Bundesnetzagentur f\\u00FCr Elektrizit\\u00E4t, Gas, Telekommunikation, Post und Eisenbahnen\"] = \"BNetzA\";\n Bundesamt[\"Bundespolizeipr\\u00E4sidium\"] = \"BPOLP\";\n Bundesamt[\"Bundespr\\u00FCfstelle f\\u00FCr jugendgef\\u00E4hrdende Medien\"] = \"BPjM\";\n Bundesamt[\"Bundessortenamt\"] = \"BSA\";\n Bundesamt[\"Bundessprachenamt\"] = \"BSprA\";\n Bundesamt[\"Bundesamt f\\u00FCr Soziale Sicherung\"] = \"BAS\";\n Bundesamt[\"Bundesverwaltungsamt\"] = \"BVA\";\n Bundesamt[\"Bundeszentralamt f\\u00FCr Steuern\"] = \"BZSt\";\n Bundesamt[\"Deutsches Patent- und Markenamt\"] = \"DPMA\";\n Bundesamt[\"Eisenbahn-Bundesamt\"] = \"EBA\";\n Bundesamt[\"Generalzolldirektion\"] = \"GZD\";\n Bundesamt[\"Milit\\u00E4rischer Abschirmdienst\"] = \"MAD\";\n Bundesamt[\"Zentrale Stelle f\\u00FCr Informationstechnik im Sicherheitsbereich\"] = \"ZITiS\";\n})(Bundesamt || (Bundesamt = {}));\nconst BUNDESAEMTER = Object.getOwnPropertyNames(Bundesamt);\nvar Bundesanstalt;\n(function (Bundesanstalt) {\n Bundesanstalt[\"Informationstechnikzentrum Bund\"] = \"ITZBund\";\n Bundesanstalt[\"Bundesanstalt f\\u00FCr den Digitalfunk der Beh\\u00F6rden und Organisationen mit Sicherheitsaufgaben\"] = \"BDBOS\";\n Bundesanstalt[\"Bundesanstalt f\\u00FCr Landwirtschaft und Ern\\u00E4hrung\"] = \"BLE\";\n Bundesanstalt[\"Bundesanstalt Technisches Hilfswerk\"] = \"THW\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Arzneimittel und Medizinprodukte\"] = \"BfArM\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Bev\\u00F6lkerungsforschung\"] = \"BiB\";\n Bundesanstalt[\"Bundesinstitut f\\u00FCr Sportwissenschaft\"] = \"BISp\";\n})(Bundesanstalt || (Bundesanstalt = {}));\nconst BUNDESANSTALTEN = Object.getOwnPropertyNames(Bundesanstalt);\nconst BUND_LOGO_TEXT_MAP = new Map();\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Die Bundesregierung'], ['Die', 'Bundesregierung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Finanzen'], ['Bundesministerium', 'der Finanzen']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium des Innern, für Bau und Heimat'], ['Bundesministerium', 'des Inneren, für Bau', 'und Heimat']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Auswärtiges Amt'], ['Auswärtiges Amt']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Wirtschaft und Energie'], ['Bundesministerium', 'für Wirtschaft', 'und Energie']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Justiz und für Verbraucherschutz'], [\n 'Bundesministerium',\n 'der Justiz und',\n 'für Verbraucherschutz',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Arbeit und Soziales'], ['Bundesministerium', 'für Arbeit und Soziales']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium der Verteidigung'], ['Bundesministerium', 'der Verteidigung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Bildung und Forschung'], ['Bundesministerium', 'für Bildung', 'und Forschung']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Ernährung und Landwirtschaft'], ['Bundesministerium', 'für Ernährung', 'und Landwirtschaft']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Familie, Senioren, Frauen und Jugend'], [\n 'Bundesministerium',\n 'für Familie, Senioren, Frauen',\n 'und Jugend',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Gesundheit'], ['Bundesministerium', 'für Gesundheit']);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Umwelt, Naturschutz und nukleare Sicherheit'], [\n 'Bundesministerium',\n 'für Umwelt, Naturschutz',\n 'und nukleare Sicherheit',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für Verkehr und digitale Infrastruktur'], [\n 'Bundesministerium',\n 'für Verkehr und',\n 'digitale Infrastruktur',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesministerium['Bundesministerium für wirtschaftliche Zusammenarbeit und Entwicklung'], [\n 'Bundesministerium',\n 'für wirtschaftliche Zusammenarbeit',\n 'und Entwicklung',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Beschaffungsamt des Bundesministeriums des Innern'], ['Beschaffungsamt', 'des Bundesministeriums', 'des Innern']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Ausrüstung, Informationstechnik und Nutzung der Bundeswehr'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für äußere Restitutionen'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Bauwesen und Raumordnung'], []);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Bevölkerungsschutz und Katastrophenhilfe'], ['Bundesamt', 'für Bevölkerungsschutz', 'und Katastrophenhilfe']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Familie und zivilgesellschaftliche Aufgaben'], [\n 'Bundesamt',\n 'für Familie und',\n 'zivilgesellschaftliche Aufgaben',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Güterverkehr'], ['Bundesamt', 'für Güterverkehr']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Justiz'], ['Bundesamt für', 'Justiz']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Kartographie und Geodäsie'], ['Bundesamt für', 'Kartographie und Geodäsie']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für kerntechnische Entsorgungssicherheit'], ['Bundesamt für', 'kerntechnische', 'Entsorgungssicherheit']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Migration und Flüchtlinge'], ['Bundesamt', 'für Migration', 'und Flüchtlinge']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Sicherheit in der Informationstechnik'], ['Bundesamt', 'für Sicherheit in der', 'Informationstechnik']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Verbraucherschutz und Lebensmittelsicherheit'], [\n 'Bundesamt für',\n 'Verbraucherschutz und',\n 'Lebensmittelsicherheit',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Verfassungsschutz'], ['Bundesamt für', 'Verfassungsschutz']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Wirtschaft und Ausfuhrkontrolle'], ['Bundesamt', 'für Wirtschaft', 'Ausfuhrkontrolle']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für zentrale Dienste und offene Vermögensfragen'], [\n 'Bundesamt',\n 'für zentrale Dienste und',\n 'offene Vermögensfragen',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesanstalt für Verwaltungsdienstleistungen'], ['Bundesanstalt', 'für Verwaltungsdienstleistungen']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesarchiv'], ['Das', 'Bundesarchiv']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesaufsichtsamt für Flugsicherung'], ['Bundesaufsichtsamt', 'für Flugsicherung']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesausgleichsamt'], ['Bundesausgleichsamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeskartellamt'], ['Bundeskartellamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeskriminalamt'], ['Bundeskriminalamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesnachrichtendienst'], ['Bundesnachrichtendienst']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesnetzagentur für Elektrizität, Gas, Telekommunikation, Post und Eisenbahnen'], ['Bundesnetzagentur']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundespolizeipräsidium'], ['Bundespolizeipräsidium']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesprüfstelle für jugendgefährdende Medien'], ['Bundesprüfstelle', 'für jugendgefährdende', 'Medien']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundessortenamt'], ['Bundessortenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundessprachenamt'], ['Bundessprachenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesamt für Soziale Sicherung'], ['Bundesamt', 'für Soziale Sicherung']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundesverwaltungsamt'], ['Bundesverwaltungsamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Bundeszentralamt für Steuern'], ['Bundeszentralamt', 'für Steuern']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Deutsches Patent- und Markenamt'], ['Deutsches', 'Patent- und Markenamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Eisenbahn-Bundesamt'], ['Eisenbahn-Bundesamt']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Generalzolldirektion'], ['Generalzolldirektion']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Militärischer Abschirmdienst'], ['Bundesamt für den', 'Militärischen Abschirmdienst']);\nBUND_LOGO_TEXT_MAP.set(Bundesamt['Zentrale Stelle für Informationstechnik im Sicherheitsbereich'], [\n 'Zentrale Stelle',\n 'für Informationstechnik',\n 'im Sicherheitsbereich',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Informationstechnikzentrum Bund'], ['Informations', 'Technik', 'Zentrum Bund']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt für den Digitalfunk der Behörden und Organisationen mit Sicherheitsaufgaben'], [\n 'Bundesanstalt',\n 'für den Digitalfunk der Behörden und',\n 'Organisationen mit Sicherheitsaufgaben',\n]);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt für Landwirtschaft und Ernährung'], ['Bundesanstalt für', 'Landwirtschaft und Ernährung']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesanstalt Technisches Hilfswerk'], ['Bundesanstalt', 'Technisches Hilfswerk']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Arzneimittel und Medizinprodukte'], ['Bundesinstitut', 'für Arzneimittel', 'und Medizinprodukte']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Bevölkerungsforschung'], ['Bundesinstitut', 'für Bevölkerungsforschung']);\nBUND_LOGO_TEXT_MAP.set(Bundesanstalt['Bundesinstitut für Sportwissenschaft'], ['Bundesinstitut', 'für Sportwissenschaft']);\n\nexport { BUNDESAEMTER, BUNDESANSTALTEN, BUNDESMINISTERIEN, BUND_LOGO_TEXT_MAP, Bundesamt, Bundesanstalt, Bundesministerium, KoliBri, ToasterService, isInitialized };\n//# sourceMappingURL=index.js.map\n",null,null,null],"names":["exports","bem","globalCss","abbrCss","accordionCss","alertCss","badgeCss","breadcrumbCss","buttonCss","buttonLinkCss","cardCss","comboboxCss","detailsCss","drawerCss","formCss","headingCss","iconCss","inputCheckboxCss","inputColorCss","inputDateCss","inputEmailCss","inputFileCss","inputNumberCss","inputPasswordCss","inputRadioCss","inputRangeCss","inputTextCss","linkCss","linkButtonCss","modalCss","navCss","paginationCss","popoverButtonCss","progressCss","selectCss","singleSelect","skipNavCss","splitButtonCss","tableStatefulCss","tableStatelessCss","tabsCss","textareaCss","toastContainerCss","toolbarCss","treeCss","treeItemCss","ComboboxCss","singleSelectCss","spinCss"],"mappings":"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"}