@fluid-topics/ft-resizer 1.1.4 → 1.1.6

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.
@@ -5,7 +5,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
5
5
  return c > 3 && r && Object.defineProperty(target, key, r), r;
6
6
  };
7
7
  import { html, unsafeCSS } from "lit";
8
- import { property, state } from "lit/decorators.js";
8
+ import { eventOptions, property, state } from "lit/decorators.js";
9
9
  import { FtLitElement, noTextSelect } from "@fluid-topics/ft-wc-utils";
10
10
  import { FtIcon, FtIconVariants } from "@fluid-topics/ft-icon";
11
11
  import { styles } from "./ft-resizer.css";
@@ -106,4 +106,10 @@ __decorate([
106
106
  __decorate([
107
107
  state()
108
108
  ], FtResizer.prototype, "dragging", void 0);
109
+ __decorate([
110
+ eventOptions({ passive: true })
111
+ ], FtResizer.prototype, "initDragFromMouse", null);
112
+ __decorate([
113
+ eventOptions({ passive: true })
114
+ ], FtResizer.prototype, "initDragFromTouch", null);
109
115
  export { FtResizer };
@@ -80,4 +80,4 @@
80
80
  @touchstart=${this.initDragFromTouch}>
81
81
  <ft-icon .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon>
82
82
  </div>
83
- `}initDragFromMouse(e){this.initDrag(e.clientX,e.clientY)}initDragFromTouch(e){e.preventDefault(),e.stopPropagation(),this.initDrag(e.touches[0].clientX,e.touches[0].clientY)}initDrag(e,t){this.dragging=!0,this.startX=e,this.startY=t,this.fixedWidth=this.initialWidth,this.fixedHeight=this.initialHeight,this.installDocumentEventListeners()}installDocumentEventListeners(){document.addEventListener("mousemove",this.doDragFromMouse,!1),document.addEventListener("mouseup",this.stopDrag,!1),document.addEventListener("touchmove",this.doDragFromTouch,!1),document.addEventListener("touchend",this.stopDrag,!1),document.addEventListener("touchcancel",this.stopDrag,!1)}doDrag(e,t){let i=this.fixedWidth+e-this.startX,x=this.fixedHeight+t-this.startY;this.dispatchEvent(new b(i,x))}}y.elementDefinitions={"ft-icon":d},y.styles=[t.noTextSelect,v],g([x.property({type:Number})],y.prototype,"initialWidth",void 0),g([x.property({type:Number})],y.prototype,"initialHeight",void 0),g([x.property()],y.prototype,"icon",void 0),g([x.property()],y.prototype,"iconVariant",void 0),g([x.property()],y.prototype,"cursor",void 0),g([x.state()],y.prototype,"dragging",void 0),t.customElement("ft-resizer")(y),e.FtResizer=y,e.FtResizerCssVariables=u,e.ResizeEvent=b,e.styles=v}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litUnsafeHTML);
83
+ `}initDragFromMouse(e){this.initDrag(e.clientX,e.clientY)}initDragFromTouch(e){e.preventDefault(),e.stopPropagation(),this.initDrag(e.touches[0].clientX,e.touches[0].clientY)}initDrag(e,t){this.dragging=!0,this.startX=e,this.startY=t,this.fixedWidth=this.initialWidth,this.fixedHeight=this.initialHeight,this.installDocumentEventListeners()}installDocumentEventListeners(){document.addEventListener("mousemove",this.doDragFromMouse,!1),document.addEventListener("mouseup",this.stopDrag,!1),document.addEventListener("touchmove",this.doDragFromTouch,!1),document.addEventListener("touchend",this.stopDrag,!1),document.addEventListener("touchcancel",this.stopDrag,!1)}doDrag(e,t){let i=this.fixedWidth+e-this.startX,x=this.fixedHeight+t-this.startY;this.dispatchEvent(new b(i,x))}}y.elementDefinitions={"ft-icon":d},y.styles=[t.noTextSelect,v],g([x.property({type:Number})],y.prototype,"initialWidth",void 0),g([x.property({type:Number})],y.prototype,"initialHeight",void 0),g([x.property()],y.prototype,"icon",void 0),g([x.property()],y.prototype,"iconVariant",void 0),g([x.property()],y.prototype,"cursor",void 0),g([x.state()],y.prototype,"dragging",void 0),g([x.eventOptions({passive:!0})],y.prototype,"initDragFromMouse",null),g([x.eventOptions({passive:!0})],y.prototype,"initDragFromTouch",null),t.customElement("ft-resizer")(y),e.FtResizer=y,e.FtResizerCssVariables=u,e.ResizeEvent=b,e.styles=v}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litUnsafeHTML);
@@ -12,7 +12,7 @@
12
12
  * subject to an additional IP rights grant found at
13
13
  * http://polymer.github.io/PATENTS.txt
14
14
  */
15
- if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,o=window.customElements.define,e=window.customElements.get,r=window.customElements,i=new WeakMap,a=new WeakMap,n=new WeakMap,s=new WeakMap;let c;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 s=i.prototype.attributeChangedCallback,c=new Set(i.observedAttributes||[]);p(i,c,s);const l={elementClass:i,connectedCallback:i.prototype.connectedCallback,disconnectedCallback:i.prototype.disconnectedCallback,adoptedCallback:i.prototype.adoptedCallback,attributeChangedCallback:s,formAssociated:i.formAssociated,formAssociatedCallback:i.prototype.formAssociatedCallback,formDisabledCallback:i.prototype.formDisabledCallback,formResetCallback:i.prototype.formResetCallback,formStateRestoreCallback:i.prototype.formStateRestoreCallback,observedAttributes:c};this._definitionsByTag.set(t,l),this._definitionsByClass.set(i,l);let f=e.call(r,t);f||(f=h(t),o.call(r,t,f)),this===window.customElements&&(n.set(i,l),l.standInClass=f);const d=this._awaitingUpgrade.get(t);if(d){this._awaitingUpgrade.delete(t);for(const t of d)a.delete(t),y(t,l,!0)}const u=this._whenDefinedPromises.get(t);return void 0!==u&&(u.resolve(i),this._whenDefinedPromises.delete(t)),i}upgrade(){g.push(this),r.upgrade.apply(r,arguments),g.pop()}get(t){const o=this._definitionsByTag.get(t);return o?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const o=this._getDefinition(t);if(void 0!==o)return Promise.resolve(o.elementClass);let e=this._whenDefinedPromises.get(t);return void 0===e&&(e={},e.promise=new Promise((t=>e.resolve=t)),this._whenDefinedPromises.set(t,e)),e.promise}_upgradeWhenDefined(t,o,e){let r=this._awaitingUpgrade.get(o);r||this._awaitingUpgrade.set(o,r=new Set),e?r.add(t):r.delete(t)}},window.HTMLElement=function(){let o=c;if(o)return c=void 0,o;const e=n.get(this.constructor);if(!e)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return o=Reflect.construct(t,[],e.standInClass),Object.setPrototypeOf(o,this.constructor.prototype),i.set(o,e),o},window.HTMLElement.prototype=t.prototype;const l=t=>t===document||t instanceof ShadowRoot,f=t=>{let o=t.getRootNode();if(!l(o)){const t=g[g.length-1];if(t instanceof CustomElementRegistry)return t;o=t.getRootNode(),l(o)||(o=s.get(o)?.getRootNode()||document)}return o.customElements},h=o=>class{static get formAssociated(){return!0}constructor(){const e=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(e,HTMLElement.prototype);const r=f(e)||window.customElements,i=r._getDefinition(o);return i?y(e,i):a.set(e,r),e}connectedCallback(){const t=i.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):a.get(this)._upgradeWhenDefined(this,o,!0)}disconnectedCallback(){const t=i.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):a.get(this)._upgradeWhenDefined(this,o,!1)}adoptedCallback(){const t=i.get(this);t?.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)}},p=(t,o,e)=>{if(0===o.size||void 0===e)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,i){const a=t.toLowerCase();if(o.has(a)){const t=this.getAttribute(a);r.call(this,a,i),e.call(this,a,t,i)}else r.call(this,a,i)});const i=t.prototype.removeAttribute;i&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(o.has(r)){const t=this.getAttribute(r);i.call(this,r),e.call(this,r,t,null)}else i.call(this,r)});const a=t.prototype.toggleAttribute;a&&(t.prototype.toggleAttribute=function(t,r){const i=t.toLowerCase();if(o.has(i)){const t=this.getAttribute(i);a.call(this,i,r);const o=this.getAttribute(i);e.call(this,i,t,o)}else a.call(this,i,r)})},d=o=>{const e=Object.getPrototypeOf(o);if(e!==window.HTMLElement)return e===t?Object.setPrototypeOf(o,window.HTMLElement):d(e)},y=(t,o,e=!1)=>{Object.setPrototypeOf(t,o.elementClass.prototype),i.set(t,o),c=t;try{new o.elementClass}catch(t){d(o.elementClass),new o.elementClass}o.attributeChangedCallback&&o.observedAttributes.forEach((e=>{t.hasAttribute(e)&&o.attributeChangedCallback.call(t,e,null,t.getAttribute(e))})),e&&o.connectedCallback&&t.isConnected&&o.connectedCallback.call(t)},u=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const o=u.apply(this,arguments);return t.customElements&&(o.customElements=t.customElements),o};let g=[document];const b=(t,o,e=void 0)=>{const r=(e?Object.getPrototypeOf(e):t.prototype)[o];t.prototype[o]=function(){g.push(this);const t=r.apply(e||this,arguments);return void 0!==t&&s.set(t,this),g.pop(),t}};b(ShadowRoot,"createElement",document),b(ShadowRoot,"importNode",document),b(Element,"insertAdjacentHTML");const m=(t,o)=>{const e=Object.getOwnPropertyDescriptor(t.prototype,o);Object.defineProperty(t.prototype,o,{...e,set(t){g.push(this),e.set.call(this,t),g.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,o=HTMLElement.prototype.attachInternals,e=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...e){const r=o.call(this,...e);return t.set(r,this),r},e.forEach((o=>{const e=window.ElementInternals.prototype,r=e[o];e[o]=function(...o){const e=t.get(this);if(!0===i.get(e).formAssociated)return r?.call(this,...o);throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class a{constructor(t){const o=new Map;t.forEach(((t,e)=>{const r=t.getAttribute("name"),i=o.get(r)||[];this[+e]=t,i.push(t),o.set(r,i)})),this.length=t.length,o.forEach(((t,o)=>{t&&(1===t.length?this[o]=t[0]:this[o]=new r(t))}))}namedItem(t){return this[t]}}const n=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=n.get.call(this,[]),o=[];for(const e of t){const t=i.get(e);t&&!0!==t.formAssociated||o.push(e)}return new a(o)}})}}try{window.customElements.define("custom-element",null)}catch(Ao){const t=window.customElements.define;window.customElements.define=(o,e,r)=>{if(null!==e)try{t.bind(window.customElements)(o,e,r)}catch(t){console.info(o,e,r,t)}}}
15
+ if(!ShadowRoot.prototype.createElement){const t=window.HTMLElement,o=window.customElements.define,e=window.customElements.get,r=window.customElements,i=new WeakMap,a=new WeakMap,n=new WeakMap,s=new WeakMap;let c;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 s=i.prototype.attributeChangedCallback,c=new Set(i.observedAttributes||[]);p(i,c,s);const l={elementClass:i,connectedCallback:i.prototype.connectedCallback,disconnectedCallback:i.prototype.disconnectedCallback,adoptedCallback:i.prototype.adoptedCallback,attributeChangedCallback:s,formAssociated:i.formAssociated,formAssociatedCallback:i.prototype.formAssociatedCallback,formDisabledCallback:i.prototype.formDisabledCallback,formResetCallback:i.prototype.formResetCallback,formStateRestoreCallback:i.prototype.formStateRestoreCallback,observedAttributes:c};this._definitionsByTag.set(t,l),this._definitionsByClass.set(i,l);let f=e.call(r,t);f||(f=h(t),o.call(r,t,f)),this===window.customElements&&(n.set(i,l),l.standInClass=f);const d=this._awaitingUpgrade.get(t);if(d){this._awaitingUpgrade.delete(t);for(const t of d)a.delete(t),y(t,l,!0)}const u=this._whenDefinedPromises.get(t);return void 0!==u&&(u.resolve(i),this._whenDefinedPromises.delete(t)),i}upgrade(){g.push(this),r.upgrade.apply(r,arguments),g.pop()}get(t){const o=this._definitionsByTag.get(t);return o?.elementClass}_getDefinition(t){return this._definitionsByTag.get(t)}whenDefined(t){const o=this._getDefinition(t);if(void 0!==o)return Promise.resolve(o.elementClass);let e=this._whenDefinedPromises.get(t);return void 0===e&&(e={},e.promise=new Promise((t=>e.resolve=t)),this._whenDefinedPromises.set(t,e)),e.promise}_upgradeWhenDefined(t,o,e){let r=this._awaitingUpgrade.get(o);r||this._awaitingUpgrade.set(o,r=new Set),e?r.add(t):r.delete(t)}},window.HTMLElement=function(){let o=c;if(o)return c=void 0,o;const e=n.get(this.constructor);if(!e)throw new TypeError("Illegal constructor (custom element class must be registered with global customElements registry to be newable)");return o=Reflect.construct(t,[],e.standInClass),Object.setPrototypeOf(o,this.constructor.prototype),i.set(o,e),o},window.HTMLElement.prototype=t.prototype;const l=t=>t===document||t instanceof ShadowRoot,f=t=>{let o=t.getRootNode();if(!l(o)){const t=g[g.length-1];if(t instanceof CustomElementRegistry)return t;o=t.getRootNode(),l(o)||(o=s.get(o)?.getRootNode()||document)}return o.customElements},h=o=>class{static get formAssociated(){return!0}constructor(){const e=Reflect.construct(t,[],this.constructor);Object.setPrototypeOf(e,HTMLElement.prototype);const r=f(e)||window.customElements,i=r._getDefinition(o);return i?y(e,i):a.set(e,r),e}connectedCallback(){const t=i.get(this);t?t.connectedCallback&&t.connectedCallback.apply(this,arguments):a.get(this)._upgradeWhenDefined(this,o,!0)}disconnectedCallback(){const t=i.get(this);t?t.disconnectedCallback&&t.disconnectedCallback.apply(this,arguments):a.get(this)._upgradeWhenDefined(this,o,!1)}adoptedCallback(){const t=i.get(this);t?.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)}},p=(t,o,e)=>{if(0===o.size||void 0===e)return;const r=t.prototype.setAttribute;r&&(t.prototype.setAttribute=function(t,i){const a=t.toLowerCase();if(o.has(a)){const t=this.getAttribute(a);r.call(this,a,i),e.call(this,a,t,i)}else r.call(this,a,i)});const i=t.prototype.removeAttribute;i&&(t.prototype.removeAttribute=function(t){const r=t.toLowerCase();if(o.has(r)){const t=this.getAttribute(r);i.call(this,r),e.call(this,r,t,null)}else i.call(this,r)});const a=t.prototype.toggleAttribute;a&&(t.prototype.toggleAttribute=function(t,r){const i=t.toLowerCase();if(o.has(i)){const t=this.getAttribute(i);a.call(this,i,r);const o=this.getAttribute(i);e.call(this,i,t,o)}else a.call(this,i,r)})},d=o=>{const e=Object.getPrototypeOf(o);if(e!==window.HTMLElement)return e===t?Object.setPrototypeOf(o,window.HTMLElement):d(e)},y=(t,o,e=!1)=>{Object.setPrototypeOf(t,o.elementClass.prototype),i.set(t,o),c=t;try{new o.elementClass}catch(t){d(o.elementClass),new o.elementClass}o.attributeChangedCallback&&o.observedAttributes.forEach((e=>{t.hasAttribute(e)&&o.attributeChangedCallback.call(t,e,null,t.getAttribute(e))})),e&&o.connectedCallback&&t.isConnected&&o.connectedCallback.call(t)},u=Element.prototype.attachShadow;Element.prototype.attachShadow=function(t){const o=u.apply(this,arguments);return t.customElements&&(o.customElements=t.customElements),o};let g=[document];const b=(t,o,e=void 0)=>{const r=(e?Object.getPrototypeOf(e):t.prototype)[o];t.prototype[o]=function(){g.push(this);const t=r.apply(e||this,arguments);return void 0!==t&&s.set(t,this),g.pop(),t}};b(ShadowRoot,"createElement",document),b(ShadowRoot,"importNode",document),b(Element,"insertAdjacentHTML");const m=(t,o)=>{const e=Object.getOwnPropertyDescriptor(t.prototype,o);Object.defineProperty(t.prototype,o,{...e,set(t){g.push(this),e.set.call(this,t),g.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,o=HTMLElement.prototype.attachInternals,e=["setFormValue","setValidity","checkValidity","reportValidity"];HTMLElement.prototype.attachInternals=function(...e){const r=o.call(this,...e);return t.set(r,this),r},e.forEach((o=>{const e=window.ElementInternals.prototype,r=e[o];e[o]=function(...o){const e=t.get(this);if(!0===i.get(e).formAssociated)return r?.call(this,...o);throw new DOMException(`Failed to execute ${r} on 'ElementInternals': The target element is not a form-associated custom element.`)}}));class r extends Array{constructor(t){super(...t),this._elements=t}get value(){return this._elements.find((t=>!0===t.checked))?.value||""}}class a{constructor(t){const o=new Map;t.forEach(((t,e)=>{const r=t.getAttribute("name"),i=o.get(r)||[];this[+e]=t,i.push(t),o.set(r,i)})),this.length=t.length,o.forEach(((t,o)=>{t&&(1===t.length?this[o]=t[0]:this[o]=new r(t))}))}namedItem(t){return this[t]}}const n=Object.getOwnPropertyDescriptor(HTMLFormElement.prototype,"elements");Object.defineProperty(HTMLFormElement.prototype,"elements",{get:function(){const t=n.get.call(this,[]),o=[];for(const e of t){const t=i.get(e);t&&!0!==t.formAssociated||o.push(e)}return new a(o)}})}}try{window.customElements.define("custom-element",null)}catch(Fo){const t=window.customElements.define;window.customElements.define=(o,e,r)=>{if(null!==e)try{t.bind(window.customElements)(o,e,r)}catch(t){console.info(o,e,r,t)}}}
16
16
  /**
17
17
  * @license
18
18
  * Copyright 2019 Google LLC
@@ -38,50 +38,55 @@ const v={attribute:!0,type:String,converter:m,reflect:!1,hasChanged:O},S=(t=v,o,
38
38
  * @license
39
39
  * Copyright 2017 Google LLC
40
40
  * SPDX-License-Identifier: BSD-3-Clause
41
- */const R=(t,o,e)=>(e.configurable=!0,e.enumerable=!0,e)
41
+ */function R(t){return(o,e)=>{const r="function"==typeof o?o:o[e];Object.assign(r,t)}}
42
42
  /**
43
43
  * @license
44
44
  * Copyright 2017 Google LLC
45
45
  * SPDX-License-Identifier: BSD-3-Clause
46
- */;class U{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,o){return this.callbacks=[t],this.debounce(o)}queue(t,o){return this.callbacks.push(t),this.debounce(o)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return null==this.promise&&(this.promise=new Promise(((t,o)=>{this.resolvePromise=t,this.rejectPromise=o}))),this.clearTimeout(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout),this.promise}async runCallbacks(){var t,o;const e=[...this.callbacks];this.callbacks=[];const r=null!==(t=this.rejectPromise)&&void 0!==t?t:()=>null,i=null!==(o=this.resolvePromise)&&void 0!==o?o:()=>null;this.clearPromise();for(let t of e)try{await t()}catch(t){return void r(t)}i(!0)}clearTimeout(){null!=this._debounce&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}}function E(t,o){try{return function(t,o){if(t===o)return!0;if(t&&o&&"object"==typeof t&&"object"==typeof o){if(t.constructor!==o.constructor)return!1;var e,r,i;if(Array.isArray(t)){if((e=t.length)!=o.length)return!1;for(r=e;0!=r--;)if(!E(t[r],o[r]))return!1;return!0}if(t instanceof Map&&o instanceof Map){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;for(r of t.entries())if(!E(r[1],o.get(r[0])))return!1;return!0}if(t instanceof Set&&o instanceof Set){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===o.source&&t.flags===o.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===o.valueOf();if((e=(i=Object.keys(t)).length)!==Object.keys(o).length)return!1;for(r=e;0!=r--;)if(!Object.prototype.hasOwnProperty.call(o,i[r]))return!1;for(r=e;0!=r--;){var a=i[r];if(!E(t[a],o[a]))return!1}return!0}return t!=t&&o!=o}(t,o)}catch(t){return!1}}const L=t=>o=>{window.customElements.get(t)||window.customElements.define(t,o)};
46
+ */const U=(t,o,e)=>(e.configurable=!0,e.enumerable=!0,e)
47
+ /**
48
+ * @license
49
+ * Copyright 2017 Google LLC
50
+ * SPDX-License-Identifier: BSD-3-Clause
51
+ */;class E{constructor(t=0){this.timeout=t,this.callbacks=[]}run(t,o){return this.callbacks=[t],this.debounce(o)}queue(t,o){return this.callbacks.push(t),this.debounce(o)}cancel(){this.clearTimeout(),this.resolvePromise&&this.resolvePromise(!1),this.clearPromise()}debounce(t){return null==this.promise&&(this.promise=new Promise(((t,o)=>{this.resolvePromise=t,this.rejectPromise=o}))),this.clearTimeout(),this._debounce=window.setTimeout((()=>this.runCallbacks()),null!=t?t:this.timeout),this.promise}async runCallbacks(){var t,o;const e=[...this.callbacks];this.callbacks=[];const r=null!==(t=this.rejectPromise)&&void 0!==t?t:()=>null,i=null!==(o=this.resolvePromise)&&void 0!==o?o:()=>null;this.clearPromise();for(let t of e)try{await t()}catch(t){return void r(t)}i(!0)}clearTimeout(){null!=this._debounce&&window.clearTimeout(this._debounce)}clearPromise(){this.promise=void 0,this.resolvePromise=void 0,this.rejectPromise=void 0}}function L(t,o){try{return function(t,o){if(t===o)return!0;if(t&&o&&"object"==typeof t&&"object"==typeof o){if(t.constructor!==o.constructor)return!1;var e,r,i;if(Array.isArray(t)){if((e=t.length)!=o.length)return!1;for(r=e;0!=r--;)if(!L(t[r],o[r]))return!1;return!0}if(t instanceof Map&&o instanceof Map){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;for(r of t.entries())if(!L(r[1],o.get(r[0])))return!1;return!0}if(t instanceof Set&&o instanceof Set){if(t.size!==o.size)return!1;for(r of t.entries())if(!o.has(r[0]))return!1;return!0}if(t.constructor===RegExp)return t.source===o.source&&t.flags===o.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===o.valueOf();if((e=(i=Object.keys(t)).length)!==Object.keys(o).length)return!1;for(r=e;0!=r--;)if(!Object.prototype.hasOwnProperty.call(o,i[r]))return!1;for(r=e;0!=r--;){var a=i[r];if(!L(t[a],o[a]))return!1}return!0}return t!=t&&o!=o}(t,o)}catch(t){return!1}}const I=t=>o=>{window.customElements.get(t)||window.customElements.define(t,o)};
47
52
  /**
48
53
  * @license
49
54
  * Copyright 2017 Google LLC
50
55
  * SPDX-License-Identifier: BSD-3-Clause
51
56
  */
52
- const I=globalThis,W=I.trustedTypes,k=W?W.createPolicy("lit-html",{createHTML:t=>t}):void 0,K="$lit$",Z=`lit$${(Math.random()+"").slice(9)}$`,$="?"+Z,A=`<${$}>`,F=document,M=()=>F.createComment(""),z=t=>null===t||"object"!=typeof t&&"function"!=typeof t,B=Array.isArray,D="[ \t\n\f\r]",P=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,_=/-->/g,j=/>/g,H=RegExp(`>|${D}(?:([^\\s"'>=/]+)(${D}*=${D}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),T=/'/g,G=/"/g,Y=/^(?:script|style|textarea|title)$/i,J=Symbol.for("lit-noChange"),V=Symbol.for("lit-nothing"),q=new WeakMap,X=F.createTreeWalker(F,129);function Q(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==k?k.createHTML(o):o}let tt=class t{constructor({strings:o,_$litType$:e},r){let i;this.parts=[];let a=0,n=0;const s=o.length-1,c=this.parts,[l,f]=((t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=P;for(let o=0;o<e;o++){const e=t[o];let s,c,l=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===P?"!--"===c[1]?n=_:void 0!==c[1]?n=j:void 0!==c[2]?(Y.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=H):void 0!==c[3]&&(n=H):n===H?">"===c[0]?(n=i??P,l=-1):void 0===c[1]?l=-2:(l=n.lastIndex-c[2].length,s=c[1],n=void 0===c[3]?H:'"'===c[3]?G:T):n===G||n===T?n=H:n===_||n===j?n=P:(n=H,i=void 0);const h=n===H&&t[o+1].startsWith("/>")?" ":"";a+=n===P?e+A:l>=0?(r.push(s),e.slice(0,l)+K+e.slice(l)+Z+h):e+Z+(-2===l?o:h)}return[Q(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]})(o,e);if(this.el=t.createElement(l,r),X.currentNode=this.el.content,2===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(i=X.nextNode())&&c.length<s;){if(1===i.nodeType){if(i.hasAttributes())for(const t of i.getAttributeNames())if(t.endsWith(K)){const o=f[n++],e=i.getAttribute(t).split(Z),r=/([.?@])?(.*)/.exec(o);c.push({type:1,index:a,name:r[2],strings:e,ctor:"."===r[1]?it:"?"===r[1]?at:"@"===r[1]?nt:rt}),i.removeAttribute(t)}else t.startsWith(Z)&&(c.push({type:6,index:a}),i.removeAttribute(t));if(Y.test(i.tagName)){const t=i.textContent.split(Z),o=t.length-1;if(o>0){i.textContent=W?W.emptyScript:"";for(let e=0;e<o;e++)i.append(t[e],M()),X.nextNode(),c.push({type:2,index:++a});i.append(t[o],M())}}}else if(8===i.nodeType)if(i.data===$)c.push({type:2,index:a});else{let t=-1;for(;-1!==(t=i.data.indexOf(Z,t+1));)c.push({type:7,index:a}),t+=Z.length-1}a++}}static createElement(t,o){const e=F.createElement("template");return e.innerHTML=t,e}};function ot(t,o,e=t,r){if(o===J)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=z(o)?void 0:o._$litDirective$;return i?.constructor!==a&&(i?._$AO?.(!1),void 0===a?i=void 0:(i=new a(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=ot(t,i._$AS(t,o.values),i,r)),o}let et=class t{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=V,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===t?.nodeType&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=ot(this,t,o),z(t)?t===V||null==t||""===t?(this._$AH!==V&&this._$AR(),this._$AH=V):t!==this._$AH&&t!==J&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>B(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==V&&z(this._$AH)?this._$AA.nextSibling.data=t:this.$(F.createTextNode(t)),this._$AH=t}g(t){const{values:o,_$litType$:e}=t,r="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=tt.createElement(Q(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new class{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:o},parts:e}=this._$AD,r=(t?.creationScope??F).importNode(o,!0);X.currentNode=r;let i=X.nextNode(),a=0,n=0,s=e[0];for(;void 0!==s;){if(a===s.index){let o;2===s.type?o=new et(i,i.nextSibling,this,t):1===s.type?o=new s.ctor(i,s.name,s.strings,this,t):6===s.type&&(o=new st(i,this,t)),this._$AV.push(o),s=e[++n]}a!==s?.index&&(i=X.nextNode(),a++)}return X.currentNode=F,r}p(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=q.get(t.strings);return void 0===o&&q.set(t.strings,o=new tt(t)),o}T(o){B(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,i=0;for(const a of o)i===e.length?e.push(r=new t(this.k(M()),this.k(M()),this,this.options)):r=e[i],r._$AI(a),i++;i<e.length&&(this._$AR(r&&r._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}},rt=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=V,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=V}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=ot(this,t,o,0),a=!z(t)||t!==this._$AH&&t!==J,a&&(this._$AH=t);else{const r=t;let n,s;for(t=i[0],n=0;n<i.length-1;n++)s=ot(this,r[e+n],o,n),s===J&&(s=this._$AH[n]),a||=!z(s)||s!==this._$AH[n],s===V?t=V:t!==V&&(t+=(s??"")+i[n+1]),this._$AH[n]=s}a&&!r&&this.O(t)}O(t){t===V?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},it=class extends rt{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===V?void 0:t}},at=class extends rt{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==V)}},nt=class extends rt{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=ot(this,t,o,0)??V)===J)return;const e=this._$AH,r=t===V&&e!==V||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==V&&(e===V||r);r&&this.element.removeEventListener(this.name,this,e),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}},st=class{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){ot(this,t)}};const ct=I.litHtmlPolyfillSupport;ct?.(tt,et),(I.litHtmlVersions??=[]).push("3.1.0");
57
+ const W=globalThis,k=W.trustedTypes,K=k?k.createPolicy("lit-html",{createHTML:t=>t}):void 0,Z="$lit$",$=`lit$${(Math.random()+"").slice(9)}$`,A="?"+$,F=`<${A}>`,M=document,z=()=>M.createComment(""),D=t=>null===t||"object"!=typeof t&&"function"!=typeof t,B=Array.isArray,P="[ \t\n\f\r]",_=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,j=/-->/g,H=/>/g,T=RegExp(`>|${P}(?:([^\\s"'>=/]+)(${P}*=${P}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),G=/'/g,Y=/"/g,J=/^(?:script|style|textarea|title)$/i,V=Symbol.for("lit-noChange"),q=Symbol.for("lit-nothing"),X=new WeakMap,Q=M.createTreeWalker(M,129);function tt(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==K?K.createHTML(o):o}let ot=class t{constructor({strings:o,_$litType$:e},r){let i;this.parts=[];let a=0,n=0;const s=o.length-1,c=this.parts,[l,f]=((t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=_;for(let o=0;o<e;o++){const e=t[o];let s,c,l=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===_?"!--"===c[1]?n=j:void 0!==c[1]?n=H:void 0!==c[2]?(J.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=T):void 0!==c[3]&&(n=T):n===T?">"===c[0]?(n=i??_,l=-1):void 0===c[1]?l=-2:(l=n.lastIndex-c[2].length,s=c[1],n=void 0===c[3]?T:'"'===c[3]?Y:G):n===Y||n===G?n=T:n===j||n===H?n=_:(n=T,i=void 0);const h=n===T&&t[o+1].startsWith("/>")?" ":"";a+=n===_?e+F:l>=0?(r.push(s),e.slice(0,l)+Z+e.slice(l)+$+h):e+$+(-2===l?o:h)}return[tt(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]})(o,e);if(this.el=t.createElement(l,r),Q.currentNode=this.el.content,2===e){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(i=Q.nextNode())&&c.length<s;){if(1===i.nodeType){if(i.hasAttributes())for(const t of i.getAttributeNames())if(t.endsWith(Z)){const o=f[n++],e=i.getAttribute(t).split($),r=/([.?@])?(.*)/.exec(o);c.push({type:1,index:a,name:r[2],strings:e,ctor:"."===r[1]?at:"?"===r[1]?nt:"@"===r[1]?st:it}),i.removeAttribute(t)}else t.startsWith($)&&(c.push({type:6,index:a}),i.removeAttribute(t));if(J.test(i.tagName)){const t=i.textContent.split($),o=t.length-1;if(o>0){i.textContent=k?k.emptyScript:"";for(let e=0;e<o;e++)i.append(t[e],z()),Q.nextNode(),c.push({type:2,index:++a});i.append(t[o],z())}}}else if(8===i.nodeType)if(i.data===A)c.push({type:2,index:a});else{let t=-1;for(;-1!==(t=i.data.indexOf($,t+1));)c.push({type:7,index:a}),t+=$.length-1}a++}}static createElement(t,o){const e=M.createElement("template");return e.innerHTML=t,e}};function et(t,o,e=t,r){if(o===V)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=D(o)?void 0:o._$litDirective$;return i?.constructor!==a&&(i?._$AO?.(!1),void 0===a?i=void 0:(i=new a(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=et(t,i._$AS(t,o.values),i,r)),o}let rt=class t{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=q,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===t?.nodeType&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=et(this,t,o),D(t)?t===q||null==t||""===t?(this._$AH!==q&&this._$AR(),this._$AH=q):t!==this._$AH&&t!==V&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>B(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==q&&D(this._$AH)?this._$AA.nextSibling.data=t:this.$(M.createTextNode(t)),this._$AH=t}g(t){const{values:o,_$litType$:e}=t,r="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=ot.createElement(tt(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new class{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:o},parts:e}=this._$AD,r=(t?.creationScope??M).importNode(o,!0);Q.currentNode=r;let i=Q.nextNode(),a=0,n=0,s=e[0];for(;void 0!==s;){if(a===s.index){let o;2===s.type?o=new rt(i,i.nextSibling,this,t):1===s.type?o=new s.ctor(i,s.name,s.strings,this,t):6===s.type&&(o=new ct(i,this,t)),this._$AV.push(o),s=e[++n]}a!==s?.index&&(i=Q.nextNode(),a++)}return Q.currentNode=M,r}p(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=X.get(t.strings);return void 0===o&&X.set(t.strings,o=new ot(t)),o}T(o){B(this._$AH)||(this._$AH=[],this._$AR());const e=this._$AH;let r,i=0;for(const a of o)i===e.length?e.push(r=new t(this.k(z()),this.k(z()),this,this.options)):r=e[i],r._$AI(a),i++;i<e.length&&(this._$AR(r&&r._$AB.nextSibling,i),e.length=i)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}},it=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=q,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=q}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=et(this,t,o,0),a=!D(t)||t!==this._$AH&&t!==V,a&&(this._$AH=t);else{const r=t;let n,s;for(t=i[0],n=0;n<i.length-1;n++)s=et(this,r[e+n],o,n),s===V&&(s=this._$AH[n]),a||=!D(s)||s!==this._$AH[n],s===q?t=q:t!==q&&(t+=(s??"")+i[n+1]),this._$AH[n]=s}a&&!r&&this.O(t)}O(t){t===q?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}},at=class extends it{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===q?void 0:t}},nt=class extends it{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==q)}},st=class extends it{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=et(this,t,o,0)??q)===V)return;const e=this._$AH,r=t===q&&e!==q||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==q&&(e===q||r);r&&this.element.removeEventListener(this.name,this,e),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}},ct=class{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){et(this,t)}};const lt=W.litHtmlPolyfillSupport;lt?.(ot,rt),(W.litHtmlVersions??=[]).push("3.1.0");
53
58
  /**
54
59
  * @license
55
60
  * Copyright 2019 Google LLC
56
61
  * SPDX-License-Identifier: BSD-3-Clause
57
62
  */
58
- const lt=globalThis,ft=lt.ShadowRoot&&(void 0===lt.ShadyCSS||lt.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,ht=Symbol(),pt=new WeakMap;let dt=class{constructor(t,o,e){if(this._$cssResult$=!0,e!==ht)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=o}get styleSheet(){let t=this.o;const o=this.t;if(ft&&void 0===t){const e=void 0!==o&&1===o.length;e&&(t=pt.get(o)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&pt.set(o,t))}return t}toString(){return this.cssText}};const yt=t=>new dt("string"==typeof t?t:t+"",void 0,ht),ut=(t,...o)=>{const e=1===t.length?t[0]:o.reduce(((o,e,r)=>o+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(e)+t[r+1]),t[0]);return new dt(e,t,ht)},gt=ft?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let o="";for(const e of t.cssRules)o+=e.cssText;return yt(o)})(t):t
63
+ const ft=globalThis,ht=ft.ShadowRoot&&(void 0===ft.ShadyCSS||ft.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype,pt=Symbol(),dt=new WeakMap;let yt=class{constructor(t,o,e){if(this._$cssResult$=!0,e!==pt)throw Error("CSSResult is not constructable. Use `unsafeCSS` or `css` instead.");this.cssText=t,this.t=o}get styleSheet(){let t=this.o;const o=this.t;if(ht&&void 0===t){const e=void 0!==o&&1===o.length;e&&(t=dt.get(o)),void 0===t&&((this.o=t=new CSSStyleSheet).replaceSync(this.cssText),e&&dt.set(o,t))}return t}toString(){return this.cssText}};const ut=t=>new yt("string"==typeof t?t:t+"",void 0,pt),gt=(t,...o)=>{const e=1===t.length?t[0]:o.reduce(((o,e,r)=>o+(t=>{if(!0===t._$cssResult$)return t.cssText;if("number"==typeof t)return t;throw Error("Value passed to 'css' function must be a 'css' function result: "+t+". Use 'unsafeCSS' to pass non-literal values, but take care to ensure page security.")})(e)+t[r+1]),t[0]);return new yt(e,t,pt)},bt=ht?t=>t:t=>t instanceof CSSStyleSheet?(t=>{let o="";for(const e of t.cssRules)o+=e.cssText;return ut(o)})(t):t
59
64
  /**
60
65
  * @license
61
66
  * Copyright 2017 Google LLC
62
67
  * SPDX-License-Identifier: BSD-3-Clause
63
- */,{is:bt,defineProperty:mt,getOwnPropertyDescriptor:Ot,getOwnPropertyNames:xt,getOwnPropertySymbols:Nt,getPrototypeOf:vt}=Object,St=globalThis,wt=St.trustedTypes,Ct=wt?wt.emptyScript:"",Rt=St.reactiveElementPolyfillSupport,Ut=(t,o)=>t,Et={toAttribute(t,o){switch(o){case Boolean:t=t?Ct:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,o){let e=t;switch(o){case Boolean:e=null!==t;break;case Number:e=null===t?null:Number(t);break;case Object:case Array:try{e=JSON.parse(t)}catch(t){e=null}}return e}},Lt=(t,o)=>!bt(t,o),It={attribute:!0,type:String,converter:Et,reflect:!1,hasChanged:Lt};Symbol.metadata??=Symbol("metadata"),St.litPropertyMetadata??=new WeakMap;class Wt extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,o=It){if(o.state&&(o.attribute=!1),this._$Ei(),this.elementProperties.set(t,o),!o.noAccessor){const e=Symbol(),r=this.getPropertyDescriptor(t,e,o);void 0!==r&&mt(this.prototype,t,r)}}static getPropertyDescriptor(t,o,e){const{get:r,set:i}=Ot(this.prototype,t)??{get(){return this[o]},set(t){this[o]=t}};return{get(){return r?.call(this)},set(o){const a=r?.call(this);i.call(this,o),this.requestUpdate(t,a,e)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??It}static _$Ei(){if(this.hasOwnProperty(Ut("elementProperties")))return;const t=vt(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(Ut("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Ut("properties"))){const t=this.properties,o=[...xt(t),...Nt(t)];for(const e of o)this.createProperty(e,t[e])}const t=this[Symbol.metadata];if(null!==t){const o=litPropertyMetadata.get(t);if(void 0!==o)for(const[t,e]of o)this.elementProperties.set(t,e)}this._$Eh=new Map;for(const[t,o]of this.elementProperties){const e=this._$Eu(t,o);void 0!==e&&this._$Eh.set(e,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const o=[];if(Array.isArray(t)){const e=new Set(t.flat(1/0).reverse());for(const t of e)o.unshift(gt(t))}else void 0!==t&&o.push(gt(t));return o}static _$Eu(t,o){const e=o.attribute;return!1===e?void 0:"string"==typeof e?e:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$ES(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$E_??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$E_?.delete(t)}_$ES(){const t=new Map,o=this.constructor.elementProperties;for(const e of o.keys())this.hasOwnProperty(e)&&(t.set(e,this[e]),delete this[e]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return((t,o)=>{if(ft)t.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement("style"),r=lt.litNonce;void 0!==r&&o.setAttribute("nonce",r),o.textContent=e.cssText,t.appendChild(o)}})(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$E_?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$E_?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,o,e){this._$AK(t,e)}_$EO(t,o){const e=this.constructor.elementProperties.get(t),r=this.constructor._$Eu(t,e);if(void 0!==r&&!0===e.reflect){const i=(void 0!==e.converter?.toAttribute?e.converter:Et).toAttribute(o,e.type);this._$Em=t,null==i?this.removeAttribute(r):this.setAttribute(r,i),this._$Em=null}}_$AK(t,o){const e=this.constructor,r=e._$Eh.get(t);if(void 0!==r&&this._$Em!==r){const t=e.getPropertyOptions(r),i="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:Et;this._$Em=r,this[r]=i.fromAttribute(o,t.type),this._$Em=null}}requestUpdate(t,o,e,r=!1,i){if(void 0!==t){if(e??=this.constructor.getPropertyOptions(t),!(e.hasChanged??Lt)(r?i:this[t],o))return;this.C(t,o,e)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,o,e){this._$AL.has(t)||this._$AL.set(t,o),!0===e.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,o]of this._$Ep)this[t]=o;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[o,e]of t)!0!==e.wrapped||this._$AL.has(o)||void 0===this[o]||this.C(o,this[o],e)}let t=!1;const o=this._$AL;try{t=this.shouldUpdate(o),t?(this.willUpdate(o),this._$E_?.forEach((t=>t.hostUpdate?.())),this.update(o)):this._$ET()}catch(o){throw t=!1,this._$ET(),o}t&&this._$AE(o)}willUpdate(t){}_$AE(t){this._$E_?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EO(t,this[t]))),this._$ET()}updated(t){}firstUpdated(t){}}Wt.elementStyles=[],Wt.shadowRootOptions={mode:"open"},Wt[Ut("elementProperties")]=new Map,Wt[Ut("finalized")]=new Map,Rt?.({ReactiveElement:Wt}),(St.reactiveElementVersions??=[]).push("2.0.2");
68
+ */,{is:mt,defineProperty:Ot,getOwnPropertyDescriptor:xt,getOwnPropertyNames:Nt,getOwnPropertySymbols:vt,getPrototypeOf:St}=Object,wt=globalThis,Ct=wt.trustedTypes,Rt=Ct?Ct.emptyScript:"",Ut=wt.reactiveElementPolyfillSupport,Et=(t,o)=>t,Lt={toAttribute(t,o){switch(o){case Boolean:t=t?Rt:null;break;case Object:case Array:t=null==t?t:JSON.stringify(t)}return t},fromAttribute(t,o){let e=t;switch(o){case Boolean:e=null!==t;break;case Number:e=null===t?null:Number(t);break;case Object:case Array:try{e=JSON.parse(t)}catch(t){e=null}}return e}},It=(t,o)=>!mt(t,o),Wt={attribute:!0,type:String,converter:Lt,reflect:!1,hasChanged:It};Symbol.metadata??=Symbol("metadata"),wt.litPropertyMetadata??=new WeakMap;class kt extends HTMLElement{static addInitializer(t){this._$Ei(),(this.l??=[]).push(t)}static get observedAttributes(){return this.finalize(),this._$Eh&&[...this._$Eh.keys()]}static createProperty(t,o=Wt){if(o.state&&(o.attribute=!1),this._$Ei(),this.elementProperties.set(t,o),!o.noAccessor){const e=Symbol(),r=this.getPropertyDescriptor(t,e,o);void 0!==r&&Ot(this.prototype,t,r)}}static getPropertyDescriptor(t,o,e){const{get:r,set:i}=xt(this.prototype,t)??{get(){return this[o]},set(t){this[o]=t}};return{get(){return r?.call(this)},set(o){const a=r?.call(this);i.call(this,o),this.requestUpdate(t,a,e)},configurable:!0,enumerable:!0}}static getPropertyOptions(t){return this.elementProperties.get(t)??Wt}static _$Ei(){if(this.hasOwnProperty(Et("elementProperties")))return;const t=St(this);t.finalize(),void 0!==t.l&&(this.l=[...t.l]),this.elementProperties=new Map(t.elementProperties)}static finalize(){if(this.hasOwnProperty(Et("finalized")))return;if(this.finalized=!0,this._$Ei(),this.hasOwnProperty(Et("properties"))){const t=this.properties,o=[...Nt(t),...vt(t)];for(const e of o)this.createProperty(e,t[e])}const t=this[Symbol.metadata];if(null!==t){const o=litPropertyMetadata.get(t);if(void 0!==o)for(const[t,e]of o)this.elementProperties.set(t,e)}this._$Eh=new Map;for(const[t,o]of this.elementProperties){const e=this._$Eu(t,o);void 0!==e&&this._$Eh.set(e,t)}this.elementStyles=this.finalizeStyles(this.styles)}static finalizeStyles(t){const o=[];if(Array.isArray(t)){const e=new Set(t.flat(1/0).reverse());for(const t of e)o.unshift(bt(t))}else void 0!==t&&o.push(bt(t));return o}static _$Eu(t,o){const e=o.attribute;return!1===e?void 0:"string"==typeof e?e:"string"==typeof t?t.toLowerCase():void 0}constructor(){super(),this._$Ep=void 0,this.isUpdatePending=!1,this.hasUpdated=!1,this._$Em=null,this._$Ev()}_$Ev(){this._$Eg=new Promise((t=>this.enableUpdating=t)),this._$AL=new Map,this._$ES(),this.requestUpdate(),this.constructor.l?.forEach((t=>t(this)))}addController(t){(this._$E_??=new Set).add(t),void 0!==this.renderRoot&&this.isConnected&&t.hostConnected?.()}removeController(t){this._$E_?.delete(t)}_$ES(){const t=new Map,o=this.constructor.elementProperties;for(const e of o.keys())this.hasOwnProperty(e)&&(t.set(e,this[e]),delete this[e]);t.size>0&&(this._$Ep=t)}createRenderRoot(){const t=this.shadowRoot??this.attachShadow(this.constructor.shadowRootOptions);return((t,o)=>{if(ht)t.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet));else for(const e of o){const o=document.createElement("style"),r=ft.litNonce;void 0!==r&&o.setAttribute("nonce",r),o.textContent=e.cssText,t.appendChild(o)}})(t,this.constructor.elementStyles),t}connectedCallback(){this.renderRoot??=this.createRenderRoot(),this.enableUpdating(!0),this._$E_?.forEach((t=>t.hostConnected?.()))}enableUpdating(t){}disconnectedCallback(){this._$E_?.forEach((t=>t.hostDisconnected?.()))}attributeChangedCallback(t,o,e){this._$AK(t,e)}_$EO(t,o){const e=this.constructor.elementProperties.get(t),r=this.constructor._$Eu(t,e);if(void 0!==r&&!0===e.reflect){const i=(void 0!==e.converter?.toAttribute?e.converter:Lt).toAttribute(o,e.type);this._$Em=t,null==i?this.removeAttribute(r):this.setAttribute(r,i),this._$Em=null}}_$AK(t,o){const e=this.constructor,r=e._$Eh.get(t);if(void 0!==r&&this._$Em!==r){const t=e.getPropertyOptions(r),i="function"==typeof t.converter?{fromAttribute:t.converter}:void 0!==t.converter?.fromAttribute?t.converter:Lt;this._$Em=r,this[r]=i.fromAttribute(o,t.type),this._$Em=null}}requestUpdate(t,o,e,r=!1,i){if(void 0!==t){if(e??=this.constructor.getPropertyOptions(t),!(e.hasChanged??It)(r?i:this[t],o))return;this.C(t,o,e)}!1===this.isUpdatePending&&(this._$Eg=this._$EP())}C(t,o,e){this._$AL.has(t)||this._$AL.set(t,o),!0===e.reflect&&this._$Em!==t&&(this._$Ej??=new Set).add(t)}async _$EP(){this.isUpdatePending=!0;try{await this._$Eg}catch(t){Promise.reject(t)}const t=this.scheduleUpdate();return null!=t&&await t,!this.isUpdatePending}scheduleUpdate(){return this.performUpdate()}performUpdate(){if(!this.isUpdatePending)return;if(!this.hasUpdated){if(this.renderRoot??=this.createRenderRoot(),this._$Ep){for(const[t,o]of this._$Ep)this[t]=o;this._$Ep=void 0}const t=this.constructor.elementProperties;if(t.size>0)for(const[o,e]of t)!0!==e.wrapped||this._$AL.has(o)||void 0===this[o]||this.C(o,this[o],e)}let t=!1;const o=this._$AL;try{t=this.shouldUpdate(o),t?(this.willUpdate(o),this._$E_?.forEach((t=>t.hostUpdate?.())),this.update(o)):this._$ET()}catch(o){throw t=!1,this._$ET(),o}t&&this._$AE(o)}willUpdate(t){}_$AE(t){this._$E_?.forEach((t=>t.hostUpdated?.())),this.hasUpdated||(this.hasUpdated=!0,this.firstUpdated(t)),this.updated(t)}_$ET(){this._$AL=new Map,this.isUpdatePending=!1}get updateComplete(){return this.getUpdateComplete()}getUpdateComplete(){return this._$Eg}shouldUpdate(t){return!0}update(t){this._$Ej&&=this._$Ej.forEach((t=>this._$EO(t,this[t]))),this._$ET()}updated(t){}firstUpdated(t){}}kt.elementStyles=[],kt.shadowRootOptions={mode:"open"},kt[Et("elementProperties")]=new Map,kt[Et("finalized")]=new Map,Ut?.({ReactiveElement:kt}),(wt.reactiveElementVersions??=[]).push("2.0.2");
64
69
  /**
65
70
  * @license
66
71
  * Copyright 2017 Google LLC
67
72
  * SPDX-License-Identifier: BSD-3-Clause
68
73
  */
69
- const kt=globalThis,Kt=kt.trustedTypes,Zt=Kt?Kt.createPolicy("lit-html",{createHTML:t=>t}):void 0,$t="$lit$",At=`lit$${(Math.random()+"").slice(9)}$`,Ft="?"+At,Mt=`<${Ft}>`,zt=document,Bt=()=>zt.createComment(""),Dt=t=>null===t||"object"!=typeof t&&"function"!=typeof t,Pt=Array.isArray,_t="[ \t\n\f\r]",jt=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Ht=/-->/g,Tt=/>/g,Gt=RegExp(`>|${_t}(?:([^\\s"'>=/]+)(${_t}*=${_t}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),Yt=/'/g,Jt=/"/g,Vt=/^(?:script|style|textarea|title)$/i,qt=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),Xt=Symbol.for("lit-noChange"),Qt=Symbol.for("lit-nothing"),to=new WeakMap,oo=zt.createTreeWalker(zt,129);function eo(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==Zt?Zt.createHTML(o):o}const ro=(t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=jt;for(let o=0;o<e;o++){const e=t[o];let s,c,l=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===jt?"!--"===c[1]?n=Ht:void 0!==c[1]?n=Tt:void 0!==c[2]?(Vt.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=Gt):void 0!==c[3]&&(n=Gt):n===Gt?">"===c[0]?(n=i??jt,l=-1):void 0===c[1]?l=-2:(l=n.lastIndex-c[2].length,s=c[1],n=void 0===c[3]?Gt:'"'===c[3]?Jt:Yt):n===Jt||n===Yt?n=Gt:n===Ht||n===Tt?n=jt:(n=Gt,i=void 0);const h=n===Gt&&t[o+1].startsWith("/>")?" ":"";a+=n===jt?e+Mt:l>=0?(r.push(s),e.slice(0,l)+$t+e.slice(l)+At+h):e+At+(-2===l?o:h)}return[eo(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class io{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,a=0;const n=t.length-1,s=this.parts,[c,l]=ro(t,o);if(this.el=io.createElement(c,e),oo.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=oo.nextNode())&&s.length<n;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith($t)){const o=l[a++],e=r.getAttribute(t).split(At),n=/([.?@])?(.*)/.exec(o);s.push({type:1,index:i,name:n[2],strings:e,ctor:"."===n[1]?co:"?"===n[1]?lo:"@"===n[1]?fo:so}),r.removeAttribute(t)}else t.startsWith(At)&&(s.push({type:6,index:i}),r.removeAttribute(t));if(Vt.test(r.tagName)){const t=r.textContent.split(At),o=t.length-1;if(o>0){r.textContent=Kt?Kt.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],Bt()),oo.nextNode(),s.push({type:2,index:++i});r.append(t[o],Bt())}}}else if(8===r.nodeType)if(r.data===Ft)s.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(At,t+1));)s.push({type:7,index:i}),t+=At.length-1}i++}}static createElement(t,o){const e=zt.createElement("template");return e.innerHTML=t,e}}function ao(t,o,e=t,r){if(o===Xt)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=Dt(o)?void 0:o._$litDirective$;return i?.constructor!==a&&(i?._$AO?.(!1),void 0===a?i=void 0:(i=new a(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=ao(t,i._$AS(t,o.values),i,r)),o}class no{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=Qt,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===t?.nodeType&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=ao(this,t,o),Dt(t)?t===Qt||null==t||""===t?(this._$AH!==Qt&&this._$AR(),this._$AH=Qt):t!==this._$AH&&t!==Xt&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>Pt(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==Qt&&Dt(this._$AH)?this._$AA.nextSibling.data=t:this.$(zt.createTextNode(t)),this._$AH=t}g(t){const{values:o,_$litType$:e}=t,r="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=io.createElement(eo(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new class{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:o},parts:e}=this._$AD,r=(t?.creationScope??zt).importNode(o,!0);oo.currentNode=r;let i=oo.nextNode(),a=0,n=0,s=e[0];for(;void 0!==s;){if(a===s.index){let o;2===s.type?o=new no(i,i.nextSibling,this,t):1===s.type?o=new s.ctor(i,s.name,s.strings,this,t):6===s.type&&(o=new ho(i,this,t)),this._$AV.push(o),s=e[++n]}a!==s?.index&&(i=oo.nextNode(),a++)}return oo.currentNode=zt,r}p(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=to.get(t.strings);return void 0===o&&to.set(t.strings,o=new io(t)),o}T(t){Pt(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let e,r=0;for(const i of t)r===o.length?o.push(e=new no(this.k(Bt()),this.k(Bt()),this,this.options)):e=o[r],e._$AI(i),r++;r<o.length&&(this._$AR(e&&e._$AB.nextSibling,r),o.length=r)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class so{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=Qt,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=Qt}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=ao(this,t,o,0),a=!Dt(t)||t!==this._$AH&&t!==Xt,a&&(this._$AH=t);else{const r=t;let n,s;for(t=i[0],n=0;n<i.length-1;n++)s=ao(this,r[e+n],o,n),s===Xt&&(s=this._$AH[n]),a||=!Dt(s)||s!==this._$AH[n],s===Qt?t=Qt:t!==Qt&&(t+=(s??"")+i[n+1]),this._$AH[n]=s}a&&!r&&this.O(t)}O(t){t===Qt?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class co extends so{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===Qt?void 0:t}}class lo extends so{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==Qt)}}class fo extends so{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=ao(this,t,o,0)??Qt)===Xt)return;const e=this._$AH,r=t===Qt&&e!==Qt||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==Qt&&(e===Qt||r);r&&this.element.removeEventListener(this.name,this,e),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class ho{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){ao(this,t)}}const po=kt.litHtmlPolyfillSupport;po?.(io,no),(kt.litHtmlVersions??=[]).push("3.1.0");
74
+ const Kt=globalThis,Zt=Kt.trustedTypes,$t=Zt?Zt.createPolicy("lit-html",{createHTML:t=>t}):void 0,At="$lit$",Ft=`lit$${(Math.random()+"").slice(9)}$`,Mt="?"+Ft,zt=`<${Mt}>`,Dt=document,Bt=()=>Dt.createComment(""),Pt=t=>null===t||"object"!=typeof t&&"function"!=typeof t,_t=Array.isArray,jt="[ \t\n\f\r]",Ht=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Tt=/-->/g,Gt=/>/g,Yt=RegExp(`>|${jt}(?:([^\\s"'>=/]+)(${jt}*=${jt}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),Jt=/'/g,Vt=/"/g,qt=/^(?:script|style|textarea|title)$/i,Xt=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),Qt=Symbol.for("lit-noChange"),to=Symbol.for("lit-nothing"),oo=new WeakMap,eo=Dt.createTreeWalker(Dt,129);function ro(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==$t?$t.createHTML(o):o}const io=(t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=Ht;for(let o=0;o<e;o++){const e=t[o];let s,c,l=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===Ht?"!--"===c[1]?n=Tt:void 0!==c[1]?n=Gt:void 0!==c[2]?(qt.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=Yt):void 0!==c[3]&&(n=Yt):n===Yt?">"===c[0]?(n=i??Ht,l=-1):void 0===c[1]?l=-2:(l=n.lastIndex-c[2].length,s=c[1],n=void 0===c[3]?Yt:'"'===c[3]?Vt:Jt):n===Vt||n===Jt?n=Yt:n===Tt||n===Gt?n=Ht:(n=Yt,i=void 0);const h=n===Yt&&t[o+1].startsWith("/>")?" ":"";a+=n===Ht?e+zt:l>=0?(r.push(s),e.slice(0,l)+At+e.slice(l)+Ft+h):e+Ft+(-2===l?o:h)}return[ro(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class ao{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,a=0;const n=t.length-1,s=this.parts,[c,l]=io(t,o);if(this.el=ao.createElement(c,e),eo.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=eo.nextNode())&&s.length<n;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(At)){const o=l[a++],e=r.getAttribute(t).split(Ft),n=/([.?@])?(.*)/.exec(o);s.push({type:1,index:i,name:n[2],strings:e,ctor:"."===n[1]?lo:"?"===n[1]?fo:"@"===n[1]?ho:co}),r.removeAttribute(t)}else t.startsWith(Ft)&&(s.push({type:6,index:i}),r.removeAttribute(t));if(qt.test(r.tagName)){const t=r.textContent.split(Ft),o=t.length-1;if(o>0){r.textContent=Zt?Zt.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],Bt()),eo.nextNode(),s.push({type:2,index:++i});r.append(t[o],Bt())}}}else if(8===r.nodeType)if(r.data===Mt)s.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(Ft,t+1));)s.push({type:7,index:i}),t+=Ft.length-1}i++}}static createElement(t,o){const e=Dt.createElement("template");return e.innerHTML=t,e}}function no(t,o,e=t,r){if(o===Qt)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=Pt(o)?void 0:o._$litDirective$;return i?.constructor!==a&&(i?._$AO?.(!1),void 0===a?i=void 0:(i=new a(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=no(t,i._$AS(t,o.values),i,r)),o}class so{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=to,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===t?.nodeType&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=no(this,t,o),Pt(t)?t===to||null==t||""===t?(this._$AH!==to&&this._$AR(),this._$AH=to):t!==this._$AH&&t!==Qt&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>_t(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==to&&Pt(this._$AH)?this._$AA.nextSibling.data=t:this.$(Dt.createTextNode(t)),this._$AH=t}g(t){const{values:o,_$litType$:e}=t,r="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=ao.createElement(ro(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new class{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:o},parts:e}=this._$AD,r=(t?.creationScope??Dt).importNode(o,!0);eo.currentNode=r;let i=eo.nextNode(),a=0,n=0,s=e[0];for(;void 0!==s;){if(a===s.index){let o;2===s.type?o=new so(i,i.nextSibling,this,t):1===s.type?o=new s.ctor(i,s.name,s.strings,this,t):6===s.type&&(o=new po(i,this,t)),this._$AV.push(o),s=e[++n]}a!==s?.index&&(i=eo.nextNode(),a++)}return eo.currentNode=Dt,r}p(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=oo.get(t.strings);return void 0===o&&oo.set(t.strings,o=new ao(t)),o}T(t){_t(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let e,r=0;for(const i of t)r===o.length?o.push(e=new so(this.k(Bt()),this.k(Bt()),this,this.options)):e=o[r],e._$AI(i),r++;r<o.length&&(this._$AR(e&&e._$AB.nextSibling,r),o.length=r)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class co{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=to,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=to}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=no(this,t,o,0),a=!Pt(t)||t!==this._$AH&&t!==Qt,a&&(this._$AH=t);else{const r=t;let n,s;for(t=i[0],n=0;n<i.length-1;n++)s=no(this,r[e+n],o,n),s===Qt&&(s=this._$AH[n]),a||=!Pt(s)||s!==this._$AH[n],s===to?t=to:t!==to&&(t+=(s??"")+i[n+1]),this._$AH[n]=s}a&&!r&&this.O(t)}O(t){t===to?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class lo extends co{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===to?void 0:t}}class fo extends co{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==to)}}class ho extends co{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=no(this,t,o,0)??to)===Qt)return;const e=this._$AH,r=t===to&&e!==to||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==to&&(e===to||r);r&&this.element.removeEventListener(this.name,this,e),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class po{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){no(this,t)}}const yo=Kt.litHtmlPolyfillSupport;yo?.(ao,so),(Kt.litHtmlVersions??=[]).push("3.1.0");
70
75
  /**
71
76
  * @license
72
77
  * Copyright 2017 Google LLC
73
78
  * SPDX-License-Identifier: BSD-3-Clause
74
79
  */
75
- class yo extends Wt{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const o=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=((t,o,e)=>{const r=e?.renderBefore??o;let i=r._$litPart$;if(void 0===i){const t=e?.renderBefore??null;r._$litPart$=i=new no(o.insertBefore(Bt(),t),t,void 0,e??{})}return i._$AI(t),i})(o,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return Xt}}yo._$litElement$=!0,yo.finalized=!0,globalThis.litElementHydrateSupport?.({LitElement:yo});const uo=globalThis.litElementPolyfillSupport;uo?.({LitElement:yo}),(globalThis.litElementVersions??=[]).push("4.0.2");const go=t=>"string"==typeof t?yt(t):t;class bo{static create(t,o,e,r){const i=t=>go(null!=t?t:r),a=ut`var(${go(t)}, ${i(r)})`;return a.name=t,a.description=o,a.category=e,a.defaultValue=r,a.defaultCssValue=i,a.get=o=>ut`var(${go(t)}, ${i(o)})`,a.breadcrumb=()=>[],a.lastResortDefaultValue=()=>r,a}static extend(t,o,e,r){const i=t=>e.get(null!=t?t:r),a=ut`var(${go(t)}, ${i(r)})`;return a.name=t,a.description=o,a.category=e.category,a.fallbackVariable=e,a.defaultValue=r,a.defaultCssValue=i,a.get=o=>ut`var(${go(t)}, ${i(o)})`,a.breadcrumb=()=>[e.name,...e.breadcrumb()],a.lastResortDefaultValue=()=>null!=r?r:e.lastResortDefaultValue(),a}static external(t,o){const e=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):go(null!=o?o:t.lastResortDefaultValue()),r=ut`var(${go(t.name)}, ${e(t.defaultValue)})`;return r.name=t.name,r.category=t.category,r.fallbackVariable=t.fallbackVariable,r.defaultValue=t.defaultValue,r.context=o,r.defaultCssValue=e,r.get=o=>ut`var(${go(t.name)}, ${e(o)})`,r.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],r.lastResortDefaultValue=()=>t.lastResortDefaultValue(),r}}const mo={colorWhite:bo.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:bo.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:bo.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:bo.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:bo.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:bo.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:bo.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:bo.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:bo.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:bo.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:bo.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:bo.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:bo.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:bo.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:bo.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:bo.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:bo.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:bo.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:bo.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:bo.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:bo.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:bo.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:bo.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:bo.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:bo.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:bo.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:bo.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:bo.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:bo.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:bo.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:bo.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:bo.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:bo.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:bo.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:bo.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:bo.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:bo.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:bo.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:bo.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:bo.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:bo.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:bo.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:bo.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:bo.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:bo.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:bo.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:bo.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:bo.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:bo.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:bo.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:bo.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:bo.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:bo.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:bo.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:bo.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:bo.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:bo.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:bo.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:bo.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:bo.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:bo.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:bo.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:bo.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:bo.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:bo.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:bo.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:bo.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:bo.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:bo.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:bo.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:bo.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:bo.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:bo.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:bo.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:bo.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:bo.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:bo.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:bo.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:bo.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:bo.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:bo.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:bo.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:bo.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:bo.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:bo.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:bo.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:bo.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:bo.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:bo.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:bo.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:bo.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:bo.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:bo.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:bo.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:bo.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:bo.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:bo.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:bo.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:bo.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:bo.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:bo.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:bo.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:bo.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:bo.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:bo.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:bo.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:bo.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:bo.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:bo.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:bo.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:bo.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:bo.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:bo.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:bo.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:bo.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:bo.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:bo.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:bo.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:bo.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:bo.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:bo.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:bo.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:bo.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:bo.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:bo.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:bo.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:bo.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:bo.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:bo.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:bo.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:bo.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:bo.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:bo.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:bo.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:bo.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:bo.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:bo.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:bo.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:bo.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:bo.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:bo.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:bo.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:bo.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:bo.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:bo.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:bo.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:bo.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:bo.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:bo.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:bo.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:bo.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:bo.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:bo.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:bo.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:bo.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:bo.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:bo.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:bo.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:bo.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:bo.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:bo.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:bo.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:bo.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:bo.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:bo.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:bo.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:bo.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:bo.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:bo.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:bo.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:bo.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:bo.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:bo.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:bo.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:bo.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:bo.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:bo.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:bo.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:bo.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:bo.create("--ft-icon-size-6","","SIZE","48px"),opacity0:bo.create("--ft-opacity-0","","NUMBER","0"),opacity8:bo.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:bo.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:bo.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:bo.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:bo.create("--ft-opacity-80","","NUMBER","0.8")};bo.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-display-lineHeight","","SIZE","120%"),bo.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),bo.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),bo.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-display-textCase","","UNKNOWN","none"),bo.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),bo.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),bo.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),bo.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-title-1-textCase","","UNKNOWN","none"),bo.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),bo.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),bo.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),bo.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-title-2-textCase","","UNKNOWN","none"),bo.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),bo.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),bo.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),bo.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-title-3-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),bo.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),bo.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),bo.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),bo.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),bo.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none"),bo.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),bo.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),bo.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),bo.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),bo.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),bo.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),bo.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),bo.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),bo.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),bo.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),bo.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),bo.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),bo.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),bo.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),bo.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),bo.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),bo.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),bo.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),bo.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),bo.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),bo.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),bo.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none");const Oo={backgroundActionPrimary:bo.extend("--ft-background-action-primary","Used as backgorund of primary action components.",mo.colorBrand0),backgroundErrorPrimary:bo.extend("--ft-background-error-primary","Used as background of error components.",mo.colorRed0),backgroundErrorSubtle:bo.extend("--ft-background-error-subtle","Used as background of subtle error components.",mo.colorRed10),backgroundInfoPrimary:bo.extend("--ft-background-info-primary","Used as background of information components.",mo.colorCyan200),backgroundInfoSubtle:bo.extend("--ft-background-info-subtle","Used as background of subtle information components.",mo.colorCyan10),backgroundWarningPrimary:bo.extend("--ft-background-warning-primary","Used as background of warning components.",mo.colorOrange300),backgroundWarningSubtle:bo.extend("--ft-background-warning-subtle","Used as background of subtle information components.",mo.colorOrange10),backgroundSuccessPrimary:bo.extend("--ft-background-success-primary","Used as background of success components.",mo.colorGreen200),backgroundSuccessSubtle:bo.extend("--ft-background-success-subtle","Used as background of subtle success components.",mo.colorGreen10),backgroundGlobalSurface:bo.extend("--ft-background-global-surface","Used as app background.",mo.colorWhite),backgroundGlobalOnSurface:bo.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",mo.colorGray10),backgroundGlobalOnSurfaceDark:bo.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",mo.colorGray30),contentActionPrimary:bo.extend("--ft-content-action-primary","Used on label of primary action on light surface.",mo.colorBrand0),contentWarningPrimary:bo.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",mo.colorOrange300),contentWarningIconOnly:bo.extend("--ft-content-warning-icon-only","Used on warning status icons alone",mo.colorOrange0),contentErrorPrimary:bo.extend("--ft-content-error-primary","Used on label of error messages on light surface.",mo.colorRed0),contentErrorIconOnly:bo.extend("--ft-content-error-icon-only","Used on error status icons alone",mo.colorRed0),contentInfoPrimary:bo.extend("--ft-content-info-primary","Used on label of information messages on light surface.",mo.colorCyan200),contentInfoIconOnly:bo.extend("--ft-content-info-icon-only","Used on info status icons alone",mo.colorCyan0),contentSuccessIconOnly:bo.extend("--ft-content-success-icon-only","Used on success status icons alone",mo.colorGreen0),contentSuccessPrimary:bo.extend("--ft-content-success-primary","Used on label of success messages on light surface.",mo.colorGreen200),contentGlobalPrimary:bo.extend("--ft-content-global-primary","Used for main content on the page.",mo.colorGray500),contentGlobalSecondary:bo.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",mo.colorGray200),contentGlobalSubtle:bo.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",mo.colorGray0),contentGlobalOnColor:bo.extend("--ft-content-global-on-color","Used for content on a dominant color.",mo.colorWhite),borderActionPrimary:bo.extend("--ft-border-action-primary","Used as border for primary action components.",mo.colorBrand0),borderActionFocusRing:bo.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",mo.colorCyan0),borderWarningPrimary:bo.extend("--ft-border-warning-primary","Used as border for warning components.",mo.colorOrange30),borderSuccessPrimary:bo.extend("--ft-border-success-primary","Used as border for success components.",mo.colorGreen30),borderErrorPrimary:bo.extend("--ft-border-error-primary","Used as border for error components.",mo.colorRed30),borderInfoPrimary:bo.extend("--ft-border-info-primary","Used as border for information components.",mo.colorCyan30),borderGlobalSubtle:bo.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",mo.colorGray30),borderGlobalPrimary:bo.extend("--ft-border-global-primary","Used as border for element like input.",mo.colorGray50),borderInputPrimary:bo.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",mo.colorGray80)};bo.create("--ft-button-large-height","","SIZE","40px"),bo.extend("--ft-button-large-horizontal-padding","",mo.spacing4),bo.extend("--ft-button-large-gap","",mo.spacing2),bo.extend("--ft-button-large-border-radius","",mo.borderRadiusS),bo.extend("--ft-button-large-icon-size","",mo.iconSize3),bo.create("--ft-button-large-border-width","","SIZE","1px"),bo.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),bo.create("--ft-button-large-focus-outline-width","","SIZE","2px"),bo.create("--ft-button-large-icon-only-width","","SIZE","40px"),bo.create("--ft-button-small-height","","SIZE","30px"),bo.extend("--ft-button-small-horizontal-padding","",mo.spacing3),bo.extend("--ft-button-small-gap","",mo.spacing2),bo.extend("--ft-button-small-border-radius","",mo.borderRadiusS),bo.extend("--ft-button-small-icon-size","",mo.iconSize2),bo.create("--ft-button-small-border-width","","SIZE","1px"),bo.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),bo.create("--ft-button-small-focus-outline-width","","SIZE","2px"),bo.create("--ft-button-small-icon-only-width","","SIZE","30px"),bo.extend("--ft-button-primary-background-color","",Oo.backgroundActionPrimary),bo.extend("--ft-button-primary-color","",Oo.contentGlobalOnColor),bo.extend("--ft-button-primary-icon-color","",Oo.contentGlobalOnColor),bo.extend("--ft-button-primary-state-layer-color","",Oo.contentGlobalOnColor),bo.extend("--ft-button-primary-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-button-primary-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-button-primary-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-button-primary-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-button-focus-focus-ring-color","",Oo.borderActionFocusRing),bo.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),bo.extend("--ft-button-tertiary-color","",Oo.contentActionPrimary),bo.extend("--ft-button-tertiary-icon-color","",Oo.contentActionPrimary),bo.extend("--ft-button-tertiary-state-layer-color","",Oo.contentActionPrimary),bo.extend("--ft-button-tertiary-state-layer-opacity-hover","",mo.opacity8),bo.extend("--ft-button-tertiary-state-layer-opacity-focus","",mo.opacity8),bo.extend("--ft-button-tertiary-state-layer-opacity-active","",mo.opacity16),bo.extend("--ft-button-tertiary-component-opacity-disabled","",mo.opacity40),bo.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),bo.extend("--ft-button-secondary-color","",Oo.contentActionPrimary),bo.extend("--ft-button-secondary-icon-color","",Oo.contentActionPrimary),bo.extend("--ft-button-secondary-state-layer-color","",Oo.contentActionPrimary),bo.extend("--ft-button-secondary-state-layer-opacity-hover","",mo.opacity8),bo.extend("--ft-button-secondary-state-layer-opacity-focus","",mo.opacity8),bo.extend("--ft-button-secondary-state-layer-opacity-active","",mo.opacity16),bo.extend("--ft-button-secondary-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-button-secondary-border-color","",Oo.borderActionPrimary),bo.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),bo.extend("--ft-button-neutral-icon-color","",Oo.contentGlobalSecondary),bo.extend("--ft-button-neutral-color","",Oo.contentGlobalSecondary),bo.extend("--ft-button-neutral-state-layer-color","",Oo.contentGlobalSecondary),bo.extend("--ft-button-neutral-state-layer-opacity-hover","",mo.opacity8),bo.extend("--ft-button-neutral-state-layer-opacity-focus","",mo.opacity8),bo.extend("--ft-button-neutral-state-layer-opacity-active","",mo.opacity16),bo.extend("--ft-button-neutral-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-tabs-top-left-border-radius","",mo.borderRadiusS),bo.extend("--ft-tabs-top-right-border-radius","",mo.borderRadiusS),bo.extend("--ft-tabs-label-horizontal-padding","",mo.spacing4),bo.extend("--ft-tabs-label-vertical-padding","",mo.spacing3),bo.extend("--ft-tabs-label-gap","",mo.spacing1),bo.extend("--ft-switch-group-horizontal-padding","",mo.spacing1),bo.extend("--ft-switch-group-vertical-padding","",mo.spacing1),bo.extend("--ft-switch-group-gap","",mo.spacing1),bo.extend("--ft-switch-group-background-color","",Oo.backgroundGlobalSurface),bo.extend("--ft-switch-group-border-color","",Oo.borderGlobalSubtle),bo.create("--ft-switch-group-border-radius","","SIZE","6px"),bo.extend("--ft-switch-label-horizontal-padding","",mo.spacing2),bo.extend("--ft-switch-label-vertical-padding","",mo.spacing1),bo.extend("--ft-switch-icon-horizontal-padding","",mo.spacing1),bo.extend("--ft-switch-icon-vertical-padding","",mo.spacing1),bo.create("--ft-switch-focus-outline-width","","SIZE","2px"),bo.extend("--ft-switch-focus-focus-ring-color","",Oo.borderActionFocusRing),bo.extend("--ft-switch-option-border-radius","",mo.borderRadiusS),bo.extend("--ft-switch-off-state-layer-opacity-hover","",mo.opacity8),bo.extend("--ft-switch-off-state-layer-opacity-focus","",mo.opacity8),bo.extend("--ft-switch-off-state-layer-opacity-active","",mo.opacity16),bo.extend("--ft-switch-off-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-switch-off-color","",Oo.contentGlobalSubtle),bo.extend("--ft-switch-off-state-layer-color","",Oo.contentGlobalSubtle),bo.extend("--ft-chart-1-light","for area color charts",mo.colorBrand40),bo.extend("--ft-chart-1-base","for line charts",mo.colorBrand0),bo.extend("--ft-chart-2-light","for area color charts",mo.colorYellow60),bo.extend("--ft-chart-2-base","for line charts",mo.colorYellow100),bo.extend("--ft-chart-3-light","",mo.colorUltramarine40),bo.extend("--ft-chart-3-base","",mo.colorUltramarine70),bo.extend("--ft-chart-4-light","",mo.colorCyan50),bo.extend("--ft-chart-4-base","",mo.colorCyan100),bo.extend("--ft-chart-5-light","",mo.colorRed40),bo.extend("--ft-chart-5-base","",mo.colorRed60),bo.extend("--ft-chart-6-light","",mo.colorGreen40),bo.extend("--ft-chart-6-base","",mo.colorGreen70),bo.extend("--ft-chart-7-light","",mo.colorOrange70),bo.extend("--ft-chart-7-base","",mo.colorOrange100),bo.extend("--ft-chart-8-light","",mo.colorAvocado70),bo.extend("--ft-chart-8-base","",mo.colorAvocado200),bo.extend("--ft-chart-9-light","",mo.colorBrown50),bo.extend("--ft-chart-9-base","",mo.colorBrown200),bo.extend("--ft-chart-10-light","",mo.colorGray50),bo.extend("--ft-chart-10-base","",mo.colorGray80),bo.extend("--ft-chart-monochrome-10","",mo.colorBrand10),bo.extend("--ft-chart-monochrome-20","",mo.colorBrand20),bo.extend("--ft-chart-monochrome-30","",mo.colorBrand40),bo.extend("--ft-chart-monochrome-40","",mo.colorBrand60),bo.extend("--ft-chart-monochrome-50","",mo.colorBrand0),bo.extend("--ft-chart-monochrome-60","",mo.colorBrand200),bo.extend("--ft-chip-large-horizontal-padding","",mo.spacing4),bo.extend("--ft-chip-large-vertical-padding","",mo.spacing2),bo.extend("--ft-chip-large-gap","",mo.spacing1),bo.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),bo.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),bo.extend("--ft-chip-large-border-radius","",mo.borderRadiusPill),bo.create("--ft-chip-large-border-width","","SIZE","1px"),bo.extend("--ft-chip-large-icon-size","",mo.iconSize3),bo.extend("--ft-chip-medium-horizontal-padding","",mo.spacing3),bo.extend("--ft-chip-medium-vertical-padding","",mo.spacing1),bo.extend("--ft-chip-medium-gap","",mo.spacing1),bo.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),bo.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),bo.extend("--ft-chip-medium-border-radius","",mo.borderRadiusPill),bo.create("--ft-chip-medium-border-width","","SIZE","1px"),bo.extend("--ft-chip-medium-icon-size","",mo.iconSize2),bo.extend("--ft-chip-small-horizontal-padding","",mo.spacing2),bo.extend("--ft-chip-small-vertical-padding","",mo.spacing05),bo.extend("--ft-chip-small-gap","",mo.spacing1),bo.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),bo.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),bo.extend("--ft-chip-small-border-radius","",mo.borderRadiusPill),bo.create("--ft-chip-small-border-width","","SIZE","1px"),bo.extend("--ft-chip-small-icon-size","",mo.iconSize1),bo.extend("--ft-chip-neutral-background-color","",Oo.backgroundGlobalOnSurface),bo.extend("--ft-chip-neutral-color","",Oo.contentGlobalPrimary),bo.extend("--ft-chip-neutral-border-color","",Oo.borderGlobalSubtle),bo.extend("--ft-chip-info-background-color","",Oo.backgroundInfoSubtle),bo.extend("--ft-chip-info-color","",Oo.contentInfoPrimary),bo.extend("--ft-chip-info-border-color","",Oo.borderInfoPrimary),bo.extend("--ft-chip-success-background-color","",Oo.backgroundSuccessSubtle),bo.extend("--ft-chip-success-color","",Oo.contentSuccessPrimary),bo.extend("--ft-chip-success-border-color","",Oo.borderSuccessPrimary),bo.extend("--ft-chip-warning-background-color","",Oo.backgroundWarningSubtle),bo.extend("--ft-chip-warning-color","",Oo.contentWarningPrimary),bo.extend("--ft-chip-warning-border-color","",Oo.borderWarningPrimary),bo.extend("--ft-chip-error-background-color","",Oo.backgroundErrorSubtle),bo.extend("--ft-chip-error-color","",Oo.contentErrorPrimary),bo.extend("--ft-chip-error-border-color","",Oo.borderErrorPrimary),bo.create("--ft-notice-border-width","","SIZE","1px"),bo.extend("--ft-notice-horizontal-padding","",mo.spacing2),bo.extend("--ft-notice-vertical-padding","",mo.spacing1),bo.extend("--ft-notice-border-radius","",mo.borderRadiusS),bo.extend("--ft-notice-gap","",mo.spacing2),bo.extend("--ft-notice-icon-size","",mo.iconSize3),bo.extend("--ft-notice-info-background-color","",Oo.backgroundInfoSubtle),bo.extend("--ft-notice-info-border-color","",Oo.borderInfoPrimary),bo.extend("--ft-notice-info-color","",Oo.contentInfoPrimary),bo.extend("--ft-notice-warning-background-color","",Oo.backgroundWarningSubtle),bo.extend("--ft-notice-warning-border-color","",Oo.borderWarningPrimary),bo.extend("--ft-notice-warning-color","",Oo.contentWarningPrimary),bo.extend("--ft-checkbox-label-color","",Oo.contentGlobalPrimary),bo.extend("--ft-checkbox-checked-background-color","",Oo.contentActionPrimary),bo.extend("--ft-checkbox-checked-state-layer-color","",Oo.contentActionPrimary),bo.extend("--ft-checkbox-checked-color","",Oo.contentGlobalOnColor),bo.extend("--ft-checkbox-checked-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-checkbox-checked-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-checkbox-checked-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-checkbox-checked-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-checkbox-unchecked-border-color","",mo.colorGray80),bo.extend("--ft-checkbox-unchecked-state-layer-color","",mo.colorGray80),bo.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-checkbox-unchecked-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-checkbox-focus-focus-ring-color","",Oo.borderActionFocusRing),bo.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),bo.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),bo.extend("--ft-checkbox-gap","",mo.spacing3),bo.extend("--ft-toggle-off-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-toggle-off-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-toggle-off-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-toggle-off-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-toggle-off-background-color","",Oo.contentGlobalSubtle),bo.extend("--ft-toggle-off-icon-color","",Oo.contentGlobalSubtle),bo.extend("--ft-toggle-off-state-layer-color","",Oo.contentGlobalSubtle),bo.extend("--ft-toggle-on-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-toggle-on-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-toggle-on-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-toggle-on-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-toggle-on-background-color","",Oo.contentActionPrimary),bo.extend("--ft-toggle-on-icon-color","",Oo.contentActionPrimary),bo.extend("--ft-toggle-on-state-layer-color","",Oo.contentActionPrimary),bo.extend("--ft-toggle-label-color","",Oo.contentGlobalPrimary),bo.extend("--ft-toggle-focus-focus-ring-color","",Oo.borderActionFocusRing),bo.extend("--ft-toggle-gap","",mo.spacing3),bo.extend("--ft-radio-label-color","",Oo.contentGlobalPrimary),bo.extend("--ft-radio-selected-color","",Oo.contentActionPrimary),bo.extend("--ft-radio-selected-state-layer-color","",Oo.contentActionPrimary),bo.extend("--ft-radio-selected-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-radio-selected-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-radio-selected-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-radio-selected-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-radio-unselected-state-layer-color","",mo.colorGray80),bo.extend("--ft-radio-unselected-state-layer-opacity-hover","",mo.opacity16),bo.extend("--ft-radio-unselected-state-layer-opacity-focus","",mo.opacity16),bo.extend("--ft-radio-unselected-state-layer-opacity-active","",mo.opacity24),bo.extend("--ft-radio-unselected-component-opacity-disabled","",mo.opacity40),bo.extend("--ft-radio-focus-focus-ring-color","",Oo.borderActionFocusRing),bo.create("--ft-radio-focus-outline-offset","","SIZE","3px"),bo.create("--ft-radio-focus-outline-width","","SIZE","2px"),bo.extend("--ft-radio-gap","",mo.spacing3),bo.extend("--ft-notification-icon-size","",mo.iconSize4),bo.extend("--ft-notification-horizontal-padding","",mo.spacing4),bo.extend("--ft-notification-vertical-padding","",mo.spacing4),bo.extend("--ft-notification-info-background-color","",Oo.backgroundInfoSubtle),bo.extend("--ft-notification-info-color","",Oo.contentInfoPrimary),bo.extend("--ft-notification-info-border-color","",Oo.borderInfoPrimary),bo.extend("--ft-notification-success-background-color","",Oo.backgroundSuccessSubtle),bo.extend("--ft-notification-success-color","",Oo.contentSuccessPrimary),bo.extend("--ft-notification-success-border-color","",Oo.borderSuccessPrimary),bo.extend("--ft-notification-warning-background-color","",Oo.backgroundWarningSubtle),bo.extend("--ft-notification-warning-color","",Oo.contentWarningPrimary),bo.extend("--ft-notification-warning-border-color","",Oo.borderWarningPrimary),bo.extend("--ft-notification-error-background-color","",Oo.backgroundErrorSubtle),bo.extend("--ft-notification-error-color","",Oo.contentErrorPrimary),bo.extend("--ft-notification-error-border-color","",Oo.borderErrorPrimary),bo.extend("--ft-notification-border-radius","",mo.borderRadiusPill),bo.create("--ft-notification-border-width","","SIZE","1px"),bo.extend("--ft-notification-gap-leading","",mo.spacing2),bo.extend("--ft-notification-gap-trailing","",mo.spacing8);const xo={colorPrimary:bo.create("--ft-color-primary","","COLOR","#2196F3"),colorPrimaryVariant:bo.create("--ft-color-primary-variant","","COLOR","#1976D2"),colorSecondary:bo.create("--ft-color-secondary","","COLOR","#FFCC80"),colorSecondaryVariant:bo.create("--ft-color-secondary-variant","","COLOR","#F57C00"),colorSurface:bo.create("--ft-color-surface","","COLOR","#FFFFFF"),colorContent:bo.create("--ft-color-content","","COLOR","rgba(0, 0, 0, 0.87)"),colorError:bo.create("--ft-color-error","","COLOR","#B00020"),colorOutline:bo.create("--ft-color-outline","","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:bo.create("--ft-color-opacity-high","","NUMBER","1"),colorOpacityMedium:bo.create("--ft-color-opacity-medium","","NUMBER","0.74"),colorOpacityDisabled:bo.create("--ft-color-opacity-disabled","","NUMBER","0.38"),colorOnPrimary:bo.create("--ft-color-on-primary","","COLOR","#FFFFFF"),colorOnPrimaryHigh:bo.create("--ft-color-on-primary-high","","COLOR","#FFFFFF"),colorOnPrimaryMedium:bo.create("--ft-color-on-primary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:bo.create("--ft-color-on-primary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:bo.create("--ft-color-on-secondary","","COLOR","#FFFFFF"),colorOnSecondaryHigh:bo.create("--ft-color-on-secondary-high","","COLOR","#FFFFFF"),colorOnSecondaryMedium:bo.create("--ft-color-on-secondary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:bo.create("--ft-color-on-secondary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:bo.create("--ft-color-on-surface","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:bo.create("--ft-color-on-surface-high","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:bo.create("--ft-color-on-surface-medium","","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:bo.create("--ft-color-on-surface-disabled","","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:bo.create("--ft-opacity-content-on-surface-disabled","","NUMBER","0"),opacityContentOnSurfaceEnable:bo.create("--ft-opacity-content-on-surface-enable","","NUMBER","0"),opacityContentOnSurfaceHover:bo.create("--ft-opacity-content-on-surface-hover","","NUMBER","0.04"),opacityContentOnSurfaceFocused:bo.create("--ft-opacity-content-on-surface-focused","","NUMBER","0.12"),opacityContentOnSurfacePressed:bo.create("--ft-opacity-content-on-surface-pressed","","NUMBER","0.10"),opacityContentOnSurfaceSelected:bo.create("--ft-opacity-content-on-surface-selected","","NUMBER","0.08"),opacityContentOnSurfaceDragged:bo.create("--ft-opacity-content-on-surface-dragged","","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:bo.create("--ft-opacity-primary-on-surface-disabled","","NUMBER","0"),opacityPrimaryOnSurfaceEnable:bo.create("--ft-opacity-primary-on-surface-enable","","NUMBER","0"),opacityPrimaryOnSurfaceHover:bo.create("--ft-opacity-primary-on-surface-hover","","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:bo.create("--ft-opacity-primary-on-surface-focused","","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:bo.create("--ft-opacity-primary-on-surface-pressed","","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:bo.create("--ft-opacity-primary-on-surface-selected","","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:bo.create("--ft-opacity-primary-on-surface-dragged","","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:bo.create("--ft-opacity-surface-on-primary-disabled","","NUMBER","0"),opacitySurfaceOnPrimaryEnable:bo.create("--ft-opacity-surface-on-primary-enable","","NUMBER","0"),opacitySurfaceOnPrimaryHover:bo.create("--ft-opacity-surface-on-primary-hover","","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:bo.create("--ft-opacity-surface-on-primary-focused","","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:bo.create("--ft-opacity-surface-on-primary-pressed","","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:bo.create("--ft-opacity-surface-on-primary-selected","","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:bo.create("--ft-opacity-surface-on-primary-dragged","","NUMBER","0.08"),elevation00:bo.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:bo.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:bo.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:bo.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:bo.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:bo.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:bo.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:bo.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:bo.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:bo.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:bo.create("--ft-border-radius-S","","SIZE","4px"),borderRadiusM:bo.create("--ft-border-radius-M","","SIZE","8px"),borderRadiusL:bo.create("--ft-border-radius-L","","SIZE","12px"),borderRadiusXL:bo.create("--ft-border-radius-XL","","SIZE","16px"),titleFont:bo.create("--ft-title-font","","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:bo.create("--ft-content-font","","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:bo.create("--ft-transition-duration","","UNKNOWN","250ms"),transitionTimingFunction:bo.create("--ft-transition-timing-function","","UNKNOWN","ease-in-out")},No=window,vo=No.ShadowRoot&&(void 0===No.ShadyCSS||No.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype;
80
+ class uo extends kt{constructor(){super(...arguments),this.renderOptions={host:this},this._$Do=void 0}createRenderRoot(){const t=super.createRenderRoot();return this.renderOptions.renderBefore??=t.firstChild,t}update(t){const o=this.render();this.hasUpdated||(this.renderOptions.isConnected=this.isConnected),super.update(t),this._$Do=((t,o,e)=>{const r=e?.renderBefore??o;let i=r._$litPart$;if(void 0===i){const t=e?.renderBefore??null;r._$litPart$=i=new so(o.insertBefore(Bt(),t),t,void 0,e??{})}return i._$AI(t),i})(o,this.renderRoot,this.renderOptions)}connectedCallback(){super.connectedCallback(),this._$Do?.setConnected(!0)}disconnectedCallback(){super.disconnectedCallback(),this._$Do?.setConnected(!1)}render(){return Qt}}uo._$litElement$=!0,uo.finalized=!0,globalThis.litElementHydrateSupport?.({LitElement:uo});const go=globalThis.litElementPolyfillSupport;go?.({LitElement:uo}),(globalThis.litElementVersions??=[]).push("4.0.2");const bo=t=>"string"==typeof t?ut(t):t;class mo{static create(t,o,e,r){const i=t=>bo(null!=t?t:r),a=gt`var(${bo(t)}, ${i(r)})`;return a.name=t,a.description=o,a.category=e,a.defaultValue=r,a.defaultCssValue=i,a.get=o=>gt`var(${bo(t)}, ${i(o)})`,a.breadcrumb=()=>[],a.lastResortDefaultValue=()=>r,a}static extend(t,o,e,r){const i=t=>e.get(null!=t?t:r),a=gt`var(${bo(t)}, ${i(r)})`;return a.name=t,a.description=o,a.category=e.category,a.fallbackVariable=e,a.defaultValue=r,a.defaultCssValue=i,a.get=o=>gt`var(${bo(t)}, ${i(o)})`,a.breadcrumb=()=>[e.name,...e.breadcrumb()],a.lastResortDefaultValue=()=>null!=r?r:e.lastResortDefaultValue(),a}static external(t,o){const e=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):bo(null!=o?o:t.lastResortDefaultValue()),r=gt`var(${bo(t.name)}, ${e(t.defaultValue)})`;return r.name=t.name,r.category=t.category,r.fallbackVariable=t.fallbackVariable,r.defaultValue=t.defaultValue,r.context=o,r.defaultCssValue=e,r.get=o=>gt`var(${bo(t.name)}, ${e(o)})`,r.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],r.lastResortDefaultValue=()=>t.lastResortDefaultValue(),r}}const Oo={colorWhite:mo.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:mo.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:mo.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:mo.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:mo.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:mo.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:mo.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:mo.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:mo.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:mo.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:mo.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:mo.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:mo.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:mo.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:mo.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:mo.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:mo.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:mo.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:mo.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:mo.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:mo.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:mo.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:mo.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:mo.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:mo.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:mo.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:mo.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:mo.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:mo.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:mo.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:mo.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:mo.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:mo.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:mo.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:mo.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:mo.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:mo.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:mo.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:mo.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:mo.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:mo.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:mo.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:mo.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:mo.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:mo.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:mo.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:mo.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:mo.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:mo.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:mo.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:mo.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:mo.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:mo.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:mo.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:mo.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:mo.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:mo.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:mo.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:mo.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:mo.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:mo.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:mo.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:mo.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:mo.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:mo.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:mo.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:mo.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:mo.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:mo.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:mo.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:mo.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:mo.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:mo.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:mo.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:mo.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:mo.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:mo.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:mo.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:mo.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:mo.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:mo.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:mo.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:mo.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:mo.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:mo.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:mo.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:mo.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:mo.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:mo.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:mo.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:mo.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:mo.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:mo.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:mo.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:mo.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:mo.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:mo.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:mo.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:mo.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:mo.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:mo.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:mo.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:mo.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:mo.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:mo.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:mo.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:mo.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:mo.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:mo.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:mo.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:mo.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:mo.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:mo.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:mo.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:mo.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:mo.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:mo.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:mo.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:mo.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:mo.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:mo.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:mo.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:mo.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:mo.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:mo.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:mo.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:mo.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:mo.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:mo.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:mo.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:mo.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:mo.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:mo.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:mo.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:mo.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:mo.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:mo.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:mo.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:mo.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:mo.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:mo.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:mo.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:mo.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:mo.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:mo.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:mo.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:mo.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:mo.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:mo.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:mo.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:mo.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:mo.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:mo.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:mo.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:mo.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:mo.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:mo.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:mo.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:mo.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:mo.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:mo.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:mo.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:mo.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:mo.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:mo.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:mo.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:mo.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:mo.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:mo.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:mo.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:mo.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:mo.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:mo.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:mo.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:mo.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:mo.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:mo.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:mo.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:mo.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:mo.create("--ft-icon-size-6","","SIZE","48px"),opacity0:mo.create("--ft-opacity-0","","NUMBER","0"),opacity8:mo.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:mo.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:mo.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:mo.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:mo.create("--ft-opacity-80","","NUMBER","0.8")};mo.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-display-lineHeight","","SIZE","120%"),mo.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),mo.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),mo.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-display-textCase","","UNKNOWN","none"),mo.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),mo.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),mo.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),mo.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-title-1-textCase","","UNKNOWN","none"),mo.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),mo.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),mo.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),mo.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-title-2-textCase","","UNKNOWN","none"),mo.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),mo.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),mo.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),mo.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-title-3-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),mo.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),mo.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),mo.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),mo.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),mo.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none"),mo.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),mo.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),mo.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),mo.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),mo.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),mo.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),mo.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),mo.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),mo.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),mo.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),mo.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),mo.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),mo.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),mo.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),mo.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),mo.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),mo.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),mo.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),mo.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),mo.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),mo.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),mo.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none");const xo={backgroundActionPrimary:mo.extend("--ft-background-action-primary","Used as backgorund of primary action components.",Oo.colorBrand0),backgroundErrorPrimary:mo.extend("--ft-background-error-primary","Used as background of error components.",Oo.colorRed0),backgroundErrorSubtle:mo.extend("--ft-background-error-subtle","Used as background of subtle error components.",Oo.colorRed10),backgroundInfoPrimary:mo.extend("--ft-background-info-primary","Used as background of information components.",Oo.colorCyan200),backgroundInfoSubtle:mo.extend("--ft-background-info-subtle","Used as background of subtle information components.",Oo.colorCyan10),backgroundWarningPrimary:mo.extend("--ft-background-warning-primary","Used as background of warning components.",Oo.colorOrange300),backgroundWarningSubtle:mo.extend("--ft-background-warning-subtle","Used as background of subtle information components.",Oo.colorOrange10),backgroundSuccessPrimary:mo.extend("--ft-background-success-primary","Used as background of success components.",Oo.colorGreen200),backgroundSuccessSubtle:mo.extend("--ft-background-success-subtle","Used as background of subtle success components.",Oo.colorGreen10),backgroundGlobalSurface:mo.extend("--ft-background-global-surface","Used as app background.",Oo.colorWhite),backgroundGlobalOnSurface:mo.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",Oo.colorGray10),backgroundGlobalOnSurfaceDark:mo.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",Oo.colorGray30),contentActionPrimary:mo.extend("--ft-content-action-primary","Used on label of primary action on light surface.",Oo.colorBrand0),contentWarningPrimary:mo.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",Oo.colorOrange300),contentWarningIconOnly:mo.extend("--ft-content-warning-icon-only","Used on warning status icons alone",Oo.colorOrange0),contentErrorPrimary:mo.extend("--ft-content-error-primary","Used on label of error messages on light surface.",Oo.colorRed0),contentErrorIconOnly:mo.extend("--ft-content-error-icon-only","Used on error status icons alone",Oo.colorRed0),contentInfoPrimary:mo.extend("--ft-content-info-primary","Used on label of information messages on light surface.",Oo.colorCyan200),contentInfoIconOnly:mo.extend("--ft-content-info-icon-only","Used on info status icons alone",Oo.colorCyan0),contentSuccessIconOnly:mo.extend("--ft-content-success-icon-only","Used on success status icons alone",Oo.colorGreen0),contentSuccessPrimary:mo.extend("--ft-content-success-primary","Used on label of success messages on light surface.",Oo.colorGreen200),contentGlobalPrimary:mo.extend("--ft-content-global-primary","Used for main content on the page.",Oo.colorGray500),contentGlobalSecondary:mo.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",Oo.colorGray200),contentGlobalSubtle:mo.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",Oo.colorGray0),contentGlobalOnColor:mo.extend("--ft-content-global-on-color","Used for content on a dominant color.",Oo.colorWhite),borderActionPrimary:mo.extend("--ft-border-action-primary","Used as border for primary action components.",Oo.colorBrand0),borderActionFocusRing:mo.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",Oo.colorCyan0),borderWarningPrimary:mo.extend("--ft-border-warning-primary","Used as border for warning components.",Oo.colorOrange30),borderSuccessPrimary:mo.extend("--ft-border-success-primary","Used as border for success components.",Oo.colorGreen30),borderErrorPrimary:mo.extend("--ft-border-error-primary","Used as border for error components.",Oo.colorRed30),borderInfoPrimary:mo.extend("--ft-border-info-primary","Used as border for information components.",Oo.colorCyan30),borderGlobalSubtle:mo.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",Oo.colorGray30),borderGlobalPrimary:mo.extend("--ft-border-global-primary","Used as border for element like input.",Oo.colorGray50),borderInputPrimary:mo.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",Oo.colorGray80)};mo.create("--ft-button-large-height","","SIZE","40px"),mo.extend("--ft-button-large-horizontal-padding","",Oo.spacing4),mo.extend("--ft-button-large-gap","",Oo.spacing2),mo.extend("--ft-button-large-border-radius","",Oo.borderRadiusS),mo.extend("--ft-button-large-icon-size","",Oo.iconSize3),mo.create("--ft-button-large-border-width","","SIZE","1px"),mo.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),mo.create("--ft-button-large-focus-outline-width","","SIZE","2px"),mo.create("--ft-button-large-icon-only-width","","SIZE","40px"),mo.create("--ft-button-small-height","","SIZE","30px"),mo.extend("--ft-button-small-horizontal-padding","",Oo.spacing3),mo.extend("--ft-button-small-gap","",Oo.spacing2),mo.extend("--ft-button-small-border-radius","",Oo.borderRadiusS),mo.extend("--ft-button-small-icon-size","",Oo.iconSize2),mo.create("--ft-button-small-border-width","","SIZE","1px"),mo.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),mo.create("--ft-button-small-focus-outline-width","","SIZE","2px"),mo.create("--ft-button-small-icon-only-width","","SIZE","30px"),mo.extend("--ft-button-primary-background-color","",xo.backgroundActionPrimary),mo.extend("--ft-button-primary-color","",xo.contentGlobalOnColor),mo.extend("--ft-button-primary-icon-color","",xo.contentGlobalOnColor),mo.extend("--ft-button-primary-state-layer-color","",xo.contentGlobalOnColor),mo.extend("--ft-button-primary-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-button-primary-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-button-primary-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-button-primary-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-button-focus-focus-ring-color","",xo.borderActionFocusRing),mo.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),mo.extend("--ft-button-tertiary-color","",xo.contentActionPrimary),mo.extend("--ft-button-tertiary-icon-color","",xo.contentActionPrimary),mo.extend("--ft-button-tertiary-state-layer-color","",xo.contentActionPrimary),mo.extend("--ft-button-tertiary-state-layer-opacity-hover","",Oo.opacity8),mo.extend("--ft-button-tertiary-state-layer-opacity-focus","",Oo.opacity8),mo.extend("--ft-button-tertiary-state-layer-opacity-active","",Oo.opacity16),mo.extend("--ft-button-tertiary-component-opacity-disabled","",Oo.opacity40),mo.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),mo.extend("--ft-button-secondary-color","",xo.contentActionPrimary),mo.extend("--ft-button-secondary-icon-color","",xo.contentActionPrimary),mo.extend("--ft-button-secondary-state-layer-color","",xo.contentActionPrimary),mo.extend("--ft-button-secondary-state-layer-opacity-hover","",Oo.opacity8),mo.extend("--ft-button-secondary-state-layer-opacity-focus","",Oo.opacity8),mo.extend("--ft-button-secondary-state-layer-opacity-active","",Oo.opacity16),mo.extend("--ft-button-secondary-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-button-secondary-border-color","",xo.borderActionPrimary),mo.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),mo.extend("--ft-button-neutral-icon-color","",xo.contentGlobalSecondary),mo.extend("--ft-button-neutral-color","",xo.contentGlobalSecondary),mo.extend("--ft-button-neutral-state-layer-color","",xo.contentGlobalSecondary),mo.extend("--ft-button-neutral-state-layer-opacity-hover","",Oo.opacity8),mo.extend("--ft-button-neutral-state-layer-opacity-focus","",Oo.opacity8),mo.extend("--ft-button-neutral-state-layer-opacity-active","",Oo.opacity16),mo.extend("--ft-button-neutral-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-tabs-top-left-border-radius","",Oo.borderRadiusS),mo.extend("--ft-tabs-top-right-border-radius","",Oo.borderRadiusS),mo.extend("--ft-tabs-label-horizontal-padding","",Oo.spacing4),mo.extend("--ft-tabs-label-vertical-padding","",Oo.spacing3),mo.extend("--ft-tabs-label-gap","",Oo.spacing1),mo.extend("--ft-switch-group-horizontal-padding","",Oo.spacing1),mo.extend("--ft-switch-group-vertical-padding","",Oo.spacing1),mo.extend("--ft-switch-group-gap","",Oo.spacing1),mo.extend("--ft-switch-group-background-color","",xo.backgroundGlobalSurface),mo.extend("--ft-switch-group-border-color","",xo.borderGlobalSubtle),mo.create("--ft-switch-group-border-radius","","SIZE","6px"),mo.extend("--ft-switch-label-horizontal-padding","",Oo.spacing2),mo.extend("--ft-switch-label-vertical-padding","",Oo.spacing1),mo.extend("--ft-switch-icon-horizontal-padding","",Oo.spacing1),mo.extend("--ft-switch-icon-vertical-padding","",Oo.spacing1),mo.create("--ft-switch-focus-outline-width","","SIZE","2px"),mo.extend("--ft-switch-focus-focus-ring-color","",xo.borderActionFocusRing),mo.extend("--ft-switch-option-border-radius","",Oo.borderRadiusS),mo.extend("--ft-switch-off-state-layer-opacity-hover","",Oo.opacity8),mo.extend("--ft-switch-off-state-layer-opacity-focus","",Oo.opacity8),mo.extend("--ft-switch-off-state-layer-opacity-active","",Oo.opacity16),mo.extend("--ft-switch-off-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-switch-off-color","",xo.contentGlobalSubtle),mo.extend("--ft-switch-off-state-layer-color","",xo.contentGlobalSubtle),mo.extend("--ft-chart-1-light","for area color charts",Oo.colorBrand40),mo.extend("--ft-chart-1-base","for line charts",Oo.colorBrand0),mo.extend("--ft-chart-2-light","for area color charts",Oo.colorYellow60),mo.extend("--ft-chart-2-base","for line charts",Oo.colorYellow100),mo.extend("--ft-chart-3-light","",Oo.colorUltramarine40),mo.extend("--ft-chart-3-base","",Oo.colorUltramarine70),mo.extend("--ft-chart-4-light","",Oo.colorCyan50),mo.extend("--ft-chart-4-base","",Oo.colorCyan100),mo.extend("--ft-chart-5-light","",Oo.colorRed40),mo.extend("--ft-chart-5-base","",Oo.colorRed60),mo.extend("--ft-chart-6-light","",Oo.colorGreen40),mo.extend("--ft-chart-6-base","",Oo.colorGreen70),mo.extend("--ft-chart-7-light","",Oo.colorOrange70),mo.extend("--ft-chart-7-base","",Oo.colorOrange100),mo.extend("--ft-chart-8-light","",Oo.colorAvocado70),mo.extend("--ft-chart-8-base","",Oo.colorAvocado200),mo.extend("--ft-chart-9-light","",Oo.colorBrown50),mo.extend("--ft-chart-9-base","",Oo.colorBrown200),mo.extend("--ft-chart-10-light","",Oo.colorGray50),mo.extend("--ft-chart-10-base","",Oo.colorGray80),mo.extend("--ft-chart-monochrome-10","",Oo.colorBrand10),mo.extend("--ft-chart-monochrome-20","",Oo.colorBrand20),mo.extend("--ft-chart-monochrome-30","",Oo.colorBrand40),mo.extend("--ft-chart-monochrome-40","",Oo.colorBrand60),mo.extend("--ft-chart-monochrome-50","",Oo.colorBrand0),mo.extend("--ft-chart-monochrome-60","",Oo.colorBrand200),mo.extend("--ft-chip-large-horizontal-padding","",Oo.spacing4),mo.extend("--ft-chip-large-vertical-padding","",Oo.spacing2),mo.extend("--ft-chip-large-gap","",Oo.spacing1),mo.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),mo.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),mo.extend("--ft-chip-large-border-radius","",Oo.borderRadiusPill),mo.create("--ft-chip-large-border-width","","SIZE","1px"),mo.extend("--ft-chip-large-icon-size","",Oo.iconSize3),mo.extend("--ft-chip-medium-horizontal-padding","",Oo.spacing3),mo.extend("--ft-chip-medium-vertical-padding","",Oo.spacing1),mo.extend("--ft-chip-medium-gap","",Oo.spacing1),mo.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mo.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mo.extend("--ft-chip-medium-border-radius","",Oo.borderRadiusPill),mo.create("--ft-chip-medium-border-width","","SIZE","1px"),mo.extend("--ft-chip-medium-icon-size","",Oo.iconSize2),mo.extend("--ft-chip-small-horizontal-padding","",Oo.spacing2),mo.extend("--ft-chip-small-vertical-padding","",Oo.spacing05),mo.extend("--ft-chip-small-gap","",Oo.spacing1),mo.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),mo.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),mo.extend("--ft-chip-small-border-radius","",Oo.borderRadiusPill),mo.create("--ft-chip-small-border-width","","SIZE","1px"),mo.extend("--ft-chip-small-icon-size","",Oo.iconSize1),mo.extend("--ft-chip-neutral-background-color","",xo.backgroundGlobalOnSurface),mo.extend("--ft-chip-neutral-color","",xo.contentGlobalPrimary),mo.extend("--ft-chip-neutral-border-color","",xo.borderGlobalSubtle),mo.extend("--ft-chip-info-background-color","",xo.backgroundInfoSubtle),mo.extend("--ft-chip-info-color","",xo.contentInfoPrimary),mo.extend("--ft-chip-info-border-color","",xo.borderInfoPrimary),mo.extend("--ft-chip-success-background-color","",xo.backgroundSuccessSubtle),mo.extend("--ft-chip-success-color","",xo.contentSuccessPrimary),mo.extend("--ft-chip-success-border-color","",xo.borderSuccessPrimary),mo.extend("--ft-chip-warning-background-color","",xo.backgroundWarningSubtle),mo.extend("--ft-chip-warning-color","",xo.contentWarningPrimary),mo.extend("--ft-chip-warning-border-color","",xo.borderWarningPrimary),mo.extend("--ft-chip-error-background-color","",xo.backgroundErrorSubtle),mo.extend("--ft-chip-error-color","",xo.contentErrorPrimary),mo.extend("--ft-chip-error-border-color","",xo.borderErrorPrimary),mo.create("--ft-notice-border-width","","SIZE","1px"),mo.extend("--ft-notice-horizontal-padding","",Oo.spacing2),mo.extend("--ft-notice-vertical-padding","",Oo.spacing1),mo.extend("--ft-notice-border-radius","",Oo.borderRadiusS),mo.extend("--ft-notice-gap","",Oo.spacing2),mo.extend("--ft-notice-icon-size","",Oo.iconSize3),mo.extend("--ft-notice-info-background-color","",xo.backgroundInfoSubtle),mo.extend("--ft-notice-info-border-color","",xo.borderInfoPrimary),mo.extend("--ft-notice-info-color","",xo.contentInfoPrimary),mo.extend("--ft-notice-warning-background-color","",xo.backgroundWarningSubtle),mo.extend("--ft-notice-warning-border-color","",xo.borderWarningPrimary),mo.extend("--ft-notice-warning-color","",xo.contentWarningPrimary),mo.extend("--ft-checkbox-label-color","",xo.contentGlobalPrimary),mo.extend("--ft-checkbox-checked-background-color","",xo.contentActionPrimary),mo.extend("--ft-checkbox-checked-state-layer-color","",xo.contentActionPrimary),mo.extend("--ft-checkbox-checked-color","",xo.contentGlobalOnColor),mo.extend("--ft-checkbox-checked-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-checkbox-checked-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-checkbox-checked-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-checkbox-checked-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-checkbox-unchecked-border-color","",Oo.colorGray80),mo.extend("--ft-checkbox-unchecked-state-layer-color","",Oo.colorGray80),mo.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-checkbox-unchecked-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-checkbox-focus-focus-ring-color","",xo.borderActionFocusRing),mo.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),mo.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),mo.extend("--ft-checkbox-gap","",Oo.spacing3),mo.extend("--ft-toggle-off-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-toggle-off-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-toggle-off-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-toggle-off-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-toggle-off-background-color","",xo.contentGlobalSubtle),mo.extend("--ft-toggle-off-icon-color","",xo.contentGlobalSubtle),mo.extend("--ft-toggle-off-state-layer-color","",xo.contentGlobalSubtle),mo.extend("--ft-toggle-on-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-toggle-on-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-toggle-on-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-toggle-on-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-toggle-on-background-color","",xo.contentActionPrimary),mo.extend("--ft-toggle-on-icon-color","",xo.contentActionPrimary),mo.extend("--ft-toggle-on-state-layer-color","",xo.contentActionPrimary),mo.extend("--ft-toggle-label-color","",xo.contentGlobalPrimary),mo.extend("--ft-toggle-focus-focus-ring-color","",xo.borderActionFocusRing),mo.extend("--ft-toggle-gap","",Oo.spacing3),mo.extend("--ft-radio-label-color","",xo.contentGlobalPrimary),mo.extend("--ft-radio-selected-color","",xo.contentActionPrimary),mo.extend("--ft-radio-selected-state-layer-color","",xo.contentActionPrimary),mo.extend("--ft-radio-selected-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-radio-selected-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-radio-selected-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-radio-selected-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-radio-unselected-state-layer-color","",Oo.colorGray80),mo.extend("--ft-radio-unselected-state-layer-opacity-hover","",Oo.opacity16),mo.extend("--ft-radio-unselected-state-layer-opacity-focus","",Oo.opacity16),mo.extend("--ft-radio-unselected-state-layer-opacity-active","",Oo.opacity24),mo.extend("--ft-radio-unselected-component-opacity-disabled","",Oo.opacity40),mo.extend("--ft-radio-focus-focus-ring-color","",xo.borderActionFocusRing),mo.create("--ft-radio-focus-outline-offset","","SIZE","3px"),mo.create("--ft-radio-focus-outline-width","","SIZE","2px"),mo.extend("--ft-radio-gap","",Oo.spacing3),mo.extend("--ft-notification-icon-size","",Oo.iconSize4),mo.extend("--ft-notification-horizontal-padding","",Oo.spacing4),mo.extend("--ft-notification-vertical-padding","",Oo.spacing4),mo.extend("--ft-notification-info-background-color","",xo.backgroundInfoSubtle),mo.extend("--ft-notification-info-color","",xo.contentInfoPrimary),mo.extend("--ft-notification-info-border-color","",xo.borderInfoPrimary),mo.extend("--ft-notification-success-background-color","",xo.backgroundSuccessSubtle),mo.extend("--ft-notification-success-color","",xo.contentSuccessPrimary),mo.extend("--ft-notification-success-border-color","",xo.borderSuccessPrimary),mo.extend("--ft-notification-warning-background-color","",xo.backgroundWarningSubtle),mo.extend("--ft-notification-warning-color","",xo.contentWarningPrimary),mo.extend("--ft-notification-warning-border-color","",xo.borderWarningPrimary),mo.extend("--ft-notification-error-background-color","",xo.backgroundErrorSubtle),mo.extend("--ft-notification-error-color","",xo.contentErrorPrimary),mo.extend("--ft-notification-error-border-color","",xo.borderErrorPrimary),mo.extend("--ft-notification-border-radius","",Oo.borderRadiusPill),mo.create("--ft-notification-border-width","","SIZE","1px"),mo.extend("--ft-notification-gap-leading","",Oo.spacing2),mo.extend("--ft-notification-gap-trailing","",Oo.spacing8);const No={colorPrimary:mo.create("--ft-color-primary","","COLOR","#2196F3"),colorPrimaryVariant:mo.create("--ft-color-primary-variant","","COLOR","#1976D2"),colorSecondary:mo.create("--ft-color-secondary","","COLOR","#FFCC80"),colorSecondaryVariant:mo.create("--ft-color-secondary-variant","","COLOR","#F57C00"),colorSurface:mo.create("--ft-color-surface","","COLOR","#FFFFFF"),colorContent:mo.create("--ft-color-content","","COLOR","rgba(0, 0, 0, 0.87)"),colorError:mo.create("--ft-color-error","","COLOR","#B00020"),colorOutline:mo.create("--ft-color-outline","","COLOR","rgba(0, 0, 0, 0.14)"),colorOpacityHigh:mo.create("--ft-color-opacity-high","","NUMBER","1"),colorOpacityMedium:mo.create("--ft-color-opacity-medium","","NUMBER","0.74"),colorOpacityDisabled:mo.create("--ft-color-opacity-disabled","","NUMBER","0.38"),colorOnPrimary:mo.create("--ft-color-on-primary","","COLOR","#FFFFFF"),colorOnPrimaryHigh:mo.create("--ft-color-on-primary-high","","COLOR","#FFFFFF"),colorOnPrimaryMedium:mo.create("--ft-color-on-primary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnPrimaryDisabled:mo.create("--ft-color-on-primary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSecondary:mo.create("--ft-color-on-secondary","","COLOR","#FFFFFF"),colorOnSecondaryHigh:mo.create("--ft-color-on-secondary-high","","COLOR","#FFFFFF"),colorOnSecondaryMedium:mo.create("--ft-color-on-secondary-medium","","COLOR","rgba(255, 255, 255, 0.74)"),colorOnSecondaryDisabled:mo.create("--ft-color-on-secondary-disabled","","COLOR","rgba(255, 255, 255, 0.38)"),colorOnSurface:mo.create("--ft-color-on-surface","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceHigh:mo.create("--ft-color-on-surface-high","","COLOR","rgba(0, 0, 0, 0.87)"),colorOnSurfaceMedium:mo.create("--ft-color-on-surface-medium","","COLOR","rgba(0, 0, 0, 0.60)"),colorOnSurfaceDisabled:mo.create("--ft-color-on-surface-disabled","","COLOR","rgba(0, 0, 0, 0.38)"),opacityContentOnSurfaceDisabled:mo.create("--ft-opacity-content-on-surface-disabled","","NUMBER","0"),opacityContentOnSurfaceEnable:mo.create("--ft-opacity-content-on-surface-enable","","NUMBER","0"),opacityContentOnSurfaceHover:mo.create("--ft-opacity-content-on-surface-hover","","NUMBER","0.04"),opacityContentOnSurfaceFocused:mo.create("--ft-opacity-content-on-surface-focused","","NUMBER","0.12"),opacityContentOnSurfacePressed:mo.create("--ft-opacity-content-on-surface-pressed","","NUMBER","0.10"),opacityContentOnSurfaceSelected:mo.create("--ft-opacity-content-on-surface-selected","","NUMBER","0.08"),opacityContentOnSurfaceDragged:mo.create("--ft-opacity-content-on-surface-dragged","","NUMBER","0.08"),opacityPrimaryOnSurfaceDisabled:mo.create("--ft-opacity-primary-on-surface-disabled","","NUMBER","0"),opacityPrimaryOnSurfaceEnable:mo.create("--ft-opacity-primary-on-surface-enable","","NUMBER","0"),opacityPrimaryOnSurfaceHover:mo.create("--ft-opacity-primary-on-surface-hover","","NUMBER","0.04"),opacityPrimaryOnSurfaceFocused:mo.create("--ft-opacity-primary-on-surface-focused","","NUMBER","0.12"),opacityPrimaryOnSurfacePressed:mo.create("--ft-opacity-primary-on-surface-pressed","","NUMBER","0.10"),opacityPrimaryOnSurfaceSelected:mo.create("--ft-opacity-primary-on-surface-selected","","NUMBER","0.08"),opacityPrimaryOnSurfaceDragged:mo.create("--ft-opacity-primary-on-surface-dragged","","NUMBER","0.08"),opacitySurfaceOnPrimaryDisabled:mo.create("--ft-opacity-surface-on-primary-disabled","","NUMBER","0"),opacitySurfaceOnPrimaryEnable:mo.create("--ft-opacity-surface-on-primary-enable","","NUMBER","0"),opacitySurfaceOnPrimaryHover:mo.create("--ft-opacity-surface-on-primary-hover","","NUMBER","0.04"),opacitySurfaceOnPrimaryFocused:mo.create("--ft-opacity-surface-on-primary-focused","","NUMBER","0.12"),opacitySurfaceOnPrimaryPressed:mo.create("--ft-opacity-surface-on-primary-pressed","","NUMBER","0.10"),opacitySurfaceOnPrimarySelected:mo.create("--ft-opacity-surface-on-primary-selected","","NUMBER","0.08"),opacitySurfaceOnPrimaryDragged:mo.create("--ft-opacity-surface-on-primary-dragged","","NUMBER","0.08"),elevation00:mo.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:mo.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:mo.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:mo.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:mo.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:mo.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:mo.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:mo.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:mo.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:mo.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:mo.create("--ft-border-radius-S","","SIZE","4px"),borderRadiusM:mo.create("--ft-border-radius-M","","SIZE","8px"),borderRadiusL:mo.create("--ft-border-radius-L","","SIZE","12px"),borderRadiusXL:mo.create("--ft-border-radius-XL","","SIZE","16px"),titleFont:mo.create("--ft-title-font","","UNKNOWN","Ubuntu, system-ui, sans-serif"),contentFont:mo.create("--ft-content-font","","UNKNOWN","'Open Sans', system-ui, sans-serif"),transitionDuration:mo.create("--ft-transition-duration","","UNKNOWN","250ms"),transitionTimingFunction:mo.create("--ft-transition-timing-function","","UNKNOWN","ease-in-out")},vo=window,So=vo.ShadowRoot&&(void 0===vo.ShadyCSS||vo.ShadyCSS.nativeShadow)&&"adoptedStyleSheets"in Document.prototype&&"replace"in CSSStyleSheet.prototype;
76
81
  /**
77
82
  * @license
78
83
  * Copyright 2019 Google LLC
79
84
  * SPDX-License-Identifier: BSD-3-Clause
80
- */class So extends yo{createRenderRoot(){const t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach((([o,e])=>t.registry.define(o,e))));const o={...t.shadowRootOptions,customElements:t.registry},e=this.renderOptions.creationScope=this.attachShadow(o);return((t,o)=>{vo?t.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):o.forEach((o=>{const e=document.createElement("style"),r=No.litNonce;void 0!==r&&e.setAttribute("nonce",r),e.textContent=o.cssText,t.appendChild(e)}))})(e,t.elementStyles),e}}var wo,Co=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};const Ro=Symbol("constructorPrototype"),Uo=Symbol("constructorName"),Eo=Symbol("exportpartsDebouncer");class Lo extends So{constructor(){super(),this[wo]=new U(5),this[Uo]=this.constructor.name,this[Ro]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Uo]&&Object.setPrototypeOf(this,this[Ro])}updated(t){super.updated(t),setTimeout((()=>{this.contentAvailableCallback(t),this.scheduleExportpartsUpdate()}),0)}contentAvailableCallback(t){var o,e;if((null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll(".ft-lit-element--custom-stylesheet"))&&void 0!==e?e:[]).forEach((t=>t.remove())),this.customStylesheet){const t=document.createElement("style");t.classList.add("ft-lit-element--custom-stylesheet"),t.innerHTML=this.customStylesheet,this.shadowRoot.append(t)}}scheduleExportpartsUpdate(){this[Eo].run((()=>{var t;(null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&this.exportpartsPrefixes.length>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}))}setExportpartsAttribute(t){var o,e,r,i,a,n;const s=t=>null!=t&&t.trim().length>0,c=t.filter(s).map((t=>t.trim()));if(0===c.length)return void this.removeAttribute("exportparts");const l=new Set;for(let t of null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll("[part],[exportparts]"))&&void 0!==e?e:[]){const o=null!==(i=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==i?i:[],e=null!==(n=null===(a=t.getAttribute("exportparts"))||void 0===a?void 0:a.split(",").map((t=>t.split(":")[1])))&&void 0!==n?n:[];new Array(...o,...e).filter(s).map((t=>t.trim())).forEach((t=>l.add(t)))}if(0===l.size)return void this.removeAttribute("exportparts");const f=[...l.values()].flatMap((t=>c.map((o=>`${t}:${o}--${t}`))));this.setAttribute("exportparts",[...this.part,...f].join(", "))}}wo=Eo,Co([w()],Lo.prototype,"exportpartsPrefix",void 0),Co([function(t,o){const e=()=>JSON.parse(JSON.stringify(t));return w({type:Object,converter:{fromAttribute:t=>{if(null==t)return e();try{return JSON.parse(t)}catch{return e()}},toAttribute:t=>JSON.stringify(t)},hasChanged:(t,o)=>!E(t,o),...null!=o?o:{}})}([])],Lo.prototype,"exportpartsPrefixes",void 0),Co([w()],Lo.prototype,"customStylesheet",void 0);const Io=bo.create("--ft-utils-highlight-html-background-color","","COLOR","#FFF26E");ut`
85
+ */class wo extends uo{createRenderRoot(){const t=this.constructor;t.elementDefinitions&&!t.registry&&(t.registry=new CustomElementRegistry,Object.entries(t.elementDefinitions).forEach((([o,e])=>t.registry.define(o,e))));const o={...t.shadowRootOptions,customElements:t.registry},e=this.renderOptions.creationScope=this.attachShadow(o);return((t,o)=>{So?t.adoptedStyleSheets=o.map((t=>t instanceof CSSStyleSheet?t:t.styleSheet)):o.forEach((o=>{const e=document.createElement("style"),r=vo.litNonce;void 0!==r&&e.setAttribute("nonce",r),e.textContent=o.cssText,t.appendChild(e)}))})(e,t.elementStyles),e}}var Co,Ro=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};const Uo=Symbol("constructorPrototype"),Eo=Symbol("constructorName"),Lo=Symbol("exportpartsDebouncer");class Io extends wo{constructor(){super(),this[Co]=new E(5),this[Eo]=this.constructor.name,this[Uo]=this.constructor.prototype}adoptedCallback(){this.constructor.name!==this[Eo]&&Object.setPrototypeOf(this,this[Uo])}updated(t){super.updated(t),setTimeout((()=>{this.contentAvailableCallback(t),this.scheduleExportpartsUpdate()}),0)}contentAvailableCallback(t){var o,e;if((null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll(".ft-lit-element--custom-stylesheet"))&&void 0!==e?e:[]).forEach((t=>t.remove())),this.customStylesheet){const t=document.createElement("style");t.classList.add("ft-lit-element--custom-stylesheet"),t.innerHTML=this.customStylesheet,this.shadowRoot.append(t)}}scheduleExportpartsUpdate(){this[Lo].run((()=>{var t;(null===(t=this.exportpartsPrefix)||void 0===t?void 0:t.trim())?this.setExportpartsAttribute([this.exportpartsPrefix]):null!=this.exportpartsPrefixes&&this.exportpartsPrefixes.length>0&&this.setExportpartsAttribute(this.exportpartsPrefixes)}))}setExportpartsAttribute(t){var o,e,r,i,a,n;const s=t=>null!=t&&t.trim().length>0,c=t.filter(s).map((t=>t.trim()));if(0===c.length)return void this.removeAttribute("exportparts");const l=new Set;for(let t of null!==(e=null===(o=this.shadowRoot)||void 0===o?void 0:o.querySelectorAll("[part],[exportparts]"))&&void 0!==e?e:[]){const o=null!==(i=null===(r=t.getAttribute("part"))||void 0===r?void 0:r.split(" "))&&void 0!==i?i:[],e=null!==(n=null===(a=t.getAttribute("exportparts"))||void 0===a?void 0:a.split(",").map((t=>t.split(":")[1])))&&void 0!==n?n:[];new Array(...o,...e).filter(s).map((t=>t.trim())).forEach((t=>l.add(t)))}if(0===l.size)return void this.removeAttribute("exportparts");const f=[...l.values()].flatMap((t=>c.map((o=>`${t}:${o}--${t}`))));this.setAttribute("exportparts",[...this.part,...f].join(", "))}}Co=Lo,Ro([w()],Io.prototype,"exportpartsPrefix",void 0),Ro([function(t,o){const e=()=>JSON.parse(JSON.stringify(t));return w({type:Object,converter:{fromAttribute:t=>{if(null==t)return e();try{return JSON.parse(t)}catch{return e()}},toAttribute:t=>JSON.stringify(t)},hasChanged:(t,o)=>!L(t,o),...null!=o?o:{}})}([])],Io.prototype,"exportpartsPrefixes",void 0),Ro([w()],Io.prototype,"customStylesheet",void 0);const Wo=mo.create("--ft-utils-highlight-html-background-color","","COLOR","#FFF26E");gt`
81
86
  .highlight-html-match {
82
- background: ${Io};
87
+ background: ${Wo};
83
88
  }
84
- `;const Wo=ut`
89
+ `;const ko=gt`
85
90
  .ft-no-text-select {
86
91
  -webkit-touch-callout: none;
87
92
  -webkit-user-select: none;
@@ -90,7 +95,7 @@ class yo extends Wt{constructor(){super(...arguments),this.renderOptions={host:t
90
95
  -ms-user-select: none;
91
96
  user-select: none;
92
97
  }
93
- `;var ko,Ko;ut`
98
+ `;var Ko,Zo;gt`
94
99
  .ft-word-wrap {
95
100
  white-space: normal;
96
101
  word-wrap: break-word;
@@ -102,7 +107,7 @@ class yo extends Wt{constructor(){super(...arguments),this.renderOptions={host:t
102
107
  -webkit-hyphens: auto;
103
108
  hyphens: auto
104
109
  }
105
- `,ut`
110
+ `,gt`
106
111
  .ft-safari-ellipsis-fix {
107
112
  margin-right: 0;
108
113
 
@@ -113,18 +118,18 @@ class yo extends Wt{constructor(){super(...arguments),this.renderOptions={host:t
113
118
  display: inline-block;
114
119
  width: 0;
115
120
  }
116
- `,window.ftReduxStores||(window.ftReduxStores={}),navigator.vendor&&navigator.vendor.match(/apple/i)||(null===(Ko=null===(ko=window.safari)||void 0===ko?void 0:ko.pushNotification)||void 0===Ko||Ko.toString());
121
+ `,window.ftReduxStores||(window.ftReduxStores={}),navigator.vendor&&navigator.vendor.match(/apple/i)||(null===(Zo=null===(Ko=window.safari)||void 0===Ko?void 0:Ko.pushNotification)||void 0===Zo||Zo.toString());
117
122
  /**
118
123
  * @license
119
124
  * Copyright 2017 Google LLC
120
125
  * SPDX-License-Identifier: BSD-3-Clause
121
126
  */
122
- const Zo=2;class $o{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e){this._$Ct=t,this._$AM=o,this._$Ci=e}_$AS(t,o){return this.update(t,o)}update(t,o){return this.render(...o)}}
127
+ const $o=2;class Ao{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e){this._$Ct=t,this._$AM=o,this._$Ci=e}_$AS(t,o){return this.update(t,o)}update(t,o){return this.render(...o)}}
123
128
  /**
124
129
  * @license
125
130
  * Copyright 2017 Google LLC
126
131
  * SPDX-License-Identifier: BSD-3-Clause
127
- */class Ao extends $o{constructor(t){if(super(t),this.et=V,t.type!==Zo)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===V||null==t)return this.vt=void 0,this.et=t;if(t===J)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.vt;this.et=t;const o=[t];return o.raw=o,this.vt={_$litType$:this.constructor.resultType,strings:o,values:[]}}}Ao.directiveName="unsafeHTML",Ao.resultType=1;const Fo=(t=>(...o)=>({_$litDirective$:t,values:o}))(Ao);var Mo,zo;!function(t){t.THUMBS_DOWN="&#xe94d;",t.THUMBS_DOWN_PLAIN="&#xe94e;",t.THUMBS_UP="&#xe94f;",t.THUMBS_UP_PLAIN="&#xe950;",t.STAR="&#xe94c;",t.STAR_PLAIN="&#xe900;",t.DESKTOP="&#xe95e;",t.LIFE_RING="&#xe975;",t.GLOBE="&#xe976;",t.PIGGY_BANK="&#xe977;",t.TABLET_LANDSCAPE="&#xe95f;",t.TABLET_PORTRAIT="&#xe960;",t.MOBILE_LANDSCAPE="&#xe961;",t.MOBILE_PORTRAIT="&#xe962;",t.ARROW_RIGHT_TO_LINE="&#xe95d;",t.THIN_ARROW_UP="&#xe95c;",t.CONTEXTUAL="&#xe95b;",t.CHART_SIMPLE="&#xe968;",t.BARS_PROGRESS="&#xe969;",t.LINE_CHART="&#xe96c;",t.STACKED_CHART="&#xe96d;",t.BOOK_OPEN_GEAR="&#xe96a;",t.BOOK_OPEN_GEAR_SLASH="&#xe96b;",t.DIAGRAM_SUNBURST="&#xe963;",t.DIAGRAM_SANKEY="&#xe964;",t.UNSTRUCTURED_DOC="&#xe95a;",t.RESET="&#xe958;",t.THIN_ARROW_LEFT="&#xe956;",t.THIN_ARROW_RIGHT="&#xe957;",t.MY_COLLECTIONS="&#xe955;",t.OFFLINE_SETTINGS="&#xe954;",t.MY_LIBRARY="&#xe959;",t.RATE_PLAIN="&#xe952;",t.RATE="&#xe953;",t.FEEDBACK_PLAIN="&#xe951;",t.PAUSE="&#xe949;",t.PLAY="&#xe94a;",t.RELATIVES_PLAIN="&#xe947;",t.RELATIVES="&#xe948;",t.SHORTCUT_MENU="&#xe946;",t.PRINT="&#xe944;",t.DEFAULT_ROLES="&#xe945;",t.ACCOUNT_SETTINGS="&#xe943;",t.ONLINE="&#xe941;",t.OFFLINE="&#xe816;",t.UPLOAD="&#xe940;",t.BOOK_PLAIN="&#xe93f;",t.SYNC="&#xe93d;",t.SHARED_PBK="&#xe931;",t.COLLECTIONS="&#xe92a;",t.SEARCH_IN_PUBLICATION="&#xe92f;",t.BOOKS="&#xe806;",t.LOCKER="&#xe93b;",t.ARROW_DOWN="&#xe92b;",t.ARROW_LEFT="&#xe92c;",t.ARROW_RIGHT="&#xe92d;",t.ARROW_UP="&#xe92e;",t.SAVE="&#xe93a;",t.MAILS_AND_NOTIFICATIONS="&#xe939;",t.DOT="&#xe936;",t.MINUS="&#xe937;",t.PLUS="&#xe938;",t.FILTERS="&#xe935;",t.STRIPE_ARROW_RIGHT="&#xe934;",t.STRIPE_ARROW_LEFT="&#xe933;",t.ATTACHMENTS="&#xe932;",t.ADD_BOOKMARK="&#xe804;",t.BOOKMARK="&#xe805;",t.EXPORT="&#xe80f;",t.MENU="&#xe807;",t.TAG="&#xe93e;",t.TAG_PLAIN="&#xe942;",t.COPY_TO_CLIPBOARD="&#xe930;",t.COLUMNS="&#xe928;",t.ARTICLE="&#xe927;",t.CLOSE_PLAIN="&#xe925;",t.CHECK_PLAIN="&#xe926;",t.LOGOUT="&#xe923;",t.SIGN_IN="&#xe922;",t.THIN_ARROW="&#xe921;",t.TRIANGLE_BOTTOM="&#xe91d;",t.TRIANGLE_LEFT="&#xe91e;",t.TRIANGLE_RIGHT="&#xe91f;",t.TRIANGLE_TOP="&#xe920;",t.FACET_HAS_DESCENDANT="&#xe91c;",t.MINUS_PLAIN="&#xe91a;",t.PLUS_PLAIN="&#xe91b;",t.INFO="&#xe919;",t.ICON_EXPAND="&#xe917;",t.ICON_COLLAPSE="&#xe918;",t.ADD_TO_PBK="&#xe800;",t.ALERT="&#xe801;",t.ADD_ALERT="&#xe802;",t.BACK_TO_SEARCH="&#xe803;",t.DOWNLOAD="&#xe808;",t.EDIT="&#xe809;",t.FEEDBACK="&#xe80a;",t.MODIFY_PBK="&#xe80c;",t.SCHEDULED="&#xe80d;",t.SEARCH="&#xe80e;",t.SHARE="&#xe80f1;",t.TOC="&#xe810;",t.WRITE_UGC="&#xe811;",t.TRASH="&#xe812;",t.EXTLINK="&#xe814;",t.EXTLINK_LIGHT="&#xe978;",t.CALENDAR="&#xe815;",t.BOOK="&#xe817;",t.DOWNLOAD_PLAIN="&#xe818;",t.CHECK="&#xe819;",t.TOPICS="&#xe901;",t.EYE="&#xf06e;",t.EYE_SLASH="&#xe970;",t.DISC="&#xe902;",t.CIRCLE="&#xe903;",t.SHARED="&#xe904;",t.SORT_UNSORTED="&#xe905;",t.SORT_UP="&#xe906;",t.SORT_DOWN="&#xe907;",t.WORKING="&#xe908;",t.CLOSE="&#xe909;",t.ZOOM_OUT="&#xe90a;",t.ZOOM_IN="&#xe90b;",t.ZOOM_REALSIZE="&#xe90c;",t.ZOOM_FULLSCREEN="&#xe90d;",t.ADMIN_RESTRICTED="&#xe90e;",t.ADMIN_THEME="&#xe911;",t.WARNING="&#xe913;",t.CONTEXT="&#xe914;",t.SEARCH_HOME="&#xe915;",t.STEPS="&#xe916;",t.HOME="&#xe80b;",t.TRANSLATE="&#xe924;",t.USER="&#xe813;",t.ADMIN="&#xe90f;",t.ANALYTICS="&#xe929;",t.ADMIN_KHUB="&#xe910;",t.ADMIN_USERS="&#xe912;",t.ADMIN_INTEGRATION="&#xe93c;",t.ADMIN_PORTAL="&#xe94b;",t.COMMENT_QUESTION="&#xe965;",t.COMMENT_QUESTION_PLAIN="&#xe966;",t.MESSAGE_BOT="&#xe967;",t.PIP="&#xe973;",t.PIP_WIDE="&#xe974;",t.EXPAND_WIDE="&#xe972;",t.X_MARK="&#xe971;"}(Mo||(Mo={})),function(t){t.UNKNOWN="&#xe90a;",t.ABW="&#xe900;",t.AUDIO="&#xe901;",t.AVI="&#xe902;",t.CHM="&#xe904;",t.CODE="&#xe905;",t.CSV="&#xe903;",t.DITA="&#xe906;",t.EPUB="&#xe907;",t.EXCEL="&#xe908;",t.FLAC="&#xe909;",t.GIF="&#xe90b;",t.GZIP="&#xe90c;",t.HTML="&#xe90d;",t.IMAGE="&#xe90e;",t.JPEG="&#xe90f;",t.JSON="&#xe910;",t.M4A="&#xe911;",t.MOV="&#xe912;",t.MP3="&#xe913;",t.MP4="&#xe914;",t.OGG="&#xe915;",t.PDF="&#xe916;",t.PNG="&#xe917;",t.POWERPOINT="&#xe918;",t.RAR="&#xe91a;",t.STP="&#xe91b;",t.TEXT="&#xe91c;",t.VIDEO="&#xe91e;",t.WAV="&#xe91f;",t.WMA="&#xe920;",t.WORD="&#xe921;",t.XML="&#xe922;",t.YAML="&#xe919;",t.ZIP="&#xe923;"}(zo||(zo={})),new Map([...["abw"].map((t=>[t,zo.ABW])),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map((t=>[t,zo.AUDIO])),...["avi"].map((t=>[t,zo.AVI])),...["chm","xhs"].map((t=>[t,zo.CHM])),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map((t=>[t,zo.CODE])),...["csv"].map((t=>[t,zo.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,zo.DITA])),...["epub"].map((t=>[t,zo.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,zo.EXCEL])),...["flac"].map((t=>[t,zo.FLAC])),...["gif"].map((t=>[t,zo.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,zo.GZIP])),...["html","htm","xhtml"].map((t=>[t,zo.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,zo.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,zo.JPEG])),...["json"].map((t=>[t,zo.JSON])),...["m4a","m4p"].map((t=>[t,zo.M4A])),...["mov","qt"].map((t=>[t,zo.MOV])),...["mp3"].map((t=>[t,zo.MP3])),...["mp4","m4v"].map((t=>[t,zo.MP4])),...["ogg","oga"].map((t=>[t,zo.OGG])),...["pdf","ps"].map((t=>[t,zo.PDF])),...["png"].map((t=>[t,zo.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,zo.POWERPOINT])),...["rar"].map((t=>[t,zo.RAR])),...["stp"].map((t=>[t,zo.STP])),...["txt","rtf","md","mdown"].map((t=>[t,zo.TEXT])),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map((t=>[t,zo.VIDEO])),...["wav"].map((t=>[t,zo.WAV])),...["wma"].map((t=>[t,zo.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,zo.WORD])),...["xml","xsl","rdf"].map((t=>[t,zo.XML])),...["yaml","yml","x-yaml"].map((t=>[t,zo.YAML])),...["zip"].map((t=>[t,zo.ZIP]))]);const Bo=bo.create("--ft-icon-font-size","","SIZE","24px"),Do=bo.extend("--ft-icon-fluid-topics-font-family","",bo.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),Po=bo.extend("--ft-icon-file-format-font-family","",bo.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),_o=bo.extend("--ft-icon-material-font-family","",bo.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),jo=bo.create("--ft-icon-vertical-align","","UNKNOWN","unset"),Ho=ut`
132
+ */class Fo extends Ao{constructor(t){if(super(t),this.et=q,t.type!==$o)throw Error(this.constructor.directiveName+"() can only be used in child bindings")}render(t){if(t===q||null==t)return this.vt=void 0,this.et=t;if(t===V)return t;if("string"!=typeof t)throw Error(this.constructor.directiveName+"() called with a non-string value");if(t===this.et)return this.vt;this.et=t;const o=[t];return o.raw=o,this.vt={_$litType$:this.constructor.resultType,strings:o,values:[]}}}Fo.directiveName="unsafeHTML",Fo.resultType=1;const Mo=(t=>(...o)=>({_$litDirective$:t,values:o}))(Fo);var zo,Do;!function(t){t.THUMBS_DOWN="&#xe94d;",t.THUMBS_DOWN_PLAIN="&#xe94e;",t.THUMBS_UP="&#xe94f;",t.THUMBS_UP_PLAIN="&#xe950;",t.STAR="&#xe94c;",t.STAR_PLAIN="&#xe900;",t.DESKTOP="&#xe95e;",t.LIFE_RING="&#xe975;",t.GLOBE="&#xe976;",t.PIGGY_BANK="&#xe977;",t.TABLET_LANDSCAPE="&#xe95f;",t.TABLET_PORTRAIT="&#xe960;",t.MOBILE_LANDSCAPE="&#xe961;",t.MOBILE_PORTRAIT="&#xe962;",t.ARROW_RIGHT_TO_LINE="&#xe95d;",t.THIN_ARROW_UP="&#xe95c;",t.CONTEXTUAL="&#xe95b;",t.CHART_SIMPLE="&#xe968;",t.BARS_PROGRESS="&#xe969;",t.LINE_CHART="&#xe96c;",t.STACKED_CHART="&#xe96d;",t.BOOK_OPEN_GEAR="&#xe96a;",t.BOOK_OPEN_GEAR_SLASH="&#xe96b;",t.DIAGRAM_SUNBURST="&#xe963;",t.DIAGRAM_SANKEY="&#xe964;",t.UNSTRUCTURED_DOC="&#xe95a;",t.RESET="&#xe958;",t.THIN_ARROW_LEFT="&#xe956;",t.THIN_ARROW_RIGHT="&#xe957;",t.MY_COLLECTIONS="&#xe955;",t.OFFLINE_SETTINGS="&#xe954;",t.MY_LIBRARY="&#xe959;",t.RATE_PLAIN="&#xe952;",t.RATE="&#xe953;",t.FEEDBACK_PLAIN="&#xe951;",t.PAUSE="&#xe949;",t.PLAY="&#xe94a;",t.RELATIVES_PLAIN="&#xe947;",t.RELATIVES="&#xe948;",t.SHORTCUT_MENU="&#xe946;",t.PRINT="&#xe944;",t.DEFAULT_ROLES="&#xe945;",t.ACCOUNT_SETTINGS="&#xe943;",t.ONLINE="&#xe941;",t.OFFLINE="&#xe816;",t.UPLOAD="&#xe940;",t.BOOK_PLAIN="&#xe93f;",t.SYNC="&#xe93d;",t.SHARED_PBK="&#xe931;",t.COLLECTIONS="&#xe92a;",t.SEARCH_IN_PUBLICATION="&#xe92f;",t.BOOKS="&#xe806;",t.LOCKER="&#xe93b;",t.ARROW_DOWN="&#xe92b;",t.ARROW_LEFT="&#xe92c;",t.ARROW_RIGHT="&#xe92d;",t.ARROW_UP="&#xe92e;",t.SAVE="&#xe93a;",t.MAILS_AND_NOTIFICATIONS="&#xe939;",t.DOT="&#xe936;",t.MINUS="&#xe937;",t.PLUS="&#xe938;",t.FILTERS="&#xe935;",t.STRIPE_ARROW_RIGHT="&#xe934;",t.STRIPE_ARROW_LEFT="&#xe933;",t.ATTACHMENTS="&#xe932;",t.ADD_BOOKMARK="&#xe804;",t.BOOKMARK="&#xe805;",t.EXPORT="&#xe80f;",t.MENU="&#xe807;",t.TAG="&#xe93e;",t.TAG_PLAIN="&#xe942;",t.COPY_TO_CLIPBOARD="&#xe930;",t.COLUMNS="&#xe928;",t.ARTICLE="&#xe927;",t.CLOSE_PLAIN="&#xe925;",t.CHECK_PLAIN="&#xe926;",t.LOGOUT="&#xe923;",t.SIGN_IN="&#xe922;",t.THIN_ARROW="&#xe921;",t.TRIANGLE_BOTTOM="&#xe91d;",t.TRIANGLE_LEFT="&#xe91e;",t.TRIANGLE_RIGHT="&#xe91f;",t.TRIANGLE_TOP="&#xe920;",t.FACET_HAS_DESCENDANT="&#xe91c;",t.MINUS_PLAIN="&#xe91a;",t.PLUS_PLAIN="&#xe91b;",t.INFO="&#xe919;",t.ICON_EXPAND="&#xe917;",t.ICON_COLLAPSE="&#xe918;",t.ADD_TO_PBK="&#xe800;",t.ALERT="&#xe801;",t.ADD_ALERT="&#xe802;",t.BACK_TO_SEARCH="&#xe803;",t.DOWNLOAD="&#xe808;",t.EDIT="&#xe809;",t.FEEDBACK="&#xe80a;",t.MODIFY_PBK="&#xe80c;",t.SCHEDULED="&#xe80d;",t.SEARCH="&#xe80e;",t.SHARE="&#xe80f1;",t.TOC="&#xe810;",t.WRITE_UGC="&#xe811;",t.TRASH="&#xe812;",t.EXTLINK="&#xe814;",t.EXTLINK_LIGHT="&#xe978;",t.CALENDAR="&#xe815;",t.BOOK="&#xe817;",t.DOWNLOAD_PLAIN="&#xe818;",t.CHECK="&#xe819;",t.TOPICS="&#xe901;",t.EYE="&#xf06e;",t.EYE_SLASH="&#xe970;",t.DISC="&#xe902;",t.CIRCLE="&#xe903;",t.SHARED="&#xe904;",t.SORT_UNSORTED="&#xe905;",t.SORT_UP="&#xe906;",t.SORT_DOWN="&#xe907;",t.WORKING="&#xe908;",t.CLOSE="&#xe909;",t.ZOOM_OUT="&#xe90a;",t.ZOOM_IN="&#xe90b;",t.ZOOM_REALSIZE="&#xe90c;",t.ZOOM_FULLSCREEN="&#xe90d;",t.ADMIN_RESTRICTED="&#xe90e;",t.ADMIN_THEME="&#xe911;",t.WARNING="&#xe913;",t.CONTEXT="&#xe914;",t.SEARCH_HOME="&#xe915;",t.STEPS="&#xe916;",t.HOME="&#xe80b;",t.TRANSLATE="&#xe924;",t.USER="&#xe813;",t.ADMIN="&#xe90f;",t.ANALYTICS="&#xe929;",t.ADMIN_KHUB="&#xe910;",t.ADMIN_USERS="&#xe912;",t.ADMIN_INTEGRATION="&#xe93c;",t.ADMIN_PORTAL="&#xe94b;",t.COMMENT_QUESTION="&#xe965;",t.COMMENT_QUESTION_PLAIN="&#xe966;",t.MESSAGE_BOT="&#xe967;",t.PIP="&#xe973;",t.PIP_WIDE="&#xe974;",t.EXPAND_WIDE="&#xe972;",t.X_MARK="&#xe971;"}(zo||(zo={})),function(t){t.UNKNOWN="&#xe90a;",t.ABW="&#xe900;",t.AUDIO="&#xe901;",t.AVI="&#xe902;",t.CHM="&#xe904;",t.CODE="&#xe905;",t.CSV="&#xe903;",t.DITA="&#xe906;",t.EPUB="&#xe907;",t.EXCEL="&#xe908;",t.FLAC="&#xe909;",t.GIF="&#xe90b;",t.GZIP="&#xe90c;",t.HTML="&#xe90d;",t.IMAGE="&#xe90e;",t.JPEG="&#xe90f;",t.JSON="&#xe910;",t.M4A="&#xe911;",t.MOV="&#xe912;",t.MP3="&#xe913;",t.MP4="&#xe914;",t.OGG="&#xe915;",t.PDF="&#xe916;",t.PNG="&#xe917;",t.POWERPOINT="&#xe918;",t.RAR="&#xe91a;",t.STP="&#xe91b;",t.TEXT="&#xe91c;",t.VIDEO="&#xe91e;",t.WAV="&#xe91f;",t.WMA="&#xe920;",t.WORD="&#xe921;",t.XML="&#xe922;",t.YAML="&#xe919;",t.ZIP="&#xe923;"}(Do||(Do={})),new Map([...["abw"].map((t=>[t,Do.ABW])),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map((t=>[t,Do.AUDIO])),...["avi"].map((t=>[t,Do.AVI])),...["chm","xhs"].map((t=>[t,Do.CHM])),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map((t=>[t,Do.CODE])),...["csv"].map((t=>[t,Do.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Do.DITA])),...["epub"].map((t=>[t,Do.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Do.EXCEL])),...["flac"].map((t=>[t,Do.FLAC])),...["gif"].map((t=>[t,Do.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Do.GZIP])),...["html","htm","xhtml"].map((t=>[t,Do.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf"].map((t=>[t,Do.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Do.JPEG])),...["json"].map((t=>[t,Do.JSON])),...["m4a","m4p"].map((t=>[t,Do.M4A])),...["mov","qt"].map((t=>[t,Do.MOV])),...["mp3"].map((t=>[t,Do.MP3])),...["mp4","m4v"].map((t=>[t,Do.MP4])),...["ogg","oga"].map((t=>[t,Do.OGG])),...["pdf","ps"].map((t=>[t,Do.PDF])),...["png"].map((t=>[t,Do.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Do.POWERPOINT])),...["rar"].map((t=>[t,Do.RAR])),...["stp"].map((t=>[t,Do.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Do.TEXT])),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map((t=>[t,Do.VIDEO])),...["wav"].map((t=>[t,Do.WAV])),...["wma"].map((t=>[t,Do.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Do.WORD])),...["xml","xsl","rdf"].map((t=>[t,Do.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Do.YAML])),...["zip"].map((t=>[t,Do.ZIP]))]);const Bo=mo.create("--ft-icon-font-size","","SIZE","24px"),Po=mo.extend("--ft-icon-fluid-topics-font-family","",mo.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),_o=mo.extend("--ft-icon-file-format-font-family","",mo.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),jo=mo.extend("--ft-icon-material-font-family","",mo.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),Ho=mo.create("--ft-icon-vertical-align","","UNKNOWN","unset"),To=gt`
128
133
  :host, i.ft-icon {
129
134
  display: inline-flex;
130
135
  align-items: center;
@@ -151,11 +156,11 @@ const Zo=2;class $o{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e)
151
156
  text-rendering: auto;
152
157
  -webkit-font-smoothing: antialiased;
153
158
  -moz-osx-font-smoothing: grayscale;
154
- vertical-align: ${jo};
159
+ vertical-align: ${Ho};
155
160
  }
156
161
 
157
162
  i.ft-icon.ft-icon--fluid-topics {
158
- font-family: ${Do}, ft-icons, fticons, sans-serif;
163
+ font-family: ${Po}, ft-icons, fticons, sans-serif;
159
164
 
160
165
  /* Ugly fix because font is broken */
161
166
  font-size: calc(0.75 * ${Bo});
@@ -166,18 +171,18 @@ const Zo=2;class $o{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e)
166
171
  }
167
172
 
168
173
  .ft-icon--file-format {
169
- font-family: ${Po}, ft-mime, sans-serif;
174
+ font-family: ${_o}, ft-mime, sans-serif;
170
175
  }
171
176
 
172
177
  .ft-icon--material {
173
- font-family: ${_o}, "Material Icons", sans-serif;
178
+ font-family: ${jo}, "Material Icons", sans-serif;
174
179
  }
175
- `;var To;!function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(To||(To={}));var Go=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Yo extends Lo{constructor(){super(...arguments),this.resolvedIcon=Qt}render(){const t=this.variant&&Object.values(To).includes(this.variant)?this.variant:To.fluid_topics,o=t!==To.material||!!this.value;return qt`
180
+ `;var Go;!function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(Go||(Go={}));var Yo=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Jo extends Io{constructor(){super(...arguments),this.resolvedIcon=to}render(){const t=this.variant&&Object.values(Go).includes(this.variant)?this.variant:Go.fluid_topics,o=t!==Go.material||!!this.value;return Xt`
176
181
  <i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
177
- ${Fo(this.resolvedIcon)}
182
+ ${Mo(this.resolvedIcon)}
178
183
  <slot ?hidden=${o}></slot>
179
184
  </i>
180
- `}get textContent(){var t,o;return null!==(o=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==o?o:""}update(t){super.update(t),["value","variant"].some((o=>t.has(o)))&&this.resolveIcon()}resolveIcon(){var t,o;let e=this.value||this.textContent;switch(this.variant){case To.file_format:this.resolvedIcon=null!==(t=zo[e.replace("-","_").toUpperCase()])&&void 0!==t?t:e;break;case To.material:this.resolvedIcon=this.value||Qt;break;default:this.resolvedIcon=null!==(o=Mo[e.replace("-","_").toUpperCase()])&&void 0!==o?o:e}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}Yo.elementDefinitions={},Yo.styles=Ho,Go([w()],Yo.prototype,"variant",void 0),Go([w()],Yo.prototype,"value",void 0),Go([C()],Yo.prototype,"resolvedIcon",void 0),Go([function(t,o){return(e,r,i)=>{const a=o=>o.renderRoot?.querySelector(t)??null;if(o){const{get:t,set:o}="object"==typeof r?e:i??(()=>{const t=Symbol();return{get(){return this[t]},set(o){this[t]=o}}})();return R(0,0,{get(){let e=t.call(this);return void 0===e&&(e=a(this),(null!==e||this.hasUpdated)&&o.call(this,e)),e}})}return R(0,0,{get(){return a(this)}})}}("slot")],Yo.prototype,"slottedContent",void 0),L("ft-icon")(Yo);const Jo={colorOutline:bo.external(xo.colorOutline,"Design system"),colorOnSurfaceMedium:bo.external(xo.colorOnSurfaceMedium,"Design system")},Vo=ut`
185
+ `}get textContent(){var t,o;return null!==(o=null===(t=this.slottedContent)||void 0===t?void 0:t.assignedNodes().map((t=>t.textContent)).join("").trim())&&void 0!==o?o:""}update(t){super.update(t),["value","variant"].some((o=>t.has(o)))&&this.resolveIcon()}resolveIcon(){var t,o;let e=this.value||this.textContent;switch(this.variant){case Go.file_format:this.resolvedIcon=null!==(t=Do[e.replace("-","_").toUpperCase()])&&void 0!==t?t:e;break;case Go.material:this.resolvedIcon=this.value||to;break;default:this.resolvedIcon=null!==(o=zo[e.replace("-","_").toUpperCase()])&&void 0!==o?o:e}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}Jo.elementDefinitions={},Jo.styles=To,Yo([w()],Jo.prototype,"variant",void 0),Yo([w()],Jo.prototype,"value",void 0),Yo([C()],Jo.prototype,"resolvedIcon",void 0),Yo([function(t,o){return(e,r,i)=>{const a=o=>o.renderRoot?.querySelector(t)??null;if(o){const{get:t,set:o}="object"==typeof r?e:i??(()=>{const t=Symbol();return{get(){return this[t]},set(o){this[t]=o}}})();return U(0,0,{get(){let e=t.call(this);return void 0===e&&(e=a(this),(null!==e||this.hasUpdated)&&o.call(this,e)),e}})}return U(0,0,{get(){return a(this)}})}}("slot")],Jo.prototype,"slottedContent",void 0),I("ft-icon")(Jo);const Vo={colorOutline:mo.external(No.colorOutline,"Design system"),colorOnSurfaceMedium:mo.external(No.colorOnSurfaceMedium,"Design system")},qo=gt`
181
186
  :host {
182
187
  display: block;
183
188
  }
@@ -188,17 +193,17 @@ const Zo=2;class $o{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e)
188
193
 
189
194
  ft-icon {
190
195
  transform: rotate(-45deg);
191
- color: ${Jo.colorOutline};
196
+ color: ${Vo.colorOutline};
192
197
  }
193
198
 
194
199
  .ft-resizer--dragging ft-icon,
195
200
  .ft-resizer:hover ft-icon {
196
- color: ${Jo.colorOnSurfaceMedium};
201
+ color: ${Vo.colorOnSurfaceMedium};
197
202
  }
198
- `;var qo=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Xo extends CustomEvent{constructor(t,o){super("resize",{detail:{width:t,height:o}})}}class Qo extends Lo{constructor(){super(...arguments),this.initialWidth=0,this.initialHeight=0,this.icon="drag_handle",this.iconVariant=To.material,this.cursor="nwse-resize",this.dragging=!1,this.fixedWidth=0,this.fixedHeight=0,this.startX=0,this.startY=0,this.doDragFromMouse=t=>this.doDrag(t.clientX,t.clientY),this.doDragFromTouch=t=>this.doDrag(t.touches[0].clientX,t.touches[0].clientY),this.stopDrag=()=>{this.dragging=!1,document.removeEventListener("mousemove",this.doDragFromMouse,!1),document.removeEventListener("mouseup",this.stopDrag,!1),document.removeEventListener("touchmove",this.doDragFromTouch,!1),document.removeEventListener("touchend",this.stopDrag,!1),document.removeEventListener("touchcancel",this.stopDrag,!1)}}render(){return qt`
203
+ `;var Xo=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,s=t.length-1;s>=0;s--)(i=t[s])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Qo extends CustomEvent{constructor(t,o){super("resize",{detail:{width:t,height:o}})}}class te extends Io{constructor(){super(...arguments),this.initialWidth=0,this.initialHeight=0,this.icon="drag_handle",this.iconVariant=Go.material,this.cursor="nwse-resize",this.dragging=!1,this.fixedWidth=0,this.fixedHeight=0,this.startX=0,this.startY=0,this.doDragFromMouse=t=>this.doDrag(t.clientX,t.clientY),this.doDragFromTouch=t=>this.doDrag(t.touches[0].clientX,t.touches[0].clientY),this.stopDrag=()=>{this.dragging=!1,document.removeEventListener("mousemove",this.doDragFromMouse,!1),document.removeEventListener("mouseup",this.stopDrag,!1),document.removeEventListener("touchmove",this.doDragFromTouch,!1),document.removeEventListener("touchend",this.stopDrag,!1),document.removeEventListener("touchcancel",this.stopDrag,!1)}}render(){return Xt`
199
204
  <style>
200
205
  .ft-resizer {
201
- cursor: ${yt(this.cursor)}
206
+ cursor: ${ut(this.cursor)}
202
207
  }
203
208
  </style>
204
209
  <div class="ft-resizer ft-no-text-select ${this.dragging?"ft-resizer--dragging":""}"
@@ -206,4 +211,4 @@ const Zo=2;class $o{constructor(t){}get _$AU(){return this._$AM._$AU}_$AT(t,o,e)
206
211
  @touchstart=${this.initDragFromTouch}>
207
212
  <ft-icon .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon>
208
213
  </div>
209
- `}initDragFromMouse(t){this.initDrag(t.clientX,t.clientY)}initDragFromTouch(t){t.preventDefault(),t.stopPropagation(),this.initDrag(t.touches[0].clientX,t.touches[0].clientY)}initDrag(t,o){this.dragging=!0,this.startX=t,this.startY=o,this.fixedWidth=this.initialWidth,this.fixedHeight=this.initialHeight,this.installDocumentEventListeners()}installDocumentEventListeners(){document.addEventListener("mousemove",this.doDragFromMouse,!1),document.addEventListener("mouseup",this.stopDrag,!1),document.addEventListener("touchmove",this.doDragFromTouch,!1),document.addEventListener("touchend",this.stopDrag,!1),document.addEventListener("touchcancel",this.stopDrag,!1)}doDrag(t,o){let e=this.fixedWidth+t-this.startX,r=this.fixedHeight+o-this.startY;this.dispatchEvent(new Xo(e,r))}}Qo.elementDefinitions={"ft-icon":Yo},Qo.styles=[Wo,Vo],qo([w({type:Number})],Qo.prototype,"initialWidth",void 0),qo([w({type:Number})],Qo.prototype,"initialHeight",void 0),qo([w()],Qo.prototype,"icon",void 0),qo([w()],Qo.prototype,"iconVariant",void 0),qo([w()],Qo.prototype,"cursor",void 0),qo([C()],Qo.prototype,"dragging",void 0),L("ft-resizer")(Qo),t.FtResizer=Qo,t.FtResizerCssVariables=Jo,t.ResizeEvent=Xo,t.styles=Vo}({});
214
+ `}initDragFromMouse(t){this.initDrag(t.clientX,t.clientY)}initDragFromTouch(t){t.preventDefault(),t.stopPropagation(),this.initDrag(t.touches[0].clientX,t.touches[0].clientY)}initDrag(t,o){this.dragging=!0,this.startX=t,this.startY=o,this.fixedWidth=this.initialWidth,this.fixedHeight=this.initialHeight,this.installDocumentEventListeners()}installDocumentEventListeners(){document.addEventListener("mousemove",this.doDragFromMouse,!1),document.addEventListener("mouseup",this.stopDrag,!1),document.addEventListener("touchmove",this.doDragFromTouch,!1),document.addEventListener("touchend",this.stopDrag,!1),document.addEventListener("touchcancel",this.stopDrag,!1)}doDrag(t,o){let e=this.fixedWidth+t-this.startX,r=this.fixedHeight+o-this.startY;this.dispatchEvent(new Qo(e,r))}}te.elementDefinitions={"ft-icon":Jo},te.styles=[ko,qo],Xo([w({type:Number})],te.prototype,"initialWidth",void 0),Xo([w({type:Number})],te.prototype,"initialHeight",void 0),Xo([w()],te.prototype,"icon",void 0),Xo([w()],te.prototype,"iconVariant",void 0),Xo([w()],te.prototype,"cursor",void 0),Xo([C()],te.prototype,"dragging",void 0),Xo([R({passive:!0})],te.prototype,"initDragFromMouse",null),Xo([R({passive:!0})],te.prototype,"initDragFromTouch",null),I("ft-resizer")(te),t.FtResizer=te,t.FtResizerCssVariables=Vo,t.ResizeEvent=Qo,t.styles=qo}({});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fluid-topics/ft-resizer",
3
- "version": "1.1.4",
3
+ "version": "1.1.6",
4
4
  "description": "small",
5
5
  "keywords": [
6
6
  "Lit"
@@ -19,9 +19,9 @@
19
19
  "url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
20
20
  },
21
21
  "dependencies": {
22
- "@fluid-topics/ft-icon": "1.1.4",
23
- "@fluid-topics/ft-wc-utils": "1.1.4",
22
+ "@fluid-topics/ft-icon": "1.1.6",
23
+ "@fluid-topics/ft-wc-utils": "1.1.6",
24
24
  "lit": "3.1.0"
25
25
  },
26
- "gitHead": "b13ddd3359734158be660854f9ffe5fc5880c430"
26
+ "gitHead": "9d7e94e5e79a15dc5d23714fc33db8342837b804"
27
27
  }