@fluid-topics/ft-wc-utils 0.2.16 → 0.2.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.
@@ -2,6 +2,8 @@ import { LitElement, PropertyValues } from "lit";
2
2
  import { CSSResultGroup } from "@lit/reactive-element/css-tag";
3
3
  declare const FtLitElement_base: typeof LitElement;
4
4
  export declare class FtLitElement extends FtLitElement_base {
5
+ exportpartsPrefix?: string;
6
+ exportpartsPrefixes?: string[];
5
7
  /**
6
8
  * @deprecated Unless inline styles are required for your use-case, prefer static styles member
7
9
  */
@@ -12,6 +14,7 @@ export declare class FtLitElement extends FtLitElement_base {
12
14
  protected getTemplate(): unknown;
13
15
  protected render(): unknown;
14
16
  protected updated(props: PropertyValues): void;
17
+ private setExportpartsAttribute;
15
18
  protected contentAvailableCallback(props: PropertyValues): void;
16
19
  }
17
20
  export {};
@@ -1,5 +1,13 @@
1
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
2
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
3
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
4
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
5
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
6
+ };
1
7
  import { html, LitElement } from "lit";
2
8
  import { ScopedRegistryHost } from "@lit-labs/scoped-registry-mixin";
9
+ import { property } from "lit/decorators.js";
10
+ import { jsonProperty } from "./decorators";
3
11
  export class FtLitElement extends ScopedRegistryHost(LitElement) {
4
12
  /**
5
13
  * @deprecated Unless inline styles are required for your use-case, prefer static styles member
@@ -27,9 +35,47 @@ export class FtLitElement extends ScopedRegistryHost(LitElement) {
27
35
  }
28
36
  updated(props) {
29
37
  super.updated(props);
30
- setTimeout(() => this.contentAvailableCallback(props), 0);
38
+ setTimeout(() => {
39
+ var _a;
40
+ this.contentAvailableCallback(props);
41
+ if ((_a = this.exportpartsPrefix) === null || _a === void 0 ? void 0 : _a.trim()) {
42
+ this.setExportpartsAttribute([this.exportpartsPrefix]);
43
+ }
44
+ else if (this.exportpartsPrefixes != null && this.exportpartsPrefixes.length > 0) {
45
+ this.setExportpartsAttribute(this.exportpartsPrefixes);
46
+ }
47
+ }, 0);
48
+ }
49
+ setExportpartsAttribute(prefixes) {
50
+ var _a, _b, _c, _d, _e, _f;
51
+ const stringFilter = (p) => p != null && p.trim().length > 0;
52
+ const trimmedPrefixes = prefixes.filter(stringFilter).map(p => p.trim());
53
+ if (trimmedPrefixes.length === 0) {
54
+ this.removeAttribute("exportparts");
55
+ return;
56
+ }
57
+ const allSubParts = new Set();
58
+ for (let element of (_b = (_a = this.shadowRoot) === null || _a === void 0 ? void 0 : _a.querySelectorAll("[part],[exportparts]")) !== null && _b !== void 0 ? _b : []) {
59
+ const foundParts = (_d = (_c = element.getAttribute("part")) === null || _c === void 0 ? void 0 : _c.split(" ")) !== null && _d !== void 0 ? _d : [];
60
+ const foundExportParts = (_f = (_e = element.getAttribute("exportparts")) === null || _e === void 0 ? void 0 : _e.split(",").map(exp => exp.split(":")[1])) !== null && _f !== void 0 ? _f : [];
61
+ new Array(...foundParts, ...foundExportParts).filter(stringFilter)
62
+ .map(part => part.trim())
63
+ .forEach(part => allSubParts.add(part));
64
+ }
65
+ if (allSubParts.size === 0) {
66
+ this.removeAttribute("exportparts");
67
+ return;
68
+ }
69
+ const prefixedSubParts = [...allSubParts.values()].flatMap(part => trimmedPrefixes.map(prefix => `${part}:${prefix}--${part}`));
70
+ this.setAttribute("exportparts", [...this.part, ...prefixedSubParts].join(", "));
31
71
  }
32
72
  contentAvailableCallback(props) {
33
73
  }
34
74
  }
75
+ __decorate([
76
+ property()
77
+ ], FtLitElement.prototype, "exportpartsPrefix", void 0);
78
+ __decorate([
79
+ jsonProperty([])
80
+ ], FtLitElement.prototype, "exportpartsPrefixes", void 0);
35
81
  //# sourceMappingURL=FtLitElement.js.map
@@ -118,17 +118,17 @@ var ft;const ht=null!=(null===(ft=window.HTMLSlotElement)||void 0===ft?void 0:ft
118
118
  * http://polymer.github.io/PATENTS.txt
119
119
  *
120
120
  * @see https://github.com/webcomponents/polyfills/tree/master/packages/scoped-custom-element-registry
121
- */if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,e=window.customElements.define,n=window.customElements.get,r=window.customElements,i=new WeakMap,o=new WeakMap,s=new WeakMap,c=new WeakMap;let u;window.CustomElementRegistry=class{constructor(){this._definitionsByTag=new Map,this._definitionsByClass=new Map,this._whenDefinedPromises=new Map,this._awaitingUpgrade=new Map}define(t,i){if(t=t.toLowerCase(),void 0!==this._getDefinition(t))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${t}" has already been used with this registry`);if(void 0!==this._definitionsByClass.get(i))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const c=i.prototype.attributeChangedCallback,u=new Set(i.observedAttributes||[]);h(i,u,c);const a={elementClass:i,connectedCallback:i.prototype.connectedCallback,disconnectedCallback:i.prototype.disconnectedCallback,adoptedCallback:i.prototype.adoptedCallback,attributeChangedCallback:c,formAssociated:i.formAssociated,formAssociatedCallback:i.prototype.formAssociatedCallback,formDisabledCallback:i.prototype.formDisabledCallback,formResetCallback:i.prototype.formResetCallback,formStateRestoreCallback:i.prototype.formStateRestoreCallback,observedAttributes:u};this._definitionsByTag.set(t,a),this._definitionsByClass.set(i,a);let l=n.call(r,t);l||(l=f(t),e.call(r,t,l)),this===window.customElements&&(s.set(i,a),a.standInClass=l);const d=this._awaitingUpgrade.get(t);if(d){this._awaitingUpgrade.delete(t);for(const t of d)o.delete(t),v(t,a,!0)}const p=this._whenDefinedPromises.get(t);return void 0!==p&&(p.resolve(i),this._whenDefinedPromises.delete(t)),i}upgrade(){b.push(this),r.upgrade.apply(r,arguments),b.pop()}get(t){return this._definitionsByTag.get(t)?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const e=this._getDefinition(t);if(void 0!==e)return Promise.resolve(e.elementClass);let n=this._whenDefinedPromises.get(t);return void 0===n&&(n={},n.promise=new Promise((t=>n.resolve=t)),this._whenDefinedPromises.set(t,n)),n.promise}_upgradeWhenDefined(t,e,n){let r=this._awaitingUpgrade.get(e);r||this._awaitingUpgrade.set(e,r=new Set),n?r.add(t):r.delete(t)}},window.HTMLElement=function(){let e=u;if(e)return u=void 0,e;const n=s.get(this.constructor);if(!n)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return e=Reflect.construct(t,[],n.standInClass),Object.setPrototypeOf(e,this.constructor.prototype),i.set(e,n),e},window.HTMLElement.prototype=t.prototype;const a=t=>t===document||t instanceof ShadowRoot,l=t=>{let e=t.getRootNode();if(!a(e)){const t=b[b.length-1];if(t instanceof CustomElementRegistry)return t;e=t.getRootNode(),a(e)||(e=c.get(e)?.getRootNode()||document)}return e.customElements},f=e=>class{static get formAssociated(){return!0}constructor(){const n=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(n,HTMLElement.prototype);const r=l(n)||window.customElements,i=r._getDefinition(e);return i?v(n,i):o.set(n,r),n}connectedCallback(){const t=i.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!0)}disconnectedCallback(){const t=i.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!1)}adoptedCallback(){i.get(this)?.adoptedCallback?.apply(this,arguments)}formAssociatedCallback(){const t=i.get(this);t&&t.formAssociated&&t?.formAssociatedCallback?.apply(this,arguments)}formDisabledCallback(){const t=i.get(this);t?.formAssociated&&t?.formDisabledCallback?.apply(this,arguments)}formResetCallback(){const t=i.get(this);t?.formAssociated&&t?.formResetCallback?.apply(this,arguments)}formStateRestoreCallback(){const t=i.get(this);t?.formAssociated&&t?.formStateRestoreCallback?.apply(this,arguments)}},h=(t,e,n)=>{if(0===e.size||void 0===n)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,i){const o=t.toLowerCase();if(e.has(o)){const t=this.getAttribute(o);r.call(this,o,i),n.call(this,o,t,i)}else r.call(this,o,i)});const i=t.prototype.removeAttribute;i&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(e.has(r)){const t=this.getAttribute(r);i.call(this,r),n.call(this,r,t,null)}else i.call(this,r)})},d=e=>{const n=Object.getPrototypeOf(e);if(n!==window.HTMLElement)return n===t||"HTMLElement"===n?.prototype?.constructor?.name?Object.setPrototypeOf(e,window.HTMLElement):d(n)},v=(t,e,n=!1)=>{Object.setPrototypeOf(t,e.elementClass.prototype),i.set(t,e),u=t;try{new e.elementClass}catch(t){d(e.elementClass),new e.elementClass}e.observedAttributes.forEach((n=>{t.hasAttribute(n)&&e.attributeChangedCallback.call(t,n,null,t.getAttribute(n))})),n&&e.connectedCallback&&t.isConnected&&e.connectedCallback.call(t)},p=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const e=p.apply(this,arguments);return t.customElements&&(e.customElements=t.customElements),e};let b=[document];const y=(t,e,n)=>{const r=(n?Object.getPrototypeOf(n):t.prototype)[e];t.prototype[e]=function(){b.push(this);const t=r.apply(n||this,arguments);return void 0!==t&&c.set(t,this),b.pop(),t}};y(ShadowRoot,"createElement",document),y(ShadowRoot,"importNode",document),y(Element,"insertAdjacentHTML");const m=(t,e)=>{const n=Object.getOwnPropertyDescriptor(t.prototype,e);Object.defineProperty(t.prototype,e,{...n,set(t){b.push(this),n.set.call(this,t),b.pop()}})};if(m(Element,"innerHTML"),m(ShadowRoot,"innerHTML"),Object.defineProperty(window,"customElements",{value:new CustomElementRegistry,configurable:!0,writable:!0}),window.ElementInternals&&window.ElementInternals.prototype.setFormValue){const t=new WeakMap,e=HTMLElement.prototype.attachInternals,n=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...n){const r=e.call(this,...n);return t.set(r,this),r},n.forEach((e=>{const n=window.ElementInternals.prototype,r=n[e];n[e]=function(...e){const n=t.get(this);if(!0!==i.get(n).formAssociated)throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`);r?.call(this,...e)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class o{constructor(t){const e=new Map;t.forEach(((t,n)=>{const r=t.getAttribute("name"),i=e.get(r)||[];this[+n]=t,i.push(t),e.set(r,i)})),this.length=t.length,e.forEach(((t,e)=>{t&&(1===t.length?this[e]=t[0]:this[e]=new r(t))}))}namedItem(t){return this[t]}}const s=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=s.get.call(this,[]),e=[];for(const n of t){const t=i.get(n);t&&!0!==t.formAssociated||e.push(n)}return new o(e)}})}}try{window.customElements.define("custom-element",null)}catch(t){const e=window.customElements.define;window.customElements.define=(t,n,r)=>{try{e.bind(window.customElements)(t,n,r)}catch(e){console.warn(t,n,r,e)}}}class kt{constructor(t,e,n,r,i){this.name=t,this.category=e,this.fallbackVariable=n,this.defaultValue=r,this.context=i,this._$cssResult$=!0,this.value=this.get()}get cssText(){return this.value.cssText}get styleSheet(){return this.value.styleSheet}toString(){return this.value.toString()}static create(t,e,n){return new kt(t,e,void 0,n)}static extend(t,e,n){return new kt(t,e.category,e,n)}static external(t,e){return new kt(t.name,t.category,t.fallbackVariable,t.defaultValue,e)}get(t){return s`var(${o(this.name)}, ${this.defaultCssValue(t)})`}defaultCssValue(t){return this.fallbackVariable?this.fallbackVariable.get(null!=t?t:this.defaultValue):o(null!=t?t:this.defaultValue)}lastResortDefaultValue(){var t,e;return null!==(t=this.defaultValue)&&void 0!==t?t:null===(e=this.fallbackVariable)||void 0===e?void 0:e.lastResortDefaultValue()}breadcrumb(){return this.fallbackVariable?[this.fallbackVariable.name,...this.fallbackVariable.breadcrumb()]:[]}}const Ft={colorPrimary:kt.create("--ft-color-primary","COLOR","#2196F3"),colorPrimaryVariant:kt.create("--ft-color-primary-variant","COLOR","#1976D2"),colorSecondary:kt.create("--ft-color-secondary","COLOR","#FFCC80"),colorSecondaryVariant:kt.create("--ft-color-secondary-variant","COLOR","#F57C00"),colorSurface:kt.create("--ft-color-surface","COLOR","#FFFFFF"),colorContent:kt.create("--ft-color-content","COLOR","rgba(0, 0, 0, 0.87)"),colorError:kt.create("--ft-color-error","COLOR","#B00020"),colorOutline:kt.create("--ft-color-outline","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:kt.create("--ft-color-opacity-high","NUMBER","1"),colorOpacityMedium:kt.create("--ft-color-opacity-medium","NUMBER","0.74"),colorOpacityDisabled:kt.create("--ft-color-opacity-disabled","NUMBER","0.38"),colorOnPrimary:kt.create("--ft-color-on-primary","COLOR","#FFFFFF"),colorOnPrimaryHigh:kt.create("--ft-color-on-primary-high","COLOR","#FFFFFF"),colorOnPrimaryMedium:kt.create("--ft-color-on-primary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:kt.create("--ft-color-on-primary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:kt.create("--ft-color-on-secondary","COLOR","#FFFFFF"),colorOnSecondaryHigh:kt.create("--ft-color-on-secondary-high","COLOR","#FFFFFF"),colorOnSecondaryMedium:kt.create("--ft-color-on-secondary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:kt.create("--ft-color-on-secondary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:kt.create("--ft-color-on-surface","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:kt.create("--ft-color-on-surface-high","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:kt.create("--ft-color-on-surface-medium","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:kt.create("--ft-color-on-surface-disabled","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:kt.create("--ft-opacity-content-on-surface-disabled","NUMBER","0"),opacityContentOnSurfaceEnable:kt.create("--ft-opacity-content-on-surface-enable","NUMBER","0"),opacityContentOnSurfaceHover:kt.create("--ft-opacity-content-on-surface-hover","NUMBER","0.04"),opacityContentOnSurfaceFocused:kt.create("--ft-opacity-content-on-surface-focused","NUMBER","0.12"),opacityContentOnSurfacePressed:kt.create("--ft-opacity-content-on-surface-pressed","NUMBER","0.10"),opacityContentOnSurfaceSelected:kt.create("--ft-opacity-content-on-surface-selected","NUMBER","0.08"),opacityContentOnSurfaceDragged:kt.create("--ft-opacity-content-on-surface-dragged","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:kt.create("--ft-opacity-primary-on-surface-disabled","NUMBER","0"),opacityPrimaryOnSurfaceEnable:kt.create("--ft-opacity-primary-on-surface-enable","NUMBER","0"),opacityPrimaryOnSurfaceHover:kt.create("--ft-opacity-primary-on-surface-hover","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:kt.create("--ft-opacity-primary-on-surface-focused","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:kt.create("--ft-opacity-primary-on-surface-pressed","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:kt.create("--ft-opacity-primary-on-surface-selected","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:kt.create("--ft-opacity-primary-on-surface-dragged","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:kt.create("--ft-opacity-surface-on-primary-disabled","NUMBER","0"),opacitySurfaceOnPrimaryEnable:kt.create("--ft-opacity-surface-on-primary-enable","NUMBER","0"),opacitySurfaceOnPrimaryHover:kt.create("--ft-opacity-surface-on-primary-hover","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:kt.create("--ft-opacity-surface-on-primary-focused","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:kt.create("--ft-opacity-surface-on-primary-pressed","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:kt.create("--ft-opacity-surface-on-primary-selected","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:kt.create("--ft-opacity-surface-on-primary-dragged","NUMBER","0.08"),elevation00:kt.create("--ft-elevation-00","UNKNOWN","0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),elevation01:kt.create("--ft-elevation-01","UNKNOWN","0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation02:kt.create("--ft-elevation-02","UNKNOWN","0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation03:kt.create("--ft-elevation-03","UNKNOWN","0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),elevation04:kt.create("--ft-elevation-04","UNKNOWN","0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),elevation06:kt.create("--ft-elevation-06","UNKNOWN","0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),elevation08:kt.create("--ft-elevation-08","UNKNOWN","0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),elevation12:kt.create("--ft-elevation-12","UNKNOWN","0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),elevation16:kt.create("--ft-elevation-16","UNKNOWN","0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),elevation24:kt.create("--ft-elevation-24","UNKNOWN","0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),borderRadiusS:kt.create("--ft-border-radius-S","SIZE","4px"),borderRadiusM:kt.create("--ft-border-radius-M","SIZE","8px"),borderRadiusL:kt.create("--ft-border-radius-L","SIZE","12px"),borderRadiusXL:kt.create("--ft-border-radius-XL","SIZE","16px"),titleFont:kt.create("--ft-title-font","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:kt.create("--ft-content-font","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:kt.create("--ft-transition-duration","UNKNOWN","250ms"),transitionTimingFunction:kt.create("--ft-transition-timing-function","UNKNOWN","ease-in-out")};
121
+ */if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,e=window.customElements.define,n=window.customElements.get,r=window.customElements,i=new WeakMap,o=new WeakMap,s=new WeakMap,c=new WeakMap;let u;window.CustomElementRegistry=class{constructor(){this._definitionsByTag=new Map,this._definitionsByClass=new Map,this._whenDefinedPromises=new Map,this._awaitingUpgrade=new Map}define(t,i){if(t=t.toLowerCase(),void 0!==this._getDefinition(t))throw new DOMException(`Failed to execute 'define' on 'CustomElementRegistry': the name "${t}" has already been used with this registry`);if(void 0!==this._definitionsByClass.get(i))throw new DOMException("Failed to execute 'define' on 'CustomElementRegistry': this constructor has already been used with this registry");const c=i.prototype.attributeChangedCallback,u=new Set(i.observedAttributes||[]);h(i,u,c);const a={elementClass:i,connectedCallback:i.prototype.connectedCallback,disconnectedCallback:i.prototype.disconnectedCallback,adoptedCallback:i.prototype.adoptedCallback,attributeChangedCallback:c,formAssociated:i.formAssociated,formAssociatedCallback:i.prototype.formAssociatedCallback,formDisabledCallback:i.prototype.formDisabledCallback,formResetCallback:i.prototype.formResetCallback,formStateRestoreCallback:i.prototype.formStateRestoreCallback,observedAttributes:u};this._definitionsByTag.set(t,a),this._definitionsByClass.set(i,a);let l=n.call(r,t);l||(l=f(t),e.call(r,t,l)),this===window.customElements&&(s.set(i,a),a.standInClass=l);const d=this._awaitingUpgrade.get(t);if(d){this._awaitingUpgrade.delete(t);for(const t of d)o.delete(t),v(t,a,!0)}const p=this._whenDefinedPromises.get(t);return void 0!==p&&(p.resolve(i),this._whenDefinedPromises.delete(t)),i}upgrade(){b.push(this),r.upgrade.apply(r,arguments),b.pop()}get(t){return this._definitionsByTag.get(t)?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const e=this._getDefinition(t);if(void 0!==e)return Promise.resolve(e.elementClass);let n=this._whenDefinedPromises.get(t);return void 0===n&&(n={},n.promise=new Promise((t=>n.resolve=t)),this._whenDefinedPromises.set(t,n)),n.promise}_upgradeWhenDefined(t,e,n){let r=this._awaitingUpgrade.get(e);r||this._awaitingUpgrade.set(e,r=new Set),n?r.add(t):r.delete(t)}},window.HTMLElement=function(){let e=u;if(e)return u=void 0,e;const n=s.get(this.constructor);if(!n)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return e=Reflect.construct(t,[],n.standInClass),Object.setPrototypeOf(e,this.constructor.prototype),i.set(e,n),e},window.HTMLElement.prototype=t.prototype;const a=t=>t===document||t instanceof ShadowRoot,l=t=>{let e=t.getRootNode();if(!a(e)){const t=b[b.length-1];if(t instanceof CustomElementRegistry)return t;e=t.getRootNode(),a(e)||(e=c.get(e)?.getRootNode()||document)}return e.customElements},f=e=>class{static get formAssociated(){return!0}constructor(){const n=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(n,HTMLElement.prototype);const r=l(n)||window.customElements,i=r._getDefinition(e);return i?v(n,i):o.set(n,r),n}connectedCallback(){const t=i.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!0)}disconnectedCallback(){const t=i.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):o.get(this)._upgradeWhenDefined(this,e,!1)}adoptedCallback(){i.get(this)?.adoptedCallback?.apply(this,arguments)}formAssociatedCallback(){const t=i.get(this);t&&t.formAssociated&&t?.formAssociatedCallback?.apply(this,arguments)}formDisabledCallback(){const t=i.get(this);t?.formAssociated&&t?.formDisabledCallback?.apply(this,arguments)}formResetCallback(){const t=i.get(this);t?.formAssociated&&t?.formResetCallback?.apply(this,arguments)}formStateRestoreCallback(){const t=i.get(this);t?.formAssociated&&t?.formStateRestoreCallback?.apply(this,arguments)}},h=(t,e,n)=>{if(0===e.size||void 0===n)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,i){const o=t.toLowerCase();if(e.has(o)){const t=this.getAttribute(o);r.call(this,o,i),n.call(this,o,t,i)}else r.call(this,o,i)});const i=t.prototype.removeAttribute;i&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(e.has(r)){const t=this.getAttribute(r);i.call(this,r),n.call(this,r,t,null)}else i.call(this,r)})},d=e=>{const n=Object.getPrototypeOf(e);if(n!==window.HTMLElement)return n===t||"HTMLElement"===n?.prototype?.constructor?.name?Object.setPrototypeOf(e,window.HTMLElement):d(n)},v=(t,e,n=!1)=>{Object.setPrototypeOf(t,e.elementClass.prototype),i.set(t,e),u=t;try{new e.elementClass}catch(t){d(e.elementClass),new e.elementClass}e.observedAttributes.forEach((n=>{t.hasAttribute(n)&&e.attributeChangedCallback.call(t,n,null,t.getAttribute(n))})),n&&e.connectedCallback&&t.isConnected&&e.connectedCallback.call(t)},p=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const e=p.apply(this,arguments);return t.customElements&&(e.customElements=t.customElements),e};let b=[document];const y=(t,e,n)=>{const r=(n?Object.getPrototypeOf(n):t.prototype)[e];t.prototype[e]=function(){b.push(this);const t=r.apply(n||this,arguments);return void 0!==t&&c.set(t,this),b.pop(),t}};y(ShadowRoot,"createElement",document),y(ShadowRoot,"importNode",document),y(Element,"insertAdjacentHTML");const m=(t,e)=>{const n=Object.getOwnPropertyDescriptor(t.prototype,e);Object.defineProperty(t.prototype,e,{...n,set(t){b.push(this),n.set.call(this,t),b.pop()}})};if(m(Element,"innerHTML"),m(ShadowRoot,"innerHTML"),Object.defineProperty(window,"customElements",{value:new CustomElementRegistry,configurable:!0,writable:!0}),window.ElementInternals&&window.ElementInternals.prototype.setFormValue){const t=new WeakMap,e=HTMLElement.prototype.attachInternals,n=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...n){const r=e.call(this,...n);return t.set(r,this),r},n.forEach((e=>{const n=window.ElementInternals.prototype,r=n[e];n[e]=function(...e){const n=t.get(this);if(!0!==i.get(n).formAssociated)throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`);r?.call(this,...e)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class o{constructor(t){const e=new Map;t.forEach(((t,n)=>{const r=t.getAttribute("name"),i=e.get(r)||[];this[+n]=t,i.push(t),e.set(r,i)})),this.length=t.length,e.forEach(((t,e)=>{t&&(1===t.length?this[e]=t[0]:this[e]=new r(t))}))}namedItem(t){return this[t]}}const s=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=s.get.call(this,[]),e=[];for(const n of t){const t=i.get(n);t&&!0!==t.formAssociated||e.push(n)}return new o(e)}})}}try{window.customElements.define("custom-element",null)}catch(t){const e=window.customElements.define;window.customElements.define=(t,n,r)=>{try{e.bind(window.customElements)(t,n,r)}catch(e){console.warn(t,n,r,e)}}}function kt(t,e){const n=()=>JSON.parse(JSON.stringify(t));return at({type:Object,converter:{fromAttribute:t=>{if(null==t)return n();try{return JSON.parse(t)}catch{return n()}},toAttribute:t=>JSON.stringify(t)},...null!=e?e:{}})}class Ft{constructor(t,e,n,r,i){this.name=t,this.category=e,this.fallbackVariable=n,this.defaultValue=r,this.context=i,this._$cssResult$=!0,this.value=this.get()}get cssText(){return this.value.cssText}get styleSheet(){return this.value.styleSheet}toString(){return this.value.toString()}static create(t,e,n){return new Ft(t,e,void 0,n)}static extend(t,e,n){return new Ft(t,e.category,e,n)}static external(t,e){return new Ft(t.name,t.category,t.fallbackVariable,t.defaultValue,e)}get(t){return s`var(${o(this.name)}, ${this.defaultCssValue(t)})`}defaultCssValue(t){return this.fallbackVariable?this.fallbackVariable.get(null!=t?t:this.defaultValue):o(null!=t?t:this.defaultValue)}lastResortDefaultValue(){var t,e;return null!==(t=this.defaultValue)&&void 0!==t?t:null===(e=this.fallbackVariable)||void 0===e?void 0:e.lastResortDefaultValue()}breadcrumb(){return this.fallbackVariable?[this.fallbackVariable.name,...this.fallbackVariable.breadcrumb()]:[]}}const Lt={colorPrimary:Ft.create("--ft-color-primary","COLOR","#2196F3"),colorPrimaryVariant:Ft.create("--ft-color-primary-variant","COLOR","#1976D2"),colorSecondary:Ft.create("--ft-color-secondary","COLOR","#FFCC80"),colorSecondaryVariant:Ft.create("--ft-color-secondary-variant","COLOR","#F57C00"),colorSurface:Ft.create("--ft-color-surface","COLOR","#FFFFFF"),colorContent:Ft.create("--ft-color-content","COLOR","rgba(0, 0, 0, 0.87)"),colorError:Ft.create("--ft-color-error","COLOR","#B00020"),colorOutline:Ft.create("--ft-color-outline","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:Ft.create("--ft-color-opacity-high","NUMBER","1"),colorOpacityMedium:Ft.create("--ft-color-opacity-medium","NUMBER","0.74"),colorOpacityDisabled:Ft.create("--ft-color-opacity-disabled","NUMBER","0.38"),colorOnPrimary:Ft.create("--ft-color-on-primary","COLOR","#FFFFFF"),colorOnPrimaryHigh:Ft.create("--ft-color-on-primary-high","COLOR","#FFFFFF"),colorOnPrimaryMedium:Ft.create("--ft-color-on-primary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:Ft.create("--ft-color-on-primary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:Ft.create("--ft-color-on-secondary","COLOR","#FFFFFF"),colorOnSecondaryHigh:Ft.create("--ft-color-on-secondary-high","COLOR","#FFFFFF"),colorOnSecondaryMedium:Ft.create("--ft-color-on-secondary-medium","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:Ft.create("--ft-color-on-secondary-disabled","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:Ft.create("--ft-color-on-surface","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:Ft.create("--ft-color-on-surface-high","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:Ft.create("--ft-color-on-surface-medium","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:Ft.create("--ft-color-on-surface-disabled","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:Ft.create("--ft-opacity-content-on-surface-disabled","NUMBER","0"),opacityContentOnSurfaceEnable:Ft.create("--ft-opacity-content-on-surface-enable","NUMBER","0"),opacityContentOnSurfaceHover:Ft.create("--ft-opacity-content-on-surface-hover","NUMBER","0.04"),opacityContentOnSurfaceFocused:Ft.create("--ft-opacity-content-on-surface-focused","NUMBER","0.12"),opacityContentOnSurfacePressed:Ft.create("--ft-opacity-content-on-surface-pressed","NUMBER","0.10"),opacityContentOnSurfaceSelected:Ft.create("--ft-opacity-content-on-surface-selected","NUMBER","0.08"),opacityContentOnSurfaceDragged:Ft.create("--ft-opacity-content-on-surface-dragged","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:Ft.create("--ft-opacity-primary-on-surface-disabled","NUMBER","0"),opacityPrimaryOnSurfaceEnable:Ft.create("--ft-opacity-primary-on-surface-enable","NUMBER","0"),opacityPrimaryOnSurfaceHover:Ft.create("--ft-opacity-primary-on-surface-hover","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:Ft.create("--ft-opacity-primary-on-surface-focused","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:Ft.create("--ft-opacity-primary-on-surface-pressed","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:Ft.create("--ft-opacity-primary-on-surface-selected","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:Ft.create("--ft-opacity-primary-on-surface-dragged","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:Ft.create("--ft-opacity-surface-on-primary-disabled","NUMBER","0"),opacitySurfaceOnPrimaryEnable:Ft.create("--ft-opacity-surface-on-primary-enable","NUMBER","0"),opacitySurfaceOnPrimaryHover:Ft.create("--ft-opacity-surface-on-primary-hover","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:Ft.create("--ft-opacity-surface-on-primary-focused","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:Ft.create("--ft-opacity-surface-on-primary-pressed","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:Ft.create("--ft-opacity-surface-on-primary-selected","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:Ft.create("--ft-opacity-surface-on-primary-dragged","NUMBER","0.08"),elevation00:Ft.create("--ft-elevation-00","UNKNOWN","0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0), 0px 0px 0px 0px rgba(0, 0, 0, 0)"),elevation01:Ft.create("--ft-elevation-01","UNKNOWN","0px 1px 4px 0px rgba(0, 0, 0, 0.06), 0px 1px 2px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation02:Ft.create("--ft-elevation-02","UNKNOWN","0px 4px 10px 0px rgba(0, 0, 0, 0.06), 0px 2px 5px 0px rgba(0, 0, 0, 0.14), 0px 0px 1px 0px rgba(0, 0, 0, 0.06)"),elevation03:Ft.create("--ft-elevation-03","UNKNOWN","0px 6px 13px 0px rgba(0, 0, 0, 0.06), 0px 3px 7px 0px rgba(0, 0, 0, 0.14), 0px 1px 2px 0px rgba(0, 0, 0, 0.06)"),elevation04:Ft.create("--ft-elevation-04","UNKNOWN","0px 8px 16px 0px rgba(0, 0, 0, 0.06), 0px 4px 9px 0px rgba(0, 0, 0, 0.14), 0px 2px 3px 0px rgba(0, 0, 0, 0.06)"),elevation06:Ft.create("--ft-elevation-06","UNKNOWN","0px 12px 22px 0px rgba(0, 0, 0, 0.06), 0px 6px 13px 0px rgba(0, 0, 0, 0.14), 0px 4px 5px 0px rgba(0, 0, 0, 0.06)"),elevation08:Ft.create("--ft-elevation-08","UNKNOWN","0px 16px 28px 0px rgba(0, 0, 0, 0.06), 0px 8px 17px 0px rgba(0, 0, 0, 0.14), 0px 6px 7px 0px rgba(0, 0, 0, 0.06)"),elevation12:Ft.create("--ft-elevation-12","UNKNOWN","0px 22px 40px 0px rgba(0, 0, 0, 0.06), 0px 12px 23px 0px rgba(0, 0, 0, 0.14), 0px 10px 11px 0px rgba(0, 0, 0, 0.06)"),elevation16:Ft.create("--ft-elevation-16","UNKNOWN","0px 28px 52px 0px rgba(0, 0, 0, 0.06), 0px 16px 29px 0px rgba(0, 0, 0, 0.14), 0px 14px 15px 0px rgba(0, 0, 0, 0.06)"),elevation24:Ft.create("--ft-elevation-24","UNKNOWN","0px 40px 76px 0px rgba(0, 0, 0, 0.06), 0px 24px 41px 0px rgba(0, 0, 0, 0.14), 0px 22px 23px 0px rgba(0, 0, 0, 0.06)"),borderRadiusS:Ft.create("--ft-border-radius-S","SIZE","4px"),borderRadiusM:Ft.create("--ft-border-radius-M","SIZE","8px"),borderRadiusL:Ft.create("--ft-border-radius-L","SIZE","12px"),borderRadiusXL:Ft.create("--ft-border-radius-XL","SIZE","16px"),titleFont:Ft.create("--ft-title-font","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:Ft.create("--ft-content-font","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:Ft.create("--ft-transition-duration","UNKNOWN","250ms"),transitionTimingFunction:Ft.create("--ft-transition-timing-function","UNKNOWN","ease-in-out")};
122
122
  /**
123
123
  * @license
124
124
  * Copyright 2021 Google LLC
125
125
  * SPDX-License-Identifier: BSD-3-Clause
126
- */class Lt extends(function(t){return class extends t{createRenderRoot(){const t=this.constructor,{registry:e,elementDefinitions:n,shadowRootOptions:r}=t;n&&!e&&(t.registry=new CustomElementRegistry,Object.entries(n).forEach((([e,n])=>t.registry.define(e,n))));const i=this.renderOptions.creationScope=this.attachShadow({...r,customElements:t.registry});return c(i,this.constructor.elementStyles),i}}}(ot)){getStyles(){return[]}getTemplate(){return null}render(){let t=this.getStyles();return Array.isArray(t)||(t=[t]),F`
126
+ */var Tt=function(t,e,n,r){for(var i,o=arguments.length,s=o<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,n):r,c=t.length-1;c>=0;c--)(i=t[c])&&(s=(o<3?i(s):o>3?i(e,n,s):i(e,n))||s);return o>3&&s&&Object.defineProperty(e,n,s),s};class Dt extends(function(t){return class extends t{createRenderRoot(){const t=this.constructor,{registry:e,elementDefinitions:n,shadowRootOptions:r}=t;n&&!e&&(t.registry=new CustomElementRegistry,Object.entries(n).forEach((([e,n])=>t.registry.define(e,n))));const i=this.renderOptions.creationScope=this.attachShadow({...r,customElements:t.registry});return c(i,this.constructor.elementStyles),i}}}(ot)){getStyles(){return[]}getTemplate(){return null}render(){let t=this.getStyles();return Array.isArray(t)||(t=[t]),F`
127
127
  ${t.map((t=>F`
128
128
  <style>${t}</style>
129
129
  `))}
130
130
  ${this.getTemplate()}
131
- `}updated(t){super.updated(t),setTimeout((()=>this.contentAvailableCallback(t)),0)}contentAvailableCallback(t){}}const Tt=s`
131
+ `}updated(t){super.updated(t),setTimeout((()=>{var e;this.contentAvailableCallback(t),(null===(e=this.exportpartsPrefix)||void 0===e?void 0:e.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&this.exportpartsPrefixes.length>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}),0)}setExportpartsAttribute(t){var e,n,r,i,o,s;const c=t=>null!=t&&t.trim().length>0,u=t.filter(c).map((t=>t.trim()));if(0===u.length)return void this.removeAttribute("exportparts");const a=new Set;for(let t of null!==(n=null===(e=this.shadowRoot)||void 0===e?void 0:e.querySelectorAll("[part],[exportparts]"))&&void 0!==n?n:[]){const e=null!==(i=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==i?i:[],n=null!==(s=null===(o=t.getAttribute("exportparts"))||void 0===o?void 0:o.split(",").map((t=>t.split(":")[1])))&&void 0!==s?s:[];new Array(...e,...n).filter(c).map((t=>t.trim())).forEach((t=>a.add(t)))}if(0===a.size)return void this.removeAttribute("exportparts");const l=[...a.values()].flatMap((t=>u.map((e=>`${t}:${e}--${t}`))));this.setAttribute("exportparts",[...this.part,...l].join(", "))}contentAvailableCallback(t){}}Tt([at()],Dt.prototype,"exportpartsPrefix",void 0),Tt([kt([])],Dt.prototype,"exportpartsPrefixes",void 0);const Bt=s`
132
132
  .ft-no-text-select {
133
133
  -webkit-touch-callout: none;
134
134
  -webkit-user-select: none;
@@ -137,9 +137,4 @@ var ft;const ht=null!=(null===(ft=window.HTMLSlotElement)||void 0===ft?void 0:ft
137
137
  -ms-user-select: none;
138
138
  user-select: none;
139
139
  }
140
- `;function Dt(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+t+(n.length?" "+n.map((function(t){return"'"+t+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function Bt(t){return!!t&&!!t[Ce]}function Wt(t){return!!t&&(function(t){if(!t||"object"!=typeof t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;var n=Object.hasOwnProperty.call(e,"constructor")&&e.constructor;return n===Object||"function"==typeof n&&Function.toString.call(n)===Re}(t)||Array.isArray(t)||!!t[je]||!!t.constructor[je]||qt(t)||Zt(t))}function Ht(t,e,n){void 0===n&&(n=!1),0===It(t)?(n?Object.keys:Ne)(t).forEach((function(r){n&&"symbol"==typeof r||e(r,t[r],t)})):t.forEach((function(n,r){return e(r,n,t)}))}function It(t){var e=t[Ce];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:qt(t)?2:Zt(t)?3:0}function Kt(t,e){return 2===It(t)?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function Vt(t,e,n){var r=It(t);2===r?t.set(e,n):3===r?(t.delete(e),t.add(n)):t[e]=n}function zt(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}function qt(t){return ge&&t instanceof Map}function Zt(t){return xe&&t instanceof Set}function Jt(t){return t.o||t.t}function Xt(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Me(t);delete e[Ce];for(var n=Ne(e),r=0;r<n.length;r++){var i=n[r],o=e[i];!1===o.writable&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(e[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:t[i]})}return Object.create(Object.getPrototypeOf(t),e)}function Gt(t,e){return void 0===e&&(e=!1),Yt(t)||Bt(t)||!Wt(t)||(It(t)>1&&(t.set=t.add=t.clear=t.delete=Qt),Object.freeze(t),e&&Ht(t,(function(t,e){return Gt(e,!0)}),!0)),t}function Qt(){Dt(2)}function Yt(t){return null==t||"object"!=typeof t||Object.isFrozen(t)}function te(t){var e=_e[t];return e||Dt(18,t),e}function ee(){return we}function ne(t,e){e&&(te("Patches"),t.u=[],t.s=[],t.v=e)}function re(t){ie(t),t.p.forEach(se),t.p=null}function ie(t){t===we&&(we=t.l)}function oe(t){return we={p:[],l:we,h:t,m:!0,_:0}}function se(t){var e=t[Ce];0===e.i||1===e.i?e.j():e.O=!0}function ce(t,e){e._=e.p.length;var n=e.p[0],r=void 0!==t&&t!==n;return e.h.g||te("ES5").S(e,t,r),r?(n[Ce].P&&(re(e),Dt(4)),Wt(t)&&(t=ue(e,t),e.l||le(e,t)),e.u&&te("Patches").M(n[Ce].t,t,e.u,e.s)):t=ue(e,n,[]),re(e),e.u&&e.v(e.u,e.s),t!==Ee?t:void 0}function ue(t,e,n){if(Yt(e))return e;var r=e[Ce];if(!r)return Ht(e,(function(i,o){return ae(t,r,e,i,o,n)}),!0),e;if(r.A!==t)return e;if(!r.P)return le(t,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=4===r.i||5===r.i?r.o=Xt(r.k):r.o;Ht(3===r.i?new Set(i):i,(function(e,o){return ae(t,r,i,e,o,n)})),le(t,i,!1),n&&t.u&&te("Patches").R(r,n,t.u,t.s)}return r.o}function ae(t,e,n,r,i,o){if(Bt(i)){var s=ue(t,i,o&&e&&3!==e.i&&!Kt(e.D,r)?o.concat(r):void 0);if(Vt(n,r,s),!Bt(s))return;t.m=!1}if(Wt(i)&&!Yt(i)){if(!t.h.F&&t._<1)return;ue(t,i),e&&e.A.l||le(t,i)}}function le(t,e,n){void 0===n&&(n=!1),t.h.F&&t.m&&Gt(e,n)}function fe(t,e){var n=t[Ce];return(n?Jt(n):t)[e]}function he(t,e){if(e in t)for(var n=Object.getPrototypeOf(t);n;){var r=Object.getOwnPropertyDescriptor(n,e);if(r)return r;n=Object.getPrototypeOf(n)}}function de(t){t.P||(t.P=!0,t.l&&de(t.l))}function ve(t){t.o||(t.o=Xt(t.t))}function pe(t,e,n){var r=qt(e)?te("MapSet").N(e,n):Zt(e)?te("MapSet").T(e,n):t.g?function(t,e){var n=Array.isArray(t),r={i:n?1:0,A:e?e.A:ee(),P:!1,I:!1,D:{},l:e,t,k:null,o:null,j:null,C:!1},i=r,o=Ae;n&&(i=[r],o=$e);var s=Proxy.revocable(i,o),c=s.revoke,u=s.proxy;return r.k=u,r.j=c,u}(e,n):te("ES5").J(e,n);return(n?n.A:ee()).p.push(r),r}function be(t){return Bt(t)||Dt(22,t),function t(e){if(!Wt(e))return e;var n,r=e[Ce],i=It(e);if(r){if(!r.P&&(r.i<4||!te("ES5").K(r)))return r.t;r.I=!0,n=ye(e,i),r.I=!1}else n=ye(e,i);return Ht(n,(function(e,i){r&&function(t,e){return 2===It(t)?t.get(e):t[e]}(r.t,e)===i||Vt(n,e,t(i))})),3===i?new Set(n):n}(t)}function ye(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Xt(t)}var me,we,Oe="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),ge="undefined"!=typeof Map,xe="undefined"!=typeof Set,Se="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,Ee=Oe?Symbol.for("immer-nothing"):((me={})["immer-nothing"]=!0,me),je=Oe?Symbol.for("immer-draftable"):"__$immer_draftable",Ce=Oe?Symbol.for("immer-state"):"__$immer_state",Re=""+Object.prototype.constructor,Ne="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Me=Object.getOwnPropertyDescriptors||function(t){var e={};return Ne(t).forEach((function(n){e[n]=Object.getOwnPropertyDescriptor(t,n)})),e},_e={},Ae={get:function(t,e){if(e===Ce)return t;var n=Jt(t);if(!Kt(n,e))return function(t,e,n){var r,i=he(e,n);return i?"value"in i?i.value:null===(r=i.get)||void 0===r?void 0:r.call(t.k):void 0}(t,n,e);var r=n[e];return t.I||!Wt(r)?r:r===fe(t.t,e)?(ve(t),t.o[e]=pe(t.A.h,r,t)):r},has:function(t,e){return e in Jt(t)},ownKeys:function(t){return Reflect.ownKeys(Jt(t))},set:function(t,e,n){var r=he(Jt(t),e);if(null==r?void 0:r.set)return r.set.call(t.k,n),!0;if(!t.P){var i=fe(Jt(t),e),o=null==i?void 0:i[Ce];if(o&&o.t===n)return t.o[e]=n,t.D[e]=!1,!0;if(zt(n,i)&&(void 0!==n||Kt(t.t,e)))return!0;ve(t),de(t)}return t.o[e]===n&&"number"!=typeof n&&(void 0!==n||e in t.o)||(t.o[e]=n,t.D[e]=!0,!0)},deleteProperty:function(t,e){return void 0!==fe(t.t,e)||e in t.t?(t.D[e]=!1,ve(t),de(t)):delete t.D[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var n=Jt(t),r=Reflect.getOwnPropertyDescriptor(n,e);return r?{writable:!0,configurable:1!==t.i||"length"!==e,enumerable:r.enumerable,value:n[e]}:r},defineProperty:function(){Dt(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){Dt(12)}},$e={};Ht(Ae,(function(t,e){$e[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}})),$e.deleteProperty=function(t,e){return $e.set.call(this,t,e,void 0)},$e.set=function(t,e,n){return Ae.set.call(this,t[0],e,n,t[0])};var Ue=function(){function t(t){var e=this;this.g=Se,this.F=!0,this.produce=function(t,n,r){if("function"==typeof t&&"function"!=typeof n){var i=n;n=t;var o=e;return function(t){var e=this;void 0===t&&(t=i);for(var r=arguments.length,s=Array(r>1?r-1:0),c=1;c<r;c++)s[c-1]=arguments[c];return o.produce(t,(function(t){var r;return(r=n).call.apply(r,[e,t].concat(s))}))}}var s;if("function"!=typeof n&&Dt(6),void 0!==r&&"function"!=typeof r&&Dt(7),Wt(t)){var c=oe(e),u=pe(e,t,void 0),a=!0;try{s=n(u),a=!1}finally{a?re(c):ie(c)}return"undefined"!=typeof Promise&&s instanceof Promise?s.then((function(t){return ne(c,r),ce(t,c)}),(function(t){throw re(c),t})):(ne(c,r),ce(s,c))}if(!t||"object"!=typeof t){if(void 0===(s=n(t))&&(s=t),s===Ee&&(s=void 0),e.F&&Gt(s,!0),r){var l=[],f=[];te("Patches").M(t,s,l,f),r(l,f)}return s}Dt(21,t)},this.produceWithPatches=function(t,n){if("function"==typeof t)return function(n){for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o<r;o++)i[o-1]=arguments[o];return e.produceWithPatches(n,(function(e){return t.apply(void 0,[e].concat(i))}))};var r,i,o=e.produce(t,n,(function(t,e){r=t,i=e}));return"undefined"!=typeof Promise&&o instanceof Promise?o.then((function(t){return[t,r,i]})):[o,r,i]},"boolean"==typeof(null==t?void 0:t.useProxies)&&this.setUseProxies(t.useProxies),"boolean"==typeof(null==t?void 0:t.autoFreeze)&&this.setAutoFreeze(t.autoFreeze)}var e=t.prototype;return e.createDraft=function(t){Wt(t)||Dt(8),Bt(t)&&(t=be(t));var e=oe(this),n=pe(this,t,void 0);return n[Ce].C=!0,ie(e),n},e.finishDraft=function(t,e){var n=(t&&t[Ce]).A;return ne(n,e),ce(void 0,n)},e.setAutoFreeze=function(t){this.F=t},e.setUseProxies=function(t){t&&!Se&&Dt(20),this.g=t},e.applyPatches=function(t,e){var n;for(n=e.length-1;n>=0;n--){var r=e[n];if(0===r.path.length&&"replace"===r.op){t=r.value;break}}n>-1&&(e=e.slice(n+1));var i=te("Patches").$;return Bt(t)?i(t,e):this.produce(t,(function(t){return i(t,e)}))},t}(),Pe=new Ue;function ke(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Fe(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function Le(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Fe(Object(n),!0).forEach((function(e){ke(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Fe(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function Te(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}Pe.produce,Pe.produceWithPatches.bind(Pe),Pe.setAutoFreeze.bind(Pe),Pe.setUseProxies.bind(Pe),Pe.applyPatches.bind(Pe),Pe.createDraft.bind(Pe),Pe.finishDraft.bind(Pe);var De="function"==typeof Symbol&&Symbol.observable||"@@observable",Be=function(){return Math.random().toString(36).substring(7).split("").join(".")},We={INIT:"@@redux/INIT"+Be(),REPLACE:"@@redux/REPLACE"+Be(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+Be()}};function He(t){if("object"!=typeof t||null===t)return!1;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function Ie(t,e,n){var r;if("function"==typeof e&&"function"==typeof n||"function"==typeof n&&"function"==typeof arguments[3])throw new Error(Te(0));if("function"==typeof e&&void 0===n&&(n=e,e=void 0),void 0!==n){if("function"!=typeof n)throw new Error(Te(1));return n(Ie)(t,e)}if("function"!=typeof t)throw new Error(Te(2));var i=t,o=e,s=[],c=s,u=!1;function a(){c===s&&(c=s.slice())}function l(){if(u)throw new Error(Te(3));return o}function f(t){if("function"!=typeof t)throw new Error(Te(4));if(u)throw new Error(Te(5));var e=!0;return a(),c.push(t),function(){if(e){if(u)throw new Error(Te(6));e=!1,a();var n=c.indexOf(t);c.splice(n,1),s=null}}}function h(t){if(!He(t))throw new Error(Te(7));if(void 0===t.type)throw new Error(Te(8));if(u)throw new Error(Te(9));try{u=!0,o=i(o,t)}finally{u=!1}for(var e=s=c,n=0;n<e.length;n++)(0,e[n])();return t}function d(t){if("function"!=typeof t)throw new Error(Te(10));i=t,h({type:We.REPLACE})}function v(){var t,e=f;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(Te(11));function n(){t.next&&t.next(l())}return n(),{unsubscribe:e(n)}}})[De]=function(){return this},t}return h({type:We.INIT}),(r={dispatch:h,subscribe:f,getState:l,replaceReducer:d})[De]=v,r}function Ke(t){for(var e=Object.keys(t),n={},r=0;r<e.length;r++){var i=e[r];"function"==typeof t[i]&&(n[i]=t[i])}var o,s=Object.keys(n);try{!function(t){Object.keys(t).forEach((function(e){var n=t[e];if(void 0===n(void 0,{type:We.INIT}))throw new Error(Te(12));if(void 0===n(void 0,{type:We.PROBE_UNKNOWN_ACTION()}))throw new Error(Te(13))}))}(n)}catch(t){o=t}return function(t,e){if(void 0===t&&(t={}),o)throw o;for(var r=!1,i={},c=0;c<s.length;c++){var u=s[c],a=n[u],l=t[u],f=a(l,e);if(void 0===f)throw e&&e.type,new Error(Te(14));i[u]=f,r=r||f!==l}return(r=r||s.length!==Object.keys(t).length)?i:t}}function Ve(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return 0===e.length?function(t){return t}:1===e.length?e[0]:e.reduce((function(t,e){return function(){return t(e.apply(void 0,arguments))}}))}function ze(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return function(){var n=t.apply(void 0,arguments),r=function(){throw new Error(Te(15))},i={getState:n.getState,dispatch:function(){return r.apply(void 0,arguments)}},o=e.map((function(t){return t(i)}));return r=Ve.apply(void 0,o)(n.dispatch),Le(Le({},n),{},{dispatch:r})}}}function qe(t){return function(e){var n=e.dispatch,r=e.getState;return function(e){return function(i){return"function"==typeof i?i(n,r,t):e(i)}}}}var Ze=qe();Ze.withExtraArgument=qe;var Je,Xe,Ge,Qe,Ye=Ze,tn=(Je=function(t,e){return Je=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Je(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Je(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),en=function(t,e){for(var n=0,r=e.length,i=t.length;n<r;n++,i++)t[i]=e[n];return t},nn=Object.defineProperty,rn=Object.getOwnPropertySymbols,on=Object.prototype.hasOwnProperty,sn=Object.prototype.propertyIsEnumerable,cn=function(t,e,n){return e in t?nn(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n},un="undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(0!==arguments.length)return"object"==typeof arguments[0]?Ve:Ve.apply(null,arguments)},an=function(t){function e(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i=t.apply(this,n)||this;return Object.setPrototypeOf(i,e.prototype),i}return tn(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,en([void 0],t[0].concat(this)))):new(e.bind.apply(e,en([void 0],t.concat(this))))},e}(Array);function ln(){return function(t){return function(t){void 0===t&&(t={});var e=t.thunk,n=void 0===e||e;t.immutableCheck,t.serializableCheck;var r=new an;return n&&(function(t){return"boolean"==typeof t}(n)?r.push(Ye):r.push(Ye.withExtraArgument(n.extraArgument))),r}(t)}}function fn(t){var e,n=ln(),r=t||{},i=r.reducer,o=void 0===i?void 0:i,s=r.middleware,c=void 0===s?n():s,u=r.devTools,a=void 0===u||u,l=r.preloadedState,f=void 0===l?void 0:l,h=r.enhancers,d=void 0===h?void 0:h;if("function"==typeof o)e=o;else{if(!function(t){if("object"!=typeof t||null===t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;for(var n=e;null!==Object.getPrototypeOf(n);)n=Object.getPrototypeOf(n);return e===n}(o))throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');e=Ke(o)}var v=c;"function"==typeof v&&(v=v(n));var p=ze.apply(void 0,v),b=Ve;a&&(b=un(function(t,e){for(var n in e||(e={}))on.call(e,n)&&cn(t,n,e[n]);if(rn)for(var r=0,i=rn(e);r<i.length;r++)n=i[r],sn.call(e,n)&&cn(t,n,e[n]);return t}({trace:!1},"object"==typeof a&&a)));var y=[p];return Array.isArray(d)?y=en([p],d):"function"==typeof d&&(y=d(y)),Ie(e,f,b.apply(void 0,y))}!function(){function t(t,e){var n=i[t];return n?n.enumerable=e:i[t]=n={configurable:!0,enumerable:e,get:function(){var e=this[Ce];return Ae.get(e,t)},set:function(e){var n=this[Ce];Ae.set(n,t,e)}},n}function e(t){for(var e=t.length-1;e>=0;e--){var i=t[e][Ce];if(!i.P)switch(i.i){case 5:r(i)&&de(i);break;case 4:n(i)&&de(i)}}}function n(t){for(var e=t.t,n=t.k,r=Ne(n),i=r.length-1;i>=0;i--){var o=r[i];if(o!==Ce){var s=e[o];if(void 0===s&&!Kt(e,o))return!0;var c=n[o],u=c&&c[Ce];if(u?u.t!==s:!zt(c,s))return!0}}var a=!!e[Ce];return r.length!==Ne(e).length+(a?0:1)}function r(t){var e=t.k;if(e.length!==t.t.length)return!0;var n=Object.getOwnPropertyDescriptor(e,e.length-1);if(n&&!n.get)return!0;for(var r=0;r<e.length;r++)if(!e.hasOwnProperty(r))return!0;return!1}var i={};!function(t,e){_e[t]||(_e[t]=e)}("ES5",{J:function(e,n){var r=Array.isArray(e),i=function(e,n){if(e){for(var r=Array(n.length),i=0;i<n.length;i++)Object.defineProperty(r,""+i,t(i,!0));return r}var o=Me(n);delete o[Ce];for(var s=Ne(o),c=0;c<s.length;c++){var u=s[c];o[u]=t(u,e||!!o[u].enumerable)}return Object.create(Object.getPrototypeOf(n),o)}(r,e),o={i:r?5:4,A:n?n.A:ee(),P:!1,I:!1,D:{},l:n,t:e,k:i,o:null,O:!1,C:!1};return Object.defineProperty(i,Ce,{value:o,writable:!0}),i},S:function(t,n,i){i?Bt(n)&&n[Ce].A===t&&e(t.p):(t.u&&function t(e){if(e&&"object"==typeof e){var n=e[Ce];if(n){var i=n.t,o=n.k,s=n.D,c=n.i;if(4===c)Ht(o,(function(e){e!==Ce&&(void 0!==i[e]||Kt(i,e)?s[e]||t(o[e]):(s[e]=!0,de(n)))})),Ht(i,(function(t){void 0!==o[t]||Kt(o,t)||(s[t]=!1,de(n))}));else if(5===c){if(r(n)&&(de(n),s.length=!0),o.length<i.length)for(var u=o.length;u<i.length;u++)s[u]=!1;else for(var a=i.length;a<o.length;a++)s[a]=!0;for(var l=Math.min(o.length,i.length),f=0;f<l;f++)o.hasOwnProperty(f)||(s[f]=!0),void 0===s[f]&&t(o[f])}}}}(t.p[0]),e(t.p))},K:function(t){return 4===t.i?n(t):r(t)}})}();const hn=navigator.vendor&&!!navigator.vendor.match(/apple/i)||"[object SafariRemoteNotification]"===(null!==(Qe=null===(Ge=null===(Xe=window.safari)||void 0===Xe?void 0:Xe.pushNotification)||void 0===Ge?void 0:Ge.toString())&&void 0!==Qe?Qe:"");var dn=Object.freeze({__proto__:null,isSafari:hn,Debouncer:class{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,e){this.callbacks=[t],this.debounce(e)}queue(t,e){this.callbacks.push(t),this.debounce(e)}cancel(){null!=this._debounce&&window.clearTimeout(this._debounce)}debounce(t){this.cancel(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout)}runCallbacks(){for(let t of this.callbacks)t();this.callbacks=[]}},customElement:t=>e=>{window.customElements.get(t)||window.customElements.define(t,e)},jsonProperty:function(t,e){const n=()=>JSON.parse(JSON.stringify(t));return at({type:Object,converter:{fromAttribute:t=>{if(null==t)return n();try{return JSON.parse(t)}catch{return n()}},toAttribute:t=>JSON.stringify(t)},...null!=e?e:{}})},designSystemVariables:Ft,FtCssVariable:kt,setVariable:function(t,e){return o(`${t.name}: ${e}`)},FtLitElement:Lt,noTextSelect:Tt,InlineStyles:function t(e){var n;let r;if("elementDefinitions"in e){r={};const n=e.elementDefinitions;for(let e in n)r[e]=t(n[e])}return n=class extends e{render(){var t;let n=null!==(t=e.styles)&&void 0!==t?t:[];return Array.isArray(n)||(n=[n]),F`
141
- ${n.map((t=>F`
142
- <style>${t}</style>
143
- `))}
144
- ${super.render()}
145
- `}},n.styles=void 0,n.elementDefinitions=r,n},ParametrizedLabelResolver:class{constructor(t,e){this.defaultLabels=t,this.labels=e}resolve(t,...e){var n,r;let i=null!==(r=null!==(n=this.labels[t])&&void 0!==n?n:this.defaultLabels[t])&&void 0!==r?r:"";return e.forEach(((t,e)=>i=i.replace(new RegExp(`\\{${e}\\}`,"g"),t))),i}},redux:(t,e)=>(n,r)=>{n.constructor.createProperty(r,{attribute:!1,hasChanged:e});const i=n;i.reduxProperties=i.reduxProperties||new Map,i.reduxProperties.set(r,t)},FtLitElementRedux:class extends Lt{updateFromStore(){const t=this.store.getState();this.reduxProperties&&this.reduxProperties.forEach(((e,n)=>{this[n]=e(t)}))}connectedCallback(){super.connectedCallback(),this.updateFromStore(),this.unsubscribeFromStore=this.store.subscribe((()=>{this.updateFromStore()}))}disconnectedCallback(){this.unsubscribeFromStore&&this.unsubscribeFromStore(),super.disconnectedCallback()}},getStore:function(t){window.ftReduxStores||(window.ftReduxStores={});const e=t.name;return window.ftReduxStores[e]||(window.ftReduxStores[e]=fn({reducer:t.reducer})),window.ftReduxStores[e]}});t.lit=ct,t.litClassMap=Mt,t.litDecorators=vt,t.litRepeat=Rt,t.litStyleMap=At,t.litUnsafeHTML=Pt,t.wcUtils=dn,Object.defineProperty(t,"U",{value:!0})},"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).ftGlobals={});
140
+ `;function Wt(t){for(var e=arguments.length,n=Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];throw Error("[Immer] minified error nr: "+t+(n.length?" "+n.map((function(t){return"'"+t+"'"})).join(","):"")+". Find the full error at: https://bit.ly/3cXEKWf")}function Ht(t){return!!t&&!!t[Ne]}function It(t){return!!t&&(function(t){if(!t||"object"!=typeof t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;var n=Object.hasOwnProperty.call(e,"constructor")&&e.constructor;return n===Object||"function"==typeof n&&Function.toString.call(n)===Me}(t)||Array.isArray(t)||!!t[Re]||!!t.constructor[Re]||Jt(t)||Xt(t))}function Kt(t,e,n){void 0===n&&(n=!1),0===Vt(t)?(n?Object.keys:_e)(t).forEach((function(r){n&&"symbol"==typeof r||e(r,t[r],t)})):t.forEach((function(n,r){return e(r,n,t)}))}function Vt(t){var e=t[Ne];return e?e.i>3?e.i-4:e.i:Array.isArray(t)?1:Jt(t)?2:Xt(t)?3:0}function zt(t,e){return 2===Vt(t)?t.has(e):Object.prototype.hasOwnProperty.call(t,e)}function qt(t,e,n){var r=Vt(t);2===r?t.set(e,n):3===r?(t.delete(e),t.add(n)):t[e]=n}function Zt(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e}function Jt(t){return Se&&t instanceof Map}function Xt(t){return Ee&&t instanceof Set}function Gt(t){return t.o||t.t}function Qt(t){if(Array.isArray(t))return Array.prototype.slice.call(t);var e=Ae(t);delete e[Ne];for(var n=_e(e),r=0;r<n.length;r++){var i=n[r],o=e[i];!1===o.writable&&(o.writable=!0,o.configurable=!0),(o.get||o.set)&&(e[i]={configurable:!0,writable:!0,enumerable:o.enumerable,value:t[i]})}return Object.create(Object.getPrototypeOf(t),e)}function Yt(t,e){return void 0===e&&(e=!1),ee(t)||Ht(t)||!It(t)||(Vt(t)>1&&(t.set=t.add=t.clear=t.delete=te),Object.freeze(t),e&&Kt(t,(function(t,e){return Yt(e,!0)}),!0)),t}function te(){Wt(2)}function ee(t){return null==t||"object"!=typeof t||Object.isFrozen(t)}function ne(t){var e=$e[t];return e||Wt(18,t),e}function re(){return ge}function ie(t,e){e&&(ne("Patches"),t.u=[],t.s=[],t.v=e)}function oe(t){se(t),t.p.forEach(ue),t.p=null}function se(t){t===ge&&(ge=t.l)}function ce(t){return ge={p:[],l:ge,h:t,m:!0,_:0}}function ue(t){var e=t[Ne];0===e.i||1===e.i?e.j():e.O=!0}function ae(t,e){e._=e.p.length;var n=e.p[0],r=void 0!==t&&t!==n;return e.h.g||ne("ES5").S(e,t,r),r?(n[Ne].P&&(oe(e),Wt(4)),It(t)&&(t=le(e,t),e.l||he(e,t)),e.u&&ne("Patches").M(n[Ne].t,t,e.u,e.s)):t=le(e,n,[]),oe(e),e.u&&e.v(e.u,e.s),t!==Ce?t:void 0}function le(t,e,n){if(ee(e))return e;var r=e[Ne];if(!r)return Kt(e,(function(i,o){return fe(t,r,e,i,o,n)}),!0),e;if(r.A!==t)return e;if(!r.P)return he(t,r.t,!0),r.t;if(!r.I){r.I=!0,r.A._--;var i=4===r.i||5===r.i?r.o=Qt(r.k):r.o;Kt(3===r.i?new Set(i):i,(function(e,o){return fe(t,r,i,e,o,n)})),he(t,i,!1),n&&t.u&&ne("Patches").R(r,n,t.u,t.s)}return r.o}function fe(t,e,n,r,i,o){if(Ht(i)){var s=le(t,i,o&&e&&3!==e.i&&!zt(e.D,r)?o.concat(r):void 0);if(qt(n,r,s),!Ht(s))return;t.m=!1}if(It(i)&&!ee(i)){if(!t.h.F&&t._<1)return;le(t,i),e&&e.A.l||he(t,i)}}function he(t,e,n){void 0===n&&(n=!1),t.h.F&&t.m&&Yt(e,n)}function de(t,e){var n=t[Ne];return(n?Gt(n):t)[e]}function ve(t,e){if(e in t)for(var n=Object.getPrototypeOf(t);n;){var r=Object.getOwnPropertyDescriptor(n,e);if(r)return r;n=Object.getPrototypeOf(n)}}function pe(t){t.P||(t.P=!0,t.l&&pe(t.l))}function be(t){t.o||(t.o=Qt(t.t))}function ye(t,e,n){var r=Jt(e)?ne("MapSet").N(e,n):Xt(e)?ne("MapSet").T(e,n):t.g?function(t,e){var n=Array.isArray(t),r={i:n?1:0,A:e?e.A:re(),P:!1,I:!1,D:{},l:e,t,k:null,o:null,j:null,C:!1},i=r,o=Ue;n&&(i=[r],o=Pe);var s=Proxy.revocable(i,o),c=s.revoke,u=s.proxy;return r.k=u,r.j=c,u}(e,n):ne("ES5").J(e,n);return(n?n.A:re()).p.push(r),r}function me(t){return Ht(t)||Wt(22,t),function t(e){if(!It(e))return e;var n,r=e[Ne],i=Vt(e);if(r){if(!r.P&&(r.i<4||!ne("ES5").K(r)))return r.t;r.I=!0,n=we(e,i),r.I=!1}else n=we(e,i);return Kt(n,(function(e,i){r&&function(t,e){return 2===Vt(t)?t.get(e):t[e]}(r.t,e)===i||qt(n,e,t(i))})),3===i?new Set(n):n}(t)}function we(t,e){switch(e){case 2:return new Map(t);case 3:return Array.from(t)}return Qt(t)}var Oe,ge,xe="undefined"!=typeof Symbol&&"symbol"==typeof Symbol("x"),Se="undefined"!=typeof Map,Ee="undefined"!=typeof Set,je="undefined"!=typeof Proxy&&void 0!==Proxy.revocable&&"undefined"!=typeof Reflect,Ce=xe?Symbol.for("immer-nothing"):((Oe={})["immer-nothing"]=!0,Oe),Re=xe?Symbol.for("immer-draftable"):"__$immer_draftable",Ne=xe?Symbol.for("immer-state"):"__$immer_state",Me=""+Object.prototype.constructor,_e="undefined"!=typeof Reflect&&Reflect.ownKeys?Reflect.ownKeys:void 0!==Object.getOwnPropertySymbols?function(t){return Object.getOwnPropertyNames(t).concat(Object.getOwnPropertySymbols(t))}:Object.getOwnPropertyNames,Ae=Object.getOwnPropertyDescriptors||function(t){var e={};return _e(t).forEach((function(n){e[n]=Object.getOwnPropertyDescriptor(t,n)})),e},$e={},Ue={get:function(t,e){if(e===Ne)return t;var n=Gt(t);if(!zt(n,e))return function(t,e,n){var r,i=ve(e,n);return i?"value"in i?i.value:null===(r=i.get)||void 0===r?void 0:r.call(t.k):void 0}(t,n,e);var r=n[e];return t.I||!It(r)?r:r===de(t.t,e)?(be(t),t.o[e]=ye(t.A.h,r,t)):r},has:function(t,e){return e in Gt(t)},ownKeys:function(t){return Reflect.ownKeys(Gt(t))},set:function(t,e,n){var r=ve(Gt(t),e);if(null==r?void 0:r.set)return r.set.call(t.k,n),!0;if(!t.P){var i=de(Gt(t),e),o=null==i?void 0:i[Ne];if(o&&o.t===n)return t.o[e]=n,t.D[e]=!1,!0;if(Zt(n,i)&&(void 0!==n||zt(t.t,e)))return!0;be(t),pe(t)}return t.o[e]===n&&"number"!=typeof n&&(void 0!==n||e in t.o)||(t.o[e]=n,t.D[e]=!0,!0)},deleteProperty:function(t,e){return void 0!==de(t.t,e)||e in t.t?(t.D[e]=!1,be(t),pe(t)):delete t.D[e],t.o&&delete t.o[e],!0},getOwnPropertyDescriptor:function(t,e){var n=Gt(t),r=Reflect.getOwnPropertyDescriptor(n,e);return r?{writable:!0,configurable:1!==t.i||"length"!==e,enumerable:r.enumerable,value:n[e]}:r},defineProperty:function(){Wt(11)},getPrototypeOf:function(t){return Object.getPrototypeOf(t.t)},setPrototypeOf:function(){Wt(12)}},Pe={};Kt(Ue,(function(t,e){Pe[t]=function(){return arguments[0]=arguments[0][0],e.apply(this,arguments)}})),Pe.deleteProperty=function(t,e){return Pe.set.call(this,t,e,void 0)},Pe.set=function(t,e,n){return Ue.set.call(this,t[0],e,n,t[0])};var ke=function(){function t(t){var e=this;this.g=je,this.F=!0,this.produce=function(t,n,r){if("function"==typeof t&&"function"!=typeof n){var i=n;n=t;var o=e;return function(t){var e=this;void 0===t&&(t=i);for(var r=arguments.length,s=Array(r>1?r-1:0),c=1;c<r;c++)s[c-1]=arguments[c];return o.produce(t,(function(t){var r;return(r=n).call.apply(r,[e,t].concat(s))}))}}var s;if("function"!=typeof n&&Wt(6),void 0!==r&&"function"!=typeof r&&Wt(7),It(t)){var c=ce(e),u=ye(e,t,void 0),a=!0;try{s=n(u),a=!1}finally{a?oe(c):se(c)}return"undefined"!=typeof Promise&&s instanceof Promise?s.then((function(t){return ie(c,r),ae(t,c)}),(function(t){throw oe(c),t})):(ie(c,r),ae(s,c))}if(!t||"object"!=typeof t){if(void 0===(s=n(t))&&(s=t),s===Ce&&(s=void 0),e.F&&Yt(s,!0),r){var l=[],f=[];ne("Patches").M(t,s,l,f),r(l,f)}return s}Wt(21,t)},this.produceWithPatches=function(t,n){if("function"==typeof t)return function(n){for(var r=arguments.length,i=Array(r>1?r-1:0),o=1;o<r;o++)i[o-1]=arguments[o];return e.produceWithPatches(n,(function(e){return t.apply(void 0,[e].concat(i))}))};var r,i,o=e.produce(t,n,(function(t,e){r=t,i=e}));return"undefined"!=typeof Promise&&o instanceof Promise?o.then((function(t){return[t,r,i]})):[o,r,i]},"boolean"==typeof(null==t?void 0:t.useProxies)&&this.setUseProxies(t.useProxies),"boolean"==typeof(null==t?void 0:t.autoFreeze)&&this.setAutoFreeze(t.autoFreeze)}var e=t.prototype;return e.createDraft=function(t){It(t)||Wt(8),Ht(t)&&(t=me(t));var e=ce(this),n=ye(this,t,void 0);return n[Ne].C=!0,se(e),n},e.finishDraft=function(t,e){var n=(t&&t[Ne]).A;return ie(n,e),ae(void 0,n)},e.setAutoFreeze=function(t){this.F=t},e.setUseProxies=function(t){t&&!je&&Wt(20),this.g=t},e.applyPatches=function(t,e){var n;for(n=e.length-1;n>=0;n--){var r=e[n];if(0===r.path.length&&"replace"===r.op){t=r.value;break}}n>-1&&(e=e.slice(n+1));var i=ne("Patches").$;return Ht(t)?i(t,e):this.produce(t,(function(t){return i(t,e)}))},t}(),Fe=new ke;function Le(t,e,n){return e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n,t}function Te(t,e){var n=Object.keys(t);if(Object.getOwnPropertySymbols){var r=Object.getOwnPropertySymbols(t);e&&(r=r.filter((function(e){return Object.getOwnPropertyDescriptor(t,e).enumerable}))),n.push.apply(n,r)}return n}function De(t){for(var e=1;e<arguments.length;e++){var n=null!=arguments[e]?arguments[e]:{};e%2?Te(Object(n),!0).forEach((function(e){Le(t,e,n[e])})):Object.getOwnPropertyDescriptors?Object.defineProperties(t,Object.getOwnPropertyDescriptors(n)):Te(Object(n)).forEach((function(e){Object.defineProperty(t,e,Object.getOwnPropertyDescriptor(n,e))}))}return t}function Be(t){return"Minified Redux error #"+t+"; visit https://redux.js.org/Errors?code="+t+" for the full message or use the non-minified dev environment for full errors. "}Fe.produce,Fe.produceWithPatches.bind(Fe),Fe.setAutoFreeze.bind(Fe),Fe.setUseProxies.bind(Fe),Fe.applyPatches.bind(Fe),Fe.createDraft.bind(Fe),Fe.finishDraft.bind(Fe);var We="function"==typeof Symbol&&Symbol.observable||"@@observable",He=function(){return Math.random().toString(36).substring(7).split("").join(".")},Ie={INIT:"@@redux/INIT"+He(),REPLACE:"@@redux/REPLACE"+He(),PROBE_UNKNOWN_ACTION:function(){return"@@redux/PROBE_UNKNOWN_ACTION"+He()}};function Ke(t){if("object"!=typeof t||null===t)return!1;for(var e=t;null!==Object.getPrototypeOf(e);)e=Object.getPrototypeOf(e);return Object.getPrototypeOf(t)===e}function Ve(t,e,n){var r;if("function"==typeof e&&"function"==typeof n||"function"==typeof n&&"function"==typeof arguments[3])throw new Error(Be(0));if("function"==typeof e&&void 0===n&&(n=e,e=void 0),void 0!==n){if("function"!=typeof n)throw new Error(Be(1));return n(Ve)(t,e)}if("function"!=typeof t)throw new Error(Be(2));var i=t,o=e,s=[],c=s,u=!1;function a(){c===s&&(c=s.slice())}function l(){if(u)throw new Error(Be(3));return o}function f(t){if("function"!=typeof t)throw new Error(Be(4));if(u)throw new Error(Be(5));var e=!0;return a(),c.push(t),function(){if(e){if(u)throw new Error(Be(6));e=!1,a();var n=c.indexOf(t);c.splice(n,1),s=null}}}function h(t){if(!Ke(t))throw new Error(Be(7));if(void 0===t.type)throw new Error(Be(8));if(u)throw new Error(Be(9));try{u=!0,o=i(o,t)}finally{u=!1}for(var e=s=c,n=0;n<e.length;n++)(0,e[n])();return t}function d(t){if("function"!=typeof t)throw new Error(Be(10));i=t,h({type:Ie.REPLACE})}function v(){var t,e=f;return(t={subscribe:function(t){if("object"!=typeof t||null===t)throw new Error(Be(11));function n(){t.next&&t.next(l())}return n(),{unsubscribe:e(n)}}})[We]=function(){return this},t}return h({type:Ie.INIT}),(r={dispatch:h,subscribe:f,getState:l,replaceReducer:d})[We]=v,r}function ze(t){for(var e=Object.keys(t),n={},r=0;r<e.length;r++){var i=e[r];"function"==typeof t[i]&&(n[i]=t[i])}var o,s=Object.keys(n);try{!function(t){Object.keys(t).forEach((function(e){var n=t[e];if(void 0===n(void 0,{type:Ie.INIT}))throw new Error(Be(12));if(void 0===n(void 0,{type:Ie.PROBE_UNKNOWN_ACTION()}))throw new Error(Be(13))}))}(n)}catch(t){o=t}return function(t,e){if(void 0===t&&(t={}),o)throw o;for(var r=!1,i={},c=0;c<s.length;c++){var u=s[c],a=n[u],l=t[u],f=a(l,e);if(void 0===f)throw e&&e.type,new Error(Be(14));i[u]=f,r=r||f!==l}return(r=r||s.length!==Object.keys(t).length)?i:t}}function qe(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return 0===e.length?function(t){return t}:1===e.length?e[0]:e.reduce((function(t,e){return function(){return t(e.apply(void 0,arguments))}}))}function Ze(){for(var t=arguments.length,e=new Array(t),n=0;n<t;n++)e[n]=arguments[n];return function(t){return function(){var n=t.apply(void 0,arguments),r=function(){throw new Error(Be(15))},i={getState:n.getState,dispatch:function(){return r.apply(void 0,arguments)}},o=e.map((function(t){return t(i)}));return r=qe.apply(void 0,o)(n.dispatch),De(De({},n),{},{dispatch:r})}}}function Je(t){return function(e){var n=e.dispatch,r=e.getState;return function(e){return function(i){return"function"==typeof i?i(n,r,t):e(i)}}}}var Xe=Je();Xe.withExtraArgument=Je;var Ge,Qe,Ye,tn,en=Xe,nn=(Ge=function(t,e){return Ge=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},Ge(t,e)},function(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Class extends value "+String(e)+" is not a constructor or null");function n(){this.constructor=t}Ge(t,e),t.prototype=null===e?Object.create(e):(n.prototype=e.prototype,new n)}),rn=function(t,e){for(var n=0,r=e.length,i=t.length;n<r;n++,i++)t[i]=e[n];return t},on=Object.defineProperty,sn=Object.getOwnPropertySymbols,cn=Object.prototype.hasOwnProperty,un=Object.prototype.propertyIsEnumerable,an=function(t,e,n){return e in t?on(t,e,{enumerable:!0,configurable:!0,writable:!0,value:n}):t[e]=n},ln="undefined"!=typeof window&&window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__?window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__:function(){if(0!==arguments.length)return"object"==typeof arguments[0]?qe:qe.apply(null,arguments)},fn=function(t){function e(){for(var n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];var i=t.apply(this,n)||this;return Object.setPrototypeOf(i,e.prototype),i}return nn(e,t),Object.defineProperty(e,Symbol.species,{get:function(){return e},enumerable:!1,configurable:!0}),e.prototype.concat=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.prototype.concat.apply(this,e)},e.prototype.prepend=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return 1===t.length&&Array.isArray(t[0])?new(e.bind.apply(e,rn([void 0],t[0].concat(this)))):new(e.bind.apply(e,rn([void 0],t.concat(this))))},e}(Array);function hn(){return function(t){return function(t){void 0===t&&(t={});var e=t.thunk,n=void 0===e||e;t.immutableCheck,t.serializableCheck;var r=new fn;return n&&(function(t){return"boolean"==typeof t}(n)?r.push(en):r.push(en.withExtraArgument(n.extraArgument))),r}(t)}}function dn(t){var e,n=hn(),r=t||{},i=r.reducer,o=void 0===i?void 0:i,s=r.middleware,c=void 0===s?n():s,u=r.devTools,a=void 0===u||u,l=r.preloadedState,f=void 0===l?void 0:l,h=r.enhancers,d=void 0===h?void 0:h;if("function"==typeof o)e=o;else{if(!function(t){if("object"!=typeof t||null===t)return!1;var e=Object.getPrototypeOf(t);if(null===e)return!0;for(var n=e;null!==Object.getPrototypeOf(n);)n=Object.getPrototypeOf(n);return e===n}(o))throw new Error('"reducer" is a required argument, and must be a function or an object of functions that can be passed to combineReducers');e=ze(o)}var v=c;"function"==typeof v&&(v=v(n));var p=Ze.apply(void 0,v),b=qe;a&&(b=ln(function(t,e){for(var n in e||(e={}))cn.call(e,n)&&an(t,n,e[n]);if(sn)for(var r=0,i=sn(e);r<i.length;r++)n=i[r],un.call(e,n)&&an(t,n,e[n]);return t}({trace:!1},"object"==typeof a&&a)));var y=[p];return Array.isArray(d)?y=rn([p],d):"function"==typeof d&&(y=d(y)),Ve(e,f,b.apply(void 0,y))}!function(){function t(t,e){var n=i[t];return n?n.enumerable=e:i[t]=n={configurable:!0,enumerable:e,get:function(){var e=this[Ne];return Ue.get(e,t)},set:function(e){var n=this[Ne];Ue.set(n,t,e)}},n}function e(t){for(var e=t.length-1;e>=0;e--){var i=t[e][Ne];if(!i.P)switch(i.i){case 5:r(i)&&pe(i);break;case 4:n(i)&&pe(i)}}}function n(t){for(var e=t.t,n=t.k,r=_e(n),i=r.length-1;i>=0;i--){var o=r[i];if(o!==Ne){var s=e[o];if(void 0===s&&!zt(e,o))return!0;var c=n[o],u=c&&c[Ne];if(u?u.t!==s:!Zt(c,s))return!0}}var a=!!e[Ne];return r.length!==_e(e).length+(a?0:1)}function r(t){var e=t.k;if(e.length!==t.t.length)return!0;var n=Object.getOwnPropertyDescriptor(e,e.length-1);if(n&&!n.get)return!0;for(var r=0;r<e.length;r++)if(!e.hasOwnProperty(r))return!0;return!1}var i={};!function(t,e){$e[t]||($e[t]=e)}("ES5",{J:function(e,n){var r=Array.isArray(e),i=function(e,n){if(e){for(var r=Array(n.length),i=0;i<n.length;i++)Object.defineProperty(r,""+i,t(i,!0));return r}var o=Ae(n);delete o[Ne];for(var s=_e(o),c=0;c<s.length;c++){var u=s[c];o[u]=t(u,e||!!o[u].enumerable)}return Object.create(Object.getPrototypeOf(n),o)}(r,e),o={i:r?5:4,A:n?n.A:re(),P:!1,I:!1,D:{},l:n,t:e,k:i,o:null,O:!1,C:!1};return Object.defineProperty(i,Ne,{value:o,writable:!0}),i},S:function(t,n,i){i?Ht(n)&&n[Ne].A===t&&e(t.p):(t.u&&function t(e){if(e&&"object"==typeof e){var n=e[Ne];if(n){var i=n.t,o=n.k,s=n.D,c=n.i;if(4===c)Kt(o,(function(e){e!==Ne&&(void 0!==i[e]||zt(i,e)?s[e]||t(o[e]):(s[e]=!0,pe(n)))})),Kt(i,(function(t){void 0!==o[t]||zt(o,t)||(s[t]=!1,pe(n))}));else if(5===c){if(r(n)&&(pe(n),s.length=!0),o.length<i.length)for(var u=o.length;u<i.length;u++)s[u]=!1;else for(var a=i.length;a<o.length;a++)s[a]=!0;for(var l=Math.min(o.length,i.length),f=0;f<l;f++)o.hasOwnProperty(f)||(s[f]=!0),void 0===s[f]&&t(o[f])}}}}(t.p[0]),e(t.p))},K:function(t){return 4===t.i?n(t):r(t)}})}();const vn=navigator.vendor&&!!navigator.vendor.match(/apple/i)||"[object SafariRemoteNotification]"===(null!==(tn=null===(Ye=null===(Qe=window.safari)||void 0===Qe?void 0:Qe.pushNotification)||void 0===Ye?void 0:Ye.toString())&&void 0!==tn?tn:"");var pn=Object.freeze({__proto__:null,isSafari:vn,Debouncer:class{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,e){this.callbacks=[t],this.debounce(e)}queue(t,e){this.callbacks.push(t),this.debounce(e)}cancel(){null!=this._debounce&&window.clearTimeout(this._debounce)}debounce(t){this.cancel(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout)}runCallbacks(){for(let t of this.callbacks)t();this.callbacks=[]}},customElement:t=>e=>{window.customElements.get(t)||window.customElements.define(t,e)},jsonProperty:kt,designSystemVariables:Lt,FtCssVariable:Ft,setVariable:function(t,e){return o(`${t.name}: ${e}`)},FtLitElement:Dt,noTextSelect:Bt,ParametrizedLabelResolver:class{constructor(t,e){this.defaultLabels=t,this.labels=e}resolve(t,...e){var n,r;let i=null!==(r=null!==(n=this.labels[t])&&void 0!==n?n:this.defaultLabels[t])&&void 0!==r?r:"";return e.forEach(((t,e)=>i=i.replace(new RegExp(`\\{${e}\\}`,"g"),t))),i}},redux:(t,e)=>(n,r)=>{n.constructor.createProperty(r,{attribute:!1,hasChanged:e});const i=n;i.reduxProperties=i.reduxProperties||new Map,i.reduxProperties.set(r,t)},FtLitElementRedux:class extends Dt{updateFromStore(){const t=this.store.getState();this.reduxProperties&&this.reduxProperties.forEach(((e,n)=>{this[n]=e(t)}))}connectedCallback(){super.connectedCallback(),this.updateFromStore(),this.unsubscribeFromStore=this.store.subscribe((()=>{this.updateFromStore()}))}disconnectedCallback(){this.unsubscribeFromStore&&this.unsubscribeFromStore(),super.disconnectedCallback()}},getStore:function(t){window.ftReduxStores||(window.ftReduxStores={});const e=t.name;return window.ftReduxStores[e]||(window.ftReduxStores[e]=dn({reducer:t.reducer})),window.ftReduxStores[e]}});t.lit=ct,t.litClassMap=Mt,t.litDecorators=vt,t.litRepeat=Rt,t.litStyleMap=At,t.litUnsafeHTML=Pt,t.wcUtils=pn,Object.defineProperty(t,"U",{value:!0})},"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).ftGlobals={});
package/build/index.d.ts CHANGED
@@ -6,7 +6,6 @@ export * from "./designSystemVariables";
6
6
  export * from "./FtCssVariables";
7
7
  export * from "./FtLitElement";
8
8
  export * from "./mixins";
9
- export * from "./InlineStyles";
10
9
  export * from "./ParametrizedLabelResolver";
11
10
  export * from "./redux";
12
11
  export { ElementDefinitionsMap } from "@lit-labs/scoped-registry-mixin";
package/build/index.js CHANGED
@@ -8,7 +8,6 @@ export * from "./designSystemVariables";
8
8
  export * from "./FtCssVariables";
9
9
  export * from "./FtLitElement";
10
10
  export * from "./mixins";
11
- export * from "./InlineStyles";
12
11
  export * from "./ParametrizedLabelResolver";
13
12
  export * from "./redux";
14
13
  //# sourceMappingURL=index.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-wc-utils",
3
- "version": "0.2.16",
3
+ "version": "0.2.19",
4
4
  "description": "Internal web components tools",
5
5
  "author": "Fluid Topics <devtopics@antidot.net>",
6
6
  "license": "ISC",
@@ -19,5 +19,5 @@
19
19
  "peerDependencies": {
20
20
  "lit": "2.1.3"
21
21
  },
22
- "gitHead": "d57a682474d27df7e667d8616a2fbca7643d51c2"
22
+ "gitHead": "d61a4095bbb6a067c6e0a0389dc934264c9a4b55"
23
23
  }
@@ -1,5 +0,0 @@
1
- import { LitElement } from "lit";
2
- declare type Constructor<T = {}> = new (...args: Array<any>) => T;
3
- export declare function InlineStyles<T extends Constructor<LitElement>>(superClass: T): T;
4
- export {};
5
- //# sourceMappingURL=InlineStyles.d.ts.map
@@ -1,31 +0,0 @@
1
- import { html } from "lit";
2
- export function InlineStyles(superClass) {
3
- var _a;
4
- let elementDefinitions;
5
- if ("elementDefinitions" in superClass) {
6
- elementDefinitions = {};
7
- const superElementDefinitions = superClass.elementDefinitions;
8
- for (let tagName in superElementDefinitions) {
9
- elementDefinitions[tagName] = InlineStyles(superElementDefinitions[tagName]);
10
- }
11
- }
12
- return _a = class ClassWithInlineStyles extends superClass {
13
- render() {
14
- var _a;
15
- let styles = (_a = superClass.styles) !== null && _a !== void 0 ? _a : [];
16
- if (!Array.isArray(styles)) {
17
- styles = [styles];
18
- }
19
- return html `
20
- ${styles.map(s => html `
21
- <style>${s}</style>
22
- `)}
23
- ${super.render()}
24
- `;
25
- }
26
- },
27
- _a.styles = undefined,
28
- _a.elementDefinitions = elementDefinitions,
29
- _a;
30
- }
31
- //# sourceMappingURL=InlineStyles.js.map