@warp-ds/elements 2.10.0-next.17 → 2.10.0-next.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (104) hide show
  1. package/dist/custom-elements.json +285 -159
  2. package/dist/docs/affix/affix.md +117 -0
  3. package/dist/docs/affix/styling.md +107 -0
  4. package/dist/docs/breadcrumb-item/api.md +27 -0
  5. package/dist/docs/breadcrumb-item/breadcrumb-item.md +34 -0
  6. package/dist/docs/breadcrumbs/accessibility.md +8 -18
  7. package/dist/docs/breadcrumbs/breadcrumbs.md +120 -34
  8. package/dist/docs/breadcrumbs/examples.md +8 -8
  9. package/dist/docs/breadcrumbs/styling.md +96 -0
  10. package/dist/docs/breadcrumbs/usage.md +8 -8
  11. package/dist/docs/index.md +2 -1
  12. package/dist/docs/select/select.md +91 -0
  13. package/dist/docs/select/styling.md +91 -0
  14. package/dist/docs/textarea/styling.md +91 -0
  15. package/dist/docs/textarea/textarea.md +91 -0
  16. package/dist/docs/textfield/api.md +8 -0
  17. package/dist/docs/textfield/styling.md +95 -0
  18. package/dist/docs/textfield/textfield.md +103 -0
  19. package/dist/index.d.ts +175 -64
  20. package/dist/packages/affix/affix-styles.d.ts +8 -0
  21. package/dist/packages/affix/affix-styles.js +108 -0
  22. package/dist/packages/affix/affix.d.ts +11 -8
  23. package/dist/packages/affix/affix.js +118 -17
  24. package/dist/packages/affix/affix.js.map +4 -4
  25. package/dist/packages/affix/affix.react.stories.d.ts +1 -1
  26. package/dist/packages/affix/react.d.ts +1 -1
  27. package/dist/packages/alert/alert.js.map +1 -1
  28. package/dist/packages/attention/attention.js.map +1 -1
  29. package/dist/packages/breadcrumb-item/breadcrumb-item.d.ts +29 -0
  30. package/dist/packages/breadcrumb-item/breadcrumb-item.js +2529 -0
  31. package/dist/packages/breadcrumb-item/breadcrumb-item.js.map +7 -0
  32. package/dist/packages/breadcrumb-item/react.d.ts +2 -0
  33. package/dist/packages/breadcrumb-item/react.js +11 -0
  34. package/dist/packages/breadcrumb-item/styles.d.ts +4 -0
  35. package/dist/packages/breadcrumb-item/styles.js +81 -0
  36. package/dist/packages/breadcrumbs/breadcrumbs.d.ts +2 -0
  37. package/dist/packages/breadcrumbs/breadcrumbs.js +11 -13
  38. package/dist/packages/breadcrumbs/breadcrumbs.js.map +3 -3
  39. package/dist/packages/breadcrumbs/breadcrumbs.react.stories.js +11 -10
  40. package/dist/packages/breadcrumbs/breadcrumbs.stories.d.ts +4 -5
  41. package/dist/packages/breadcrumbs/breadcrumbs.stories.js +14 -11
  42. package/dist/packages/button/button.react.stories.d.ts +2 -2
  43. package/dist/packages/button/react.d.ts +1 -1
  44. package/dist/packages/checkbox-group/react.d.ts +1 -1
  45. package/dist/packages/combobox/combobox.react.stories.d.ts +2 -2
  46. package/dist/packages/combobox/react.d.ts +1 -1
  47. package/dist/packages/datepicker/datepicker.js.map +1 -1
  48. package/dist/packages/datepicker/datepicker.react.stories.d.ts +2 -2
  49. package/dist/packages/datepicker/react.d.ts +1 -1
  50. package/dist/packages/expandable/expandable.js.map +1 -1
  51. package/dist/packages/icon/icon.js +2 -2
  52. package/dist/packages/icon/icon.js.map +1 -1
  53. package/dist/packages/icon/icon.react.stories.d.ts +2 -1
  54. package/dist/packages/icon/icon.react.stories.js +1 -1
  55. package/dist/packages/modal-header/modal-header.js.map +1 -1
  56. package/dist/packages/pagination/pagination.js.map +1 -1
  57. package/dist/packages/pagination/pagination.react.stories.d.ts +2 -2
  58. package/dist/packages/pagination/react.d.ts +1 -1
  59. package/dist/packages/pill/pill.js.map +1 -1
  60. package/dist/packages/radio-group/react.d.ts +1 -1
  61. package/dist/packages/select/input-styles.d.ts +11 -0
  62. package/dist/packages/select/input-styles.js +88 -0
  63. package/dist/packages/select/react.d.ts +1 -1
  64. package/dist/packages/select/select.js +96 -19
  65. package/dist/packages/select/select.js.map +4 -4
  66. package/dist/packages/select/select.react.stories.d.ts +2 -2
  67. package/dist/packages/slider/react.d.ts +1 -1
  68. package/dist/packages/slider/slider.react.stories.d.ts +1 -1
  69. package/dist/packages/slider-thumb/react.d.ts +1 -1
  70. package/dist/packages/snackbar/snackbar.d.ts +2 -2
  71. package/dist/packages/snackbar/snackbar.js +1 -1
  72. package/dist/packages/snackbar/snackbar.js.map +2 -2
  73. package/dist/packages/step/step.js.map +1 -1
  74. package/dist/packages/textarea/input-styles.d.ts +11 -0
  75. package/dist/packages/textarea/input-styles.js +88 -0
  76. package/dist/packages/textarea/react.d.ts +1 -1
  77. package/dist/packages/textarea/textarea.js +99 -20
  78. package/dist/packages/textarea/textarea.js.map +4 -4
  79. package/dist/packages/textarea/textarea.react.stories.d.ts +2 -2
  80. package/dist/packages/textfield/input-styles.d.ts +11 -0
  81. package/dist/packages/textfield/input-styles.js +88 -0
  82. package/dist/packages/textfield/locales/da/messages.d.mts +1 -0
  83. package/dist/packages/textfield/locales/da/messages.mjs +1 -0
  84. package/dist/packages/textfield/locales/en/messages.d.mts +1 -0
  85. package/dist/packages/textfield/locales/en/messages.mjs +1 -0
  86. package/dist/packages/textfield/locales/fi/messages.d.mts +1 -0
  87. package/dist/packages/textfield/locales/fi/messages.mjs +1 -0
  88. package/dist/packages/textfield/locales/nb/messages.d.mts +1 -0
  89. package/dist/packages/textfield/locales/nb/messages.mjs +1 -0
  90. package/dist/packages/textfield/locales/sv/messages.d.mts +1 -0
  91. package/dist/packages/textfield/locales/sv/messages.mjs +1 -0
  92. package/dist/packages/textfield/react.d.ts +1 -1
  93. package/dist/packages/textfield/textfield.d.ts +11 -1
  94. package/dist/packages/textfield/textfield.js +111 -24
  95. package/dist/packages/textfield/textfield.js.map +4 -4
  96. package/dist/packages/textfield/textfield.react.stories.d.ts +2 -2
  97. package/dist/packages/toast/styles.js +1 -1
  98. package/dist/packages/toast/toast.js +7 -7
  99. package/dist/packages/toast/toast.js.map +2 -2
  100. package/dist/packages/toast-container/toast-container.js +8 -8
  101. package/dist/packages/toast-container/toast-container.js.map +3 -3
  102. package/dist/web-types.json +96 -50
  103. package/eik/index.js +20 -20
  104. package/package.json +8 -1
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../../node_modules/.pnpm/@lingui+core@5.9.5_@lingui+babel-plugin-lingui-macro@5.9.5_typescript@6.0.3_/node_modules/@lingui/core/dist/index.mjs", "../../../packages/snackbar/snackbar.ts", "../../../packages/snackbar-item/snackbar-item.ts", "../../../packages/utils/element-collapse.js", "../../../packages/styles.ts", "../../../packages/snackbar-item/styles.ts", "../../../packages/i18n.ts", "../../../packages/snackbar/locales/da/messages.mjs", "../../../packages/snackbar/locales/en/messages.mjs", "../../../packages/snackbar/locales/fi/messages.mjs", "../../../packages/snackbar/locales/nb/messages.mjs", "../../../packages/snackbar/locales/sv/messages.mjs", "../../../packages/snackbar/styles.ts"],
4
- "sourcesContent": ["import { compileMessage } from '@lingui/message-utils/compileMessage';\n\nconst isString = (s) => typeof s === \"string\";\nconst isFunction = (f) => typeof f === \"function\";\n\nconst cache = /* @__PURE__ */ new Map();\nconst defaultLocale = \"en\";\nfunction normalizeLocales(locales) {\n const out = Array.isArray(locales) ? locales : [locales];\n return [...out, defaultLocale];\n}\nfunction date(locales, value, format) {\n const _locales = normalizeLocales(locales);\n if (!format) {\n format = \"default\";\n }\n let o;\n if (typeof format === \"string\") {\n o = {\n day: \"numeric\",\n month: \"short\",\n year: \"numeric\"\n };\n switch (format) {\n case \"full\":\n o.weekday = \"long\";\n case \"long\":\n o.month = \"long\";\n break;\n case \"short\":\n o.month = \"numeric\";\n break;\n }\n } else {\n o = format;\n }\n const formatter = getMemoized(\n () => cacheKey(\"date\", _locales, format),\n () => new Intl.DateTimeFormat(_locales, o)\n );\n return formatter.format(isString(value) ? new Date(value) : value);\n}\nfunction time(locales, value, format) {\n let o;\n if (!format) {\n format = \"default\";\n }\n if (typeof format === \"string\") {\n o = {\n second: \"numeric\",\n minute: \"numeric\",\n hour: \"numeric\"\n };\n switch (format) {\n case \"full\":\n case \"long\":\n o.timeZoneName = \"short\";\n break;\n case \"short\":\n delete o.second;\n }\n } else {\n o = format;\n }\n return date(locales, value, o);\n}\nfunction number(locales, value, format) {\n const _locales = normalizeLocales(locales);\n const formatter = getMemoized(\n () => cacheKey(\"number\", _locales, format),\n () => new Intl.NumberFormat(_locales, format)\n );\n return formatter.format(value);\n}\nfunction plural(locales, ordinal, value, { offset = 0, ...rules }) {\n const _locales = normalizeLocales(locales);\n const plurals = ordinal ? getMemoized(\n () => cacheKey(\"plural-ordinal\", _locales),\n () => new Intl.PluralRules(_locales, { type: \"ordinal\" })\n ) : getMemoized(\n () => cacheKey(\"plural-cardinal\", _locales),\n () => new Intl.PluralRules(_locales, { type: \"cardinal\" })\n );\n return rules[value] ?? rules[plurals.select(value - offset)] ?? rules.other;\n}\nfunction getMemoized(getKey, construct) {\n const key = getKey();\n let formatter = cache.get(key);\n if (!formatter) {\n formatter = construct();\n cache.set(key, formatter);\n }\n return formatter;\n}\nfunction cacheKey(type, locales, options) {\n const localeKey = locales.join(\"-\");\n return `${type}-${localeKey}-${JSON.stringify(options)}`;\n}\n\nconst formats = {\n __proto__: null,\n date: date,\n defaultLocale: defaultLocale,\n number: number,\n plural: plural,\n time: time\n};\n\nconst ESCAPE_SEQUENCE_REGEX = /\\\\u[a-fA-F0-9]{4}|\\\\x[a-fA-F0-9]{2}/;\nconst decodeEscapeSequences = (str) => {\n return str.replace(\n // Same pattern but with capturing groups for extracting values during replacement\n /\\\\u([a-fA-F0-9]{4})|\\\\x([a-fA-F0-9]{2})/g,\n (_, unicode, hex) => {\n if (unicode) {\n const codePoint = parseInt(unicode, 16);\n return String.fromCharCode(codePoint);\n } else {\n const codePoint = parseInt(hex, 16);\n return String.fromCharCode(codePoint);\n }\n }\n );\n};\n\nconst OCTOTHORPE_PH = \"%__lingui_octothorpe__%\";\nconst getDefaultFormats = (locale, passedLocales, formats = {}) => {\n const locales = passedLocales || locale;\n const style = (format) => {\n if (typeof format === \"object\")\n return format;\n return formats[format];\n };\n const replaceOctothorpe = (value, message) => {\n const numberFormat = Object.keys(formats).length ? style(\"number\") : void 0;\n const valueStr = number(locales, value, numberFormat);\n return message.replace(new RegExp(OCTOTHORPE_PH, \"g\"), valueStr);\n };\n return {\n plural: (value, cases) => {\n const { offset = 0 } = cases;\n const message = plural(locales, false, value, cases);\n return replaceOctothorpe(value - offset, message);\n },\n selectordinal: (value, cases) => {\n const { offset = 0 } = cases;\n const message = plural(locales, true, value, cases);\n return replaceOctothorpe(value - offset, message);\n },\n select: selectFormatter,\n number: (value, format) => number(\n locales,\n value,\n style(format) || { style: format }\n ),\n date: (value, format) => date(locales, value, style(format) || format),\n time: (value, format) => time(locales, value, style(format) || format)\n };\n};\nconst selectFormatter = (value, rules) => rules[value] ?? rules.other;\nfunction interpolate(translation, locale, locales) {\n return (values = {}, formats) => {\n const formatters = getDefaultFormats(locale, locales, formats);\n const formatMessage = (tokens, replaceOctothorpe = false) => {\n if (!Array.isArray(tokens))\n return tokens;\n return tokens.reduce((message, token) => {\n if (token === \"#\" && replaceOctothorpe) {\n return message + OCTOTHORPE_PH;\n }\n if (isString(token)) {\n return message + token;\n }\n const [name, type, format] = token;\n let interpolatedFormat = {};\n if (type === \"plural\" || type === \"selectordinal\" || type === \"select\") {\n Object.entries(format).forEach(\n ([key, value2]) => {\n interpolatedFormat[key] = formatMessage(\n value2,\n type === \"plural\" || type === \"selectordinal\"\n );\n }\n );\n } else {\n interpolatedFormat = format;\n }\n let value;\n if (type) {\n const formatter = formatters[type];\n value = formatter(values[name], interpolatedFormat);\n } else {\n value = values[name];\n }\n if (value == null) {\n return message;\n }\n return message + value;\n }, \"\");\n };\n const result = formatMessage(translation);\n if (isString(result) && ESCAPE_SEQUENCE_REGEX.test(result)) {\n return decodeEscapeSequences(result);\n }\n if (isString(result))\n return result;\n return result ? String(result) : \"\";\n };\n}\n\nvar __defProp$1 = Object.defineProperty;\nvar __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __publicField$1 = (obj, key, value) => {\n __defNormalProp$1(obj, typeof key !== \"symbol\" ? key + \"\" : key, value);\n return value;\n};\nclass EventEmitter {\n constructor() {\n __publicField$1(this, \"_events\", {});\n }\n on(event, listener) {\n var _a;\n (_a = this._events)[event] ?? (_a[event] = []);\n this._events[event].push(listener);\n return () => this.removeListener(event, listener);\n }\n removeListener(event, listener) {\n const maybeListeners = this._getListeners(event);\n if (!maybeListeners)\n return;\n const index = maybeListeners.indexOf(listener);\n if (~index)\n maybeListeners.splice(index, 1);\n }\n emit(event, ...args) {\n const maybeListeners = this._getListeners(event);\n if (!maybeListeners)\n return;\n maybeListeners.map((listener) => listener.apply(this, args));\n }\n _getListeners(event) {\n const maybeListeners = this._events[event];\n return Array.isArray(maybeListeners) ? maybeListeners : false;\n }\n}\n\nvar __defProp = Object.defineProperty;\nvar __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __publicField = (obj, key, value) => {\n __defNormalProp(obj, typeof key !== \"symbol\" ? key + \"\" : key, value);\n return value;\n};\nclass I18n extends EventEmitter {\n constructor(params) {\n super();\n __publicField(this, \"_locale\", \"\");\n __publicField(this, \"_locales\");\n __publicField(this, \"_localeData\", {});\n __publicField(this, \"_messages\", {});\n __publicField(this, \"_missing\");\n __publicField(this, \"_messageCompiler\");\n /**\n * Alias for {@see I18n._}\n */\n __publicField(this, \"t\", this._.bind(this));\n if (process.env.NODE_ENV !== \"production\") {\n this.setMessagesCompiler(compileMessage);\n }\n if (params.missing != null)\n this._missing = params.missing;\n if (params.messages != null)\n this.load(params.messages);\n if (params.localeData != null)\n this.loadLocaleData(params.localeData);\n if (typeof params.locale === \"string\" || params.locales) {\n this.activate(params.locale ?? defaultLocale, params.locales);\n }\n }\n get locale() {\n return this._locale;\n }\n get locales() {\n return this._locales;\n }\n get messages() {\n return this._messages[this._locale] ?? {};\n }\n /**\n * @deprecated this has no effect. Please remove this from the code. Deprecated in v4\n */\n get localeData() {\n return this._localeData[this._locale] ?? {};\n }\n _loadLocaleData(locale, localeData) {\n const maybeLocaleData = this._localeData[locale];\n if (!maybeLocaleData) {\n this._localeData[locale] = localeData;\n } else {\n Object.assign(maybeLocaleData, localeData);\n }\n }\n /**\n * Registers a `MessageCompiler` to enable the use of uncompiled catalogs at runtime.\n *\n * In production builds, the `MessageCompiler` is typically excluded to reduce bundle size.\n * By default, message catalogs should be precompiled during the build process. However,\n * if you need to compile catalogs at runtime, you can use this method to set a message compiler.\n *\n * Example usage:\n *\n * ```ts\n * import { compileMessage } from \"@lingui/message-utils/compileMessage\";\n *\n * i18n.setMessagesCompiler(compileMessage);\n * ```\n */\n setMessagesCompiler(compiler) {\n this._messageCompiler = compiler;\n return this;\n }\n /**\n * @deprecated Plurals automatically used from Intl.PluralRules you can safely remove this call. Deprecated in v4\n */\n loadLocaleData(localeOrAllData, localeData) {\n if (typeof localeOrAllData === \"string\") {\n this._loadLocaleData(localeOrAllData, localeData);\n } else {\n Object.keys(localeOrAllData).forEach(\n (locale) => this._loadLocaleData(locale, localeOrAllData[locale])\n );\n }\n this.emit(\"change\");\n }\n _load(locale, messages) {\n const maybeMessages = this._messages[locale];\n if (!maybeMessages) {\n this._messages[locale] = messages;\n } else {\n Object.assign(maybeMessages, messages);\n }\n }\n load(localeOrMessages, messages) {\n if (typeof localeOrMessages == \"string\" && typeof messages === \"object\") {\n this._load(localeOrMessages, messages);\n } else {\n Object.entries(localeOrMessages).forEach(\n ([locale, messages2]) => this._load(locale, messages2)\n );\n }\n this.emit(\"change\");\n }\n /**\n * @param options {@link LoadAndActivateOptions}\n */\n loadAndActivate({ locale, locales, messages }) {\n this._locale = locale;\n this._locales = locales || void 0;\n this._messages[this._locale] = messages;\n this.emit(\"change\");\n }\n activate(locale, locales) {\n if (process.env.NODE_ENV !== \"production\") {\n if (!this._messages[locale]) {\n console.warn(`Messages for locale \"${locale}\" not loaded.`);\n }\n }\n this._locale = locale;\n this._locales = locales;\n this.emit(\"change\");\n }\n _(id, values, options) {\n if (!this.locale) {\n throw new Error(\n \"Lingui: Attempted to call a translation function without setting a locale.\\nMake sure to call `i18n.activate(locale)` before using Lingui functions.\\nThis issue may also occur due to a race condition in your initialization logic.\"\n );\n }\n let message = options?.message;\n if (!id) {\n id = \"\";\n }\n if (!isString(id)) {\n values = id.values || values;\n message = id.message;\n id = id.id;\n }\n const messageForId = this.messages[id];\n const messageMissing = messageForId === void 0;\n const missing = this._missing;\n if (missing && messageMissing) {\n return isFunction(missing) ? missing(this._locale, id) : missing;\n }\n if (messageMissing) {\n this.emit(\"missing\", { id, locale: this._locale });\n }\n let translation = messageForId || message || id;\n if (isString(translation)) {\n if (this._messageCompiler) {\n translation = this._messageCompiler(translation);\n } else {\n console.warn(`Uncompiled message detected! Message:\n\n> ${translation}\n\nThat means you use raw catalog or your catalog doesn't have a translation for the message and fallback was used.\nICU features such as interpolation and plurals will not work properly for that message. \n\nPlease compile your catalog first. \n`);\n }\n }\n if (isString(translation) && ESCAPE_SEQUENCE_REGEX.test(translation))\n return decodeEscapeSequences(translation);\n if (isString(translation))\n return translation;\n return interpolate(\n translation,\n this._locale,\n this._locales\n )(values, options?.formats);\n }\n date(value, format) {\n return date(this._locales || this._locale, value, format);\n }\n number(value, format) {\n return number(this._locales || this._locale, value, format);\n }\n}\nfunction setupI18n(params = {}) {\n return new I18n(params);\n}\n\nconst i18n = setupI18n();\n\nexport { I18n, formats, i18n, setupI18n };\n", "import { i18n } from \"@lingui/core\";\nimport { html, LitElement } from \"lit\";\n\nimport type { WarpButton } from \"../button/button.js\";\nimport {\n\tSnackbarDuration,\n\ttype WarpSnackbarItem,\n\ttype SnackbarVariant,\n\ttype SnackbarActionPlacement,\n} from \"../snackbar-item/snackbar-item.js\";\nimport { activateI18n } from \"../i18n.js\";\nimport { messages as daMessages } from \"./locales/da/messages.mjs\";\nimport { messages as enMessages } from \"./locales/en/messages.mjs\";\nimport { messages as fiMessages } from \"./locales/fi/messages.mjs\";\nimport { messages as nbMessages } from \"./locales/nb/messages.mjs\";\nimport { messages as svMessages } from \"./locales/sv/messages.mjs\";\n\nimport { reset } from \"../styles.js\";\nimport { styles } from \"./styles.js\";\n\nexport type CreateSnackbarOptions = {\n\t/**\n\t * Show a close button so users can dismiss the message early.\n\t *\n\t * Can not be turned off if duration is Long or more.\n\t *\n\t * Pass a click event handler if you need to react to clicks on the close button somehow.\n\t * You can stop the message from closing by calling `event.preventDefault()`.\n\t *\n\t * @default true\n\t */\n\tcanClose?: boolean | ((this: GlobalEventHandlers, ev: PointerEvent) => any);\n\t/**\n\t * Duration until the message hides automatically.\n\t *\n\t * If the message has an action the default `duration` is `SnackbarDuration.Long`.\n\t *\n\t * @default SnackbarDuration.Short\n\t */\n\tduration?: SnackbarDuration;\n\t/**\n\t * @default 'neutral'\n\t */\n\tvariant?: SnackbarVariant;\n\t/**\n\t * Shows an action before the close button.\n\t *\n\t * Use this action as a convenience only. Ensure the result of any action in the snackbar,\n\t * such as Undo, is possible to achieve elsewhere in your application.\n\t */\n\taction?: {\n\t\t/**\n\t\t * Keep action labels short.\n\t\t *\n\t\t * If the label includes a space the `placement` is set to `block` by default.\n\t\t */\n\t\tlabel: string;\n\t\t/**\n\t\t * The action button's `onclick` property.\n\t\t */\n\t\tonclick: (this: GlobalEventHandlers, ev: PointerEvent) => any;\n\t\t/**\n\t\t * Overrides the default placement of the action button.\n\t\t *\n\t\t * By default labels that are only one word are `inline` and labels with multiple words are `block`.\n\t\t * If you have a particularly long word as a label you can set `placement: 'block'`.\n\t\t */\n\t\tplacement?: SnackbarActionPlacement;\n\t};\n};\n\nconst defaultCreateOptions: CreateSnackbarOptions = {\n\tcanClose: true,\n\tduration: SnackbarDuration.Short,\n\tvariant: \"neutral\",\n};\n\nactivateI18n(enMessages, nbMessages, fiMessages, daMessages, svMessages);\n\nconst spaceRe = /\\s/;\n\n/**\n * A Snackbar shows brief user feedback messages that overlay content, with an optional action such as Undo.\n *\n * Include one `<w-snackbar></w-snackbar>` in the document `<body>`. Use the `create` function to create messages.\n *\n * @example\n *\n * ```html\n * <body>\n * \t<w-snackbar></w-snackbar>\n * </body>\n * ```\n *\n * @example\n *\n * ```ts\n * // Short message indicating an operation succeeded\n * const snackbar = document.querySelector(\"w-snackbar\");\n * const snackbarItem = snackbar.create(\"Settings saved\", { variant: \"success\" });\n * ```\n *\n * @example\n *\n * ```ts\n * // An action to undo what was just done\n * const snackbar = document.querySelector(\"w-snackbar\");\n * const snackbarItem = snackbar.create(\"Settings saved\", {\n * \tvariant: \"success\",\n * \taction: {\n * \t\tlabel: \"Undo\",\n * \t\tonclick: () => {\n * \t\t\t// undoSave();\n * \t\t},\n * \t},\n * });\n * ```\n *\n * @slot default - `w-snackbar-item` gets placed inside the default slot by the `create` function.\n *\n * @csspart container - the live region that positions messages on the screen.\n *\n * @cssprop --w-c-snackbar-container-gap\n * @cssprop --w-c-snackbar-position-bottom\n * @cssprop --w-c-snackbar-position-left\n * @cssprop --w-c-snackbar-position-right\n * @cssprop --w-c-snackbar-position-top\n * @cssprop --w-c-snackbar-z-index\n */\nexport class WarpSnackbar extends LitElement {\n\tprivate internals: ElementInternals;\n\n\tstatic styles = [reset, styles];\n\n\tconstructor() {\n\t\tsuper();\n\t\t/**\n\t\t * Set on internals to avoid hydration mismatches in React\n\t\t * @internal\n\t\t */\n\t\tthis.internals = this.attachInternals();\n\t\t/** @internal */\n\t\tthis.internals.ariaLive = \"polite\";\n\t\t/** @internal */\n\t\tthis.internals.role = \"log\";\n\n\t\tthis._onKeydown = this._onKeydown.bind(this);\n\t}\n\n\tconnectedCallback(): void {\n\t\tsuper.connectedCallback();\n\t\tdocument.addEventListener(\"keydown\", this._onKeydown);\n\t}\n\n\tdisconnectedCallback(): void {\n\t\tsuper.disconnectedCallback();\n\t\tdocument.removeEventListener(\"keydown\", this._onKeydown);\n\t}\n\n\t/** @internal */\n\t_onKeydown(e: KeyboardEvent) {\n\t\tif (e.key === \"Escape\") {\n\t\t\t// Close only the oldest with each keypress.\n\t\t\t// Since we prepend when we create new items\n\t\t\t// the last of type is the oldest.\n\t\t\tconst snackbarItem =\n\t\t\t\tthis.shadowRoot?.host.querySelector<WarpSnackbarItem>(\n\t\t\t\t\t\"w-snackbar-item:last-of-type\",\n\t\t\t\t);\n\t\t\tif (snackbarItem) {\n\t\t\t\tsnackbarItem.close();\n\t\t\t}\n\t\t} else if (e.altKey && e.key === \"Enter\") {\n\t\t\te.preventDefault();\n\t\t\tconst snackbarItem =\n\t\t\t\tthis.shadowRoot?.host.querySelector<WarpSnackbarItem>(\n\t\t\t\t\t\"w-snackbar-item:last-of-type\",\n\t\t\t\t);\n\t\t\tconsole.log(\"Found item!\");\n\t\t\tif (snackbarItem) {\n\t\t\t\tconst snackbarAction = snackbarItem.querySelector<WarpButton>(\n\t\t\t\t\t'w-button[slot=\"action\"]',\n\t\t\t\t);\n\t\t\t\tconsole.log(\"Found action!\");\n\t\t\t\tif (snackbarAction) {\n\t\t\t\t\tsnackbarAction.click();\n\t\t\t\t\tconsole.log(\"Clicked!\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Creates a snackbar item and immediately adds it to the snackbar.\n\t *\n\t * By default the snackbar item automatically closes after 4 seconds (`SnackbarDuration.Short`).\n\t *\n\t * If you include an `action` in the options the default `duration` is\n\t * set to 10 seconds (`SnackbarDuration.Long`) and can not be made shorter.\n\t *\n\t * A `duration` of 10 seconds or longer forces the close button to be visible.\n\t *\n\t * The default `variant` is `neutral` which does not have an icon.\n\t *\n\t * Set `duration` to `SnackbarDuration.Infinite` if you want a persistent message.\n\t *\n\t * @returns The instance of `w-snackbar-item` added to the snackbar.\n\t */\n\tcreate(\n\t\tmessage: string,\n\t\toptions: CreateSnackbarOptions = {},\n\t): WarpSnackbarItem {\n\t\tconst mergedOptions = { ...defaultCreateOptions, ...options };\n\n\t\tconst snackbarItem = document.createElement(\"w-snackbar-item\");\n\t\tif (mergedOptions.duration) {\n\t\t\tsnackbarItem.duration = mergedOptions.duration;\n\t\t}\n\n\t\tsnackbarItem.innerText = message;\n\n\t\tif (mergedOptions.variant !== \"neutral\") {\n\t\t\tconst icon = document.createElement(\"w-icon\");\n\t\t\ticon.slot = \"icon\";\n\n\t\t\tswitch (mergedOptions.variant) {\n\t\t\t\tcase \"positive\":\n\t\t\t\t\ticon.name = \"SuccessFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"warning\":\n\t\t\t\t\ticon.name = \"WarningFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"negative\":\n\t\t\t\t\ticon.name = \"ErrorFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"info\":\n\t\t\t\t\ticon.name = \"InfoFilled\";\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tsnackbarItem.prepend(icon);\n\t\t}\n\n\t\tif (mergedOptions.action) {\n\t\t\t// Force a minimum duration of Long when there's an action.\n\t\t\tif (snackbarItem.duration < SnackbarDuration.Long) {\n\t\t\t\tsnackbarItem.duration = SnackbarDuration.Long;\n\t\t\t}\n\n\t\t\tconst actionButton = document.createElement(\"w-button\");\n\t\t\tactionButton.slot = \"action\";\n\t\t\tactionButton.variant = \"utilityQuiet\";\n\t\t\tactionButton.small = true;\n\n\t\t\tconst { label, onclick, placement } = mergedOptions.action;\n\n\t\t\tactionButton.innerText = label;\n\n\t\t\tconst keyboardShortcut = document.createElement(\"span\");\n\t\t\tkeyboardShortcut.classList.add(\"sr-only\");\n\t\t\tconst modifier = window.navigator.userAgent.includes(\"Macintosh\")\n\t\t\t\t? \"Option\"\n\t\t\t\t: \"Alt\";\n\t\t\tkeyboardShortcut.innerHTML = `<kbd>${modifier}</kbd> + <kbd>Enter</kbd>`;\n\t\t\tactionButton.append(keyboardShortcut);\n\n\t\t\tactionButton.onclick = (e) => {\n\t\t\t\tconst result = onclick.call(actionButton, e);\n\t\t\t\tif (!e.defaultPrevented) {\n\t\t\t\t\tsnackbarItem.close();\n\t\t\t\t}\n\t\t\t\treturn result;\n\t\t\t};\n\n\t\t\tif (placement) {\n\t\t\t\tsnackbarItem.actionPlacement = placement;\n\t\t\t} else {\n\t\t\t\tconst isLongLabel = spaceRe.test(label);\n\t\t\t\tif (isLongLabel) {\n\t\t\t\t\tsnackbarItem.actionPlacement = \"block\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tsnackbarItem.append(actionButton);\n\t\t}\n\n\t\t// Force close button visibility if duration is longer than Long (in practice, Infinite)\n\t\tif (snackbarItem.duration > SnackbarDuration.Long) {\n\t\t\tmergedOptions.canClose = true;\n\t\t}\n\n\t\tif (mergedOptions.canClose) {\n\t\t\tconst closeButton = document.createElement(\"w-button\");\n\t\t\tcloseButton.slot = \"close\";\n\t\t\tcloseButton.variant = \"utilityQuiet\";\n\t\t\tcloseButton.small = true;\n\t\t\tcloseButton.iconOnly = true;\n\n\t\t\tif (typeof mergedOptions.canClose === \"function\") {\n\t\t\t\t// Let users add an onclick for example for analytics purposes\n\t\t\t\tcloseButton.onclick = (e) => {\n\t\t\t\t\tconst result = (\n\t\t\t\t\t\tmergedOptions.canClose as (\n\t\t\t\t\t\t\tthis: GlobalEventHandlers,\n\t\t\t\t\t\t\tev: PointerEvent,\n\t\t\t\t\t\t) => any\n\t\t\t\t\t).call(closeButton, e);\n\t\t\t\t\tif (!e.defaultPrevented) {\n\t\t\t\t\t\tsnackbarItem.close();\n\t\t\t\t\t}\n\t\t\t\t\treturn result;\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\tcloseButton.onclick = snackbarItem.close.bind(snackbarItem);\n\t\t\t}\n\n\t\t\tconst closeIcon = document.createElement(\"w-icon\");\n\t\t\tcloseIcon.name = \"Close\";\n\t\t\tcloseIcon.size = \"small\";\n\t\t\tcloseIcon.ariaLabel = i18n.t({\n\t\t\t\tid: \"snackbar.aria.close\",\n\t\t\t\tmessage: \"Dismiss message\",\n\t\t\t\tcomment:\n\t\t\t\t\t\"Accessibility label for the button that closes the snackbar/toast popup\",\n\t\t\t});\n\n\t\t\tcloseButton.append(closeIcon);\n\t\t\tsnackbarItem.append(closeButton);\n\t\t}\n\n\t\tthis.shadowRoot?.host.prepend(snackbarItem);\n\n\t\treturn snackbarItem;\n\t}\n\n\trender() {\n\t\treturn html`\n\t\t\t<aside part=\"container\">\n\t\t\t\t<slot></slot>\n\t\t\t</aside>\n\t\t`;\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t\"w-snackbar\": WarpSnackbar;\n\t}\n}\n\nif (!customElements.get(\"w-snackbar\")) {\n\tcustomElements.define(\"w-snackbar\", WarpSnackbar);\n}\n", "import { html, LitElement } from \"lit\";\nimport { property, query, state } from \"lit/decorators.js\";\n\nimport { collapse, expand } from \"../utils/element-collapse.js\";\nimport { reset } from \"../styles.js\";\nimport { styles } from \"./styles.js\";\n\nexport type SnackbarVariant =\n\t| \"positive\"\n\t| \"warning\"\n\t| \"negative\"\n\t| \"info\"\n\t| \"neutral\";\n\nexport type SnackbarActionPlacement = \"inline\" | \"block\";\n\nexport enum SnackbarDuration {\n\tShort = 4_000,\n\tLong = 10_000,\n\tInfinite = 120_000_000,\n}\n\n/**\n * An item to show in a `w-snackbar`.\n *\n * See the `create` function on `w-snackbar` for a convenience API which helps you make snackbar items.\n *\n * @parent w-snackbar\n *\n * @slot default - the snackbar message.\n * @slot icon - icon preceeding the message.\n * @slot action - action following the message.\n *\n * @csspart item - the container wrapping the message, icon and actions.\n * @csspart icon - the icon for the variant.\n * @csspart message - the default slot, body of the snackbar item.\n * @csspart action - close and action button.\n *\n * @cssprop --w-c-snackbar-item-radius\n * @cssprop --w-c-snackbar-item-max-width\n * @cssprop --w-c-snackbar-item-min-width\n * @cssprop --w-c-snackbar-item-padding\n *\n * @cssprop --w-c-snackbar-item-bg\n * @cssprop --w-c-snackbar-item-action-bg-active\n * @cssprop --w-c-snackbar-item-action-bg-hover\n *\n * @cssprop --w-c-snackbar-item-color\n * @cssprop --w-c-snackbar-item-action-color-active\n * @cssprop --w-c-snackbar-item-action-color-hover\n *\n * @cssprop --w-c-snackbar-item-box-shadow\n */\nexport class WarpSnackbarItem extends LitElement {\n\tstatic styles = [reset, styles];\n\n\t/**\n\t * The placement of the action and close buttons.\n\t */\n\t@property({ attribute: \"action-placement\", reflect: true, useDefault: true })\n\tactionPlacement: SnackbarActionPlacement = \"inline\";\n\n\t/**\n\t * How long the message should stay in the document before removing itself.\n\t */\n\t@property({ type: Number, reflect: true, useDefault: true })\n\tduration: number = SnackbarDuration.Short;\n\n\t@query(\".animation-wrapper\")\n\tprivate root!: HTMLDivElement | null;\n\n\t@state()\n\tprivate hasAction = false;\n\n\t#expanded = false;\n\n\t#durationLeft: number = SnackbarDuration.Short;\n\n\t#lastFocused: HTMLElement | null = null;\n\n\t// TODO How to expose the timer in an accessible maner, both visually and to assistive technologies? https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/timer_role + a progress bar style thing?\n\t#timer: ReturnType<typeof setTimeout> | null = null;\n\n\t#timerPaused = false;\n\n\tconnectedCallback(): void {\n\t\tsuper.connectedCallback();\n\n\t\tif (this.duration !== SnackbarDuration.Infinite) {\n\t\t\tconst updateFrequencyMs = 1000;\n\n\t\t\t// Subtract one updateFrequencyMs, otherwise the full\n\t\t\t// duration would be duration + updateFrequencyMs.\n\t\t\tthis.#durationLeft = this.duration - updateFrequencyMs;\n\n\t\t\tthis.#timer = setInterval(() => {\n\t\t\t\tif (this.#timerPaused) return;\n\n\t\t\t\tthis.#durationLeft -= updateFrequencyMs;\n\n\t\t\t\tif (this.#durationLeft <= 0) {\n\t\t\t\t\tthis.close();\n\t\t\t\t}\n\t\t\t}, updateFrequencyMs);\n\t\t}\n\t}\n\n\tdisconnectedCallback(): void {\n\t\tif (this.#timer) {\n\t\t\tclearInterval(this.#timer);\n\t\t}\n\t}\n\n\tasync updated(): Promise<void> {\n\t\tif (!this.root) return; // should never happen\n\n\t\t// Once widely available, replace with https://developer.chrome.com/docs/css-ui/animate-to-height-auto\n\t\tif (!this.#expanded) {\n\t\t\t// we need to measure including the height of the child\n\t\t\t// components which aren't ready yet and have 0x0 dimensions,\n\t\t\t// wait for the update to finish\n\t\t\tawait this.updateComplete;\n\t\t\texpand(this.root, () => {\n\t\t\t\tthis.#expanded = true;\n\t\t\t});\n\t\t}\n\t}\n\n\t/**\n\t * Remove the snackbar item from the document.\n\t *\n\t * Moves focus to the last focused element outside of the snackbar item, if available.\n\t */\n\tclose(): void {\n\t\tif (this.#lastFocused) {\n\t\t\tthis.#lastFocused.focus();\n\t\t}\n\t\tif (this.#expanded && this.root) {\n\t\t\tcollapse(this.root, () => {\n\t\t\t\tthis.remove();\n\t\t\t});\n\t\t} else {\n\t\t\tthis.remove();\n\t\t}\n\t}\n\n\t/**\n\t * Listen to focusin, not focus, as focus does not bubble.\n\t *\n\t * We're interested in running code when an action button gets focus,\n\t * such as pausing the countdown and storing the last focused element\n\t * outside of the snackbar so we can return there when it closes.\n\t *\n\t * Only save the first instance of `relatedTarget` so we don't overwrite\n\t * it when focus moves from an action button to the close button.\n\t */\n\t#onFocusIn(e: FocusEvent) {\n\t\tif (!this.#lastFocused) {\n\t\t\tthis.#timerPaused = true;\n\t\t\tif (e.relatedTarget && (e.relatedTarget as HTMLElement).focus) {\n\t\t\t\tthis.#lastFocused = e.relatedTarget as HTMLElement;\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Listen to focusout, not blur, as blur does not bubble.\n\t *\n\t * Unpause the countdown by clearing this.#lastFocused\n\t * if the focus is moving outside of the snackbar item.\n\t */\n\t#onFocusOut(e: FocusEvent) {\n\t\tconst snackbarItemLostFocus =\n\t\t\t!e.relatedTarget ||\n\t\t\t!this.shadowRoot?.host.contains(e.relatedTarget as HTMLElement);\n\t\tif (snackbarItemLostFocus) {\n\t\t\tthis.#timerPaused = false;\n\t\t\tthis.#lastFocused = null;\n\t\t}\n\t}\n\n\t#onMouseEnter() {\n\t\tthis.#timerPaused = true;\n\t}\n\n\t#onMouseLeave() {\n\t\t// Unpause unless we still have keyboard focus\n\t\tif (!this.#lastFocused) {\n\t\t\tthis.#timerPaused = false;\n\t\t}\n\t}\n\n\t#hasAction() {\n\t\tconst actionSlot = this.shadowRoot?.querySelector<HTMLSlotElement>(\n\t\t\t'slot[name=\"action\"]',\n\t\t);\n\t\tif (!actionSlot) return false;\n\t\tconst assignedElements = actionSlot.assignedElements();\n\t\treturn assignedElements.length > 0;\n\t}\n\n\tprotected firstUpdated() {\n\t\t// The slot must render before we can check its contents, hence the run on firstUpdated\n\t\tthis.hasAction = this.#hasAction();\n\t}\n\n\trender() {\n\t\tif (\n\t\t\tthis.hasAction &&\n\t\t\tdocument.documentElement.dataset.wKeyboardinteraction === \"true\"\n\t\t) {\n\t\t\tconst modifier = window.navigator.userAgent.includes(\"Macintosh\")\n\t\t\t\t? \"\u2325\"\n\t\t\t\t: \"Alt\";\n\t\t\treturn html`\n\t\t\t\t<w-attention tooltip placement=\"top\" distance=\"12\" show>\n\t\t\t\t\t<div class=\"animation-wrapper\" slot=\"target\">\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tpart=\"item\"\n\t\t\t\t\t\t\t@mouseenter=${this.#onMouseEnter}\n\t\t\t\t\t\t\t@mouseleave=${this.#onMouseLeave}\n\t\t\t\t\t\t\t@focusin=${this.#onFocusIn}\n\t\t\t\t\t\t\t@focusout=${this.#onFocusOut}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div part=\"icon\">\n\t\t\t\t\t\t\t\t<slot name=\"icon\"></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div part=\"message\">\n\t\t\t\t\t\t\t\t<slot></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div part=\"action\">\n\t\t\t\t\t\t\t\t<slot name=\"action\"></slot>\n\t\t\t\t\t\t\t\t<slot name=\"close\"></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<!-- The keyboard shortcut is announced as part of the action button label -->\n\t\t\t\t\t<span slot=\"message\" aria-hidden=\"true\">\n\t\t\t\t\t\t<kbd>${modifier}</kbd> + <kbd>Enter</kbd>\n\t\t\t\t\t</span>\n\t\t\t\t</w-attention>\n\t\t\t`;\n\t\t}\n\t\treturn html`\n\t\t\t<div class=\"animation-wrapper\">\n\t\t\t\t<div\n\t\t\t\t\tpart=\"item\"\n\t\t\t\t\t@mouseenter=${this.#onMouseEnter}\n\t\t\t\t\t@mouseleave=${this.#onMouseLeave}\n\t\t\t\t\t@focusin=${this.#onFocusIn}\n\t\t\t\t\t@focusout=${this.#onFocusOut}\n\t\t\t\t>\n\t\t\t\t\t<div part=\"icon\">\n\t\t\t\t\t\t<slot name=\"icon\"></slot>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div part=\"message\">\n\t\t\t\t\t\t<slot></slot>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div part=\"action\">\n\t\t\t\t\t\t<slot name=\"action\"></slot>\n\t\t\t\t\t\t<slot name=\"close\"></slot>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t`;\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t\"w-snackbar-item\": WarpSnackbarItem;\n\t}\n}\n\nif (!customElements.get(\"w-snackbar-item\")) {\n\tcustomElements.define(\"w-snackbar-item\", WarpSnackbarItem);\n}\n", "const windowExists = typeof window !== \"undefined\";\n\nlet prefersMotion = true;\n\nif (windowExists) {\n\tconst query = window.matchMedia(\"(prefers-reduced-motion: reduce)\");\n\tconst callback = ({ matches }) => (prefersMotion = !matches);\n\t// older browsers don't support the new API, and the old API is deprecated\n\tif (query.addEventListener) query.addEventListener(\"change\", callback);\n\tcallback(query);\n}\n\nconst removeTransition = (el) => {\n\tel.style.transition = null;\n\tel.style.backfaceVisibility = null;\n\tel.style.overflow = null;\n};\n\nconst addTransition = (el) => {\n\t// we set timing to something insanely short\n\t// when reducing motion so the after-* hooks still fire\n\tconst timing =\n\t\t\"var(--w-expansion-duration, var(--f-expansion-duration, 0.3s))\";\n\tel.style.transition = `height ${timing}`;\n\tel.style.backfaceVisibility = \"hidden\";\n\tel.style.overflow = \"hidden\";\n};\n\nconst getAfterExpandCallback = (el, done) => () => {\n\tel.style.height = \"auto\";\n\tel.style.overflow = null;\n\tif (done) done();\n};\n\nconst getAfterCollapseCallback = (done) => () => {\n\tif (done) done();\n};\n\n/**\n * Transitions an element from 0 to a detected height\n * Will return a Promise when no 'done' callback is provided\n * @type {(el: HTMLElement, done?: function) => void | Promise<void>}\n */\nexport const expand = (el, done) => {\n\tconst returnPromise = (() => {\n\t\tif (!done)\n\t\t\treturn new Promise((r) => {\n\t\t\t\tdone = r;\n\t\t\t});\n\t})();\n\n\tif (!prefersMotion) {\n\t\tel.style.height = \"auto\";\n\t\tif (done) done();\n\t\treturn returnPromise;\n\t}\n\n\tconst afterExpandCallback = getAfterExpandCallback(el, done);\n\tremoveTransition(el);\n\tel.style.height = \"auto\";\n\tconst dest = el.scrollHeight;\n\tif (windowExists) {\n\t\trequestAnimationFrame(() => {\n\t\t\tel.addEventListener(\"transitionend\", afterExpandCallback, { once: true });\n\t\t\tel.style.height = \"0px\";\n\t\t\tel.style.transitionTimingFunction = \"ease-out\";\n\t\t\taddTransition(el);\n\t\t\trequestAnimationFrame(() => (el.style.height = dest + \"px\"));\n\t\t});\n\t}\n\tif (returnPromise) return returnPromise;\n};\n\n/**\n * Transitions an element from a detected height to 0\n * Will return a Promise when no 'done' callback is provided\n * @type {(el: HTMLElement, done?: function) => void | Promise<void>}\n */\nexport const collapse = (el, done) => {\n\tconst returnPromise = (() => {\n\t\tif (!done)\n\t\t\treturn new Promise((r) => {\n\t\t\t\tdone = r;\n\t\t\t});\n\t})();\n\n\tif (!prefersMotion) {\n\t\tel.style.height = \"0px\";\n\t\tif (done) done();\n\t\treturn returnPromise;\n\t}\n\n\tconst afterCollapseCallback = getAfterCollapseCallback(done);\n\tremoveTransition(el);\n\tconst original = el.scrollHeight;\n\tif (windowExists) {\n\t\trequestAnimationFrame(() => {\n\t\t\tel.addEventListener(\"transitionend\", afterCollapseCallback, {\n\t\t\t\tonce: true,\n\t\t\t});\n\t\t\tel.style.height = original + \"px\";\n\t\t\tel.style.transitionTimingFunction = \"ease-in\";\n\t\t\taddTransition(el);\n\t\t\trequestAnimationFrame(() => (el.style.height = \"0px\"));\n\t\t});\n\t}\n\tif (returnPromise) return returnPromise;\n};\n", "import { css } from \"lit\";\n\nexport const reset = css`\n\t*,\n\t:before,\n\t:after {\n\t\tbox-sizing: border-box;\n\t\tborder-style: solid;\n\t\tborder-width: 0;\n\t\tborder-color: var(--w-s-color-border);\n\t}\n\thtml {\n\t\tfont-size: 62.5%;\n\t}\n\tbody {\n\t\tbackground-color: var(--w-s-color-background);\n\t\tmin-height: 100%;\n\t\tmargin: 0;\n\t\toverflow-y: scroll;\n\t}\n\tbody,\n\t:host {\n\t\t-webkit-text-size-adjust: 100%;\n\t\ttab-size: 4;\n\t\t-webkit-tap-highlight-color: transparent;\n\t\tfont-family: var(--w-font-family);\n\t\tfont-size: var(--w-font-size-m);\n\t\tline-height: var(--w-line-height-m);\n\t\tcolor: var(--w-s-color-text);\n\t}\n\thr {\n\t\tcolor: inherit;\n\t\tborder-top-width: 1px;\n\t\theight: 0;\n\t}\n\tabbr:where([title]) {\n\t\t-webkit-text-decoration: underline dotted;\n\t\ttext-decoration: underline dotted;\n\t}\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6 {\n\t\tfont-size: inherit;\n\t\tfont-weight: 700;\n\t}\n\ta {\n\t\tcursor: pointer;\n\t\tcolor: var(--w-s-color-text-link);\n\t\ttext-decoration: none;\n\t}\n\ta:hover,\n\ta:focus,\n\ta:active {\n\t\ttext-decoration: underline;\n\t}\n\ta:focus-visible {\n\t\toutline: 2px solid var(--w-s-color-border-focus);\n\t\toutline-offset: 1px;\n\t}\n\tb,\n\tstrong {\n\t\tfont-weight: 700;\n\t}\n\tcode,\n\tkbd,\n\tsamp,\n\tpre {\n\t\tfont-family:\n\t\t\tui-monospace,\n\t\t\tSFMono-Regular,\n\t\t\tMenlo,\n\t\t\tMonaco,\n\t\t\tConsolas,\n\t\t\tLiberation Mono,\n\t\t\tCourier New,\n\t\t\tmonospace;\n\t\tfont-size: 1em;\n\t}\n\tsub,\n\tsup {\n\t\tvertical-align: baseline;\n\t\tfont-size: 75%;\n\t\tline-height: 0;\n\t\tposition: relative;\n\t}\n\tsub {\n\t\tbottom: -0.25em;\n\t}\n\tsup {\n\t\ttop: -0.5em;\n\t}\n\ttable {\n\t\ttext-indent: 0;\n\t\tborder-color: inherit;\n\t\tborder-collapse: collapse;\n\t}\n\tbutton,\n\tinput,\n\toptgroup,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t\tfont-size: 100%;\n\t\tfont-weight: inherit;\n\t\tline-height: inherit;\n\t\tcolor: inherit;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tbutton,\n\tselect {\n\t\ttext-transform: none;\n\t}\n\tbutton,\n\t[type=\"button\"],\n\t[type=\"reset\"],\n\t[type=\"submit\"] {\n\t\t-webkit-appearance: button;\n\t}\n\t:-moz-focusring {\n\t\toutline: auto;\n\t}\n\t:-moz-ui-invalid {\n\t\tbox-shadow: none;\n\t}\n\tprogress {\n\t\tvertical-align: baseline;\n\t}\n\t::-webkit-inner-spin-button {\n\t\theight: auto;\n\t}\n\t::-webkit-outer-spin-button {\n\t\theight: auto;\n\t}\n\t[type=\"search\"] {\n\t\t-webkit-appearance: textfield;\n\t\toutline-offset: -2px;\n\t}\n\t::-webkit-search-decoration {\n\t\t-webkit-appearance: none;\n\t}\n\t::-webkit-file-upload-button {\n\t\t-webkit-appearance: button;\n\t\tfont: inherit;\n\t}\n\tsummary {\n\t\tdisplay: list-item;\n\t}\n\tblockquote,\n\tdl,\n\tdd,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\thr,\n\tfigure,\n\tp,\n\tpre {\n\t\tmargin: 0;\n\t}\n\tfieldset {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tlegend {\n\t\tpadding: 0;\n\t}\n\tol,\n\tul,\n\tmenu {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tlist-style: none;\n\t}\n\ttextarea {\n\t\tresize: vertical;\n\t}\n\tinput::placeholder,\n\ttextarea::placeholder {\n\t\topacity: 1;\n\t\tcolor: var(--w-s-color-text-placeholder);\n\t}\n\tbutton,\n\t[role=\"button\"] {\n\t\tcursor: pointer;\n\t}\n\t:disabled {\n\t\tcursor: default;\n\t}\n\timg,\n\tsvg,\n\tvideo,\n\tcanvas,\n\taudio,\n\tiframe,\n\tembed,\n\tobject {\n\t\tvertical-align: middle;\n\t\tdisplay: block;\n\t}\n\timg,\n\tvideo {\n\t\tmax-width: 100%;\n\t\theight: auto;\n\t}\n\th1 {\n\t\tfont-size: var(--w-font-size-xxl);\n\t\tline-height: var(--w-line-height-xxl);\n\t}\n\th2 {\n\t\tfont-size: var(--w-font-size-xl);\n\t\tline-height: var(--w-line-height-xl);\n\t}\n\th3 {\n\t\tfont-size: var(--w-font-size-l);\n\t\tline-height: var(--w-line-height-l);\n\t}\n\th4 {\n\t\tfont-size: var(--w-font-size-m);\n\t\tline-height: var(--w-line-height-m);\n\t}\n\th5 {\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t}\n\tdt,\n\tdd {\n\t\tmargin: 0 16px;\n\t}\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\tul,\n\tol,\n\tdl,\n\tp,\n\tblockquote {\n\t\tmargin: 0 0 8px;\n\t}\n\t[hidden] {\n\t\tdisplay: none !important;\n\t}\n\t[tabindex=\"-1\"]:focus:not(:focus-visible) {\n\t\toutline: none;\n\t}\n\tlegend {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tdisplay: table;\n\t}\n\tlegend + * {\n\t\tclear: both;\n\t}\n\tfieldset {\n\t\tborder: 0;\n\t\tmin-width: 0;\n\t\tmargin: 0;\n\t\tpadding: 0.01em 0 0;\n\t}\n\tbody:not(:-moz-handler-blocked) fieldset {\n\t\tdisplay: table-cell;\n\t}\n\tsvg {\n\t\tpointer-events: none;\n\t}\n`;\nimport { unsafeCSS } from \"lit\";\n\n// prettier-ignore\nexport const components = unsafeCSS(`*, :before, :after {\n --w-rotate: 0;\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-scale-x: 1;\n --w-scale-y: 1;\n --w-scale-z: 1;\n --w-skew-x: 0;\n --w-skew-y: 0;\n --w-translate-x: 0;\n --w-translate-y: 0;\n --w-translate-z: 0\n }\n\n .h4, .t4 {\n font-weight: 700;\n font-size: var(--w-font-size-m);\n line-height: var(--w-line-height-m)\n }\n\n .t3 {\n font-weight: 700;\n font-size: var(--w-font-size-l);\n line-height: var(--w-line-height-l)\n }\n\n @media (min-width: 480px) {\n .sm\\\\:h3 {\n font-weight: 700;\n font-size: var(--w-font-size-l);\n line-height: var(--w-line-height-l)\n }\n }\n\n .text-center {\n text-align: center\n }\n\n .before\\\\:text-center:before {\n text-align: center\n }\n\n .text-left {\n text-align: left\n }\n\n .text-right {\n text-align: right\n }\n\n .align-middle {\n vertical-align: middle\n }\n\n .animate-inprogress {\n background-image: linear-gradient(135deg, rgba(0, 0, 0, .05) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .05) 75%, transparent 0, transparent) !important;\n background-size: 30px 30px;\n animation: animate-inprogress 3s linear infinite\n }\n\n @keyframes animate-inprogress {\n 0% {\n background-position: 0 0\n }\n to {\n background-position: 60px 0\n }\n }\n\n .\\\\[--w-modal-max-height\\\\:80\\\\%\\\\] {\n --w-modal-max-height: 80%\n }\n\n .\\\\[--w-modal-width\\\\:640px\\\\] {\n --w-modal-width: 640px\n }\n\n .focus\\\\:\\\\[--w-outline-offset\\\\:-2px\\\\]:focus {\n --w-outline-offset: -2px\n }\n\n .backdrop-blur {\n -webkit-backdrop-filter: blur(4px);\n backdrop-filter: blur(4px)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:bg-center:before {\n background-position: center\n }\n\n .hover\\\\:bg-clip-padding:hover {\n -webkit-background-clip: padding-box;\n background-clip: padding-box\n }\n\n .bg-transparent, .group\\\\/steph:first-child .group-first\\\\/steph\\\\:bg-transparent, .group\\\\/steph:last-child .group-last\\\\/steph\\\\:bg-transparent {\n background-color: transparent\n }\n\n .bg-\\\\[--w-black\\\\/25\\\\] {\n background-color: rgba(var(--w-rgb-black), .25)\n }\n\n .bg-\\\\[--w-black\\\\/70\\\\], .bg-\\\\[var\\\\(--w-black\\\\)\\\\/70\\\\] {\n background-color: rgba(var(--w-rgb-black), .7)\n }\n\n .bg-\\\\[--w-color-badge-info-background\\\\] {\n background-color: var(--w-color-badge-info-background)\n }\n\n .bg-\\\\[--w-color-badge-negative-background\\\\] {\n background-color: var(--w-color-badge-negative-background)\n }\n\n .bg-\\\\[--w-color-badge-neutral-background\\\\] {\n background-color: var(--w-color-badge-neutral-background)\n }\n\n .bg-\\\\[--w-color-badge-positive-background\\\\] {\n background-color: var(--w-color-badge-positive-background)\n }\n\n .bg-\\\\[--w-color-badge-sponsored-background\\\\] {\n background-color: var(--w-color-badge-sponsored-background)\n }\n\n .bg-\\\\[--w-color-badge-warning-background\\\\] {\n background-color: var(--w-color-badge-warning-background)\n }\n\n .bg-\\\\[--w-color-button-primary-background\\\\] {\n background-color: var(--w-color-button-primary-background)\n }\n\n .bg-\\\\[--w-color-buttongroup-utility-background-selected\\\\] {\n background-color: var(--w-color-buttongroup-utility-background-selected)\n }\n\n .bg-\\\\[--w-color-callout-background\\\\] {\n background-color: var(--w-color-callout-background)\n }\n\n .bg-\\\\[--w-color-pill-suggestion-background\\\\] {\n background-color: var(--w-color-pill-suggestion-background)\n }\n\n .bg-\\\\[--w-color-switch-track-background\\\\] {\n background-color: var(--w-color-switch-track-background)\n }\n\n .bg-\\\\[--w-s-color-surface-elevated-100\\\\] {\n background-color: var(--w-s-color-surface-elevated-100)\n }\n\n .bg-\\\\[--w-s-color-surface-elevated-300\\\\] {\n background-color: var(--w-s-color-surface-elevated-300)\n }\n\n .bg-\\\\[--w-s-icon-selected\\\\] {\n background-color: var(--w-s-icon-selected)\n }\n\n .group:hover .group-hover\\\\:bg-\\\\[--w-color-switch-track-background-hover\\\\] {\n background-color: var(--w-color-switch-track-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-button-pill-background-hover\\\\]:hover {\n background-color: var(--w-color-button-pill-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-button-primary-background-hover\\\\]:hover {\n background-color: var(--w-color-button-primary-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-buttongroup-utility-background-hover\\\\]:hover {\n background-color: var(--w-color-buttongroup-utility-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-pill-suggestion-background-hover\\\\]:hover {\n background-color: var(--w-color-pill-suggestion-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-s-icon-subtle\\\\]:hover {\n background-color: var(--w-s-icon-subtle)\n }\n\n .hover\\\\:bg-\\\\[var\\\\(--w-black\\\\)\\\\/85\\\\]:hover {\n background-color: rgba(var(--w-rgb-black), .85)\n }\n\n .active\\\\:bg-\\\\[--w-color-button-pill-background-active\\\\]:active {\n background-color: var(--w-color-button-pill-background-active)\n }\n\n .active\\\\:bg-\\\\[--w-color-button-primary-background-active\\\\]:active {\n background-color: var(--w-color-button-primary-background-active)\n }\n\n .active\\\\:bg-\\\\[--w-color-buttongroup-utility-background-selected\\\\]:active {\n background-color: var(--w-color-buttongroup-utility-background-selected)\n }\n\n .active\\\\:bg-\\\\[--w-color-pill-suggestion-background-active\\\\]:active {\n background-color: var(--w-color-pill-suggestion-background-active)\n }\n\n .active\\\\:bg-\\\\[var\\\\(--w-black\\\\)\\\\]:active {\n background-color: var(--w-black)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:bg-\\\\[url\\\\(var\\\\(--w-icon-toggle-checked\\\\)\\\\)\\\\]:before {\n background-image: var(--w-icon-toggle-checked)\n }\n\n .appearance-none {\n -moz-appearance: none;\n appearance: none;\n -webkit-appearance: none\n }\n\n .will-change-height {\n will-change: height\n }\n\n .border, .border-1 {\n border-width: 1px\n }\n\n .border-b {\n border-bottom-width: 1px\n }\n\n .before\\\\:border:before {\n border-width: 1px\n }\n\n .border-0 {\n border-width: 0\n }\n\n .border-2 {\n border-width: 2px\n }\n\n .border-b-0 {\n border-bottom-width: 0\n }\n\n .border-b-4 {\n border-bottom-width: 4px\n }\n\n .border-l-4 {\n border-left-width: 4px\n }\n\n .border-r-0, .group:not(:last-of-type) .group-not-last-of-type\\\\:border-r-0 {\n border-right-width: 0\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:border-\\\\[6\\\\]:before {\n border-width: .6rem\n }\n\n .border-transparent {\n border-color: transparent\n }\n\n .border-\\\\[--w-color-buttongroup-utility-border\\\\] {\n border-color: var(--w-color-buttongroup-utility-border)\n }\n\n .border-\\\\[--w-color-callout-border\\\\] {\n border-color: var(--w-color-callout-border)\n }\n\n .border-\\\\[--w-s-color-background-inverted\\\\] {\n border-color: var(--w-s-color-background-inverted)\n }\n\n .border-\\\\[--w-s-color-surface-elevated-300\\\\] {\n border-color: var(--w-s-color-surface-elevated-300)\n }\n\n .active\\\\:border-\\\\[--w-color-buttongroup-utility-border-selected\\\\]:active {\n border-color: var(--w-color-buttongroup-utility-border-selected)\n }\n\n .divide-x > * + * {\n --w-divide-x-reverse: 0;\n border-left-width: calc(1px * calc(1 - var(--w-divide-x-reverse)));\n border-right-width: calc(1px * var(--w-divide-x-reverse))\n }\n\n .divide-y > * + * {\n --w-divide-y-reverse: 0;\n border-top-width: calc(1px * calc(1 - var(--w-divide-y-reverse)));\n border-bottom-width: calc(1px * var(--w-divide-y-reverse))\n }\n\n .rounded-4 {\n border-radius: 4px\n }\n\n .rounded-8 {\n border-radius: 8px\n }\n\n .rounded-full {\n border-radius: 9999px\n }\n\n .before\\\\:rounded-2:before {\n border-radius: 2px\n }\n\n .before\\\\:rounded-full:before {\n border-radius: 9999px\n }\n\n .rounded-b-0 {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0\n }\n\n .rounded-bl-0 {\n border-bottom-left-radius: 0\n }\n\n .rounded-br-0 {\n border-bottom-right-radius: 0\n }\n\n .rounded-l-0 {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0\n }\n\n .rounded-l-full {\n border-top-left-radius: 9999px;\n border-bottom-left-radius: 9999px\n }\n\n .rounded-r-0 {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0\n }\n\n .rounded-r-full {\n border-top-right-radius: 9999px;\n border-bottom-right-radius: 9999px\n }\n\n .rounded-tl-0 {\n border-top-left-radius: 0\n }\n\n .rounded-tl-4 {\n border-top-left-radius: 4px\n }\n\n .rounded-tr-0 {\n border-top-right-radius: 0\n }\n\n .group:first-of-type .group-first-of-type\\\\:rounded-bl-8 {\n border-bottom-left-radius: 8px\n }\n\n .group:first-of-type .group-first-of-type\\\\:rounded-tl-8 {\n border-top-left-radius: 8px\n }\n\n .first\\\\:rounded-lb-4:first-child {\n border-bottom-left-radius: 4px\n }\n\n .first\\\\:rounded-lt-4:first-child {\n border-top-left-radius: 4px\n }\n\n .first\\\\:rounded-rt-4:first-child {\n border-top-right-radius: 4px\n }\n\n .group:last-of-type .group-last-of-type\\\\:rounded-br-8 {\n border-bottom-right-radius: 8px\n }\n\n .group:last-of-type .group-last-of-type\\\\:rounded-tr-8 {\n border-top-right-radius: 8px\n }\n\n .last\\\\:rounded-lb-4:last-child {\n border-bottom-left-radius: 4px\n }\n\n .last\\\\:rounded-rb-4:last-child {\n border-bottom-right-radius: 4px\n }\n\n .last\\\\:rounded-rt-4:last-child {\n border-top-right-radius: 4px\n }\n\n .caret-current {\n caret-color: currentColor\n }\n\n .opacity-25 {\n opacity: 25%\n }\n\n .block {\n display: block\n }\n\n .before\\\\:block:before {\n display: block\n }\n\n .inline-block {\n display: inline-block\n }\n\n .inline {\n display: inline\n }\n\n .flex, .open\\\\:flex[open] {\n display: flex\n }\n\n .inline-flex {\n display: inline-flex\n }\n\n .grid {\n display: grid\n }\n\n .inline-grid {\n display: inline-grid\n }\n\n .hidden, .group\\\\/stepv:last-child .group-last\\\\/stepv\\\\:hidden {\n display: none\n }\n\n .before\\\\:hidden:before {\n display: none\n }\n\n .hover\\\\:underline:hover {\n text-decoration-line: underline\n }\n\n .focus\\\\:underline:focus {\n text-decoration-line: underline\n }\n\n .focus-visible\\\\:underline:focus-visible {\n text-decoration-line: underline\n }\n\n .active\\\\:underline:active {\n text-decoration-line: underline\n }\n\n .hover\\\\:no-underline:hover {\n text-decoration: none\n }\n\n .focus\\\\:no-underline:focus {\n text-decoration: none\n }\n\n .active\\\\:no-underline:active {\n text-decoration: none\n }\n\n .flex-1 {\n flex: 1 1 0%\n }\n\n .shrink {\n flex-shrink: 1\n }\n\n .shrink-0 {\n flex-shrink: 0\n }\n\n .shrink-0\\\\! {\n flex-shrink: 0 !important\n }\n\n .grow, .grow-1 {\n flex-grow: 1\n }\n\n .basis-auto {\n flex-basis: auto\n }\n\n .flex-col {\n flex-direction: column\n }\n\n .focus-within\\\\:focusable:focus-within {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .focusable:focus, .focusable:focus-visible {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .focusable:not(:focus-visible) {\n outline: none\n }\n\n .peer:focus ~ .peer-focus\\\\:focusable, .peer:focus-visible ~ .peer-focus\\\\:focusable {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .peer:not(:focus-visible) ~ .peer-focus\\\\:focusable {\n outline: none\n }\n\n .focusable-inset {\n --w-outline-offset: -3px\n }\n\n .gap-12 {\n gap: 1.2rem\n }\n\n .gap-8 {\n gap: .8rem\n }\n\n .gap-x-16 {\n column-gap: 1.6rem\n }\n\n .gap-y-16 {\n row-gap: 1.6rem\n }\n\n .row-span-2 {\n grid-row: span 2/span 2\n }\n\n .col-span-2 {\n grid-column: span 2/span 2\n }\n\n .col-span-3 {\n grid-column: span 3/span 3\n }\n\n .row-start-1 {\n grid-row-start: 1\n }\n\n .row-start-2 {\n grid-row-start: 2\n }\n\n .col-start-2 {\n grid-column-start: 2\n }\n\n .auto-rows-auto {\n grid-auto-rows: auto\n }\n\n .grid-flow-col {\n grid-auto-flow: column\n }\n\n .grid-rows-\\\\[20px_auto\\\\] {\n grid-template-rows:20px auto\n }\n\n .grid-rows-\\\\[auto_20px\\\\] {\n grid-template-rows:auto 20px\n }\n\n .grid-cols-\\\\[1fr_20px_1fr\\\\] {\n grid-template-columns:1fr 20px 1fr\n }\n\n .grid-cols-\\\\[1fr_20px\\\\] {\n grid-template-columns:1fr 20px\n }\n\n .grid-cols-\\\\[20px_1fr\\\\] {\n grid-template-columns:20px 1fr\n }\n\n .grid-cols-\\\\[auto_1fr_auto\\\\] {\n grid-template-columns:auto 1fr auto\n }\n\n .grid-cols-1 {\n grid-template-columns:repeat(1, minmax(0, 1fr))\n }\n\n .grid-cols-2 {\n grid-template-columns:repeat(2, minmax(0, 1fr))\n }\n\n .grid-cols-3 {\n grid-template-columns:repeat(3, minmax(0, 1fr))\n }\n\n .grid-cols-4 {\n grid-template-columns:repeat(4, minmax(0, 1fr))\n }\n\n .grid-cols-5 {\n grid-template-columns:repeat(5, minmax(0, 1fr))\n }\n\n .grid-cols-6 {\n grid-template-columns:repeat(6, minmax(0, 1fr))\n }\n\n .grid-cols-7 {\n grid-template-columns:repeat(7, minmax(0, 1fr))\n }\n\n .grid-cols-8 {\n grid-template-columns:repeat(8, minmax(0, 1fr))\n }\n\n .grid-cols-9 {\n grid-template-columns:repeat(9, minmax(0, 1fr))\n }\n\n .overflow-hidden {\n overflow: hidden\n }\n\n .overflow-x-hidden {\n overflow-x: hidden\n }\n\n .overflow-y-auto {\n overflow-y: auto\n }\n\n .list-none {\n list-style-type: none\n }\n\n .outline-\\\\[--w-s-color-border-negative\\\\]\\\\! {\n outline-color: var(--w-s-color-border-negative) !important\n }\n\n .outline-none {\n outline: 2px solid transparent;\n outline-offset: 2px\n }\n\n .focus\\\\:outline-none:focus {\n outline: 2px solid transparent;\n outline-offset: 2px\n }\n\n .items-start {\n align-items: flex-start\n }\n\n .items-end {\n align-items: flex-end\n }\n\n .items-center {\n align-items: center\n }\n\n .self-center {\n align-self: center\n }\n\n .inset-0 {\n top: 0rem;\n right: 0rem;\n bottom: 0rem;\n left: 0rem\n }\n\n .-bottom-0 {\n bottom: -0rem\n }\n\n .bottom-0 {\n bottom: 0rem\n }\n\n .bottom-10 {\n bottom: 1rem\n }\n\n .bottom-16 {\n bottom: 1.6rem\n }\n\n .left-0 {\n left: 0rem\n }\n\n .left-4 {\n left: .4rem\n }\n\n .right-0 {\n right: 0rem\n }\n\n .right-8 {\n right: .8rem\n }\n\n .top-\\\\[1\\\\.92rem\\\\] {\n top: 1.92rem\n }\n\n .top-0 {\n top: 0rem\n }\n\n .top-20 {\n top: 2rem\n }\n\n .top-4 {\n top: .4rem\n }\n\n .top-8 {\n top: .8rem\n }\n\n .before\\\\:bottom-0:before {\n bottom: 0rem\n }\n\n .before\\\\:left-0:before {\n left: 0rem\n }\n\n .before\\\\:right-0:before {\n right: 0rem\n }\n\n .before\\\\:top-2:before {\n top: .2rem\n }\n\n .-bottom-\\\\[8px\\\\] {\n bottom: -8px\n }\n\n .-left-\\\\[8px\\\\] {\n left: -8px\n }\n\n .-right-\\\\[8px\\\\] {\n right: -8px\n }\n\n .-top-\\\\[8px\\\\] {\n top: -8px\n }\n\n .top-\\\\[19px\\\\] {\n top: 19px\n }\n\n .top-\\\\[30\\\\%\\\\] {\n top: 30%\n }\n\n .justify-end {\n justify-content: flex-end\n }\n\n .justify-center {\n justify-content: center\n }\n\n .justify-between {\n justify-content: space-between\n }\n\n .justify-items-center {\n justify-items: center\n }\n\n .justify-self-start {\n justify-self: start\n }\n\n .justify-self-end {\n justify-self: end\n }\n\n .justify-self-center {\n justify-self: center\n }\n\n .absolute {\n position: absolute\n }\n\n .fixed {\n position: fixed\n }\n\n .relative {\n position: relative\n }\n\n .open\\\\:fixed[open] {\n position: fixed\n }\n\n .before\\\\:absolute:before {\n position: absolute\n }\n\n .z-10, .peer:checked ~ .peer-checked\\\\:z-10 {\n z-index: 10\n }\n\n .z-30 {\n z-index: 30\n }\n\n .z-50 {\n z-index: 50\n }\n\n .hover\\\\:z-30:hover {\n z-index: 30\n }\n\n .\\\\!s-bg-selected {\n background-color: var(--w-s-color-background-selected) !important\n }\n\n .s-bg {\n background-color: var(--w-s-color-background)\n }\n\n .s-bg-disabled {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .s-bg-disabled-subtle {\n background-color: var(--w-s-color-background-disabled-subtle)\n }\n\n .s-bg-info-subtle {\n background-color: var(--w-s-color-background-info-subtle)\n }\n\n .s-bg-inverted {\n background-color: var(--w-s-color-background-inverted)\n }\n\n .s-bg-negative {\n background-color: var(--w-s-color-background-negative)\n }\n\n .s-bg-negative-subtle {\n background-color: var(--w-s-color-background-negative-subtle)\n }\n\n .s-bg-positive-subtle {\n background-color: var(--w-s-color-background-positive-subtle)\n }\n\n .s-bg-primary, .peer:checked ~ .peer-checked\\\\:s-bg-primary {\n background-color: var(--w-s-color-background-primary)\n }\n\n .s-bg-selected {\n background-color: var(--w-s-color-background-selected)\n }\n\n .s-bg-subtle {\n background-color: var(--w-s-color-background-subtle)\n }\n\n .s-bg-warning-subtle {\n background-color: var(--w-s-color-background-warning-subtle)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-bg-negative-hover:before {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-bg-primary-hover:before {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-disabled:before {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-negative:before {\n background-color: var(--w-s-color-background-negative)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-primary:before {\n background-color: var(--w-s-color-background-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-disabled:before {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-negative:before {\n background-color: var(--w-s-color-background-negative)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-primary:before {\n background-color: var(--w-s-color-background-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-bg-negative-hover:hover:before {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-bg-primary-hover:hover:before {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .\\\\!hover\\\\:s-bg-selected-hover:hover {\n background-color: var(--w-s-color-background-selected-hover) !important\n }\n\n .group:hover .group-hover\\\\:s-bg-primary-hover {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .hover\\\\:before\\\\:s-bg-hover:hover:before {\n background-color: var(--w-s-color-background-hover)\n }\n\n .hover\\\\:before\\\\:s-bg-negative-subtle-hover:hover:before {\n background-color: var(--w-s-color-background-negative-subtle-hover)\n }\n\n .hover\\\\:s-bg-hover:hover {\n background-color: var(--w-s-color-background-hover)\n }\n\n .hover\\\\:s-bg-negative-hover:hover {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .hover\\\\:s-bg-negative-subtle-hover:hover {\n background-color: var(--w-s-color-background-negative-subtle-hover)\n }\n\n .hover\\\\:s-bg-primary-hover:hover {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .hover\\\\:s-bg-selected-hover:hover {\n background-color: var(--w-s-color-background-selected-hover)\n }\n\n .peer:hover:not(:checked) ~ .peer-hover\\\\:peer-not-checked\\\\:s-bg-hover {\n background-color: var(--w-s-color-background-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-bg-hover:before {\n background-color: var(--w-s-color-background-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-bg-negative-subtle:before {\n background-color: var(--w-s-color-background-negative-subtle)\n }\n\n .focus\\\\:s-bg-primary-hover:focus {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .\\\\!active\\\\:s-bg-selected-active:active {\n background-color: var(--w-s-color-background-selected-active) !important\n }\n\n .active\\\\:s-bg-active:active {\n background-color: var(--w-s-color-background-active)\n }\n\n .active\\\\:s-bg-negative-active:active {\n background-color: var(--w-s-color-background-negative-active)\n }\n\n .active\\\\:s-bg-negative-subtle-active:active {\n background-color: var(--w-s-color-background-negative-subtle-active)\n }\n\n .active\\\\:s-bg-primary-active:active {\n background-color: var(--w-s-color-background-primary-active)\n }\n\n .active\\\\:s-bg-selected-active:active {\n background-color: var(--w-s-color-background-selected-active)\n }\n\n .before\\\\:s-bg-disabled-subtle:before {\n background-color: var(--w-s-color-background-disabled-subtle)\n }\n\n .before\\\\:s-bg:before {\n background-color: var(--w-s-color-background)\n }\n\n .s-text {\n color: var(--w-s-color-text)\n }\n\n .s-text-disabled {\n color: var(--w-s-color-text-disabled)\n }\n\n .s-text-inverted, .peer:checked ~ .peer-checked\\\\:s-text-inverted {\n color: var(--w-s-color-text-inverted)\n }\n\n .s-text-inverted-static {\n color: var(--w-s-color-text-inverted-static)\n }\n\n .s-text-link {\n color: var(--w-s-color-text-link)\n }\n\n .s-text-negative {\n color: var(--w-s-color-text-negative)\n }\n\n .s-text-subtle {\n color: var(--w-s-color-text-subtle)\n }\n\n .hover\\\\:s-text-link:hover {\n color: var(--w-s-color-text-link)\n }\n\n .active\\\\:s-text:active {\n color: var(--w-s-color-text)\n }\n\n .placeholder\\\\:s-text-placeholder::placeholder {\n color: var(--w-s-color-text-placeholder)\n }\n\n .s-icon {\n color: var(--w-s-color-icon)\n }\n\n .s-icon-info {\n color: var(--w-s-color-icon-info)\n }\n\n .s-icon-inverted {\n color: var(--w-s-color-icon-inverted)\n }\n\n .s-icon-negative {\n color: var(--w-s-color-icon-negative)\n }\n\n .s-icon-positive {\n color: var(--w-s-color-icon-positive)\n }\n\n .s-icon-warning {\n color: var(--w-s-color-icon-warning)\n }\n\n .hover\\\\:s-icon-hover:hover {\n color: var(--w-s-color-icon-hover)\n }\n\n .active\\\\:s-icon-active:active {\n color: var(--w-s-color-icon-active)\n }\n\n .before\\\\:s-icon-inverted:before {\n color: var(--w-s-color-icon-inverted)\n }\n\n .s-border {\n border-color: var(--w-s-color-border)\n }\n\n .s-border-disabled {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .s-border-info-subtle {\n border-color: var(--w-s-color-border-info-subtle)\n }\n\n .s-border-l-info {\n border-left-color: var(--w-s-color-border-info)\n }\n\n .s-border-l-negative {\n border-left-color: var(--w-s-color-border-negative)\n }\n\n .s-border-l-positive {\n border-left-color: var(--w-s-color-border-positive)\n }\n\n .s-border-l-warning {\n border-left-color: var(--w-s-color-border-warning)\n }\n\n .s-border-negative {\n border-color: var(--w-s-color-border-negative)\n }\n\n .s-border-negative-subtle {\n border-color: var(--w-s-color-border-negative-subtle)\n }\n\n .s-border-positive-subtle {\n border-color: var(--w-s-color-border-positive-subtle)\n }\n\n .s-border-primary, .peer:checked ~ .peer-checked\\\\:s-border-primary {\n border-color: var(--w-s-color-border-primary)\n }\n\n .s-border-selected {\n border-color: var(--w-s-color-border-selected)\n }\n\n .s-border-warning-subtle {\n border-color: var(--w-s-color-border-warning-subtle)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-negative-hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-primary-hover:before {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-selected-hover:before {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-selected:before {\n border-color: var(--w-s-color-border-selected)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-border-negative-hover:hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-border-primary-hover:hover:before {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .group:hover .group-hover\\\\:s-border-selected-hover {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .hover\\\\:before\\\\:s-border-negative-hover:hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .hover\\\\:before\\\\:s-border-primary:hover:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .hover\\\\:s-border-disabled:hover {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .hover\\\\:s-border-hover:hover {\n border-color: var(--w-s-color-border-hover)\n }\n\n .hover\\\\:s-border-negative-hover:hover {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .hover\\\\:s-border-primary-hover:hover {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .hover\\\\:s-border-primary:hover {\n border-color: var(--w-s-color-border-primary)\n }\n\n .hover\\\\:s-border-selected-hover:hover {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-border-negative-hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .focus\\\\:s-border-primary-hover:focus {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .active\\\\:s-border-active:active {\n border-color: var(--w-s-color-border-active)\n }\n\n .active\\\\:s-border-disabled:active {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .active\\\\:s-border-primary-active:active {\n border-color: var(--w-s-color-border-primary-active)\n }\n\n .active\\\\:s-border-selected-active:active {\n border-color: var(--w-s-color-border-selected-active)\n }\n\n .active\\\\:s-border-selected:active {\n border-color: var(--w-s-color-border-selected)\n }\n\n .group:active .group-active\\\\:s-border-active {\n border-color: var(--w-s-color-border-active)\n }\n\n .group:active .group-active\\\\:s-border-selected-active {\n border-color: var(--w-s-color-border-selected-active)\n }\n\n .before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .s-surface-sunken {\n background-color: var(--w-s-color-surface-sunken)\n }\n\n .s-surface-elevated-200 {\n background-color: var(--w-s-color-surface-elevated-200);\n box-shadow: var(--w-s-shadow-surface-elevated-200)\n }\n\n .hover\\\\:s-surface-elevated-200-hover:hover {\n background-color: var(--w-s-color-surface-elevated-200-hover);\n box-shadow: var(--w-s-shadow-surface-elevated-200-hover)\n }\n\n .active\\\\:s-surface-elevated-200-active:active {\n background-color: var(--w-s-color-surface-elevated-200-active);\n box-shadow: var(--w-s-shadow-surface-elevated-200-active)\n }\n\n .drop-shadow-m {\n filter: drop-shadow(rgba(64, 64, 64, .24) 0 3px 8px) drop-shadow(rgba(64, 64, 64, .16) 0 3px 6px)\n }\n\n .shadow-m {\n box-shadow: var(--w-shadow-m)\n }\n\n .shadow-s {\n box-shadow: var(--w-shadow-s)\n }\n\n .shadow-\\\\[--w-shadow-slider\\\\] {\n box-shadow: var(--w-shadow-slider)\n }\n\n .hover\\\\:shadow-\\\\[--w-shadow-slider-handle-hover\\\\]:hover {\n box-shadow: var(--w-shadow-slider-handle-hover)\n }\n\n .focus\\\\:shadow-\\\\[--w-shadow-slider-handle-hover\\\\]:focus {\n box-shadow: var(--w-shadow-slider-handle-hover)\n }\n\n .active\\\\:shadow-\\\\[--w-shadow-slider-handle-active\\\\]:active {\n box-shadow: var(--w-shadow-slider-handle-active)\n }\n\n .h-0 {\n height: 0rem\n }\n\n .h-16 {\n height: 1.6rem\n }\n\n .h-2 {\n height: .2rem\n }\n\n .h-20 {\n height: 2rem\n }\n\n .h-24 {\n height: 2.4rem\n }\n\n .h-4 {\n height: .4rem\n }\n\n .h-44 {\n height: 4.4rem\n }\n\n .h-6 {\n height: .6rem\n }\n\n .h-8 {\n height: .8rem\n }\n\n .h-full {\n height: 100%\n }\n\n .h-unset {\n height: unset\n }\n\n .max-h-unset {\n max-height: unset\n }\n\n .max-w-full {\n max-width: 100%\n }\n\n .max-w-max {\n max-width: max-content\n }\n\n .max-w-unset {\n max-width: unset\n }\n\n .min-h-32 {\n min-height: 3.2rem\n }\n\n .min-h-40 {\n min-height: 4rem\n }\n\n .min-w-16 {\n min-width: 1.6rem\n }\n\n .min-w-32 {\n min-width: 3.2rem\n }\n\n .w-16 {\n width: 1.6rem\n }\n\n .w-2 {\n width: .2rem\n }\n\n .w-20 {\n width: 2rem\n }\n\n .w-24 {\n width: 2.4rem\n }\n\n .w-32 {\n width: 3.2rem\n }\n\n .w-40 {\n width: 4rem\n }\n\n .w-44 {\n width: 4.4rem\n }\n\n .w-8 {\n width: .8rem\n }\n\n .w-full {\n width: 100%\n }\n\n .w-max {\n width: max-content\n }\n\n .w-unset {\n width: unset\n }\n\n .before\\\\:h-20:before {\n height: 2rem\n }\n\n .before\\\\:h-full:before {\n height: 100%\n }\n\n .before\\\\:w-20:before {\n width: 2rem\n }\n\n .before\\\\:w-32:before {\n width: 3.2rem\n }\n\n .h-\\\\[--w-modal-height\\\\] {\n height: var(--w-modal-height)\n }\n\n .h-\\\\[14px\\\\] {\n height: 14px\n }\n\n .h-\\\\[16px\\\\] {\n height: 16px\n }\n\n .max-h-\\\\[--w-modal-max-height\\\\] {\n max-height: var(--w-modal-max-height)\n }\n\n .min-h-\\\\[--w-modal-min-height\\\\] {\n min-height: var(--w-modal-min-height)\n }\n\n .min-h-\\\\[32px\\\\] {\n min-height: 32px\n }\n\n .min-h-\\\\[40px\\\\] {\n min-height: 40px\n }\n\n .min-h-\\\\[42\\\\] {\n min-height: 4.2rem\n }\n\n .min-h-\\\\[44px\\\\] {\n min-height: 44px\n }\n\n .min-w-\\\\[32px\\\\] {\n min-width: 32px\n }\n\n .min-w-\\\\[40px\\\\] {\n min-width: 40px\n }\n\n .min-w-\\\\[44px\\\\] {\n min-width: 44px\n }\n\n .w-\\\\[--w-modal-width\\\\] {\n width: var(--w-modal-width)\n }\n\n .w-\\\\[14px\\\\] {\n width: 14px\n }\n\n .w-\\\\[16px\\\\] {\n width: 16px\n }\n\n .space-x-8 > :not([hidden]) ~ :not([hidden]) {\n --w-space-x-reverse: 0;\n margin-left: calc(.8rem * calc(1 - var(--w-space-x-reverse)));\n margin-right: calc(.8rem * var(--w-space-x-reverse))\n }\n\n .space-y-16 > :not([hidden]) ~ :not([hidden]) {\n --w-space-y-reverse: 0;\n margin-top: calc(1.6rem * calc(1 - var(--w-space-y-reverse)));\n margin-bottom: calc(1.6rem * var(--w-space-y-reverse))\n }\n\n .m-0 {\n margin: 0rem\n }\n\n .m-auto {\n margin: auto\n }\n\n .-mx-16 {\n margin-left: -1.6rem;\n margin-right: -1.6rem\n }\n\n .mx-0 {\n margin-left: 0rem;\n margin-right: 0rem\n }\n\n .mx-8 {\n margin-left: .8rem;\n margin-right: .8rem\n }\n\n .mx-auto {\n margin-left: auto;\n margin-right: auto\n }\n\n .-mb-1 {\n margin-bottom: -.1rem\n }\n\n .-ml-8 {\n margin-left: -.8rem\n }\n\n .-mr-1 {\n margin-right: -.1rem\n }\n\n .-mr-8 {\n margin-right: -.8rem\n }\n\n .-mt-2 {\n margin-top: -.2rem\n }\n\n .-mt-4 {\n margin-top: -.4rem\n }\n\n .last-child\\\\:mb-0 > :last-child, .mb-0 {\n margin-bottom: 0rem\n }\n\n .mb-32 {\n margin-bottom: 3.2rem\n }\n\n .ml-8 {\n margin-left: .8rem\n }\n\n .ml-auto {\n margin-left: auto\n }\n\n .mr-8 {\n margin-right: .8rem\n }\n\n .mt-16 {\n margin-top: 1.6rem\n }\n\n .mt-4 {\n margin-top: .4rem\n }\n\n .group:not(:first-child) .group-not-first\\\\:-ml-2 {\n margin-left: -.2rem\n }\n\n .last\\\\:mb-0:last-child {\n margin-bottom: 0rem\n }\n\n .last\\\\:mr-0:last-child {\n margin-right: 0rem\n }\n\n .m-\\\\[8px\\\\] {\n margin: 8px\n }\n\n .p-0 {\n padding: 0rem\n }\n\n .p-16 {\n padding: 1.6rem\n }\n\n .p-4 {\n padding: .4rem\n }\n\n .p-8 {\n padding: .8rem\n }\n\n .px-0 {\n padding-left: 0rem;\n padding-right: 0rem\n }\n\n .px-1 {\n padding-left: .1rem;\n padding-right: .1rem\n }\n\n .px-12 {\n padding-left: 1.2rem;\n padding-right: 1.2rem\n }\n\n .px-14 {\n padding-left: 1.4rem;\n padding-right: 1.4rem\n }\n\n .px-16 {\n padding-left: 1.6rem;\n padding-right: 1.6rem\n }\n\n .px-8 {\n padding-left: .8rem;\n padding-right: .8rem\n }\n\n .py-0 {\n padding-top: 0rem;\n padding-bottom: 0rem\n }\n\n .py-1 {\n padding-top: .1rem;\n padding-bottom: .1rem\n }\n\n .py-10 {\n padding-top: 1rem;\n padding-bottom: 1rem\n }\n\n .py-12 {\n padding-top: 1.2rem;\n padding-bottom: 1.2rem\n }\n\n .py-2 {\n padding-top: .2rem;\n padding-bottom: .2rem\n }\n\n .py-4 {\n padding-top: .4rem;\n padding-bottom: .4rem\n }\n\n .py-6 {\n padding-top: .6rem;\n padding-bottom: .6rem\n }\n\n .py-8 {\n padding-top: .8rem;\n padding-bottom: .8rem\n }\n\n .pb-0 {\n padding-bottom: 0rem\n }\n\n .pb-32 {\n padding-bottom: 3.2rem\n }\n\n .pb-4 {\n padding-bottom: .4rem\n }\n\n .pb-8 {\n padding-bottom: .8rem\n }\n\n .pl-0 {\n padding-left: 0rem\n }\n\n .pl-1 {\n padding-left: .1rem\n }\n\n .pl-12 {\n padding-left: 1.2rem\n }\n\n .pl-28 {\n padding-left: 2.8rem\n }\n\n .pl-4 {\n padding-left: .4rem\n }\n\n .pl-8 {\n padding-left: .8rem\n }\n\n .pr-12 {\n padding-right: 1.2rem\n }\n\n .pr-14 {\n padding-right: 1.4rem\n }\n\n .pr-2 {\n padding-right: .2rem\n }\n\n .pr-32 {\n padding-right: 3.2rem\n }\n\n .pr-40 {\n padding-right: 4rem\n }\n\n .pt-0 {\n padding-top: 0rem\n }\n\n .pt-1 {\n padding-top: .1rem\n }\n\n .pt-16 {\n padding-top: 1.6rem\n }\n\n .pt-24 {\n padding-top: 2.4rem\n }\n\n .pt-8 {\n padding-top: .8rem\n }\n\n .group\\\\/step:last-child .group-last\\\\/step\\\\:last\\\\:pb-0:last-child {\n padding-bottom: 0rem\n }\n\n .last\\\\:pb-1:last-child {\n padding-bottom: .1rem\n }\n\n .last\\\\:pr-1:last-child {\n padding-right: .1rem\n }\n\n .p-\\\\[8px\\\\] {\n padding: 8px\n }\n\n .px-\\\\[15px\\\\] {\n padding-left: 15px;\n padding-right: 15px\n }\n\n .px-\\\\[8px\\\\] {\n padding-left: 8px;\n padding-right: 8px\n }\n\n .py-\\\\[11px\\\\] {\n padding-top: 11px;\n padding-bottom: 11px\n }\n\n .py-\\\\[5px\\\\] {\n padding-top: 5px;\n padding-bottom: 5px\n }\n\n .py-\\\\[7px\\\\] {\n padding-top: 7px;\n padding-bottom: 7px\n }\n\n .pl-\\\\[var\\\\(--w-prefix-width\\\\,_40px\\\\)\\\\] {\n padding-left: var(--w-prefix-width, 40px)\n }\n\n .invisible {\n visibility: hidden\n }\n\n .backface-hidden {\n backface-visibility: hidden\n }\n\n .break-words {\n overflow-wrap: break-word\n }\n\n .before\\\\:content-\\\\[\\\\\"\u00E2\u20AC\u201C\\\\\"\\\\]:before {\n content: \"\u00E2\u20AC\u201C\"\n }\n\n .before\\\\:content-\\\\[\\\\\"\\\\\"\\\\]:before {\n content: \"\"\n }\n\n .cursor-default {\n cursor: default\n }\n\n .cursor-pointer {\n cursor: pointer\n }\n\n .antialiased {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-smoothing: grayscale\n }\n\n .font-bold {\n font-weight: 700\n }\n\n .before\\\\:font-bold:before {\n font-weight: 700\n }\n\n .font-normal {\n font-weight: 400\n }\n\n .pointer-events-auto {\n pointer-events: auto\n }\n\n .pointer-events-none {\n pointer-events: none\n }\n\n .before\\\\:pointer-events-none:before {\n pointer-events: none\n }\n\n .pb-safe-\\\\[32\\\\] {\n padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px))\n }\n\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0\n }\n\n .touch-pan-y {\n touch-action: pan-y\n }\n\n .select-none {\n -webkit-user-select: none;\n user-select: none\n }\n\n .translate-x-20 {\n --w-translate-x: 2rem;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .translate-z-0 {\n --w-translate-z: 0rem;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .-rotate-180, .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:-rotate-180::part(w-icon-chevron-down-16-part) {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: -180deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:rotate-180::part(w-icon-chevron-up-16-part), .rotate-180 {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: 180deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .rotate-90 {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: 90deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transform::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transform::part(w-icon-chevron-up-16-part), .transform {\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transform-gpu::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transform-gpu::part(w-icon-chevron-up-16-part), .transform-gpu {\n transform: translate3d(var(--w-translate-x), var(--w-translate-y), var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transition-transform::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transition-transform::part(w-icon-chevron-up-16-part), .transition-transform {\n transition-property: transform;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-300 {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .3s\n }\n\n .transition-all {\n transition-property: all;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-colors {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-shadow {\n transition-property: box-shadow;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .before\\\\:transition-all:before {\n transition-property: all;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .duration-300 {\n transition-duration: .3s\n }\n\n .ease-in-out, .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:ease-in-out::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:ease-in-out::part(w-icon-chevron-up-16-part) {\n transition-timing-function: cubic-bezier(.4, 0, .2, 1)\n }\n\n .text-m {\n font-size: var(--w-font-size-m);\n line-height: var(--w-line-height-m)\n }\n\n .text-s {\n font-size: var(--w-font-size-s);\n line-height: var(--w-line-height-s)\n }\n\n .text-xs {\n font-size: var(--w-font-size-xs);\n line-height: var(--w-line-height-xs)\n }\n\n .leading-m {\n line-height: var(--w-line-height-m)\n }\n\n .before\\\\:leading-xs:before {\n line-height: var(--w-line-height-xs)\n }\n\n .leading-\\\\[24\\\\] {\n line-height: 2.4rem\n }\n\n @media (max-width: 479.9px) {\n .lt-sm\\\\:rounded-b-0 {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0\n }\n }\n @media (min-width: 480px) {\n .sm\\\\:border-b-0 {\n border-bottom-width: 0\n }\n\n .sm\\\\:rounded-8 {\n border-radius: 8px\n }\n\n .sm\\\\:rounded-b-8 {\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px\n }\n\n .sm\\\\:gap-16 {\n gap: 1.6rem\n }\n\n .sm\\\\:place-content-center {\n place-content: center\n }\n\n .sm\\\\:place-items-center {\n place-items: center\n }\n\n .sm\\\\:h-24 {\n height: 2.4rem\n }\n\n .sm\\\\:min-h-48 {\n min-height: 4.8rem\n }\n\n .sm\\\\:w-24 {\n width: 2.4rem\n }\n\n .sm\\\\:min-h-\\\\[32px\\\\] {\n min-height: 32px\n }\n\n .sm\\\\:min-h-\\\\[44px\\\\] {\n min-height: 44px\n }\n\n .sm\\\\:min-h-\\\\[45\\\\] {\n min-height: 4.5rem\n }\n\n .sm\\\\:min-w-\\\\[32px\\\\] {\n min-width: 32px\n }\n\n .sm\\\\:min-w-\\\\[44px\\\\] {\n min-width: 44px\n }\n\n .sm\\\\:mx-0 {\n margin-left: 0rem;\n margin-right: 0rem\n }\n\n .sm\\\\:mx-16 {\n margin-left: 1.6rem;\n margin-right: 1.6rem\n }\n\n .sm\\\\:-ml-12 {\n margin-left: -1.2rem\n }\n\n .sm\\\\:-mr-12 {\n margin-right: -1.2rem\n }\n\n .sm\\\\:-mt-8 {\n margin-top: -.8rem\n }\n\n .sm\\\\:px-32 {\n padding-left: 3.2rem;\n padding-right: 3.2rem\n }\n\n .sm\\\\:py-0 {\n padding-top: 0rem;\n padding-bottom: 0rem\n }\n\n .sm\\\\:pb-32 {\n padding-bottom: 3.2rem\n }\n\n .sm\\\\:pt-24 {\n padding-top: 2.4rem\n }\n\n .sm\\\\:pt-32 {\n padding-top: 3.2rem\n }\n }\n @media (min-width: 768px) {\n .md\\\\:block {\n display: block\n }\n\n .md\\\\:hidden {\n display: none\n }\n }\n `);\n", "import { css } from \"lit\";\n\nexport const styles = css`\n\t:host {\n\t\tdisplay: block;\n\n\t\t--_snackbar-item-bg: var(\n\t\t\t--w-c-snackbar-item-bg,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-action-bg-hover: var(\n\t\t\t--w-c-snackbar-item-action-bg-hover,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-action-bg-active: var(\n\t\t\t--w-c-snackbar-item-action-bg-active,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-border-radius: var(--w-c-snackbar-item-radius, 8px);\n\t\t--_snackbar-item-box-shadow: var(\n\t\t\t--w-c-snackbar-item-box-shadow,\n\t\t\tvar(--w-shadow-l)\n\t\t);\n\t\t--_snackbar-item-color: var(\n\t\t\t--w-c-snackbar-item-color,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-action-color-hover: var(\n\t\t\t--w-c-snackbar-item-action-color-hover,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-action-color-active: var(\n\t\t\t--w-c-snackbar-item-action-color-active,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-max-width: var(--w-c-snackbar-item-max-width, 480px);\n\t\t--_snackbar-item-min-width: var(--w-c-snackbar-item-min-width, 328px);\n\t\t--_snackbar-item-padding: var(--w-c-snackbar-item-padding, 8px);\n\t}\n\n\t/* Using a padding-less div as target so we get animation to and from zero height */\n\t.animation-wrapper {\n\t\tborder-radius: var(\n\t\t\t--_snackbar-item-border-radius\n\t\t); /* Avoid sharp bottom corners during the transitino */\n\t}\n\n\t[part=\"item\"] {\n\t\tbackground-color: var(--_snackbar-item-bg);\n\t\tborder-radius: var(--_snackbar-item-border-radius);\n\t\tbox-shadow: var(--_snackbar-item-box-shadow);\n\t\tcolor: var(--_snackbar-item-color);\n\t\tmax-width: var(--_snackbar-item-max-width);\n\t\tmin-width: var(--_snackbar-item-min-width);\n\t\tpadding: var(--_snackbar-item-padding);\n\n\t\tdisplay: grid;\n\t\tcolumn-gap: 8px;\n\t\tgrid-template:\n\t\t\t\"icon message inline-action\"\n\t\t\t\"block-action block-action block-action\";\n\t\tgrid-template-columns: auto 1fr auto;\n\t\talign-items: center;\n\t}\n\n\t[part=\"item\"] w-button,\n\t[part=\"item\"] ::slotted(w-button) {\n\t\t--w-c-button-bg: var(--_snackbar-item-bg);\n\t\t--w-c-button-bg-active: var(--_snackbar-item-action-bg-active);\n\t\t--w-c-button-bg-hover: var(--_snackbar-item-action-bg-hover);\n\t\t--w-c-button-color: var(--_snackbar-item-color);\n\t\t--w-c-button-color-active: var(--_snackbar-item-action-color-active);\n\t\t--w-c-button-color-hover: var(--_snackbar-item-action-color-hover);\n\t}\n\n\t[part=\"icon\"] {\n\t\tgrid-area: icon;\n\n\t\tcolor: var(--_snackbar-item-color);\n\t\tpadding-block: 4px;\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon) {\n\t\tdisplay: block; /* override default inline-block to avoid line-height */\n\t\tmargin-inline-start: 4px;\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"SuccessFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-positive);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"WarningFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-warning);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"ErrorFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-negative);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"InfoFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-info);\n\t}\n\n\t[part=\"message\"] {\n\t\tgrid-area: message;\n\n\t\talign-self: center;\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t\tpadding-block: 7px;\n\t}\n\n\t[part=\"action\"] {\n\t\tgrid-area: inline-action;\n\n\t\tdisplay: flex;\n\t\tcolumn-gap: 2px; /* to allow space for focus outline */\n\t\tjustify-content: flex-end;\n\t\tpadding-inline-start: 8px;\n\t}\n\n\t:host([action-placement=\"block\"]) [part=\"action\"] {\n\t\tgrid-area: block-action;\n\t}\n\n\tw-attention [slot=\"message\"] {\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t}\n\n\tkbd {\n\t\tfont-family: var(--w-font-family);\n\t}\n`;\n", "import { i18n, Messages } from \"@lingui/core\";\n\nexport const supportedLocales = [\"en\", \"nb\", \"fi\", \"da\", \"sv\"] as const;\ntype SupportedLocale = (typeof supportedLocales)[number];\n\nexport const defaultLocale = \"en\";\n\nexport const getSupportedLocale = (usedLocale: string) => {\n\treturn (\n\t\tsupportedLocales.find(\n\t\t\t(locale) =>\n\t\t\t\tusedLocale === locale || usedLocale.toLowerCase().includes(locale),\n\t\t) || defaultLocale\n\t);\n};\n\nexport function detectLocale(): SupportedLocale {\n\tif (typeof window === \"undefined\") {\n\t\t/**\n\t\t * Server locale detection. This requires e.g LANG environment variable to be set on the server.\n\t\t */\n\t\tconst serverLocale =\n\t\t\tprocess.env.NMP_LANGUAGE ||\n\t\t\tIntl.DateTimeFormat().resolvedOptions().locale;\n\t\treturn getSupportedLocale(serverLocale);\n\t}\n\n\ttry {\n\t\t/**\n\t\t * Client locale detection. Expects the lang attribute to be defined.\n\t\t */\n\t\tconst htmlLocale = getDocumentLang(document);\n\t\tif (htmlLocale) {\n\t\t\treturn getSupportedLocale(htmlLocale);\n\t\t}\n\n\t\tconst frameLocale = getFrameElementLang();\n\t\tif (frameLocale) {\n\t\t\treturn getSupportedLocale(frameLocale);\n\t\t}\n\n\t\tconst parentLocale = getDocumentLang(getParentDocument());\n\t\tif (parentLocale) {\n\t\t\treturn getSupportedLocale(parentLocale);\n\t\t}\n\n\t\treturn defaultLocale;\n\t} catch (e) {\n\t\tconsole.warn(\"could not detect locale, falling back to source locale\", e);\n\t\treturn defaultLocale;\n\t}\n}\n\nexport const getMessages = (\n\tlocale: SupportedLocale,\n\tenMsg: Messages,\n\tnbMsg: Messages,\n\tfiMsg: Messages,\n\tdaMsg: Messages,\n\tsvMsg: Messages,\n) => {\n\tif (locale === \"nb\") return nbMsg;\n\tif (locale === \"fi\") return fiMsg;\n\tif (locale === \"da\") return daMsg;\n\tif (locale === \"sv\") return svMsg;\n\t// Default to English\n\treturn enMsg;\n};\n\nexport const activateI18n = (\n\tenMessages: Messages,\n\tnbMessages: Messages,\n\tfiMessages: Messages,\n\tdaMessages: Messages,\n\tsvMessages: Messages,\n) => {\n\t// Load all locales upfront to support dynamic locale switching\n\ti18n.load(\"en\", enMessages);\n\ti18n.load(\"nb\", nbMessages);\n\ti18n.load(\"fi\", fiMessages);\n\ti18n.load(\"da\", daMessages);\n\ti18n.load(\"sv\", svMessages);\n\n\tconst locale = detectLocale();\n\ti18n.activate(locale);\n\tnotifyI18nChange();\n\n\tsetupLangObserver();\n};\n\nexport const I18N_CHANGE_EVENT = \"warp-i18n-change\";\n\nexport function notifyI18nChange() {\n\tif (typeof window === \"undefined\") return;\n\twindow.dispatchEvent(new Event(I18N_CHANGE_EVENT));\n}\n\nlet langObserverInitialized = false;\n\nfunction setupLangObserver() {\n\tif (langObserverInitialized) return;\n\tif (typeof window === \"undefined\") return;\n\tif (!document?.documentElement) return;\n\n\tlangObserverInitialized = true;\n\n\tconst handleLangChange = () => {\n\t\tconst nextLocale = detectLocale();\n\t\tif (i18n.locale !== nextLocale) {\n\t\t\ti18n.activate(nextLocale);\n\t\t\tnotifyI18nChange();\n\t\t}\n\t};\n\n\tconst observer = new MutationObserver((mutations) => {\n\t\tfor (const mutation of mutations) {\n\t\t\tif (mutation.type === \"attributes\" && mutation.attributeName === \"lang\") {\n\t\t\t\thandleLangChange();\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tobserver.observe(document.documentElement, {\n\t\tattributes: true,\n\t\tattributeFilter: [\"lang\"],\n\t});\n\n\tconst parentDocument = getParentDocument();\n\tif (\n\t\tparentDocument &&\n\t\tparentDocument.documentElement &&\n\t\tparentDocument !== document\n\t) {\n\t\tobserver.observe(parentDocument.documentElement, {\n\t\t\tattributes: true,\n\t\t\tattributeFilter: [\"lang\"],\n\t\t});\n\t}\n\n\tconst frameEl = getFrameElement();\n\tif (frameEl) {\n\t\tobserver.observe(frameEl, { attributes: true, attributeFilter: [\"lang\"] });\n\t}\n}\n\nfunction getParentDocument(): Document | null {\n\ttry {\n\t\treturn window.parent?.document ?? null;\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nfunction getDocumentLang(doc: Document | null | undefined): string {\n\ttry {\n\t\treturn doc?.documentElement?.lang ?? \"\";\n\t} catch {\n\t\treturn \"\";\n\t}\n}\n\nfunction getFrameElement(): HTMLElement | null {\n\ttry {\n\t\treturn (window.frameElement as HTMLElement | null) ?? null;\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nfunction getFrameElementLang(): string {\n\ttry {\n\t\treturn window.frameElement?.getAttribute?.(\"lang\") ?? \"\";\n\t} catch {\n\t\treturn \"\";\n\t}\n}\n", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "import { css } from \"lit\";\n\nexport const styles = css`\n\t:host {\n\t\tposition: fixed;\n\t\tpointer-events: none;\n\n\t\t--_snackbar-gap: var(--w-c-snackbar-container-gap, 8px);\n\t\t--_snackbar-position-top: var(--w-c-snackbar-position-top, initial);\n\t\t--_snackbar-position-right: var(--w-c-snackbar-position-right, 0);\n\t\t--_snackbar-position-bottom: var(--w-c-snackbar-position-bottom, 16px);\n\t\t--_snackbar-position-left: var(--w-c-snackbar-position-left, 0);\n\t\t--_snackbar-z-index: var(--w-c-snackbar-z-index, 50);\n\n\t\tbottom: var(--_snackbar-position-bottom);\n\t\tleft: var(--_snackbar-position-left);\n\t\tright: var(--_snackbar-position-right);\n\t\ttop: var(--_snackbar-position-top);\n\n\t\tz-index: var(--_snackbar-z-index);\n\t}\n\n\t[part=\"container\"] {\n\t\tdisplay: grid;\n\t\tgap: var(--_snackbar-gap);\n\t\tgrid-template-rows: auto;\n\t\tjustify-content: center;\n\t\tjustify-items: center;\n\t\tmargin-inline: auto;\n\t\tpointer-events: none;\n\t}\n\n\t::slotted(*) {\n\t\tpointer-events: initial;\n\t}\n`;\n"],
5
- "mappings": "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AA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAqRRG,GAAaF,GAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,SAsnE3B,EC74ET,OAAS,OAAAG,OAAW,MAEb,IAAMC,GAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A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",
4
+ "sourcesContent": ["import { compileMessage } from '@lingui/message-utils/compileMessage';\n\nconst isString = (s) => typeof s === \"string\";\nconst isFunction = (f) => typeof f === \"function\";\n\nconst cache = /* @__PURE__ */ new Map();\nconst defaultLocale = \"en\";\nfunction normalizeLocales(locales) {\n const out = Array.isArray(locales) ? locales : [locales];\n return [...out, defaultLocale];\n}\nfunction date(locales, value, format) {\n const _locales = normalizeLocales(locales);\n if (!format) {\n format = \"default\";\n }\n let o;\n if (typeof format === \"string\") {\n o = {\n day: \"numeric\",\n month: \"short\",\n year: \"numeric\"\n };\n switch (format) {\n case \"full\":\n o.weekday = \"long\";\n case \"long\":\n o.month = \"long\";\n break;\n case \"short\":\n o.month = \"numeric\";\n break;\n }\n } else {\n o = format;\n }\n const formatter = getMemoized(\n () => cacheKey(\"date\", _locales, format),\n () => new Intl.DateTimeFormat(_locales, o)\n );\n return formatter.format(isString(value) ? new Date(value) : value);\n}\nfunction time(locales, value, format) {\n let o;\n if (!format) {\n format = \"default\";\n }\n if (typeof format === \"string\") {\n o = {\n second: \"numeric\",\n minute: \"numeric\",\n hour: \"numeric\"\n };\n switch (format) {\n case \"full\":\n case \"long\":\n o.timeZoneName = \"short\";\n break;\n case \"short\":\n delete o.second;\n }\n } else {\n o = format;\n }\n return date(locales, value, o);\n}\nfunction number(locales, value, format) {\n const _locales = normalizeLocales(locales);\n const formatter = getMemoized(\n () => cacheKey(\"number\", _locales, format),\n () => new Intl.NumberFormat(_locales, format)\n );\n return formatter.format(value);\n}\nfunction plural(locales, ordinal, value, { offset = 0, ...rules }) {\n const _locales = normalizeLocales(locales);\n const plurals = ordinal ? getMemoized(\n () => cacheKey(\"plural-ordinal\", _locales),\n () => new Intl.PluralRules(_locales, { type: \"ordinal\" })\n ) : getMemoized(\n () => cacheKey(\"plural-cardinal\", _locales),\n () => new Intl.PluralRules(_locales, { type: \"cardinal\" })\n );\n return rules[value] ?? rules[plurals.select(value - offset)] ?? rules.other;\n}\nfunction getMemoized(getKey, construct) {\n const key = getKey();\n let formatter = cache.get(key);\n if (!formatter) {\n formatter = construct();\n cache.set(key, formatter);\n }\n return formatter;\n}\nfunction cacheKey(type, locales, options) {\n const localeKey = locales.join(\"-\");\n return `${type}-${localeKey}-${JSON.stringify(options)}`;\n}\n\nconst formats = {\n __proto__: null,\n date: date,\n defaultLocale: defaultLocale,\n number: number,\n plural: plural,\n time: time\n};\n\nconst ESCAPE_SEQUENCE_REGEX = /\\\\u[a-fA-F0-9]{4}|\\\\x[a-fA-F0-9]{2}/;\nconst decodeEscapeSequences = (str) => {\n return str.replace(\n // Same pattern but with capturing groups for extracting values during replacement\n /\\\\u([a-fA-F0-9]{4})|\\\\x([a-fA-F0-9]{2})/g,\n (_, unicode, hex) => {\n if (unicode) {\n const codePoint = parseInt(unicode, 16);\n return String.fromCharCode(codePoint);\n } else {\n const codePoint = parseInt(hex, 16);\n return String.fromCharCode(codePoint);\n }\n }\n );\n};\n\nconst OCTOTHORPE_PH = \"%__lingui_octothorpe__%\";\nconst getDefaultFormats = (locale, passedLocales, formats = {}) => {\n const locales = passedLocales || locale;\n const style = (format) => {\n if (typeof format === \"object\")\n return format;\n return formats[format];\n };\n const replaceOctothorpe = (value, message) => {\n const numberFormat = Object.keys(formats).length ? style(\"number\") : void 0;\n const valueStr = number(locales, value, numberFormat);\n return message.replace(new RegExp(OCTOTHORPE_PH, \"g\"), valueStr);\n };\n return {\n plural: (value, cases) => {\n const { offset = 0 } = cases;\n const message = plural(locales, false, value, cases);\n return replaceOctothorpe(value - offset, message);\n },\n selectordinal: (value, cases) => {\n const { offset = 0 } = cases;\n const message = plural(locales, true, value, cases);\n return replaceOctothorpe(value - offset, message);\n },\n select: selectFormatter,\n number: (value, format) => number(\n locales,\n value,\n style(format) || { style: format }\n ),\n date: (value, format) => date(locales, value, style(format) || format),\n time: (value, format) => time(locales, value, style(format) || format)\n };\n};\nconst selectFormatter = (value, rules) => rules[value] ?? rules.other;\nfunction interpolate(translation, locale, locales) {\n return (values = {}, formats) => {\n const formatters = getDefaultFormats(locale, locales, formats);\n const formatMessage = (tokens, replaceOctothorpe = false) => {\n if (!Array.isArray(tokens))\n return tokens;\n return tokens.reduce((message, token) => {\n if (token === \"#\" && replaceOctothorpe) {\n return message + OCTOTHORPE_PH;\n }\n if (isString(token)) {\n return message + token;\n }\n const [name, type, format] = token;\n let interpolatedFormat = {};\n if (type === \"plural\" || type === \"selectordinal\" || type === \"select\") {\n Object.entries(format).forEach(\n ([key, value2]) => {\n interpolatedFormat[key] = formatMessage(\n value2,\n type === \"plural\" || type === \"selectordinal\"\n );\n }\n );\n } else {\n interpolatedFormat = format;\n }\n let value;\n if (type) {\n const formatter = formatters[type];\n value = formatter(values[name], interpolatedFormat);\n } else {\n value = values[name];\n }\n if (value == null) {\n return message;\n }\n return message + value;\n }, \"\");\n };\n const result = formatMessage(translation);\n if (isString(result) && ESCAPE_SEQUENCE_REGEX.test(result)) {\n return decodeEscapeSequences(result);\n }\n if (isString(result))\n return result;\n return result ? String(result) : \"\";\n };\n}\n\nvar __defProp$1 = Object.defineProperty;\nvar __defNormalProp$1 = (obj, key, value) => key in obj ? __defProp$1(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __publicField$1 = (obj, key, value) => {\n __defNormalProp$1(obj, typeof key !== \"symbol\" ? key + \"\" : key, value);\n return value;\n};\nclass EventEmitter {\n constructor() {\n __publicField$1(this, \"_events\", {});\n }\n on(event, listener) {\n var _a;\n (_a = this._events)[event] ?? (_a[event] = []);\n this._events[event].push(listener);\n return () => this.removeListener(event, listener);\n }\n removeListener(event, listener) {\n const maybeListeners = this._getListeners(event);\n if (!maybeListeners)\n return;\n const index = maybeListeners.indexOf(listener);\n if (~index)\n maybeListeners.splice(index, 1);\n }\n emit(event, ...args) {\n const maybeListeners = this._getListeners(event);\n if (!maybeListeners)\n return;\n maybeListeners.map((listener) => listener.apply(this, args));\n }\n _getListeners(event) {\n const maybeListeners = this._events[event];\n return Array.isArray(maybeListeners) ? maybeListeners : false;\n }\n}\n\nvar __defProp = Object.defineProperty;\nvar __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;\nvar __publicField = (obj, key, value) => {\n __defNormalProp(obj, typeof key !== \"symbol\" ? key + \"\" : key, value);\n return value;\n};\nclass I18n extends EventEmitter {\n constructor(params) {\n super();\n __publicField(this, \"_locale\", \"\");\n __publicField(this, \"_locales\");\n __publicField(this, \"_localeData\", {});\n __publicField(this, \"_messages\", {});\n __publicField(this, \"_missing\");\n __publicField(this, \"_messageCompiler\");\n /**\n * Alias for {@see I18n._}\n */\n __publicField(this, \"t\", this._.bind(this));\n if (process.env.NODE_ENV !== \"production\") {\n this.setMessagesCompiler(compileMessage);\n }\n if (params.missing != null)\n this._missing = params.missing;\n if (params.messages != null)\n this.load(params.messages);\n if (params.localeData != null)\n this.loadLocaleData(params.localeData);\n if (typeof params.locale === \"string\" || params.locales) {\n this.activate(params.locale ?? defaultLocale, params.locales);\n }\n }\n get locale() {\n return this._locale;\n }\n get locales() {\n return this._locales;\n }\n get messages() {\n return this._messages[this._locale] ?? {};\n }\n /**\n * @deprecated this has no effect. Please remove this from the code. Deprecated in v4\n */\n get localeData() {\n return this._localeData[this._locale] ?? {};\n }\n _loadLocaleData(locale, localeData) {\n const maybeLocaleData = this._localeData[locale];\n if (!maybeLocaleData) {\n this._localeData[locale] = localeData;\n } else {\n Object.assign(maybeLocaleData, localeData);\n }\n }\n /**\n * Registers a `MessageCompiler` to enable the use of uncompiled catalogs at runtime.\n *\n * In production builds, the `MessageCompiler` is typically excluded to reduce bundle size.\n * By default, message catalogs should be precompiled during the build process. However,\n * if you need to compile catalogs at runtime, you can use this method to set a message compiler.\n *\n * Example usage:\n *\n * ```ts\n * import { compileMessage } from \"@lingui/message-utils/compileMessage\";\n *\n * i18n.setMessagesCompiler(compileMessage);\n * ```\n */\n setMessagesCompiler(compiler) {\n this._messageCompiler = compiler;\n return this;\n }\n /**\n * @deprecated Plurals automatically used from Intl.PluralRules you can safely remove this call. Deprecated in v4\n */\n loadLocaleData(localeOrAllData, localeData) {\n if (typeof localeOrAllData === \"string\") {\n this._loadLocaleData(localeOrAllData, localeData);\n } else {\n Object.keys(localeOrAllData).forEach(\n (locale) => this._loadLocaleData(locale, localeOrAllData[locale])\n );\n }\n this.emit(\"change\");\n }\n _load(locale, messages) {\n const maybeMessages = this._messages[locale];\n if (!maybeMessages) {\n this._messages[locale] = messages;\n } else {\n Object.assign(maybeMessages, messages);\n }\n }\n load(localeOrMessages, messages) {\n if (typeof localeOrMessages == \"string\" && typeof messages === \"object\") {\n this._load(localeOrMessages, messages);\n } else {\n Object.entries(localeOrMessages).forEach(\n ([locale, messages2]) => this._load(locale, messages2)\n );\n }\n this.emit(\"change\");\n }\n /**\n * @param options {@link LoadAndActivateOptions}\n */\n loadAndActivate({ locale, locales, messages }) {\n this._locale = locale;\n this._locales = locales || void 0;\n this._messages[this._locale] = messages;\n this.emit(\"change\");\n }\n activate(locale, locales) {\n if (process.env.NODE_ENV !== \"production\") {\n if (!this._messages[locale]) {\n console.warn(`Messages for locale \"${locale}\" not loaded.`);\n }\n }\n this._locale = locale;\n this._locales = locales;\n this.emit(\"change\");\n }\n _(id, values, options) {\n if (!this.locale) {\n throw new Error(\n \"Lingui: Attempted to call a translation function without setting a locale.\\nMake sure to call `i18n.activate(locale)` before using Lingui functions.\\nThis issue may also occur due to a race condition in your initialization logic.\"\n );\n }\n let message = options?.message;\n if (!id) {\n id = \"\";\n }\n if (!isString(id)) {\n values = id.values || values;\n message = id.message;\n id = id.id;\n }\n const messageForId = this.messages[id];\n const messageMissing = messageForId === void 0;\n const missing = this._missing;\n if (missing && messageMissing) {\n return isFunction(missing) ? missing(this._locale, id) : missing;\n }\n if (messageMissing) {\n this.emit(\"missing\", { id, locale: this._locale });\n }\n let translation = messageForId || message || id;\n if (isString(translation)) {\n if (this._messageCompiler) {\n translation = this._messageCompiler(translation);\n } else {\n console.warn(`Uncompiled message detected! Message:\n\n> ${translation}\n\nThat means you use raw catalog or your catalog doesn't have a translation for the message and fallback was used.\nICU features such as interpolation and plurals will not work properly for that message. \n\nPlease compile your catalog first. \n`);\n }\n }\n if (isString(translation) && ESCAPE_SEQUENCE_REGEX.test(translation))\n return decodeEscapeSequences(translation);\n if (isString(translation))\n return translation;\n return interpolate(\n translation,\n this._locale,\n this._locales\n )(values, options?.formats);\n }\n date(value, format) {\n return date(this._locales || this._locale, value, format);\n }\n number(value, format) {\n return number(this._locales || this._locale, value, format);\n }\n}\nfunction setupI18n(params = {}) {\n return new I18n(params);\n}\n\nconst i18n = setupI18n();\n\nexport { I18n, formats, i18n, setupI18n };\n", "import { i18n } from \"@lingui/core\";\nimport { html, LitElement } from \"lit\";\n\nimport type { WarpButton } from \"../button/button.js\";\nimport {\n\tSnackbarDuration,\n\ttype WarpSnackbarItem,\n\ttype SnackbarVariant,\n\ttype SnackbarActionPlacement,\n} from \"../snackbar-item/snackbar-item.js\";\nimport { activateI18n } from \"../i18n.js\";\nimport { messages as daMessages } from \"./locales/da/messages.mjs\";\nimport { messages as enMessages } from \"./locales/en/messages.mjs\";\nimport { messages as fiMessages } from \"./locales/fi/messages.mjs\";\nimport { messages as nbMessages } from \"./locales/nb/messages.mjs\";\nimport { messages as svMessages } from \"./locales/sv/messages.mjs\";\n\nimport { reset } from \"../styles.js\";\nimport { styles } from \"./styles.js\";\n\nexport type CreateSnackbarOptions = {\n\t/**\n\t * Show a close button so users can dismiss the message early.\n\t *\n\t * Can not be turned off if duration is Long or more.\n\t *\n\t * Pass a click event handler if you need to react to clicks on the close button somehow.\n\t * You can stop the message from closing by calling `event.preventDefault()`.\n\t *\n\t * @default true\n\t */\n\tcanClose?: boolean | ((this: GlobalEventHandlers, ev: PointerEvent) => void);\n\t/**\n\t * Duration until the message hides automatically.\n\t *\n\t * If the message has an action the default `duration` is `SnackbarDuration.Long`.\n\t *\n\t * @default SnackbarDuration.Short\n\t */\n\tduration?: SnackbarDuration;\n\t/**\n\t * @default 'neutral'\n\t */\n\tvariant?: SnackbarVariant;\n\t/**\n\t * Shows an action before the close button.\n\t *\n\t * Use this action as a convenience only. Ensure the result of any action in the snackbar,\n\t * such as Undo, is possible to achieve elsewhere in your application.\n\t */\n\taction?: {\n\t\t/**\n\t\t * Keep action labels short.\n\t\t *\n\t\t * If the label includes a space the `placement` is set to `block` by default.\n\t\t */\n\t\tlabel: string;\n\t\t/**\n\t\t * The action button's `onclick` property.\n\t\t */\n\t\tonclick: (this: GlobalEventHandlers, ev: PointerEvent) => void;\n\t\t/**\n\t\t * Overrides the default placement of the action button.\n\t\t *\n\t\t * By default labels that are only one word are `inline` and labels with multiple words are `block`.\n\t\t * If you have a particularly long word as a label you can set `placement: 'block'`.\n\t\t */\n\t\tplacement?: SnackbarActionPlacement;\n\t};\n};\n\nconst defaultCreateOptions: CreateSnackbarOptions = {\n\tcanClose: true,\n\tduration: SnackbarDuration.Short,\n\tvariant: \"neutral\",\n};\n\nactivateI18n(enMessages, nbMessages, fiMessages, daMessages, svMessages);\n\nconst spaceRe = /\\s/;\n\n/**\n * A Snackbar shows brief user feedback messages that overlay content, with an optional action such as Undo.\n *\n * Include one `<w-snackbar></w-snackbar>` in the document `<body>`. Use the `create` function to create messages.\n *\n * @example\n *\n * ```html\n * <body>\n * \t<w-snackbar></w-snackbar>\n * </body>\n * ```\n *\n * @example\n *\n * ```ts\n * // Short message indicating an operation succeeded\n * const snackbar = document.querySelector(\"w-snackbar\");\n * const snackbarItem = snackbar.create(\"Settings saved\", { variant: \"success\" });\n * ```\n *\n * @example\n *\n * ```ts\n * // An action to undo what was just done\n * const snackbar = document.querySelector(\"w-snackbar\");\n * const snackbarItem = snackbar.create(\"Settings saved\", {\n * \tvariant: \"success\",\n * \taction: {\n * \t\tlabel: \"Undo\",\n * \t\tonclick: () => {\n * \t\t\t// undoSave();\n * \t\t},\n * \t},\n * });\n * ```\n *\n * @slot default - `w-snackbar-item` gets placed inside the default slot by the `create` function.\n *\n * @csspart container - the live region that positions messages on the screen.\n *\n * @cssprop --w-c-snackbar-container-gap\n * @cssprop --w-c-snackbar-position-bottom\n * @cssprop --w-c-snackbar-position-left\n * @cssprop --w-c-snackbar-position-right\n * @cssprop --w-c-snackbar-position-top\n * @cssprop --w-c-snackbar-z-index\n */\nexport class WarpSnackbar extends LitElement {\n\tprivate internals: ElementInternals;\n\n\tstatic styles = [reset, styles];\n\n\tconstructor() {\n\t\tsuper();\n\t\t/**\n\t\t * Set on internals to avoid hydration mismatches in React\n\t\t * @internal\n\t\t */\n\t\tthis.internals = this.attachInternals();\n\t\t/** @internal */\n\t\tthis.internals.ariaLive = \"polite\";\n\t\t/** @internal */\n\t\tthis.internals.role = \"log\";\n\n\t\tthis._onKeydown = this._onKeydown.bind(this);\n\t}\n\n\tconnectedCallback(): void {\n\t\tsuper.connectedCallback();\n\t\tdocument.addEventListener(\"keydown\", this._onKeydown);\n\t}\n\n\tdisconnectedCallback(): void {\n\t\tsuper.disconnectedCallback();\n\t\tdocument.removeEventListener(\"keydown\", this._onKeydown);\n\t}\n\n\t/** @internal */\n\t_onKeydown(e: KeyboardEvent) {\n\t\tif (e.key === \"Escape\") {\n\t\t\t// Close only the oldest with each keypress.\n\t\t\t// Since we prepend when we create new items\n\t\t\t// the last of type is the oldest.\n\t\t\tconst snackbarItem =\n\t\t\t\tthis.shadowRoot?.host.querySelector<WarpSnackbarItem>(\n\t\t\t\t\t\"w-snackbar-item:last-of-type\",\n\t\t\t\t);\n\t\t\tif (snackbarItem) {\n\t\t\t\tsnackbarItem.close();\n\t\t\t}\n\t\t} else if (e.altKey && e.key === \"Enter\") {\n\t\t\te.preventDefault();\n\t\t\tconst snackbarItem =\n\t\t\t\tthis.shadowRoot?.host.querySelector<WarpSnackbarItem>(\n\t\t\t\t\t\"w-snackbar-item:last-of-type\",\n\t\t\t\t);\n\t\t\tconsole.log(\"Found item!\");\n\t\t\tif (snackbarItem) {\n\t\t\t\tconst snackbarAction = snackbarItem.querySelector<WarpButton>(\n\t\t\t\t\t'w-button[slot=\"action\"]',\n\t\t\t\t);\n\t\t\t\tconsole.log(\"Found action!\");\n\t\t\t\tif (snackbarAction) {\n\t\t\t\t\tsnackbarAction.click();\n\t\t\t\t\tconsole.log(\"Clicked!\");\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Creates a snackbar item and immediately adds it to the snackbar.\n\t *\n\t * By default the snackbar item automatically closes after 4 seconds (`SnackbarDuration.Short`).\n\t *\n\t * If you include an `action` in the options the default `duration` is\n\t * set to 10 seconds (`SnackbarDuration.Long`) and can not be made shorter.\n\t *\n\t * A `duration` of 10 seconds or longer forces the close button to be visible.\n\t *\n\t * The default `variant` is `neutral` which does not have an icon.\n\t *\n\t * Set `duration` to `SnackbarDuration.Infinite` if you want a persistent message.\n\t *\n\t * @returns The instance of `w-snackbar-item` added to the snackbar.\n\t */\n\tcreate(\n\t\tmessage: string,\n\t\toptions: CreateSnackbarOptions = {},\n\t): WarpSnackbarItem {\n\t\tconst mergedOptions = { ...defaultCreateOptions, ...options };\n\n\t\tconst snackbarItem = document.createElement(\"w-snackbar-item\");\n\t\tif (mergedOptions.duration) {\n\t\t\tsnackbarItem.duration = mergedOptions.duration;\n\t\t}\n\n\t\tsnackbarItem.innerText = message;\n\n\t\tif (mergedOptions.variant !== \"neutral\") {\n\t\t\tconst icon = document.createElement(\"w-icon\");\n\t\t\ticon.slot = \"icon\";\n\n\t\t\tswitch (mergedOptions.variant) {\n\t\t\t\tcase \"positive\":\n\t\t\t\t\ticon.name = \"SuccessFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"warning\":\n\t\t\t\t\ticon.name = \"WarningFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"negative\":\n\t\t\t\t\ticon.name = \"ErrorFilled\";\n\t\t\t\t\tbreak;\n\t\t\t\tcase \"info\":\n\t\t\t\t\ticon.name = \"InfoFilled\";\n\t\t\t\t\tbreak;\n\t\t\t}\n\n\t\t\tsnackbarItem.prepend(icon);\n\t\t}\n\n\t\tif (mergedOptions.action) {\n\t\t\t// Force a minimum duration of Long when there's an action.\n\t\t\tif (snackbarItem.duration < SnackbarDuration.Long) {\n\t\t\t\tsnackbarItem.duration = SnackbarDuration.Long;\n\t\t\t}\n\n\t\t\tconst actionButton = document.createElement(\"w-button\");\n\t\t\tactionButton.slot = \"action\";\n\t\t\tactionButton.variant = \"utilityQuiet\";\n\t\t\tactionButton.small = true;\n\n\t\t\tconst { label, onclick, placement } = mergedOptions.action;\n\n\t\t\tactionButton.innerText = label;\n\n\t\t\tconst keyboardShortcut = document.createElement(\"span\");\n\t\t\tkeyboardShortcut.classList.add(\"sr-only\");\n\t\t\tconst modifier = window.navigator.userAgent.includes(\"Macintosh\")\n\t\t\t\t? \"Option\"\n\t\t\t\t: \"Alt\";\n\t\t\tkeyboardShortcut.innerHTML = `<kbd>${modifier}</kbd> + <kbd>Enter</kbd>`;\n\t\t\tactionButton.append(keyboardShortcut);\n\n\t\t\tactionButton.onclick = (e) => {\n\t\t\t\tconst result = onclick.call(actionButton, e);\n\t\t\t\tif (!e.defaultPrevented) {\n\t\t\t\t\tsnackbarItem.close();\n\t\t\t\t}\n\t\t\t\treturn result;\n\t\t\t};\n\n\t\t\tif (placement) {\n\t\t\t\tsnackbarItem.actionPlacement = placement;\n\t\t\t} else {\n\t\t\t\tconst isLongLabel = spaceRe.test(label);\n\t\t\t\tif (isLongLabel) {\n\t\t\t\t\tsnackbarItem.actionPlacement = \"block\";\n\t\t\t\t}\n\t\t\t}\n\n\t\t\tsnackbarItem.append(actionButton);\n\t\t}\n\n\t\t// Force close button visibility if duration is longer than Long (in practice, Infinite)\n\t\tif (snackbarItem.duration > SnackbarDuration.Long) {\n\t\t\tmergedOptions.canClose = true;\n\t\t}\n\n\t\tif (mergedOptions.canClose) {\n\t\t\tconst closeButton = document.createElement(\"w-button\");\n\t\t\tcloseButton.slot = \"close\";\n\t\t\tcloseButton.variant = \"utilityQuiet\";\n\t\t\tcloseButton.small = true;\n\t\t\tcloseButton.iconOnly = true;\n\n\t\t\tif (typeof mergedOptions.canClose === \"function\") {\n\t\t\t\t// Let users add an onclick for example for analytics purposes\n\t\t\t\tcloseButton.onclick = (e) => {\n\t\t\t\t\t(\n\t\t\t\t\t\tmergedOptions.canClose as (\n\t\t\t\t\t\t\tthis: GlobalEventHandlers,\n\t\t\t\t\t\t\tev: PointerEvent,\n\t\t\t\t\t\t) => void\n\t\t\t\t\t).call(closeButton, e);\n\t\t\t\t\tif (!e.defaultPrevented) {\n\t\t\t\t\t\tsnackbarItem.close();\n\t\t\t\t\t}\n\t\t\t\t};\n\t\t\t} else {\n\t\t\t\tcloseButton.onclick = snackbarItem.close.bind(snackbarItem);\n\t\t\t}\n\n\t\t\tconst closeIcon = document.createElement(\"w-icon\");\n\t\t\tcloseIcon.name = \"Close\";\n\t\t\tcloseIcon.size = \"small\";\n\t\t\tcloseIcon.ariaLabel = i18n.t({\n\t\t\t\tid: \"snackbar.aria.close\",\n\t\t\t\tmessage: \"Dismiss message\",\n\t\t\t\tcomment:\n\t\t\t\t\t\"Accessibility label for the button that closes the snackbar/toast popup\",\n\t\t\t});\n\n\t\t\tcloseButton.append(closeIcon);\n\t\t\tsnackbarItem.append(closeButton);\n\t\t}\n\n\t\tthis.shadowRoot?.host.prepend(snackbarItem);\n\n\t\treturn snackbarItem;\n\t}\n\n\trender() {\n\t\treturn html`\n\t\t\t<aside part=\"container\">\n\t\t\t\t<slot></slot>\n\t\t\t</aside>\n\t\t`;\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t\"w-snackbar\": WarpSnackbar;\n\t}\n}\n\nif (!customElements.get(\"w-snackbar\")) {\n\tcustomElements.define(\"w-snackbar\", WarpSnackbar);\n}\n", "import { html, LitElement } from \"lit\";\nimport { property, query, state } from \"lit/decorators.js\";\n\nimport { collapse, expand } from \"../utils/element-collapse.js\";\nimport { reset } from \"../styles.js\";\nimport { styles } from \"./styles.js\";\n\nexport type SnackbarVariant =\n\t| \"positive\"\n\t| \"warning\"\n\t| \"negative\"\n\t| \"info\"\n\t| \"neutral\";\n\nexport type SnackbarActionPlacement = \"inline\" | \"block\";\n\nexport enum SnackbarDuration {\n\tShort = 4_000,\n\tLong = 10_000,\n\tInfinite = 120_000_000,\n}\n\n/**\n * An item to show in a `w-snackbar`.\n *\n * See the `create` function on `w-snackbar` for a convenience API which helps you make snackbar items.\n *\n * @parent w-snackbar\n *\n * @slot default - the snackbar message.\n * @slot icon - icon preceeding the message.\n * @slot action - action following the message.\n *\n * @csspart item - the container wrapping the message, icon and actions.\n * @csspart icon - the icon for the variant.\n * @csspart message - the default slot, body of the snackbar item.\n * @csspart action - close and action button.\n *\n * @cssprop --w-c-snackbar-item-radius\n * @cssprop --w-c-snackbar-item-max-width\n * @cssprop --w-c-snackbar-item-min-width\n * @cssprop --w-c-snackbar-item-padding\n *\n * @cssprop --w-c-snackbar-item-bg\n * @cssprop --w-c-snackbar-item-action-bg-active\n * @cssprop --w-c-snackbar-item-action-bg-hover\n *\n * @cssprop --w-c-snackbar-item-color\n * @cssprop --w-c-snackbar-item-action-color-active\n * @cssprop --w-c-snackbar-item-action-color-hover\n *\n * @cssprop --w-c-snackbar-item-box-shadow\n */\nexport class WarpSnackbarItem extends LitElement {\n\tstatic styles = [reset, styles];\n\n\t/**\n\t * The placement of the action and close buttons.\n\t */\n\t@property({ attribute: \"action-placement\", reflect: true, useDefault: true })\n\tactionPlacement: SnackbarActionPlacement = \"inline\";\n\n\t/**\n\t * How long the message should stay in the document before removing itself.\n\t */\n\t@property({ type: Number, reflect: true, useDefault: true })\n\tduration: number = SnackbarDuration.Short;\n\n\t@query(\".animation-wrapper\")\n\tprivate root!: HTMLDivElement | null;\n\n\t@state()\n\tprivate hasAction = false;\n\n\t#expanded = false;\n\n\t#durationLeft: number = SnackbarDuration.Short;\n\n\t#lastFocused: HTMLElement | null = null;\n\n\t// TODO How to expose the timer in an accessible maner, both visually and to assistive technologies? https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Reference/Roles/timer_role + a progress bar style thing?\n\t#timer: ReturnType<typeof setTimeout> | null = null;\n\n\t#timerPaused = false;\n\n\tconnectedCallback(): void {\n\t\tsuper.connectedCallback();\n\n\t\tif (this.duration !== SnackbarDuration.Infinite) {\n\t\t\tconst updateFrequencyMs = 1000;\n\n\t\t\t// Subtract one updateFrequencyMs, otherwise the full\n\t\t\t// duration would be duration + updateFrequencyMs.\n\t\t\tthis.#durationLeft = this.duration - updateFrequencyMs;\n\n\t\t\tthis.#timer = setInterval(() => {\n\t\t\t\tif (this.#timerPaused) return;\n\n\t\t\t\tthis.#durationLeft -= updateFrequencyMs;\n\n\t\t\t\tif (this.#durationLeft <= 0) {\n\t\t\t\t\tthis.close();\n\t\t\t\t}\n\t\t\t}, updateFrequencyMs);\n\t\t}\n\t}\n\n\tdisconnectedCallback(): void {\n\t\tif (this.#timer) {\n\t\t\tclearInterval(this.#timer);\n\t\t}\n\t}\n\n\tasync updated(): Promise<void> {\n\t\tif (!this.root) return; // should never happen\n\n\t\t// Once widely available, replace with https://developer.chrome.com/docs/css-ui/animate-to-height-auto\n\t\tif (!this.#expanded) {\n\t\t\t// we need to measure including the height of the child\n\t\t\t// components which aren't ready yet and have 0x0 dimensions,\n\t\t\t// wait for the update to finish\n\t\t\tawait this.updateComplete;\n\t\t\texpand(this.root, () => {\n\t\t\t\tthis.#expanded = true;\n\t\t\t});\n\t\t}\n\t}\n\n\t/**\n\t * Remove the snackbar item from the document.\n\t *\n\t * Moves focus to the last focused element outside of the snackbar item, if available.\n\t */\n\tclose(): void {\n\t\tif (this.#lastFocused) {\n\t\t\tthis.#lastFocused.focus();\n\t\t}\n\t\tif (this.#expanded && this.root) {\n\t\t\tcollapse(this.root, () => {\n\t\t\t\tthis.remove();\n\t\t\t});\n\t\t} else {\n\t\t\tthis.remove();\n\t\t}\n\t}\n\n\t/**\n\t * Listen to focusin, not focus, as focus does not bubble.\n\t *\n\t * We're interested in running code when an action button gets focus,\n\t * such as pausing the countdown and storing the last focused element\n\t * outside of the snackbar so we can return there when it closes.\n\t *\n\t * Only save the first instance of `relatedTarget` so we don't overwrite\n\t * it when focus moves from an action button to the close button.\n\t */\n\t#onFocusIn(e: FocusEvent) {\n\t\tif (!this.#lastFocused) {\n\t\t\tthis.#timerPaused = true;\n\t\t\tif (e.relatedTarget && (e.relatedTarget as HTMLElement).focus) {\n\t\t\t\tthis.#lastFocused = e.relatedTarget as HTMLElement;\n\t\t\t}\n\t\t}\n\t}\n\n\t/**\n\t * Listen to focusout, not blur, as blur does not bubble.\n\t *\n\t * Unpause the countdown by clearing this.#lastFocused\n\t * if the focus is moving outside of the snackbar item.\n\t */\n\t#onFocusOut(e: FocusEvent) {\n\t\tconst snackbarItemLostFocus =\n\t\t\t!e.relatedTarget ||\n\t\t\t!this.shadowRoot?.host.contains(e.relatedTarget as HTMLElement);\n\t\tif (snackbarItemLostFocus) {\n\t\t\tthis.#timerPaused = false;\n\t\t\tthis.#lastFocused = null;\n\t\t}\n\t}\n\n\t#onMouseEnter() {\n\t\tthis.#timerPaused = true;\n\t}\n\n\t#onMouseLeave() {\n\t\t// Unpause unless we still have keyboard focus\n\t\tif (!this.#lastFocused) {\n\t\t\tthis.#timerPaused = false;\n\t\t}\n\t}\n\n\t#hasAction() {\n\t\tconst actionSlot = this.shadowRoot?.querySelector<HTMLSlotElement>(\n\t\t\t'slot[name=\"action\"]',\n\t\t);\n\t\tif (!actionSlot) return false;\n\t\tconst assignedElements = actionSlot.assignedElements();\n\t\treturn assignedElements.length > 0;\n\t}\n\n\tprotected firstUpdated() {\n\t\t// The slot must render before we can check its contents, hence the run on firstUpdated\n\t\tthis.hasAction = this.#hasAction();\n\t}\n\n\trender() {\n\t\tif (\n\t\t\tthis.hasAction &&\n\t\t\tdocument.documentElement.dataset.wKeyboardinteraction === \"true\"\n\t\t) {\n\t\t\tconst modifier = window.navigator.userAgent.includes(\"Macintosh\")\n\t\t\t\t? \"\u2325\"\n\t\t\t\t: \"Alt\";\n\t\t\treturn html`\n\t\t\t\t<w-attention tooltip placement=\"top\" distance=\"12\" show>\n\t\t\t\t\t<div class=\"animation-wrapper\" slot=\"target\">\n\t\t\t\t\t\t<div\n\t\t\t\t\t\t\tpart=\"item\"\n\t\t\t\t\t\t\t@mouseenter=${this.#onMouseEnter}\n\t\t\t\t\t\t\t@mouseleave=${this.#onMouseLeave}\n\t\t\t\t\t\t\t@focusin=${this.#onFocusIn}\n\t\t\t\t\t\t\t@focusout=${this.#onFocusOut}\n\t\t\t\t\t\t>\n\t\t\t\t\t\t\t<div part=\"icon\">\n\t\t\t\t\t\t\t\t<slot name=\"icon\"></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div part=\"message\">\n\t\t\t\t\t\t\t\t<slot></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t\t<div part=\"action\">\n\t\t\t\t\t\t\t\t<slot name=\"action\"></slot>\n\t\t\t\t\t\t\t\t<slot name=\"close\"></slot>\n\t\t\t\t\t\t\t</div>\n\t\t\t\t\t\t</div>\n\t\t\t\t\t</div>\n\t\t\t\t\t<!-- The keyboard shortcut is announced as part of the action button label -->\n\t\t\t\t\t<span slot=\"message\" aria-hidden=\"true\">\n\t\t\t\t\t\t<kbd>${modifier}</kbd> + <kbd>Enter</kbd>\n\t\t\t\t\t</span>\n\t\t\t\t</w-attention>\n\t\t\t`;\n\t\t}\n\t\treturn html`\n\t\t\t<div class=\"animation-wrapper\">\n\t\t\t\t<div\n\t\t\t\t\tpart=\"item\"\n\t\t\t\t\t@mouseenter=${this.#onMouseEnter}\n\t\t\t\t\t@mouseleave=${this.#onMouseLeave}\n\t\t\t\t\t@focusin=${this.#onFocusIn}\n\t\t\t\t\t@focusout=${this.#onFocusOut}\n\t\t\t\t>\n\t\t\t\t\t<div part=\"icon\">\n\t\t\t\t\t\t<slot name=\"icon\"></slot>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div part=\"message\">\n\t\t\t\t\t\t<slot></slot>\n\t\t\t\t\t</div>\n\t\t\t\t\t<div part=\"action\">\n\t\t\t\t\t\t<slot name=\"action\"></slot>\n\t\t\t\t\t\t<slot name=\"close\"></slot>\n\t\t\t\t\t</div>\n\t\t\t\t</div>\n\t\t\t</div>\n\t\t`;\n\t}\n}\n\ndeclare global {\n\tinterface HTMLElementTagNameMap {\n\t\t\"w-snackbar-item\": WarpSnackbarItem;\n\t}\n}\n\nif (!customElements.get(\"w-snackbar-item\")) {\n\tcustomElements.define(\"w-snackbar-item\", WarpSnackbarItem);\n}\n", "const windowExists = typeof window !== \"undefined\";\n\nlet prefersMotion = true;\n\nif (windowExists) {\n\tconst query = window.matchMedia(\"(prefers-reduced-motion: reduce)\");\n\tconst callback = ({ matches }) => (prefersMotion = !matches);\n\t// older browsers don't support the new API, and the old API is deprecated\n\tif (query.addEventListener) query.addEventListener(\"change\", callback);\n\tcallback(query);\n}\n\nconst removeTransition = (el) => {\n\tel.style.transition = null;\n\tel.style.backfaceVisibility = null;\n\tel.style.overflow = null;\n};\n\nconst addTransition = (el) => {\n\t// we set timing to something insanely short\n\t// when reducing motion so the after-* hooks still fire\n\tconst timing =\n\t\t\"var(--w-expansion-duration, var(--f-expansion-duration, 0.3s))\";\n\tel.style.transition = `height ${timing}`;\n\tel.style.backfaceVisibility = \"hidden\";\n\tel.style.overflow = \"hidden\";\n};\n\nconst getAfterExpandCallback = (el, done) => () => {\n\tel.style.height = \"auto\";\n\tel.style.overflow = null;\n\tif (done) done();\n};\n\nconst getAfterCollapseCallback = (done) => () => {\n\tif (done) done();\n};\n\n/**\n * Transitions an element from 0 to a detected height\n * Will return a Promise when no 'done' callback is provided\n * @type {(el: HTMLElement, done?: function) => void | Promise<void>}\n */\nexport const expand = (el, done) => {\n\tconst returnPromise = (() => {\n\t\tif (!done)\n\t\t\treturn new Promise((r) => {\n\t\t\t\tdone = r;\n\t\t\t});\n\t})();\n\n\tif (!prefersMotion) {\n\t\tel.style.height = \"auto\";\n\t\tif (done) done();\n\t\treturn returnPromise;\n\t}\n\n\tconst afterExpandCallback = getAfterExpandCallback(el, done);\n\tremoveTransition(el);\n\tel.style.height = \"auto\";\n\tconst dest = el.scrollHeight;\n\tif (windowExists) {\n\t\trequestAnimationFrame(() => {\n\t\t\tel.addEventListener(\"transitionend\", afterExpandCallback, { once: true });\n\t\t\tel.style.height = \"0px\";\n\t\t\tel.style.transitionTimingFunction = \"ease-out\";\n\t\t\taddTransition(el);\n\t\t\trequestAnimationFrame(() => (el.style.height = dest + \"px\"));\n\t\t});\n\t}\n\tif (returnPromise) return returnPromise;\n};\n\n/**\n * Transitions an element from a detected height to 0\n * Will return a Promise when no 'done' callback is provided\n * @type {(el: HTMLElement, done?: function) => void | Promise<void>}\n */\nexport const collapse = (el, done) => {\n\tconst returnPromise = (() => {\n\t\tif (!done)\n\t\t\treturn new Promise((r) => {\n\t\t\t\tdone = r;\n\t\t\t});\n\t})();\n\n\tif (!prefersMotion) {\n\t\tel.style.height = \"0px\";\n\t\tif (done) done();\n\t\treturn returnPromise;\n\t}\n\n\tconst afterCollapseCallback = getAfterCollapseCallback(done);\n\tremoveTransition(el);\n\tconst original = el.scrollHeight;\n\tif (windowExists) {\n\t\trequestAnimationFrame(() => {\n\t\t\tel.addEventListener(\"transitionend\", afterCollapseCallback, {\n\t\t\t\tonce: true,\n\t\t\t});\n\t\t\tel.style.height = original + \"px\";\n\t\t\tel.style.transitionTimingFunction = \"ease-in\";\n\t\t\taddTransition(el);\n\t\t\trequestAnimationFrame(() => (el.style.height = \"0px\"));\n\t\t});\n\t}\n\tif (returnPromise) return returnPromise;\n};\n", "import { css } from \"lit\";\n\nexport const reset = css`\n\t*,\n\t:before,\n\t:after {\n\t\tbox-sizing: border-box;\n\t\tborder-style: solid;\n\t\tborder-width: 0;\n\t\tborder-color: var(--w-s-color-border);\n\t}\n\thtml {\n\t\tfont-size: 62.5%;\n\t}\n\tbody {\n\t\tbackground-color: var(--w-s-color-background);\n\t\tmin-height: 100%;\n\t\tmargin: 0;\n\t\toverflow-y: scroll;\n\t}\n\tbody,\n\t:host {\n\t\t-webkit-text-size-adjust: 100%;\n\t\ttab-size: 4;\n\t\t-webkit-tap-highlight-color: transparent;\n\t\tfont-family: var(--w-font-family);\n\t\tfont-size: var(--w-font-size-m);\n\t\tline-height: var(--w-line-height-m);\n\t\tcolor: var(--w-s-color-text);\n\t}\n\thr {\n\t\tcolor: inherit;\n\t\tborder-top-width: 1px;\n\t\theight: 0;\n\t}\n\tabbr:where([title]) {\n\t\t-webkit-text-decoration: underline dotted;\n\t\ttext-decoration: underline dotted;\n\t}\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6 {\n\t\tfont-size: inherit;\n\t\tfont-weight: 700;\n\t}\n\ta {\n\t\tcursor: pointer;\n\t\tcolor: var(--w-s-color-text-link);\n\t\ttext-decoration: none;\n\t}\n\ta:hover,\n\ta:focus,\n\ta:active {\n\t\ttext-decoration: underline;\n\t}\n\ta:focus-visible {\n\t\toutline: 2px solid var(--w-s-color-border-focus);\n\t\toutline-offset: 1px;\n\t}\n\tb,\n\tstrong {\n\t\tfont-weight: 700;\n\t}\n\tcode,\n\tkbd,\n\tsamp,\n\tpre {\n\t\tfont-family:\n\t\t\tui-monospace,\n\t\t\tSFMono-Regular,\n\t\t\tMenlo,\n\t\t\tMonaco,\n\t\t\tConsolas,\n\t\t\tLiberation Mono,\n\t\t\tCourier New,\n\t\t\tmonospace;\n\t\tfont-size: 1em;\n\t}\n\tsub,\n\tsup {\n\t\tvertical-align: baseline;\n\t\tfont-size: 75%;\n\t\tline-height: 0;\n\t\tposition: relative;\n\t}\n\tsub {\n\t\tbottom: -0.25em;\n\t}\n\tsup {\n\t\ttop: -0.5em;\n\t}\n\ttable {\n\t\ttext-indent: 0;\n\t\tborder-color: inherit;\n\t\tborder-collapse: collapse;\n\t}\n\tbutton,\n\tinput,\n\toptgroup,\n\tselect,\n\ttextarea {\n\t\tfont-family: inherit;\n\t\tfont-size: 100%;\n\t\tfont-weight: inherit;\n\t\tline-height: inherit;\n\t\tcolor: inherit;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tbutton,\n\tselect {\n\t\ttext-transform: none;\n\t}\n\tbutton,\n\t[type=\"button\"],\n\t[type=\"reset\"],\n\t[type=\"submit\"] {\n\t\t-webkit-appearance: button;\n\t}\n\t:-moz-focusring {\n\t\toutline: auto;\n\t}\n\t:-moz-ui-invalid {\n\t\tbox-shadow: none;\n\t}\n\tprogress {\n\t\tvertical-align: baseline;\n\t}\n\t::-webkit-inner-spin-button {\n\t\theight: auto;\n\t}\n\t::-webkit-outer-spin-button {\n\t\theight: auto;\n\t}\n\t[type=\"search\"] {\n\t\t-webkit-appearance: textfield;\n\t\toutline-offset: -2px;\n\t}\n\t::-webkit-search-decoration {\n\t\t-webkit-appearance: none;\n\t}\n\t::-webkit-file-upload-button {\n\t\t-webkit-appearance: button;\n\t\tfont: inherit;\n\t}\n\tsummary {\n\t\tdisplay: list-item;\n\t}\n\tblockquote,\n\tdl,\n\tdd,\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\th6,\n\thr,\n\tfigure,\n\tp,\n\tpre {\n\t\tmargin: 0;\n\t}\n\tfieldset {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t}\n\tlegend {\n\t\tpadding: 0;\n\t}\n\tol,\n\tul,\n\tmenu {\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tlist-style: none;\n\t}\n\ttextarea {\n\t\tresize: vertical;\n\t}\n\tinput::placeholder,\n\ttextarea::placeholder {\n\t\topacity: 1;\n\t\tcolor: var(--w-s-color-text-placeholder);\n\t}\n\tbutton,\n\t[role=\"button\"] {\n\t\tcursor: pointer;\n\t}\n\t:disabled {\n\t\tcursor: default;\n\t}\n\timg,\n\tsvg,\n\tvideo,\n\tcanvas,\n\taudio,\n\tiframe,\n\tembed,\n\tobject {\n\t\tvertical-align: middle;\n\t\tdisplay: block;\n\t}\n\timg,\n\tvideo {\n\t\tmax-width: 100%;\n\t\theight: auto;\n\t}\n\th1 {\n\t\tfont-size: var(--w-font-size-xxl);\n\t\tline-height: var(--w-line-height-xxl);\n\t}\n\th2 {\n\t\tfont-size: var(--w-font-size-xl);\n\t\tline-height: var(--w-line-height-xl);\n\t}\n\th3 {\n\t\tfont-size: var(--w-font-size-l);\n\t\tline-height: var(--w-line-height-l);\n\t}\n\th4 {\n\t\tfont-size: var(--w-font-size-m);\n\t\tline-height: var(--w-line-height-m);\n\t}\n\th5 {\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t}\n\tdt,\n\tdd {\n\t\tmargin: 0 16px;\n\t}\n\th1,\n\th2,\n\th3,\n\th4,\n\th5,\n\tul,\n\tol,\n\tdl,\n\tp,\n\tblockquote {\n\t\tmargin: 0 0 8px;\n\t}\n\t[hidden] {\n\t\tdisplay: none !important;\n\t}\n\t[tabindex=\"-1\"]:focus:not(:focus-visible) {\n\t\toutline: none;\n\t}\n\tlegend {\n\t\tfloat: left;\n\t\twidth: 100%;\n\t\tmargin: 0;\n\t\tpadding: 0;\n\t\tdisplay: table;\n\t}\n\tlegend + * {\n\t\tclear: both;\n\t}\n\tfieldset {\n\t\tborder: 0;\n\t\tmin-width: 0;\n\t\tmargin: 0;\n\t\tpadding: 0.01em 0 0;\n\t}\n\tbody:not(:-moz-handler-blocked) fieldset {\n\t\tdisplay: table-cell;\n\t}\n\tsvg {\n\t\tpointer-events: none;\n\t}\n`;\nimport { unsafeCSS } from \"lit\";\n\n// prettier-ignore\nexport const components = unsafeCSS(`*, :before, :after {\n --w-rotate: 0;\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-scale-x: 1;\n --w-scale-y: 1;\n --w-scale-z: 1;\n --w-skew-x: 0;\n --w-skew-y: 0;\n --w-translate-x: 0;\n --w-translate-y: 0;\n --w-translate-z: 0\n }\n\n .h4, .t4 {\n font-weight: 700;\n font-size: var(--w-font-size-m);\n line-height: var(--w-line-height-m)\n }\n\n .t3 {\n font-weight: 700;\n font-size: var(--w-font-size-l);\n line-height: var(--w-line-height-l)\n }\n\n @media (min-width: 480px) {\n .sm\\\\:h3 {\n font-weight: 700;\n font-size: var(--w-font-size-l);\n line-height: var(--w-line-height-l)\n }\n }\n\n .text-center {\n text-align: center\n }\n\n .before\\\\:text-center:before {\n text-align: center\n }\n\n .text-left {\n text-align: left\n }\n\n .text-right {\n text-align: right\n }\n\n .align-middle {\n vertical-align: middle\n }\n\n .animate-inprogress {\n background-image: linear-gradient(135deg, rgba(0, 0, 0, .05) 25%, transparent 0, transparent 50%, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, .05) 75%, transparent 0, transparent) !important;\n background-size: 30px 30px;\n animation: animate-inprogress 3s linear infinite\n }\n\n @keyframes animate-inprogress {\n 0% {\n background-position: 0 0\n }\n to {\n background-position: 60px 0\n }\n }\n\n .\\\\[--w-modal-max-height\\\\:80\\\\%\\\\] {\n --w-modal-max-height: 80%\n }\n\n .\\\\[--w-modal-width\\\\:640px\\\\] {\n --w-modal-width: 640px\n }\n\n .focus\\\\:\\\\[--w-outline-offset\\\\:-2px\\\\]:focus {\n --w-outline-offset: -2px\n }\n\n .backdrop-blur {\n -webkit-backdrop-filter: blur(4px);\n backdrop-filter: blur(4px)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:bg-center:before {\n background-position: center\n }\n\n .hover\\\\:bg-clip-padding:hover {\n -webkit-background-clip: padding-box;\n background-clip: padding-box\n }\n\n .bg-transparent, .group\\\\/steph:first-child .group-first\\\\/steph\\\\:bg-transparent, .group\\\\/steph:last-child .group-last\\\\/steph\\\\:bg-transparent {\n background-color: transparent\n }\n\n .bg-\\\\[--w-black\\\\/25\\\\] {\n background-color: rgba(var(--w-rgb-black), .25)\n }\n\n .bg-\\\\[--w-black\\\\/70\\\\], .bg-\\\\[var\\\\(--w-black\\\\)\\\\/70\\\\] {\n background-color: rgba(var(--w-rgb-black), .7)\n }\n\n .bg-\\\\[--w-color-badge-info-background\\\\] {\n background-color: var(--w-color-badge-info-background)\n }\n\n .bg-\\\\[--w-color-badge-negative-background\\\\] {\n background-color: var(--w-color-badge-negative-background)\n }\n\n .bg-\\\\[--w-color-badge-neutral-background\\\\] {\n background-color: var(--w-color-badge-neutral-background)\n }\n\n .bg-\\\\[--w-color-badge-positive-background\\\\] {\n background-color: var(--w-color-badge-positive-background)\n }\n\n .bg-\\\\[--w-color-badge-sponsored-background\\\\] {\n background-color: var(--w-color-badge-sponsored-background)\n }\n\n .bg-\\\\[--w-color-badge-warning-background\\\\] {\n background-color: var(--w-color-badge-warning-background)\n }\n\n .bg-\\\\[--w-color-button-primary-background\\\\] {\n background-color: var(--w-color-button-primary-background)\n }\n\n .bg-\\\\[--w-color-buttongroup-utility-background-selected\\\\] {\n background-color: var(--w-color-buttongroup-utility-background-selected)\n }\n\n .bg-\\\\[--w-color-callout-background\\\\] {\n background-color: var(--w-color-callout-background)\n }\n\n .bg-\\\\[--w-color-pill-suggestion-background\\\\] {\n background-color: var(--w-color-pill-suggestion-background)\n }\n\n .bg-\\\\[--w-color-switch-track-background\\\\] {\n background-color: var(--w-color-switch-track-background)\n }\n\n .bg-\\\\[--w-s-color-surface-elevated-100\\\\] {\n background-color: var(--w-s-color-surface-elevated-100)\n }\n\n .bg-\\\\[--w-s-color-surface-elevated-300\\\\] {\n background-color: var(--w-s-color-surface-elevated-300)\n }\n\n .bg-\\\\[--w-s-icon-selected\\\\] {\n background-color: var(--w-s-icon-selected)\n }\n\n .group:hover .group-hover\\\\:bg-\\\\[--w-color-switch-track-background-hover\\\\] {\n background-color: var(--w-color-switch-track-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-button-pill-background-hover\\\\]:hover {\n background-color: var(--w-color-button-pill-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-button-primary-background-hover\\\\]:hover {\n background-color: var(--w-color-button-primary-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-buttongroup-utility-background-hover\\\\]:hover {\n background-color: var(--w-color-buttongroup-utility-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-color-pill-suggestion-background-hover\\\\]:hover {\n background-color: var(--w-color-pill-suggestion-background-hover)\n }\n\n .hover\\\\:bg-\\\\[--w-s-icon-subtle\\\\]:hover {\n background-color: var(--w-s-icon-subtle)\n }\n\n .hover\\\\:bg-\\\\[var\\\\(--w-black\\\\)\\\\/85\\\\]:hover {\n background-color: rgba(var(--w-rgb-black), .85)\n }\n\n .active\\\\:bg-\\\\[--w-color-button-pill-background-active\\\\]:active {\n background-color: var(--w-color-button-pill-background-active)\n }\n\n .active\\\\:bg-\\\\[--w-color-button-primary-background-active\\\\]:active {\n background-color: var(--w-color-button-primary-background-active)\n }\n\n .active\\\\:bg-\\\\[--w-color-buttongroup-utility-background-selected\\\\]:active {\n background-color: var(--w-color-buttongroup-utility-background-selected)\n }\n\n .active\\\\:bg-\\\\[--w-color-pill-suggestion-background-active\\\\]:active {\n background-color: var(--w-color-pill-suggestion-background-active)\n }\n\n .active\\\\:bg-\\\\[var\\\\(--w-black\\\\)\\\\]:active {\n background-color: var(--w-black)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:bg-\\\\[url\\\\(var\\\\(--w-icon-toggle-checked\\\\)\\\\)\\\\]:before {\n background-image: var(--w-icon-toggle-checked)\n }\n\n .appearance-none {\n -moz-appearance: none;\n appearance: none;\n -webkit-appearance: none\n }\n\n .will-change-height {\n will-change: height\n }\n\n .border, .border-1 {\n border-width: 1px\n }\n\n .border-b {\n border-bottom-width: 1px\n }\n\n .before\\\\:border:before {\n border-width: 1px\n }\n\n .border-0 {\n border-width: 0\n }\n\n .border-2 {\n border-width: 2px\n }\n\n .border-b-0 {\n border-bottom-width: 0\n }\n\n .border-b-4 {\n border-bottom-width: 4px\n }\n\n .border-l-4 {\n border-left-width: 4px\n }\n\n .border-r-0, .group:not(:last-of-type) .group-not-last-of-type\\\\:border-r-0 {\n border-right-width: 0\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:border-\\\\[6\\\\]:before {\n border-width: .6rem\n }\n\n .border-transparent {\n border-color: transparent\n }\n\n .border-\\\\[--w-color-buttongroup-utility-border\\\\] {\n border-color: var(--w-color-buttongroup-utility-border)\n }\n\n .border-\\\\[--w-color-callout-border\\\\] {\n border-color: var(--w-color-callout-border)\n }\n\n .border-\\\\[--w-s-color-background-inverted\\\\] {\n border-color: var(--w-s-color-background-inverted)\n }\n\n .border-\\\\[--w-s-color-surface-elevated-300\\\\] {\n border-color: var(--w-s-color-surface-elevated-300)\n }\n\n .active\\\\:border-\\\\[--w-color-buttongroup-utility-border-selected\\\\]:active {\n border-color: var(--w-color-buttongroup-utility-border-selected)\n }\n\n .divide-x > * + * {\n --w-divide-x-reverse: 0;\n border-left-width: calc(1px * calc(1 - var(--w-divide-x-reverse)));\n border-right-width: calc(1px * var(--w-divide-x-reverse))\n }\n\n .divide-y > * + * {\n --w-divide-y-reverse: 0;\n border-top-width: calc(1px * calc(1 - var(--w-divide-y-reverse)));\n border-bottom-width: calc(1px * var(--w-divide-y-reverse))\n }\n\n .rounded-4 {\n border-radius: 4px\n }\n\n .rounded-8 {\n border-radius: 8px\n }\n\n .rounded-full {\n border-radius: 9999px\n }\n\n .before\\\\:rounded-2:before {\n border-radius: 2px\n }\n\n .before\\\\:rounded-full:before {\n border-radius: 9999px\n }\n\n .rounded-b-0 {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0\n }\n\n .rounded-bl-0 {\n border-bottom-left-radius: 0\n }\n\n .rounded-br-0 {\n border-bottom-right-radius: 0\n }\n\n .rounded-l-0 {\n border-top-left-radius: 0;\n border-bottom-left-radius: 0\n }\n\n .rounded-l-full {\n border-top-left-radius: 9999px;\n border-bottom-left-radius: 9999px\n }\n\n .rounded-r-0 {\n border-top-right-radius: 0;\n border-bottom-right-radius: 0\n }\n\n .rounded-r-full {\n border-top-right-radius: 9999px;\n border-bottom-right-radius: 9999px\n }\n\n .rounded-tl-0 {\n border-top-left-radius: 0\n }\n\n .rounded-tl-4 {\n border-top-left-radius: 4px\n }\n\n .rounded-tr-0 {\n border-top-right-radius: 0\n }\n\n .group:first-of-type .group-first-of-type\\\\:rounded-bl-8 {\n border-bottom-left-radius: 8px\n }\n\n .group:first-of-type .group-first-of-type\\\\:rounded-tl-8 {\n border-top-left-radius: 8px\n }\n\n .first\\\\:rounded-lb-4:first-child {\n border-bottom-left-radius: 4px\n }\n\n .first\\\\:rounded-lt-4:first-child {\n border-top-left-radius: 4px\n }\n\n .first\\\\:rounded-rt-4:first-child {\n border-top-right-radius: 4px\n }\n\n .group:last-of-type .group-last-of-type\\\\:rounded-br-8 {\n border-bottom-right-radius: 8px\n }\n\n .group:last-of-type .group-last-of-type\\\\:rounded-tr-8 {\n border-top-right-radius: 8px\n }\n\n .last\\\\:rounded-lb-4:last-child {\n border-bottom-left-radius: 4px\n }\n\n .last\\\\:rounded-rb-4:last-child {\n border-bottom-right-radius: 4px\n }\n\n .last\\\\:rounded-rt-4:last-child {\n border-top-right-radius: 4px\n }\n\n .caret-current {\n caret-color: currentColor\n }\n\n .opacity-25 {\n opacity: 25%\n }\n\n .block {\n display: block\n }\n\n .before\\\\:block:before {\n display: block\n }\n\n .inline-block {\n display: inline-block\n }\n\n .inline {\n display: inline\n }\n\n .flex, .open\\\\:flex[open] {\n display: flex\n }\n\n .inline-flex {\n display: inline-flex\n }\n\n .grid {\n display: grid\n }\n\n .inline-grid {\n display: inline-grid\n }\n\n .hidden, .group\\\\/stepv:last-child .group-last\\\\/stepv\\\\:hidden {\n display: none\n }\n\n .before\\\\:hidden:before {\n display: none\n }\n\n .hover\\\\:underline:hover {\n text-decoration-line: underline\n }\n\n .focus\\\\:underline:focus {\n text-decoration-line: underline\n }\n\n .focus-visible\\\\:underline:focus-visible {\n text-decoration-line: underline\n }\n\n .active\\\\:underline:active {\n text-decoration-line: underline\n }\n\n .hover\\\\:no-underline:hover {\n text-decoration: none\n }\n\n .focus\\\\:no-underline:focus {\n text-decoration: none\n }\n\n .active\\\\:no-underline:active {\n text-decoration: none\n }\n\n .flex-1 {\n flex: 1 1 0%\n }\n\n .shrink {\n flex-shrink: 1\n }\n\n .shrink-0 {\n flex-shrink: 0\n }\n\n .shrink-0\\\\! {\n flex-shrink: 0 !important\n }\n\n .grow, .grow-1 {\n flex-grow: 1\n }\n\n .basis-auto {\n flex-basis: auto\n }\n\n .flex-col {\n flex-direction: column\n }\n\n .focus-within\\\\:focusable:focus-within {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .focusable:focus, .focusable:focus-visible {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .focusable:not(:focus-visible) {\n outline: none\n }\n\n .peer:focus ~ .peer-focus\\\\:focusable, .peer:focus-visible ~ .peer-focus\\\\:focusable {\n outline: 2px solid var(--w-s-color-border-focus);\n outline-offset: var(--w-outline-offset, 1px)\n }\n\n .peer:not(:focus-visible) ~ .peer-focus\\\\:focusable {\n outline: none\n }\n\n .focusable-inset {\n --w-outline-offset: -3px\n }\n\n .gap-12 {\n gap: 1.2rem\n }\n\n .gap-8 {\n gap: .8rem\n }\n\n .gap-x-16 {\n column-gap: 1.6rem\n }\n\n .gap-y-16 {\n row-gap: 1.6rem\n }\n\n .row-span-2 {\n grid-row: span 2/span 2\n }\n\n .col-span-2 {\n grid-column: span 2/span 2\n }\n\n .col-span-3 {\n grid-column: span 3/span 3\n }\n\n .row-start-1 {\n grid-row-start: 1\n }\n\n .row-start-2 {\n grid-row-start: 2\n }\n\n .col-start-2 {\n grid-column-start: 2\n }\n\n .auto-rows-auto {\n grid-auto-rows: auto\n }\n\n .grid-flow-col {\n grid-auto-flow: column\n }\n\n .grid-rows-\\\\[20px_auto\\\\] {\n grid-template-rows:20px auto\n }\n\n .grid-rows-\\\\[auto_20px\\\\] {\n grid-template-rows:auto 20px\n }\n\n .grid-cols-\\\\[1fr_20px_1fr\\\\] {\n grid-template-columns:1fr 20px 1fr\n }\n\n .grid-cols-\\\\[1fr_20px\\\\] {\n grid-template-columns:1fr 20px\n }\n\n .grid-cols-\\\\[20px_1fr\\\\] {\n grid-template-columns:20px 1fr\n }\n\n .grid-cols-\\\\[auto_1fr_auto\\\\] {\n grid-template-columns:auto 1fr auto\n }\n\n .grid-cols-1 {\n grid-template-columns:repeat(1, minmax(0, 1fr))\n }\n\n .grid-cols-2 {\n grid-template-columns:repeat(2, minmax(0, 1fr))\n }\n\n .grid-cols-3 {\n grid-template-columns:repeat(3, minmax(0, 1fr))\n }\n\n .grid-cols-4 {\n grid-template-columns:repeat(4, minmax(0, 1fr))\n }\n\n .grid-cols-5 {\n grid-template-columns:repeat(5, minmax(0, 1fr))\n }\n\n .grid-cols-6 {\n grid-template-columns:repeat(6, minmax(0, 1fr))\n }\n\n .grid-cols-7 {\n grid-template-columns:repeat(7, minmax(0, 1fr))\n }\n\n .grid-cols-8 {\n grid-template-columns:repeat(8, minmax(0, 1fr))\n }\n\n .grid-cols-9 {\n grid-template-columns:repeat(9, minmax(0, 1fr))\n }\n\n .overflow-hidden {\n overflow: hidden\n }\n\n .overflow-x-hidden {\n overflow-x: hidden\n }\n\n .overflow-y-auto {\n overflow-y: auto\n }\n\n .list-none {\n list-style-type: none\n }\n\n .outline-\\\\[--w-s-color-border-negative\\\\]\\\\! {\n outline-color: var(--w-s-color-border-negative) !important\n }\n\n .outline-none {\n outline: 2px solid transparent;\n outline-offset: 2px\n }\n\n .focus\\\\:outline-none:focus {\n outline: 2px solid transparent;\n outline-offset: 2px\n }\n\n .items-start {\n align-items: flex-start\n }\n\n .items-end {\n align-items: flex-end\n }\n\n .items-center {\n align-items: center\n }\n\n .self-center {\n align-self: center\n }\n\n .inset-0 {\n top: 0rem;\n right: 0rem;\n bottom: 0rem;\n left: 0rem\n }\n\n .-bottom-0 {\n bottom: -0rem\n }\n\n .bottom-0 {\n bottom: 0rem\n }\n\n .bottom-10 {\n bottom: 1rem\n }\n\n .bottom-16 {\n bottom: 1.6rem\n }\n\n .left-0 {\n left: 0rem\n }\n\n .left-4 {\n left: .4rem\n }\n\n .right-0 {\n right: 0rem\n }\n\n .right-8 {\n right: .8rem\n }\n\n .top-\\\\[1\\\\.92rem\\\\] {\n top: 1.92rem\n }\n\n .top-0 {\n top: 0rem\n }\n\n .top-20 {\n top: 2rem\n }\n\n .top-4 {\n top: .4rem\n }\n\n .top-8 {\n top: .8rem\n }\n\n .before\\\\:bottom-0:before {\n bottom: 0rem\n }\n\n .before\\\\:left-0:before {\n left: 0rem\n }\n\n .before\\\\:right-0:before {\n right: 0rem\n }\n\n .before\\\\:top-2:before {\n top: .2rem\n }\n\n .-bottom-\\\\[8px\\\\] {\n bottom: -8px\n }\n\n .-left-\\\\[8px\\\\] {\n left: -8px\n }\n\n .-right-\\\\[8px\\\\] {\n right: -8px\n }\n\n .-top-\\\\[8px\\\\] {\n top: -8px\n }\n\n .top-\\\\[19px\\\\] {\n top: 19px\n }\n\n .top-\\\\[30\\\\%\\\\] {\n top: 30%\n }\n\n .justify-end {\n justify-content: flex-end\n }\n\n .justify-center {\n justify-content: center\n }\n\n .justify-between {\n justify-content: space-between\n }\n\n .justify-items-center {\n justify-items: center\n }\n\n .justify-self-start {\n justify-self: start\n }\n\n .justify-self-end {\n justify-self: end\n }\n\n .justify-self-center {\n justify-self: center\n }\n\n .absolute {\n position: absolute\n }\n\n .fixed {\n position: fixed\n }\n\n .relative {\n position: relative\n }\n\n .open\\\\:fixed[open] {\n position: fixed\n }\n\n .before\\\\:absolute:before {\n position: absolute\n }\n\n .z-10, .peer:checked ~ .peer-checked\\\\:z-10 {\n z-index: 10\n }\n\n .z-30 {\n z-index: 30\n }\n\n .z-50 {\n z-index: 50\n }\n\n .hover\\\\:z-30:hover {\n z-index: 30\n }\n\n .\\\\!s-bg-selected {\n background-color: var(--w-s-color-background-selected) !important\n }\n\n .s-bg {\n background-color: var(--w-s-color-background)\n }\n\n .s-bg-disabled {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .s-bg-disabled-subtle {\n background-color: var(--w-s-color-background-disabled-subtle)\n }\n\n .s-bg-info-subtle {\n background-color: var(--w-s-color-background-info-subtle)\n }\n\n .s-bg-inverted {\n background-color: var(--w-s-color-background-inverted)\n }\n\n .s-bg-negative {\n background-color: var(--w-s-color-background-negative)\n }\n\n .s-bg-negative-subtle {\n background-color: var(--w-s-color-background-negative-subtle)\n }\n\n .s-bg-positive-subtle {\n background-color: var(--w-s-color-background-positive-subtle)\n }\n\n .s-bg-primary, .peer:checked ~ .peer-checked\\\\:s-bg-primary {\n background-color: var(--w-s-color-background-primary)\n }\n\n .s-bg-selected {\n background-color: var(--w-s-color-background-selected)\n }\n\n .s-bg-subtle {\n background-color: var(--w-s-color-background-subtle)\n }\n\n .s-bg-warning-subtle {\n background-color: var(--w-s-color-background-warning-subtle)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-bg-negative-hover:before {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-bg-primary-hover:before {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-disabled:before {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-negative:before {\n background-color: var(--w-s-color-background-negative)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-bg-primary:before {\n background-color: var(--w-s-color-background-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-disabled:before {\n background-color: var(--w-s-color-background-disabled)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-negative:before {\n background-color: var(--w-s-color-background-negative)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-bg-primary:before {\n background-color: var(--w-s-color-background-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-bg-negative-hover:hover:before {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-bg-primary-hover:hover:before {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .\\\\!hover\\\\:s-bg-selected-hover:hover {\n background-color: var(--w-s-color-background-selected-hover) !important\n }\n\n .group:hover .group-hover\\\\:s-bg-primary-hover {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .hover\\\\:before\\\\:s-bg-hover:hover:before {\n background-color: var(--w-s-color-background-hover)\n }\n\n .hover\\\\:before\\\\:s-bg-negative-subtle-hover:hover:before {\n background-color: var(--w-s-color-background-negative-subtle-hover)\n }\n\n .hover\\\\:s-bg-hover:hover {\n background-color: var(--w-s-color-background-hover)\n }\n\n .hover\\\\:s-bg-negative-hover:hover {\n background-color: var(--w-s-color-background-negative-hover)\n }\n\n .hover\\\\:s-bg-negative-subtle-hover:hover {\n background-color: var(--w-s-color-background-negative-subtle-hover)\n }\n\n .hover\\\\:s-bg-primary-hover:hover {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .hover\\\\:s-bg-selected-hover:hover {\n background-color: var(--w-s-color-background-selected-hover)\n }\n\n .peer:hover:not(:checked) ~ .peer-hover\\\\:peer-not-checked\\\\:s-bg-hover {\n background-color: var(--w-s-color-background-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-bg-hover:before {\n background-color: var(--w-s-color-background-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-bg-negative-subtle:before {\n background-color: var(--w-s-color-background-negative-subtle)\n }\n\n .focus\\\\:s-bg-primary-hover:focus {\n background-color: var(--w-s-color-background-primary-hover)\n }\n\n .\\\\!active\\\\:s-bg-selected-active:active {\n background-color: var(--w-s-color-background-selected-active) !important\n }\n\n .active\\\\:s-bg-active:active {\n background-color: var(--w-s-color-background-active)\n }\n\n .active\\\\:s-bg-negative-active:active {\n background-color: var(--w-s-color-background-negative-active)\n }\n\n .active\\\\:s-bg-negative-subtle-active:active {\n background-color: var(--w-s-color-background-negative-subtle-active)\n }\n\n .active\\\\:s-bg-primary-active:active {\n background-color: var(--w-s-color-background-primary-active)\n }\n\n .active\\\\:s-bg-selected-active:active {\n background-color: var(--w-s-color-background-selected-active)\n }\n\n .before\\\\:s-bg-disabled-subtle:before {\n background-color: var(--w-s-color-background-disabled-subtle)\n }\n\n .before\\\\:s-bg:before {\n background-color: var(--w-s-color-background)\n }\n\n .s-text {\n color: var(--w-s-color-text)\n }\n\n .s-text-disabled {\n color: var(--w-s-color-text-disabled)\n }\n\n .s-text-inverted, .peer:checked ~ .peer-checked\\\\:s-text-inverted {\n color: var(--w-s-color-text-inverted)\n }\n\n .s-text-inverted-static {\n color: var(--w-s-color-text-inverted-static)\n }\n\n .s-text-link {\n color: var(--w-s-color-text-link)\n }\n\n .s-text-negative {\n color: var(--w-s-color-text-negative)\n }\n\n .s-text-subtle {\n color: var(--w-s-color-text-subtle)\n }\n\n .hover\\\\:s-text-link:hover {\n color: var(--w-s-color-text-link)\n }\n\n .active\\\\:s-text:active {\n color: var(--w-s-color-text)\n }\n\n .placeholder\\\\:s-text-placeholder::placeholder {\n color: var(--w-s-color-text-placeholder)\n }\n\n .s-icon {\n color: var(--w-s-color-icon)\n }\n\n .s-icon-info {\n color: var(--w-s-color-icon-info)\n }\n\n .s-icon-inverted {\n color: var(--w-s-color-icon-inverted)\n }\n\n .s-icon-negative {\n color: var(--w-s-color-icon-negative)\n }\n\n .s-icon-positive {\n color: var(--w-s-color-icon-positive)\n }\n\n .s-icon-warning {\n color: var(--w-s-color-icon-warning)\n }\n\n .hover\\\\:s-icon-hover:hover {\n color: var(--w-s-color-icon-hover)\n }\n\n .active\\\\:s-icon-active:active {\n color: var(--w-s-color-icon-active)\n }\n\n .before\\\\:s-icon-inverted:before {\n color: var(--w-s-color-icon-inverted)\n }\n\n .s-border {\n border-color: var(--w-s-color-border)\n }\n\n .s-border-disabled {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .s-border-info-subtle {\n border-color: var(--w-s-color-border-info-subtle)\n }\n\n .s-border-l-info {\n border-left-color: var(--w-s-color-border-info)\n }\n\n .s-border-l-negative {\n border-left-color: var(--w-s-color-border-negative)\n }\n\n .s-border-l-positive {\n border-left-color: var(--w-s-color-border-positive)\n }\n\n .s-border-l-warning {\n border-left-color: var(--w-s-color-border-warning)\n }\n\n .s-border-negative {\n border-color: var(--w-s-color-border-negative)\n }\n\n .s-border-negative-subtle {\n border-color: var(--w-s-color-border-negative-subtle)\n }\n\n .s-border-positive-subtle {\n border-color: var(--w-s-color-border-positive-subtle)\n }\n\n .s-border-primary, .peer:checked ~ .peer-checked\\\\:s-border-primary {\n border-color: var(--w-s-color-border-primary)\n }\n\n .s-border-selected {\n border-color: var(--w-s-color-border-selected)\n }\n\n .s-border-warning-subtle {\n border-color: var(--w-s-color-border-warning-subtle)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-negative-hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-primary-hover:before {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .peer:checked:hover ~ .peer-checked\\\\:peer-hover\\\\:before\\\\:s-border-selected-hover:before {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .peer:checked ~ .peer-checked\\\\:before\\\\:s-border-selected:before {\n border-color: var(--w-s-color-border-selected)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-border-negative-hover:hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:indeterminate ~ .peer-indeterminate\\\\:hover\\\\:before\\\\:s-border-primary-hover:hover:before {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .group:hover .group-hover\\\\:s-border-selected-hover {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .hover\\\\:before\\\\:s-border-negative-hover:hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .hover\\\\:before\\\\:s-border-primary:hover:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .hover\\\\:s-border-disabled:hover {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .hover\\\\:s-border-hover:hover {\n border-color: var(--w-s-color-border-hover)\n }\n\n .hover\\\\:s-border-negative-hover:hover {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .hover\\\\:s-border-primary-hover:hover {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .hover\\\\:s-border-primary:hover {\n border-color: var(--w-s-color-border-primary)\n }\n\n .hover\\\\:s-border-selected-hover:hover {\n border-color: var(--w-s-color-border-selected-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-border-negative-hover:before {\n border-color: var(--w-s-color-border-negative-hover)\n }\n\n .peer:hover ~ .peer-hover\\\\:before\\\\:s-border-primary:before {\n border-color: var(--w-s-color-border-primary)\n }\n\n .focus\\\\:s-border-primary-hover:focus {\n border-color: var(--w-s-color-border-primary-hover)\n }\n\n .active\\\\:s-border-active:active {\n border-color: var(--w-s-color-border-active)\n }\n\n .active\\\\:s-border-disabled:active {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .active\\\\:s-border-primary-active:active {\n border-color: var(--w-s-color-border-primary-active)\n }\n\n .active\\\\:s-border-selected-active:active {\n border-color: var(--w-s-color-border-selected-active)\n }\n\n .active\\\\:s-border-selected:active {\n border-color: var(--w-s-color-border-selected)\n }\n\n .group:active .group-active\\\\:s-border-active {\n border-color: var(--w-s-color-border-active)\n }\n\n .group:active .group-active\\\\:s-border-selected-active {\n border-color: var(--w-s-color-border-selected-active)\n }\n\n .before\\\\:s-border-disabled:before {\n border-color: var(--w-s-color-border-disabled)\n }\n\n .before\\\\:s-border-negative:before {\n border-color: var(--w-s-color-border-negative)\n }\n\n .s-surface-sunken {\n background-color: var(--w-s-color-surface-sunken)\n }\n\n .s-surface-elevated-200 {\n background-color: var(--w-s-color-surface-elevated-200);\n box-shadow: var(--w-s-shadow-surface-elevated-200)\n }\n\n .hover\\\\:s-surface-elevated-200-hover:hover {\n background-color: var(--w-s-color-surface-elevated-200-hover);\n box-shadow: var(--w-s-shadow-surface-elevated-200-hover)\n }\n\n .active\\\\:s-surface-elevated-200-active:active {\n background-color: var(--w-s-color-surface-elevated-200-active);\n box-shadow: var(--w-s-shadow-surface-elevated-200-active)\n }\n\n .drop-shadow-m {\n filter: drop-shadow(rgba(64, 64, 64, .24) 0 3px 8px) drop-shadow(rgba(64, 64, 64, .16) 0 3px 6px)\n }\n\n .shadow-m {\n box-shadow: var(--w-shadow-m)\n }\n\n .shadow-s {\n box-shadow: var(--w-shadow-s)\n }\n\n .shadow-\\\\[--w-shadow-slider\\\\] {\n box-shadow: var(--w-shadow-slider)\n }\n\n .hover\\\\:shadow-\\\\[--w-shadow-slider-handle-hover\\\\]:hover {\n box-shadow: var(--w-shadow-slider-handle-hover)\n }\n\n .focus\\\\:shadow-\\\\[--w-shadow-slider-handle-hover\\\\]:focus {\n box-shadow: var(--w-shadow-slider-handle-hover)\n }\n\n .active\\\\:shadow-\\\\[--w-shadow-slider-handle-active\\\\]:active {\n box-shadow: var(--w-shadow-slider-handle-active)\n }\n\n .h-0 {\n height: 0rem\n }\n\n .h-16 {\n height: 1.6rem\n }\n\n .h-2 {\n height: .2rem\n }\n\n .h-20 {\n height: 2rem\n }\n\n .h-24 {\n height: 2.4rem\n }\n\n .h-4 {\n height: .4rem\n }\n\n .h-44 {\n height: 4.4rem\n }\n\n .h-6 {\n height: .6rem\n }\n\n .h-8 {\n height: .8rem\n }\n\n .h-full {\n height: 100%\n }\n\n .h-unset {\n height: unset\n }\n\n .max-h-unset {\n max-height: unset\n }\n\n .max-w-full {\n max-width: 100%\n }\n\n .max-w-max {\n max-width: max-content\n }\n\n .max-w-unset {\n max-width: unset\n }\n\n .min-h-32 {\n min-height: 3.2rem\n }\n\n .min-h-40 {\n min-height: 4rem\n }\n\n .min-w-16 {\n min-width: 1.6rem\n }\n\n .min-w-32 {\n min-width: 3.2rem\n }\n\n .w-16 {\n width: 1.6rem\n }\n\n .w-2 {\n width: .2rem\n }\n\n .w-20 {\n width: 2rem\n }\n\n .w-24 {\n width: 2.4rem\n }\n\n .w-32 {\n width: 3.2rem\n }\n\n .w-40 {\n width: 4rem\n }\n\n .w-44 {\n width: 4.4rem\n }\n\n .w-8 {\n width: .8rem\n }\n\n .w-full {\n width: 100%\n }\n\n .w-max {\n width: max-content\n }\n\n .w-unset {\n width: unset\n }\n\n .before\\\\:h-20:before {\n height: 2rem\n }\n\n .before\\\\:h-full:before {\n height: 100%\n }\n\n .before\\\\:w-20:before {\n width: 2rem\n }\n\n .before\\\\:w-32:before {\n width: 3.2rem\n }\n\n .h-\\\\[--w-modal-height\\\\] {\n height: var(--w-modal-height)\n }\n\n .h-\\\\[14px\\\\] {\n height: 14px\n }\n\n .h-\\\\[16px\\\\] {\n height: 16px\n }\n\n .max-h-\\\\[--w-modal-max-height\\\\] {\n max-height: var(--w-modal-max-height)\n }\n\n .min-h-\\\\[--w-modal-min-height\\\\] {\n min-height: var(--w-modal-min-height)\n }\n\n .min-h-\\\\[32px\\\\] {\n min-height: 32px\n }\n\n .min-h-\\\\[40px\\\\] {\n min-height: 40px\n }\n\n .min-h-\\\\[42\\\\] {\n min-height: 4.2rem\n }\n\n .min-h-\\\\[44px\\\\] {\n min-height: 44px\n }\n\n .min-w-\\\\[32px\\\\] {\n min-width: 32px\n }\n\n .min-w-\\\\[40px\\\\] {\n min-width: 40px\n }\n\n .min-w-\\\\[44px\\\\] {\n min-width: 44px\n }\n\n .w-\\\\[--w-modal-width\\\\] {\n width: var(--w-modal-width)\n }\n\n .w-\\\\[14px\\\\] {\n width: 14px\n }\n\n .w-\\\\[16px\\\\] {\n width: 16px\n }\n\n .space-x-8 > :not([hidden]) ~ :not([hidden]) {\n --w-space-x-reverse: 0;\n margin-left: calc(.8rem * calc(1 - var(--w-space-x-reverse)));\n margin-right: calc(.8rem * var(--w-space-x-reverse))\n }\n\n .space-y-16 > :not([hidden]) ~ :not([hidden]) {\n --w-space-y-reverse: 0;\n margin-top: calc(1.6rem * calc(1 - var(--w-space-y-reverse)));\n margin-bottom: calc(1.6rem * var(--w-space-y-reverse))\n }\n\n .m-0 {\n margin: 0rem\n }\n\n .m-auto {\n margin: auto\n }\n\n .-mx-16 {\n margin-left: -1.6rem;\n margin-right: -1.6rem\n }\n\n .mx-0 {\n margin-left: 0rem;\n margin-right: 0rem\n }\n\n .mx-8 {\n margin-left: .8rem;\n margin-right: .8rem\n }\n\n .mx-auto {\n margin-left: auto;\n margin-right: auto\n }\n\n .-mb-1 {\n margin-bottom: -.1rem\n }\n\n .-ml-8 {\n margin-left: -.8rem\n }\n\n .-mr-1 {\n margin-right: -.1rem\n }\n\n .-mr-8 {\n margin-right: -.8rem\n }\n\n .-mt-2 {\n margin-top: -.2rem\n }\n\n .-mt-4 {\n margin-top: -.4rem\n }\n\n .last-child\\\\:mb-0 > :last-child, .mb-0 {\n margin-bottom: 0rem\n }\n\n .mb-32 {\n margin-bottom: 3.2rem\n }\n\n .ml-8 {\n margin-left: .8rem\n }\n\n .ml-auto {\n margin-left: auto\n }\n\n .mr-8 {\n margin-right: .8rem\n }\n\n .mt-16 {\n margin-top: 1.6rem\n }\n\n .mt-4 {\n margin-top: .4rem\n }\n\n .group:not(:first-child) .group-not-first\\\\:-ml-2 {\n margin-left: -.2rem\n }\n\n .last\\\\:mb-0:last-child {\n margin-bottom: 0rem\n }\n\n .last\\\\:mr-0:last-child {\n margin-right: 0rem\n }\n\n .m-\\\\[8px\\\\] {\n margin: 8px\n }\n\n .p-0 {\n padding: 0rem\n }\n\n .p-16 {\n padding: 1.6rem\n }\n\n .p-4 {\n padding: .4rem\n }\n\n .p-8 {\n padding: .8rem\n }\n\n .px-0 {\n padding-left: 0rem;\n padding-right: 0rem\n }\n\n .px-1 {\n padding-left: .1rem;\n padding-right: .1rem\n }\n\n .px-12 {\n padding-left: 1.2rem;\n padding-right: 1.2rem\n }\n\n .px-14 {\n padding-left: 1.4rem;\n padding-right: 1.4rem\n }\n\n .px-16 {\n padding-left: 1.6rem;\n padding-right: 1.6rem\n }\n\n .px-8 {\n padding-left: .8rem;\n padding-right: .8rem\n }\n\n .py-0 {\n padding-top: 0rem;\n padding-bottom: 0rem\n }\n\n .py-1 {\n padding-top: .1rem;\n padding-bottom: .1rem\n }\n\n .py-10 {\n padding-top: 1rem;\n padding-bottom: 1rem\n }\n\n .py-12 {\n padding-top: 1.2rem;\n padding-bottom: 1.2rem\n }\n\n .py-2 {\n padding-top: .2rem;\n padding-bottom: .2rem\n }\n\n .py-4 {\n padding-top: .4rem;\n padding-bottom: .4rem\n }\n\n .py-6 {\n padding-top: .6rem;\n padding-bottom: .6rem\n }\n\n .py-8 {\n padding-top: .8rem;\n padding-bottom: .8rem\n }\n\n .pb-0 {\n padding-bottom: 0rem\n }\n\n .pb-32 {\n padding-bottom: 3.2rem\n }\n\n .pb-4 {\n padding-bottom: .4rem\n }\n\n .pb-8 {\n padding-bottom: .8rem\n }\n\n .pl-0 {\n padding-left: 0rem\n }\n\n .pl-1 {\n padding-left: .1rem\n }\n\n .pl-12 {\n padding-left: 1.2rem\n }\n\n .pl-28 {\n padding-left: 2.8rem\n }\n\n .pl-4 {\n padding-left: .4rem\n }\n\n .pl-8 {\n padding-left: .8rem\n }\n\n .pr-12 {\n padding-right: 1.2rem\n }\n\n .pr-14 {\n padding-right: 1.4rem\n }\n\n .pr-2 {\n padding-right: .2rem\n }\n\n .pr-32 {\n padding-right: 3.2rem\n }\n\n .pr-40 {\n padding-right: 4rem\n }\n\n .pt-0 {\n padding-top: 0rem\n }\n\n .pt-1 {\n padding-top: .1rem\n }\n\n .pt-16 {\n padding-top: 1.6rem\n }\n\n .pt-24 {\n padding-top: 2.4rem\n }\n\n .pt-8 {\n padding-top: .8rem\n }\n\n .group\\\\/step:last-child .group-last\\\\/step\\\\:last\\\\:pb-0:last-child {\n padding-bottom: 0rem\n }\n\n .last\\\\:pb-1:last-child {\n padding-bottom: .1rem\n }\n\n .last\\\\:pr-1:last-child {\n padding-right: .1rem\n }\n\n .p-\\\\[8px\\\\] {\n padding: 8px\n }\n\n .px-\\\\[15px\\\\] {\n padding-left: 15px;\n padding-right: 15px\n }\n\n .px-\\\\[8px\\\\] {\n padding-left: 8px;\n padding-right: 8px\n }\n\n .py-\\\\[11px\\\\] {\n padding-top: 11px;\n padding-bottom: 11px\n }\n\n .py-\\\\[5px\\\\] {\n padding-top: 5px;\n padding-bottom: 5px\n }\n\n .py-\\\\[7px\\\\] {\n padding-top: 7px;\n padding-bottom: 7px\n }\n\n .pl-\\\\[var\\\\(--w-prefix-width\\\\,_40px\\\\)\\\\] {\n padding-left: var(--w-prefix-width, 40px)\n }\n\n .invisible {\n visibility: hidden\n }\n\n .backface-hidden {\n backface-visibility: hidden\n }\n\n .break-words {\n overflow-wrap: break-word\n }\n\n .before\\\\:content-\\\\[\\\\\"\u00E2\u20AC\u201C\\\\\"\\\\]:before {\n content: \"\u00E2\u20AC\u201C\"\n }\n\n .before\\\\:content-\\\\[\\\\\"\\\\\"\\\\]:before {\n content: \"\"\n }\n\n .cursor-default {\n cursor: default\n }\n\n .cursor-pointer {\n cursor: pointer\n }\n\n .antialiased {\n -webkit-font-smoothing: antialiased;\n -moz-osx-font-smoothing: grayscale;\n font-smoothing: grayscale\n }\n\n .font-bold {\n font-weight: 700\n }\n\n .before\\\\:font-bold:before {\n font-weight: 700\n }\n\n .font-normal {\n font-weight: 400\n }\n\n .pointer-events-auto {\n pointer-events: auto\n }\n\n .pointer-events-none {\n pointer-events: none\n }\n\n .before\\\\:pointer-events-none:before {\n pointer-events: none\n }\n\n .pb-safe-\\\\[32\\\\] {\n padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px))\n }\n\n .sr-only {\n position: absolute;\n width: 1px;\n height: 1px;\n padding: 0;\n margin: -1px;\n overflow: hidden;\n clip: rect(0, 0, 0, 0);\n white-space: nowrap;\n border-width: 0\n }\n\n .touch-pan-y {\n touch-action: pan-y\n }\n\n .select-none {\n -webkit-user-select: none;\n user-select: none\n }\n\n .translate-x-20 {\n --w-translate-x: 2rem;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .translate-z-0 {\n --w-translate-z: 0rem;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .-rotate-180, .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:-rotate-180::part(w-icon-chevron-down-16-part) {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: -180deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:rotate-180::part(w-icon-chevron-up-16-part), .rotate-180 {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: 180deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .rotate-90 {\n --w-rotate-x: 0;\n --w-rotate-y: 0;\n --w-rotate-z: 0;\n --w-rotate: 90deg;\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transform::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transform::part(w-icon-chevron-up-16-part), .transform {\n transform: translate(var(--w-translate-x)) translateY(var(--w-translate-y)) translateZ(var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transform-gpu::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transform-gpu::part(w-icon-chevron-up-16-part), .transform-gpu {\n transform: translate3d(var(--w-translate-x), var(--w-translate-y), var(--w-translate-z)) rotate(var(--w-rotate)) rotateX(var(--w-rotate-x)) rotateY(var(--w-rotate-y)) rotate(var(--w-rotate-z)) skew(var(--w-skew-x)) skewY(var(--w-skew-y)) scaleX(var(--w-scale-x)) scaleY(var(--w-scale-y)) scaleZ(var(--w-scale-z))\n }\n\n .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:transition-transform::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:transition-transform::part(w-icon-chevron-up-16-part), .transition-transform {\n transition-property: transform;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-300 {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .3s\n }\n\n .transition-all {\n transition-property: all;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-colors {\n transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .transition-shadow {\n transition-property: box-shadow;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .before\\\\:transition-all:before {\n transition-property: all;\n transition-timing-function: cubic-bezier(.4, 0, .2, 1);\n transition-duration: .15s\n }\n\n .duration-300 {\n transition-duration: .3s\n }\n\n .ease-in-out, .part-\\\\[w-icon-chevron-down-16-part\\\\]\\\\:ease-in-out::part(w-icon-chevron-down-16-part), .part-\\\\[w-icon-chevron-up-16-part\\\\]\\\\:ease-in-out::part(w-icon-chevron-up-16-part) {\n transition-timing-function: cubic-bezier(.4, 0, .2, 1)\n }\n\n .text-m {\n font-size: var(--w-font-size-m);\n line-height: var(--w-line-height-m)\n }\n\n .text-s {\n font-size: var(--w-font-size-s);\n line-height: var(--w-line-height-s)\n }\n\n .text-xs {\n font-size: var(--w-font-size-xs);\n line-height: var(--w-line-height-xs)\n }\n\n .leading-m {\n line-height: var(--w-line-height-m)\n }\n\n .before\\\\:leading-xs:before {\n line-height: var(--w-line-height-xs)\n }\n\n .leading-\\\\[24\\\\] {\n line-height: 2.4rem\n }\n\n @media (max-width: 479.9px) {\n .lt-sm\\\\:rounded-b-0 {\n border-bottom-left-radius: 0;\n border-bottom-right-radius: 0\n }\n }\n @media (min-width: 480px) {\n .sm\\\\:border-b-0 {\n border-bottom-width: 0\n }\n\n .sm\\\\:rounded-8 {\n border-radius: 8px\n }\n\n .sm\\\\:rounded-b-8 {\n border-bottom-left-radius: 8px;\n border-bottom-right-radius: 8px\n }\n\n .sm\\\\:gap-16 {\n gap: 1.6rem\n }\n\n .sm\\\\:place-content-center {\n place-content: center\n }\n\n .sm\\\\:place-items-center {\n place-items: center\n }\n\n .sm\\\\:h-24 {\n height: 2.4rem\n }\n\n .sm\\\\:min-h-48 {\n min-height: 4.8rem\n }\n\n .sm\\\\:w-24 {\n width: 2.4rem\n }\n\n .sm\\\\:min-h-\\\\[32px\\\\] {\n min-height: 32px\n }\n\n .sm\\\\:min-h-\\\\[44px\\\\] {\n min-height: 44px\n }\n\n .sm\\\\:min-h-\\\\[45\\\\] {\n min-height: 4.5rem\n }\n\n .sm\\\\:min-w-\\\\[32px\\\\] {\n min-width: 32px\n }\n\n .sm\\\\:min-w-\\\\[44px\\\\] {\n min-width: 44px\n }\n\n .sm\\\\:mx-0 {\n margin-left: 0rem;\n margin-right: 0rem\n }\n\n .sm\\\\:mx-16 {\n margin-left: 1.6rem;\n margin-right: 1.6rem\n }\n\n .sm\\\\:-ml-12 {\n margin-left: -1.2rem\n }\n\n .sm\\\\:-mr-12 {\n margin-right: -1.2rem\n }\n\n .sm\\\\:-mt-8 {\n margin-top: -.8rem\n }\n\n .sm\\\\:px-32 {\n padding-left: 3.2rem;\n padding-right: 3.2rem\n }\n\n .sm\\\\:py-0 {\n padding-top: 0rem;\n padding-bottom: 0rem\n }\n\n .sm\\\\:pb-32 {\n padding-bottom: 3.2rem\n }\n\n .sm\\\\:pt-24 {\n padding-top: 2.4rem\n }\n\n .sm\\\\:pt-32 {\n padding-top: 3.2rem\n }\n }\n @media (min-width: 768px) {\n .md\\\\:block {\n display: block\n }\n\n .md\\\\:hidden {\n display: none\n }\n }\n `);\n", "import { css } from \"lit\";\n\nexport const styles = css`\n\t:host {\n\t\tdisplay: block;\n\n\t\t--_snackbar-item-bg: var(\n\t\t\t--w-c-snackbar-item-bg,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-action-bg-hover: var(\n\t\t\t--w-c-snackbar-item-action-bg-hover,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-action-bg-active: var(\n\t\t\t--w-c-snackbar-item-action-bg-active,\n\t\t\tvar(--w-color-tooltip-background-static)\n\t\t);\n\t\t--_snackbar-item-border-radius: var(--w-c-snackbar-item-radius, 8px);\n\t\t--_snackbar-item-box-shadow: var(\n\t\t\t--w-c-snackbar-item-box-shadow,\n\t\t\tvar(--w-shadow-l)\n\t\t);\n\t\t--_snackbar-item-color: var(\n\t\t\t--w-c-snackbar-item-color,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-action-color-hover: var(\n\t\t\t--w-c-snackbar-item-action-color-hover,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-action-color-active: var(\n\t\t\t--w-c-snackbar-item-action-color-active,\n\t\t\tvar(--w-s-color-text-inverted-static)\n\t\t);\n\t\t--_snackbar-item-max-width: var(--w-c-snackbar-item-max-width, 480px);\n\t\t--_snackbar-item-min-width: var(--w-c-snackbar-item-min-width, 328px);\n\t\t--_snackbar-item-padding: var(--w-c-snackbar-item-padding, 8px);\n\t}\n\n\t/* Using a padding-less div as target so we get animation to and from zero height */\n\t.animation-wrapper {\n\t\tborder-radius: var(\n\t\t\t--_snackbar-item-border-radius\n\t\t); /* Avoid sharp bottom corners during the transitino */\n\t}\n\n\t[part=\"item\"] {\n\t\tbackground-color: var(--_snackbar-item-bg);\n\t\tborder-radius: var(--_snackbar-item-border-radius);\n\t\tbox-shadow: var(--_snackbar-item-box-shadow);\n\t\tcolor: var(--_snackbar-item-color);\n\t\tmax-width: var(--_snackbar-item-max-width);\n\t\tmin-width: var(--_snackbar-item-min-width);\n\t\tpadding: var(--_snackbar-item-padding);\n\n\t\tdisplay: grid;\n\t\tcolumn-gap: 8px;\n\t\tgrid-template:\n\t\t\t\"icon message inline-action\"\n\t\t\t\"block-action block-action block-action\";\n\t\tgrid-template-columns: auto 1fr auto;\n\t\talign-items: center;\n\t}\n\n\t[part=\"item\"] w-button,\n\t[part=\"item\"] ::slotted(w-button) {\n\t\t--w-c-button-bg: var(--_snackbar-item-bg);\n\t\t--w-c-button-bg-active: var(--_snackbar-item-action-bg-active);\n\t\t--w-c-button-bg-hover: var(--_snackbar-item-action-bg-hover);\n\t\t--w-c-button-color: var(--_snackbar-item-color);\n\t\t--w-c-button-color-active: var(--_snackbar-item-action-color-active);\n\t\t--w-c-button-color-hover: var(--_snackbar-item-action-color-hover);\n\t}\n\n\t[part=\"icon\"] {\n\t\tgrid-area: icon;\n\n\t\tcolor: var(--_snackbar-item-color);\n\t\tpadding-block: 4px;\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon) {\n\t\tdisplay: block; /* override default inline-block to avoid line-height */\n\t\tmargin-inline-start: 4px;\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"SuccessFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-positive);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"WarningFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-warning);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"ErrorFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-negative);\n\t}\n\n\t[part=\"icon\"] ::slotted(w-icon[name=\"InfoFilled\"]) {\n\t\tcolor: var(--w-s-color-icon-info);\n\t}\n\n\t[part=\"message\"] {\n\t\tgrid-area: message;\n\n\t\talign-self: center;\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t\tpadding-block: 7px;\n\t}\n\n\t[part=\"action\"] {\n\t\tgrid-area: inline-action;\n\n\t\tdisplay: flex;\n\t\tcolumn-gap: 2px; /* to allow space for focus outline */\n\t\tjustify-content: flex-end;\n\t\tpadding-inline-start: 8px;\n\t}\n\n\t:host([action-placement=\"block\"]) [part=\"action\"] {\n\t\tgrid-area: block-action;\n\t}\n\n\tw-attention [slot=\"message\"] {\n\t\tfont-size: var(--w-font-size-s);\n\t\tline-height: var(--w-line-height-s);\n\t}\n\n\tkbd {\n\t\tfont-family: var(--w-font-family);\n\t}\n`;\n", "import { i18n, Messages } from \"@lingui/core\";\n\nexport const supportedLocales = [\"en\", \"nb\", \"fi\", \"da\", \"sv\"] as const;\ntype SupportedLocale = (typeof supportedLocales)[number];\n\nexport const defaultLocale = \"en\";\n\nexport const getSupportedLocale = (usedLocale: string) => {\n\treturn (\n\t\tsupportedLocales.find(\n\t\t\t(locale) =>\n\t\t\t\tusedLocale === locale || usedLocale.toLowerCase().includes(locale),\n\t\t) || defaultLocale\n\t);\n};\n\nexport function detectLocale(): SupportedLocale {\n\tif (typeof window === \"undefined\") {\n\t\t/**\n\t\t * Server locale detection. This requires e.g LANG environment variable to be set on the server.\n\t\t */\n\t\tconst serverLocale =\n\t\t\tprocess.env.NMP_LANGUAGE ||\n\t\t\tIntl.DateTimeFormat().resolvedOptions().locale;\n\t\treturn getSupportedLocale(serverLocale);\n\t}\n\n\ttry {\n\t\t/**\n\t\t * Client locale detection. Expects the lang attribute to be defined.\n\t\t */\n\t\tconst htmlLocale = getDocumentLang(document);\n\t\tif (htmlLocale) {\n\t\t\treturn getSupportedLocale(htmlLocale);\n\t\t}\n\n\t\tconst frameLocale = getFrameElementLang();\n\t\tif (frameLocale) {\n\t\t\treturn getSupportedLocale(frameLocale);\n\t\t}\n\n\t\tconst parentLocale = getDocumentLang(getParentDocument());\n\t\tif (parentLocale) {\n\t\t\treturn getSupportedLocale(parentLocale);\n\t\t}\n\n\t\treturn defaultLocale;\n\t} catch (e) {\n\t\tconsole.warn(\"could not detect locale, falling back to source locale\", e);\n\t\treturn defaultLocale;\n\t}\n}\n\nexport const getMessages = (\n\tlocale: SupportedLocale,\n\tenMsg: Messages,\n\tnbMsg: Messages,\n\tfiMsg: Messages,\n\tdaMsg: Messages,\n\tsvMsg: Messages,\n) => {\n\tif (locale === \"nb\") return nbMsg;\n\tif (locale === \"fi\") return fiMsg;\n\tif (locale === \"da\") return daMsg;\n\tif (locale === \"sv\") return svMsg;\n\t// Default to English\n\treturn enMsg;\n};\n\nexport const activateI18n = (\n\tenMessages: Messages,\n\tnbMessages: Messages,\n\tfiMessages: Messages,\n\tdaMessages: Messages,\n\tsvMessages: Messages,\n) => {\n\t// Load all locales upfront to support dynamic locale switching\n\ti18n.load(\"en\", enMessages);\n\ti18n.load(\"nb\", nbMessages);\n\ti18n.load(\"fi\", fiMessages);\n\ti18n.load(\"da\", daMessages);\n\ti18n.load(\"sv\", svMessages);\n\n\tconst locale = detectLocale();\n\ti18n.activate(locale);\n\tnotifyI18nChange();\n\n\tsetupLangObserver();\n};\n\nexport const I18N_CHANGE_EVENT = \"warp-i18n-change\";\n\nexport function notifyI18nChange() {\n\tif (typeof window === \"undefined\") return;\n\twindow.dispatchEvent(new Event(I18N_CHANGE_EVENT));\n}\n\nlet langObserverInitialized = false;\n\nfunction setupLangObserver() {\n\tif (langObserverInitialized) return;\n\tif (typeof window === \"undefined\") return;\n\tif (!document?.documentElement) return;\n\n\tlangObserverInitialized = true;\n\n\tconst handleLangChange = () => {\n\t\tconst nextLocale = detectLocale();\n\t\tif (i18n.locale !== nextLocale) {\n\t\t\ti18n.activate(nextLocale);\n\t\t\tnotifyI18nChange();\n\t\t}\n\t};\n\n\tconst observer = new MutationObserver((mutations) => {\n\t\tfor (const mutation of mutations) {\n\t\t\tif (mutation.type === \"attributes\" && mutation.attributeName === \"lang\") {\n\t\t\t\thandleLangChange();\n\t\t\t\tbreak;\n\t\t\t}\n\t\t}\n\t});\n\n\tobserver.observe(document.documentElement, {\n\t\tattributes: true,\n\t\tattributeFilter: [\"lang\"],\n\t});\n\n\tconst parentDocument = getParentDocument();\n\tif (\n\t\tparentDocument &&\n\t\tparentDocument.documentElement &&\n\t\tparentDocument !== document\n\t) {\n\t\tobserver.observe(parentDocument.documentElement, {\n\t\t\tattributes: true,\n\t\t\tattributeFilter: [\"lang\"],\n\t\t});\n\t}\n\n\tconst frameEl = getFrameElement();\n\tif (frameEl) {\n\t\tobserver.observe(frameEl, { attributes: true, attributeFilter: [\"lang\"] });\n\t}\n}\n\nfunction getParentDocument(): Document | null {\n\ttry {\n\t\treturn window.parent?.document ?? null;\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nfunction getDocumentLang(doc: Document | null | undefined): string {\n\ttry {\n\t\treturn doc?.documentElement?.lang ?? \"\";\n\t} catch {\n\t\treturn \"\";\n\t}\n}\n\nfunction getFrameElement(): HTMLElement | null {\n\ttry {\n\t\treturn (window.frameElement as HTMLElement | null) ?? null;\n\t} catch {\n\t\treturn null;\n\t}\n}\n\nfunction getFrameElementLang(): string {\n\ttry {\n\t\treturn window.frameElement?.getAttribute?.(\"lang\") ?? \"\";\n\t} catch {\n\t\treturn \"\";\n\t}\n}\n", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "/*eslint-disable*/export const messages=JSON.parse(\"{\\\"snackbar.aria.close\\\":[\\\"Dismiss message\\\"]}\");", "import { css } from \"lit\";\n\nexport const styles = css`\n\t:host {\n\t\tposition: fixed;\n\t\tpointer-events: none;\n\n\t\t--_snackbar-gap: var(--w-c-snackbar-container-gap, 8px);\n\t\t--_snackbar-position-top: var(--w-c-snackbar-position-top, initial);\n\t\t--_snackbar-position-right: var(--w-c-snackbar-position-right, 0);\n\t\t--_snackbar-position-bottom: var(--w-c-snackbar-position-bottom, 16px);\n\t\t--_snackbar-position-left: var(--w-c-snackbar-position-left, 0);\n\t\t--_snackbar-z-index: var(--w-c-snackbar-z-index, 50);\n\n\t\tbottom: var(--_snackbar-position-bottom);\n\t\tleft: var(--_snackbar-position-left);\n\t\tright: var(--_snackbar-position-right);\n\t\ttop: var(--_snackbar-position-top);\n\n\t\tz-index: var(--_snackbar-z-index);\n\t}\n\n\t[part=\"container\"] {\n\t\tdisplay: grid;\n\t\tgap: var(--_snackbar-gap);\n\t\tgrid-template-rows: auto;\n\t\tjustify-content: center;\n\t\tjustify-items: center;\n\t\tmargin-inline: auto;\n\t\tpointer-events: none;\n\t}\n\n\t::slotted(*) {\n\t\tpointer-events: initial;\n\t}\n`;\n"],
5
+ "mappings": "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AA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,EAqRRG,GAAaF,GAAU;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA,SAsnE3B,EC74ET,OAAS,OAAAG,OAAW,MAEb,IAAMC,GAASD;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;A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",
6
6
  "names": ["isString", "s", "isFunction", "f", "cache", "defaultLocale", "normalizeLocales", "locales", "date", "value", "format", "_locales", "o", "getMemoized", "cacheKey", "time", "number", "plural", "ordinal", "offset", "rules", "plurals", "getKey", "construct", "key", "formatter", "type", "options", "localeKey", "ESCAPE_SEQUENCE_REGEX", "decodeEscapeSequences", "str", "_", "unicode", "hex", "codePoint", "OCTOTHORPE_PH", "getDefaultFormats", "locale", "passedLocales", "formats", "locales", "style", "format", "replaceOctothorpe", "value", "message", "numberFormat", "valueStr", "number", "cases", "offset", "plural", "selectFormatter", "date", "time", "rules", "interpolate", "translation", "values", "formatters", "formatMessage", "tokens", "token", "isString", "name", "type", "interpolatedFormat", "key", "value2", "formatter", "result", "__defProp$1", "__defNormalProp$1", "obj", "__publicField$1", "EventEmitter", "event", "listener", "_a", "maybeListeners", "index", "args", "__defProp", "__defNormalProp", "__publicField", "I18n", "params", "defaultLocale", "localeData", "maybeLocaleData", "compiler", "localeOrAllData", "messages", "maybeMessages", "localeOrMessages", "messages2", "id", "options", "messageForId", "messageMissing", "missing", "isFunction", "setupI18n", "i18n", "html", "LitElement", "html", "LitElement", "property", "query", "state", "windowExists", "prefersMotion", "query", "callback", "matches", "removeTransition", "el", "addTransition", "timing", "getAfterExpandCallback", "done", "getAfterCollapseCallback", "expand", "returnPromise", "r", "afterExpandCallback", "dest", "collapse", "afterCollapseCallback", "original", "css", "unsafeCSS", "reset", "components", "css", "styles", "_expanded", "_durationLeft", "_lastFocused", "_timer", "_timerPaused", "_WarpSnackbarItem_instances", "onFocusIn_fn", "onFocusOut_fn", "onMouseEnter_fn", "onMouseLeave_fn", "hasAction_fn", "WarpSnackbarItem", "LitElement", "__privateAdd", "__privateSet", "__privateGet", "expand", "collapse", "__privateMethod", "modifier", "html", "e", "actionSlot", "reset", "styles", "__decorateClass", "property", "query", "state", "supportedLocales", "defaultLocale", "getSupportedLocale", "usedLocale", "locale", "detectLocale", "serverLocale", "htmlLocale", "getDocumentLang", "frameLocale", "getFrameElementLang", "parentLocale", "getParentDocument", "e", "activateI18n", "enMessages", "nbMessages", "fiMessages", "daMessages", "svMessages", "i18n", "locale", "detectLocale", "notifyI18nChange", "setupLangObserver", "I18N_CHANGE_EVENT", "langObserverInitialized", "handleLangChange", "nextLocale", "observer", "mutations", "mutation", "parentDocument", "getParentDocument", "frameEl", "getFrameElement", "getDocumentLang", "doc", "getFrameElementLang", "messages", "messages", "messages", "messages", "messages", "css", "styles", "defaultCreateOptions", "activateI18n", "messages", "spaceRe", "WarpSnackbar", "LitElement", "snackbarItem", "snackbarAction", "message", "options", "mergedOptions", "icon", "actionButton", "label", "onclick", "placement", "keyboardShortcut", "modifier", "e", "result", "closeButton", "closeIcon", "i18n", "html", "reset", "styles"]
7
7
  }