@fluid-topics/ft-file-drop 1.1.69 → 1.1.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- !function(t,o,e,r,i,a){const n=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),l={color:n,backgroundColor:o.FtCssVariableFactory.extend("--ft-ripple-background-color","",n),opacityContentOnSurfacePressed:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},c=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorPrimary),p=c,f=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",c),s=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorSecondary),d=s,h=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",s),g=e.css`
1
+ "use strict";(()=>{var Gn=Object.create;var fo=Object.defineProperty;var Zn=Object.getOwnPropertyDescriptor;var Kn=Object.getOwnPropertyNames;var Mn=Object.getPrototypeOf,Fn=Object.prototype.hasOwnProperty;var re=(e,o)=>()=>(o||e((o={exports:{}}).exports,o),o.exports);var Vn=(e,o,n,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let a of Kn(o))!Fn.call(e,a)&&a!==n&&fo(e,a,{get:()=>o[a],enumerable:!(i=Zn(o,a))||i.enumerable});return e};var u=(e,o,n)=>(n=e!=null?Gn(Mn(e)):{},Vn(o||!e||!e.__esModule?fo(n,"default",{value:e,enumerable:!0}):n,e));var R=re((Oi,go)=>{go.exports=ftGlobals.wcUtils});var _=re((Si,ho)=>{ho.exports=ftGlobals.lit});var st=re((vi,yo)=>{yo.exports=ftGlobals.litDecorators});var ne=re((Ci,uo)=>{uo.exports=ftGlobals.litClassMap});var Br=re((up,Ir)=>{Ir.exports=ftGlobals.litUnsafeHTML});var _n=u(R());var Tn=u(_()),Lt=u(st()),kn=u(R()),Hn=u(ne());function mo(e,o,n){if(e.length==0)return!0;let i=e.replace(/[.+?^${}()|[\]\\]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"|"),a=new RegExp(i),l=o.includes(".")?"."+o.split(".").pop():void 0;return l&&a.test(l)?!0:a.test(n)}var In=u(R());var ze=u(_()),j=u(st()),Pn=u(ne()),ke=u(R());var Ro=u(R());var wo=u(_()),Z=u(st()),Eo=u(ne()),ie=u(R());var Co=u(_()),z=u(R()),bo=z.FtCssVariableFactory.extend("--ft-ripple-color","",z.designSystemVariables.colorContent),C={color:bo,backgroundColor:z.FtCssVariableFactory.extend("--ft-ripple-background-color","",bo),opacityContentOnSurfacePressed:z.FtCssVariableFactory.external(z.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:z.FtCssVariableFactory.external(z.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:z.FtCssVariableFactory.external(z.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:z.FtCssVariableFactory.external(z.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:z.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},xo=z.FtCssVariableFactory.extend("--ft-ripple-color","",z.designSystemVariables.colorPrimary),Oo={color:xo,backgroundColor:z.FtCssVariableFactory.extend("--ft-ripple-background-color","",xo)},So=z.FtCssVariableFactory.extend("--ft-ripple-color","",z.designSystemVariables.colorSecondary),vo={color:So,backgroundColor:z.FtCssVariableFactory.extend("--ft-ripple-background-color","",So)},No=Co.css`
2
2
  :host {
3
3
  display: contents;
4
4
  }
@@ -11,7 +11,7 @@
11
11
 
12
12
  .ft-ripple:not(.ft-ripple--unbounded) {
13
13
  overflow: hidden;
14
- border-radius: ${l.borderRadius};
14
+ border-radius: ${C.borderRadius};
15
15
  }
16
16
 
17
17
  .ft-ripple .ft-ripple--background,
@@ -45,27 +45,27 @@
45
45
  }
46
46
 
47
47
  .ft-ripple .ft-ripple--background {
48
- background-color: ${l.backgroundColor};
48
+ background-color: ${C.backgroundColor};
49
49
  }
50
50
 
51
51
  .ft-ripple .ft-ripple--effect {
52
- background-color: ${l.color};
52
+ background-color: ${C.color};
53
53
  }
54
54
 
55
55
  .ft-ripple.ft-ripple--secondary .ft-ripple--background {
56
- background-color: ${h};
56
+ background-color: ${vo.backgroundColor};
57
57
  }
58
58
 
59
59
  .ft-ripple.ft-ripple--secondary .ft-ripple--effect {
60
- background-color: ${d};
60
+ background-color: ${vo.color};
61
61
  }
62
62
 
63
63
  .ft-ripple.ft-ripple--primary .ft-ripple--background {
64
- background-color: ${f};
64
+ background-color: ${Oo.backgroundColor};
65
65
  }
66
66
 
67
67
  .ft-ripple.ft-ripple--primary .ft-ripple--effect {
68
- background-color: ${p};
68
+ background-color: ${Oo.color};
69
69
  }
70
70
 
71
71
  .ft-ripple .ft-ripple--background {
@@ -95,156 +95,148 @@
95
95
  }
96
96
 
97
97
  .ft-ripple.ft-ripple--hovered .ft-ripple--background {
98
- opacity: ${l.opacityContentOnSurfaceHover};
98
+ opacity: ${C.opacityContentOnSurfaceHover};
99
99
  }
100
100
 
101
101
  .ft-ripple.ft-ripple--selected .ft-ripple--background {
102
- opacity: ${l.opacityContentOnSurfaceSelected};
102
+ opacity: ${C.opacityContentOnSurfaceSelected};
103
103
  }
104
104
 
105
105
  .ft-ripple.ft-ripple--focused .ft-ripple--background {
106
- opacity: ${l.opacityContentOnSurfaceFocused};
106
+ opacity: ${C.opacityContentOnSurfaceFocused};
107
107
  }
108
108
 
109
109
  .ft-ripple.ft-ripple--pressed .ft-ripple--effect {
110
- opacity: ${l.opacityContentOnSurfacePressed};
110
+ opacity: ${C.opacityContentOnSurfacePressed};
111
111
  transform: translate(-50%, -50%) scale(1);
112
112
  }
113
- `;var y=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 b extends o.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new o.Debouncer(1e3),this.onTransitionStart=t=>{"transform"===t.propertyName&&(this.rippling=this.pressed,this.debouncer.run((()=>this.rippling=!1)))},this.onTransitionEnd=t=>{"transform"===t.propertyName&&(this.rippling=!1)},this.setupDebouncer=new o.Debouncer(10),this.moveRipple=t=>{var o,e;let{x:r,y:i}=this.getCoordinates(t),a=null!==(e=null===(o=this.ripple)||void 0===o?void 0:o.getBoundingClientRect())&&void 0!==e?e:{x:0,y:0,width:0,height:0};this.originX=Math.round(null!=r?r-a.x:a.width/2),this.originY=Math.round(null!=i?i-a.y:a.height/2)},this.startPress=t=>{this.moveRipple(t),this.pressed=!this.isIgnored(t)},this.endPress=()=>{this.pressed=!1},this.startHover=t=>{this.hovered=!this.isIgnored(t)},this.endHover=()=>{this.hovered=!1},this.startFocus=t=>{this.focused=this.isFocusVisible(null==t?void 0:t.target)&&!this.isIgnored(t)},this.endFocus=()=>{this.focused=!1}}render(){let t={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return e.html`
113
+ `;var Y=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},A=class extends ie.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new ie.Debouncer(1e3),this.onTransitionStart=o=>{o.propertyName==="transform"&&(this.rippling=this.pressed,this.debouncer.run(()=>this.rippling=!1))},this.onTransitionEnd=o=>{o.propertyName==="transform"&&(this.rippling=!1)},this.setupDebouncer=new ie.Debouncer(10),this.moveRipple=o=>{var n,i;let{x:a,y:l}=this.getCoordinates(o),c=(i=(n=this.ripple)===null||n===void 0?void 0:n.getBoundingClientRect())!==null&&i!==void 0?i:{x:0,y:0,width:0,height:0};this.originX=Math.round(a!=null?a-c.x:c.width/2),this.originY=Math.round(l!=null?l-c.y:c.height/2)},this.startPress=o=>{this.moveRipple(o),this.pressed=!this.isIgnored(o)},this.endPress=()=>{this.pressed=!1},this.startHover=o=>{this.hovered=!this.isIgnored(o)},this.endHover=()=>{this.hovered=!1},this.startFocus=o=>{this.focused=this.isFocusVisible(o?.target)&&!this.isIgnored(o)},this.endFocus=()=>{this.focused=!1}}render(){let o={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return wo.html`
114
114
  <style>
115
115
  .ft-ripple .ft-ripple--effect {
116
116
  left: ${this.originX}px;
117
117
  top: ${this.originY}px;
118
118
  }
119
119
  </style>
120
- <div class="${i.classMap(t)}">
120
+ <div class="${(0,Eo.classMap)(o)}">
121
121
  <div class="ft-ripple--background"></div>
122
122
  <div class="ft-ripple--effect"></div>
123
123
  </div>
124
- `}contentAvailableCallback(t){super.contentAvailableCallback(t),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(t){var o,e;super.update(t),t.has("disabled")&&(this.disabled?(this.endRipple(),null===(o=this.target)||void 0===o||o.removeAttribute("data-is-ft-ripple-target")):null===(e=this.target)||void 0===e||e.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run((()=>this.defaultSetup()))}defaultSetup(){var t,o;const e=null===(t=this.shadowRoot)||void 0===t?void 0:t.host.parentElement;e&&this.setupFor(null!==(o=this.target)&&void 0!==o?o:e)}setupFor(t){if(this.setupDebouncer.cancel(),this.target===t)return;this.onDisconnect&&this.onDisconnect(),this.target=t,t.setAttribute("data-is-ft-ripple-target","true");const o=(...t)=>o=>{t.forEach((t=>window.addEventListener(t,this.endPress,{once:!0}))),this.startPress(o)},e=o("mouseup","contextmenu"),r=o("touchend","touchcancel"),i=t=>{["Enter"," "].includes(t.key)&&o("keyup")(t)},a={passive:!0};t.addEventListener("mouseover",this.startHover,a),t.addEventListener("mousemove",this.moveRipple,a),t.addEventListener("mouseleave",this.endHover,a),t.addEventListener("mousedown",e,a),t.addEventListener("touchstart",r,a),t.addEventListener("touchmove",this.moveRipple,a),t.addEventListener("keydown",i,a),t.addEventListener("focus",this.startFocus,a),t.addEventListener("blur",this.endFocus,a),t.addEventListener("focusin",this.startFocus,a),t.addEventListener("focusout",this.endFocus,a),this.onDisconnect=()=>{t.removeAttribute("data-is-ft-ripple-target"),t.removeEventListener("mouseover",this.startHover,a),t.removeEventListener("mousemove",this.moveRipple,a),t.removeEventListener("mouseleave",this.endHover,a),t.removeEventListener("mousedown",e,a),t.removeEventListener("touchstart",r,a),t.removeEventListener("touchmove",this.moveRipple,a),t.removeEventListener("keydown",i,a),t.removeEventListener("focus",this.startFocus,a),t.removeEventListener("blur",this.endFocus,a),t.removeEventListener("focusin",this.startFocus,a),t.removeEventListener("focusout",this.endFocus,a),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(t){const o=t,e=t;let r,i;return null!=o.x?({x:r,y:i}=o):null!=e.touches&&(r=e.touches[0].clientX,i=e.touches[0].clientY),{x:r,y:i}}isFocusVisible(t){return!(t instanceof HTMLElement)||t.matches(":focus-visible")}isIgnored(t){if(this.disabled)return!0;if(null!=t)for(let o of t.composedPath()){if(o===this.target)break;if("hasAttribute"in o&&o.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}}b.elementDefinitions={},b.styles=g,y([r.property({type:Boolean})],b.prototype,"primary",void 0),y([r.property({type:Boolean})],b.prototype,"secondary",void 0),y([r.property({type:Boolean})],b.prototype,"unbounded",void 0),y([r.property({type:Boolean})],b.prototype,"activated",void 0),y([r.property({type:Boolean})],b.prototype,"selected",void 0),y([r.property({type:Boolean})],b.prototype,"disabled",void 0),y([r.state()],b.prototype,"hovered",void 0),y([r.state()],b.prototype,"focused",void 0),y([r.state()],b.prototype,"pressed",void 0),y([r.state()],b.prototype,"rippling",void 0),y([r.state()],b.prototype,"originX",void 0),y([r.state()],b.prototype,"originY",void 0),y([r.query(".ft-ripple")],b.prototype,"ripple",void 0),y([r.query(".ft-ripple--effect")],b.prototype,"rippleEffect",void 0),o.customElement("ft-ripple")(b);
125
- /**
126
- * @license
127
- * Copyright 2017 Google LLC
128
- * SPDX-License-Identifier: BSD-3-Clause
129
- */
130
- const u=globalThis,m=u.trustedTypes,x=m?m.createPolicy("lit-html",{createHTML:t=>t}):void 0,v="$lit$",O=`lit$${(Math.random()+"").slice(9)}$`,N="?"+O,S=`<${N}>`,w=document,$=()=>w.createComment(""),C=t=>null===t||"object"!=typeof t&&"function"!=typeof t,I=Array.isArray,E="[ \t\n\f\r]",W=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,U=/-->/g,k=/>/g,R=RegExp(`>|${E}(?:([^\\s"'>=/]+)(${E}*=${E}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),z=/'/g,Z=/"/g,L=/^(?:script|style|textarea|title)$/i,K=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),F=Symbol.for("lit-noChange"),D=Symbol.for("lit-nothing"),B=new WeakMap,H=w.createTreeWalker(w,129);function A(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==x?x.createHTML(o):o}const G=(t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=W;for(let o=0;o<e;o++){const e=t[o];let l,c,p=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===W?"!--"===c[1]?n=U:void 0!==c[1]?n=k:void 0!==c[2]?(L.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=R):void 0!==c[3]&&(n=R):n===R?">"===c[0]?(n=i??W,p=-1):void 0===c[1]?p=-2:(p=n.lastIndex-c[2].length,l=c[1],n=void 0===c[3]?R:'"'===c[3]?Z:z):n===Z||n===z?n=R:n===U||n===k?n=W:(n=R,i=void 0);const s=n===R&&t[o+1].startsWith("/>")?" ":"";a+=n===W?e+S:p>=0?(r.push(l),e.slice(0,p)+v+e.slice(p)+O+s):e+O+(-2===p?o:s)}return[A(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class j{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,a=0;const n=t.length-1,l=this.parts,[c,p]=G(t,o);if(this.el=j.createElement(c,e),H.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=H.nextNode())&&l.length<n;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(v)){const o=p[a++],e=r.getAttribute(t).split(O),n=/([.?@])?(.*)/.exec(o);l.push({type:1,index:i,name:n[2],strings:e,ctor:"."===n[1]?_:"?"===n[1]?V:"@"===n[1]?X:Y}),r.removeAttribute(t)}else t.startsWith(O)&&(l.push({type:6,index:i}),r.removeAttribute(t));if(L.test(r.tagName)){const t=r.textContent.split(O),o=t.length-1;if(o>0){r.textContent=m?m.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],$()),H.nextNode(),l.push({type:2,index:++i});r.append(t[o],$())}}}else if(8===r.nodeType)if(r.data===N)l.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(O,t+1));)l.push({type:7,index:i}),t+=O.length-1}i++}}static createElement(t,o){const e=w.createElement("template");return e.innerHTML=t,e}}function P(t,o,e=t,r){if(o===F)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=C(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=P(t,i._$AS(t,o.values),i,r)),o}class T{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??w).importNode(o,!0);H.currentNode=r;let i=H.nextNode(),a=0,n=0,l=e[0];for(;void 0!==l;){if(a===l.index){let o;2===l.type?o=new M(i,i.nextSibling,this,t):1===l.type?o=new l.ctor(i,l.name,l.strings,this,t):6===l.type&&(o=new q(i,this,t)),this._$AV.push(o),l=e[++n]}a!==l?.index&&(i=H.nextNode(),a++)}return H.currentNode=w,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++}}class M{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=D,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=P(this,t,o),C(t)?t===D||null==t||""===t?(this._$AH!==D&&this._$AR(),this._$AH=D):t!==this._$AH&&t!==F&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>I(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!==D&&C(this._$AH)?this._$AA.nextSibling.data=t:this.$(w.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=j.createElement(A(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new T(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=B.get(t.strings);return void 0===o&&B.set(t.strings,o=new j(t)),o}T(t){I(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 M(this.k($()),this.k($()),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 Y{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=D,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=D}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=P(this,t,o,0),a=!C(t)||t!==this._$AH&&t!==F,a&&(this._$AH=t);else{const r=t;let n,l;for(t=i[0],n=0;n<i.length-1;n++)l=P(this,r[e+n],o,n),l===F&&(l=this._$AH[n]),a||=!C(l)||l!==this._$AH[n],l===D?t=D:t!==D&&(t+=(l??"")+i[n+1]),this._$AH[n]=l}a&&!r&&this.O(t)}O(t){t===D?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class _ extends Y{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===D?void 0:t}}class V extends Y{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==D)}}class X extends Y{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=P(this,t,o,0)??D)===F)return;const e=this._$AH,r=t===D&&e!==D||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==D&&(e===D||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 q{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){P(this,t)}}const J=u.litHtmlPolyfillSupport;J?.(j,M),(u.litHtmlVersions??=[]).push("3.1.0");
131
- /**
132
- * @license
133
- * Copyright 2020 Google LLC
134
- * SPDX-License-Identifier: BSD-3-Clause
135
- */
136
- const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litStatic$:t,r:Q}),et=new Map,rt=(t=>(o,...e)=>{const r=e.length;let i,a;const n=[],l=[];let c,p=0,f=!1;for(;p<r;){for(c=o[p];p<r&&void 0!==(a=e[p],i=tt(a));)c+=i+o[++p],f=!0;p!==r&&l.push(a),n.push(c),p++}if(p===r&&n.push(o[r]),f){const t=n.join("$$lit$$");void 0===(o=et.get(t))&&(n.raw=n,et.set(t,o=n)),e=l}return t(o,...e)})(K);var it;!function(t){t.title="title",t.title_dense="title-dense",t.subtitle1="subtitle1",t.subtitle2="subtitle2",t.body1="body1",t.body2="body2",t.caption="caption",t.breadcrumb="breadcrumb",t.overline="overline",t.button="button",t.display="display",t.title1="title-1",t.title2="title-2",t.title3="title-3",t.body1regular="body-1-regular",t.body1medium="body-1-medium",t.body1semibold="body-1-semibold",t.body2regular="body-2-regular",t.body2medium="body-2-medium",t.body2semibold="body-2-semibold",t.label1medium="label-1-medium",t.label1semibold="label-1-semibold",t.label1bold="label-1-bold",t.label2medium="label-2-medium",t.label2semibold="label-2-semibold",t.label2bold="label-2-bold",t.caption1medium="caption-1-medium",t.caption1semibold="caption-1-semibold",t.caption1bold="caption-1-bold",t.caption2medium="caption-2-medium",t.caption2semibold="caption-2-semibold",t.caption2bold="caption-2-bold"}(it||(it={}));const at=t=>"string"==typeof t?e.unsafeCSS(t):t;class nt{static create(t,o,r,i){const a=t=>at(null!=t?t:i),n=e.css`var(${at(t)}, ${a(i)})`;return n.name=t,n.description=o,n.category=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${at(t)}, ${a(o)})`,n.breadcrumb=()=>[],n.lastResortDefaultValue=()=>i,n}static extend(t,o,r,i){const a=t=>r.get(null!=t?t:i),n=e.css`var(${at(t)}, ${a(i)})`;return n.name=t,n.description=o,n.category=r.category,n.fallbackVariable=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${at(t)}, ${a(o)})`,n.breadcrumb=()=>[r.name,...r.breadcrumb()],n.lastResortDefaultValue=()=>null!=i?i:r.lastResortDefaultValue(),n}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):at(null!=o?o:t.lastResortDefaultValue()),i=e.css`var(${at(t.name)}, ${r(t.defaultValue)})`;return i.name=t.name,i.category=t.category,i.fallbackVariable=t.fallbackVariable,i.defaultValue=t.defaultValue,i.context=o,i.defaultCssValue=r,i.get=o=>e.css`var(${at(t.name)}, ${r(o)})`,i.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],i.lastResortDefaultValue=()=>t.lastResortDefaultValue(),i}}const lt={colorWhite:nt.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:nt.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:nt.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:nt.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:nt.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:nt.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:nt.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:nt.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:nt.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:nt.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:nt.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:nt.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:nt.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:nt.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:nt.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:nt.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:nt.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:nt.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:nt.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:nt.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:nt.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:nt.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:nt.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:nt.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:nt.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:nt.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:nt.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:nt.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:nt.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:nt.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:nt.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:nt.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:nt.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:nt.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:nt.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:nt.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:nt.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:nt.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:nt.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:nt.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:nt.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:nt.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:nt.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:nt.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:nt.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:nt.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:nt.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:nt.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:nt.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:nt.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:nt.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:nt.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:nt.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:nt.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:nt.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:nt.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:nt.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:nt.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:nt.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:nt.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:nt.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:nt.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:nt.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:nt.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:nt.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:nt.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:nt.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:nt.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:nt.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:nt.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:nt.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:nt.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:nt.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:nt.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:nt.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:nt.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:nt.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:nt.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:nt.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:nt.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:nt.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:nt.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:nt.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:nt.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:nt.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:nt.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:nt.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:nt.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:nt.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:nt.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:nt.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:nt.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:nt.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:nt.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:nt.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:nt.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:nt.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:nt.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:nt.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:nt.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:nt.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:nt.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:nt.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:nt.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:nt.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:nt.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:nt.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:nt.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:nt.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:nt.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:nt.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:nt.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:nt.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:nt.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:nt.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:nt.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:nt.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:nt.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:nt.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:nt.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:nt.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:nt.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:nt.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:nt.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:nt.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:nt.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:nt.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:nt.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:nt.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:nt.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:nt.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:nt.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:nt.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:nt.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:nt.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:nt.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:nt.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:nt.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:nt.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:nt.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:nt.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:nt.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:nt.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:nt.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:nt.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:nt.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:nt.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:nt.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:nt.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:nt.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:nt.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:nt.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:nt.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:nt.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:nt.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:nt.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:nt.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:nt.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:nt.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:nt.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:nt.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:nt.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:nt.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:nt.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:nt.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:nt.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:nt.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:nt.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:nt.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:nt.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:nt.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:nt.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:nt.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:nt.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:nt.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:nt.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:nt.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:nt.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:nt.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:nt.create("--ft-icon-size-6","","SIZE","48px"),opacity0:nt.create("--ft-opacity-0","","NUMBER","0"),opacity8:nt.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:nt.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:nt.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:nt.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:nt.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:nt.create("--ft-shadow-elevation-01","","SHADOW","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)"),shadowElevation02:nt.create("--ft-shadow-elevation-02","","SHADOW","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)"),shadowElevation03:nt.create("--ft-shadow-elevation-03","","SHADOW","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)"),shadowElevation04:nt.create("--ft-shadow-elevation-04","","SHADOW","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)"),shadowElevation06:nt.create("--ft-shadow-elevation-06","","SHADOW","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)"),shadowElevation08:nt.create("--ft-shadow-elevation-08","","SHADOW","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)"),shadowElevation12:nt.create("--ft-shadow-elevation-12","","SHADOW","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)"),shadowElevation16:nt.create("--ft-shadow-elevation-16","","SHADOW","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)"),shadowElevation24:nt.create("--ft-shadow-elevation-24","","SHADOW","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)")},ct={display:{fontFamily:nt.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:nt.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:nt.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:nt.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:nt.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:nt.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:nt.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:nt.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:nt.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:nt.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:nt.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:nt.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:nt.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:nt.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:nt.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:nt.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:nt.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:nt.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:nt.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:nt.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:nt.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:nt.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:nt.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:nt.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:nt.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:nt.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-medium-underline":{fontFamily:nt.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:nt.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:nt.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},"body-2-semibold":{fontFamily:nt.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:nt.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:nt.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:nt.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:nt.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:nt.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:nt.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:nt.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:nt.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:nt.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:nt.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:nt.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:nt.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:nt.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:nt.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:nt.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:nt.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:nt.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:nt.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:nt.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:nt.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:nt.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:nt.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:nt.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:nt.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:nt.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:nt.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:nt.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},"caption-3-medium":{fontFamily:nt.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:nt.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:nt.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},"caption-3-semibold":{fontFamily:nt.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:nt.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:nt.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},"caption-3-bold":{fontFamily:nt.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:nt.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:nt.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:nt.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:nt.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:nt.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:nt.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:nt.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:nt.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")}},pt={backgroundActionPrimary:nt.extend("--ft-background-action-primary","Used as backgorund of primary action components.",lt.colorBrand0),backgroundErrorSubtle:nt.extend("--ft-background-error-subtle","Used as background of subtle error components.",lt.colorRed10),backgroundInfoSubtle:nt.extend("--ft-background-info-subtle","Used as background of subtle information components.",lt.colorCyan10),backgroundWarningSubtle:nt.extend("--ft-background-warning-subtle","Used as background of subtle information components.",lt.colorOrange10),backgroundSuccessSubtle:nt.extend("--ft-background-success-subtle","Used as background of subtle success components.",lt.colorGreen10),backgroundGlobalSurface:nt.extend("--ft-background-global-surface","Used as app background.",lt.colorWhite),backgroundGlobalOnSurface:nt.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",lt.colorGray10),backgroundGlobalOnSurfaceDark:nt.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",lt.colorGray30),contentActionPrimary:nt.extend("--ft-content-action-primary","Used on label of primary action on light surface.",lt.colorBrand0),contentWarningPrimary:nt.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",lt.colorOrange200),contentWarningIconOnly:nt.extend("--ft-content-warning-icon-only","Used on warning status icons alone",lt.colorOrange0),contentErrorPrimary:nt.extend("--ft-content-error-primary","Used on label of error messages on light surface.",lt.colorRed0),contentErrorIconOnly:nt.extend("--ft-content-error-icon-only","Used on error status icons alone",lt.colorRed70),contentInfoPrimary:nt.extend("--ft-content-info-primary","Used on label of information messages on light surface.",lt.colorCyan200),contentInfoIconOnly:nt.extend("--ft-content-info-icon-only","Used on info status icons alone",lt.colorCyan0),contentSuccessPrimary:nt.extend("--ft-content-success-primary","Used on label of success messages on light surface.",lt.colorGreen200),contentSuccessIconOnly:nt.extend("--ft-content-success-icon-only","Used on success status icons alone",lt.colorGreen0),contentGlobalPrimary:nt.extend("--ft-content-global-primary","Used for main content on the page.",lt.colorGray500),contentGlobalSecondary:nt.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",lt.colorGray200),contentGlobalSubtle:nt.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",lt.colorGray0),contentGlobalOnColor:nt.extend("--ft-content-global-on-color","Used for content on a dominant color.",lt.colorWhite),borderActionPrimary:nt.extend("--ft-border-action-primary","Used as border for primary action components.",lt.colorBrand0),borderActionFocusRing:nt.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",lt.colorCyan0),borderWarningPrimary:nt.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",lt.colorOrange200),borderWarningSubtle:nt.extend("--ft-border-warning-subtle","Used as border for warning components.",lt.colorOrange30),borderSuccessPrimary:nt.extend("--ft-border-success-primary","Used as border for success buttons.",lt.colorGreen200),borderSuccessSubtle:nt.extend("--ft-border-success-subtle","Used as border for success components.",lt.colorGreen30),borderErrorPrimary:nt.extend("--ft-border-error-primary","Used as border for text fields in error states.",lt.colorRed0),borderErrorSubtle:nt.extend("--ft-border-error-subtle","Used as border for error components.",lt.colorRed30),borderInfoPrimary:nt.extend("--ft-border-info-primary","Used as border for buttons in info color.",lt.colorCyan200),borderInfoSubtle:nt.extend("--ft-border-info-subtle","Used as border for information components.",lt.colorCyan30),borderGlobalPrimary:nt.extend("--ft-border-global-primary","Used as border for element like input.",lt.colorGray50),borderGlobalSubtle:nt.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",lt.colorGray30),borderInputPrimary:nt.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",lt.colorGray80)},ft={largeHeight:nt.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:nt.extend("--ft-button-large-horizontal-padding","",lt.spacing4),largeGap:nt.extend("--ft-button-large-gap","",lt.spacing2),largeBorderRadius:nt.extend("--ft-button-large-border-radius","",lt.borderRadiusS),largeIconSize:nt.extend("--ft-button-large-icon-size","",lt.iconSize3),largeBorderWidth:nt.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:nt.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:nt.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:nt.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:nt.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:nt.extend("--ft-button-small-horizontal-padding","",lt.spacing3),smallGap:nt.extend("--ft-button-small-gap","",lt.spacing2),smallBorderRadius:nt.extend("--ft-button-small-border-radius","",lt.borderRadiusS),smallIconSize:nt.extend("--ft-button-small-icon-size","",lt.iconSize2),smallBorderWidth:nt.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:nt.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:nt.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:nt.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:nt.extend("--ft-button-primary-background-color","",pt.backgroundActionPrimary),primaryColor:nt.extend("--ft-button-primary-color","",pt.contentGlobalOnColor),primaryIconColor:nt.extend("--ft-button-primary-icon-color","",pt.contentGlobalOnColor),primaryStateLayerColor:nt.extend("--ft-button-primary-state-layer-color","",pt.contentGlobalOnColor),primaryHoverStateLayerOpacity:nt.extend("--ft-button-primary-hover-state-layer-opacity","",lt.opacity16),primaryFocusStateLayerOpacity:nt.extend("--ft-button-primary-focus-state-layer-opacity","",lt.opacity16),primaryActiveStateLayerOpacity:nt.extend("--ft-button-primary-active-state-layer-opacity","",lt.opacity24),primaryDisabledComponentOpacity:nt.extend("--ft-button-primary-disabled-component-opacity","",lt.opacity40),focusFocusRingColor:nt.extend("--ft-button-focus-focus-ring-color","",pt.borderActionFocusRing),tertiaryBackgroundColor:nt.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:nt.extend("--ft-button-tertiary-color","",pt.contentActionPrimary),tertiaryIconColor:nt.extend("--ft-button-tertiary-icon-color","",pt.contentActionPrimary),tertiaryStateLayerColor:nt.extend("--ft-button-tertiary-state-layer-color","",pt.contentActionPrimary),tertiaryHoverStateLayerOpacity:nt.extend("--ft-button-tertiary-hover-state-layer-opacity","",lt.opacity8),tertiaryFocusStateLayerOpacity:nt.extend("--ft-button-tertiary-focus-state-layer-opacity","",lt.opacity8),tertiaryActiveStateLayerOpacity:nt.extend("--ft-button-tertiary-active-state-layer-opacity","",lt.opacity16),tertiaryDisabledComponentOpacity:nt.extend("--ft-button-tertiary-disabled-component-opacity","",lt.opacity40),secondaryBackgroundColor:nt.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:nt.extend("--ft-button-secondary-color","",pt.contentActionPrimary),secondaryIconColor:nt.extend("--ft-button-secondary-icon-color","",pt.contentActionPrimary),secondaryStateLayerColor:nt.extend("--ft-button-secondary-state-layer-color","",pt.contentActionPrimary),secondaryHoverStateLayerOpacity:nt.extend("--ft-button-secondary-hover-state-layer-opacity","",lt.opacity8),secondaryFocusStateLayerOpacity:nt.extend("--ft-button-secondary-focus-state-layer-opacity","",lt.opacity8),secondaryActiveStateLayerOpacity:nt.extend("--ft-button-secondary-active-state-layer-opacity","",lt.opacity16),secondaryDisabledComponentOpacity:nt.extend("--ft-button-secondary-disabled-component-opacity","",lt.opacity40),secondaryBorderColor:nt.extend("--ft-button-secondary-border-color","",pt.borderActionPrimary),neutralBackgroundColor:nt.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:nt.extend("--ft-button-neutral-icon-color","",pt.contentGlobalSecondary),neutralColor:nt.extend("--ft-button-neutral-color","",pt.contentGlobalSecondary),neutralStateLayerColor:nt.extend("--ft-button-neutral-state-layer-color","",pt.contentGlobalSecondary),neutralHoverStateLayerOpacity:nt.extend("--ft-button-neutral-hover-state-layer-opacity","",lt.opacity8),neutralFocusStateLayerOpacity:nt.extend("--ft-button-neutral-focus-state-layer-opacity","",lt.opacity8),neutralActiveStateLayerOpacity:nt.extend("--ft-button-neutral-active-state-layer-opacity","",lt.opacity16),neutralDisabledComponentOpacity:nt.extend("--ft-button-neutral-disabled-component-opacity","",lt.opacity40)};nt.extend("--ft-banner-icon-size","",lt.iconSize5),nt.create("--ft-banner-border-width","","SIZE","1px"),nt.extend("--ft-banner-horizontal-padding","",lt.spacing6),nt.extend("--ft-banner-vertical-padding","",lt.spacing6),nt.extend("--ft-banner-horizontal-side-gap","",lt.spacing6),nt.extend("--ft-banner-horizontal-mobile-gap","",lt.spacing4),nt.extend("--ft-banner-vertical-mobile-gap","",lt.spacing6),nt.extend("--ft-banner-horizontal-middle-gap","",lt.spacing20),nt.extend("--ft-banner-info-background-color","",pt.backgroundInfoSubtle),nt.extend("--ft-banner-info-color","",pt.contentInfoPrimary),nt.extend("--ft-banner-info-icon-color","",pt.contentInfoIconOnly),nt.extend("--ft-breadcrumb-horizontal-gap","",lt.spacing1),nt.extend("--ft-breadcrumb-vertical-gap","",lt.spacing2),nt.extend("--ft-breadcrumb-current-element-color","",pt.contentGlobalPrimary),nt.extend("--ft-breadcrumb-icon-color","",pt.contentGlobalSubtle),nt.extend("--ft-page-header-horizontal-padding","",lt.spacing12),nt.extend("--ft-page-header-horizontal-gap","",lt.spacing4),nt.extend("--ft-page-header-vertical-gap","",lt.spacing2),nt.extend("--ft-page-header-classic-vertical-padding","",lt.spacing6),nt.extend("--ft-page-header-multiline-vertical-padding","",lt.spacing4),nt.extend("--ft-page-header-inline-vertical-padding","",lt.spacing2),nt.extend("--ft-page-header-background-color","",lt.colorWhite),nt.extend("--ft-page-header-bottom-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-page-header-title-color","",pt.contentGlobalPrimary),nt.extend("--ft-page-header-subtitle-color","",pt.contentGlobalSecondary),nt.create("--ft-modal-small-container-width","","SIZE","600px"),nt.create("--ft-modal-large-container-width","","SIZE","900px"),nt.extend("--ft-modal-overlay-background-color","",lt.colorGray700),nt.extend("--ft-modal-overlay-opacity","",lt.opacity40),nt.extend("--ft-modal-shadow","",lt.shadowElevation03),nt.extend("--ft-modal-body-background-color","",lt.colorWhite),nt.extend("--ft-modal-body-color","",pt.contentGlobalPrimary),nt.extend("--ft-modal-body-horizontal-padding","",lt.spacing6),nt.extend("--ft-modal-body-vertical-padding","",lt.spacing6),nt.extend("--ft-modal-body-vertical-gap","",lt.spacing6),nt.extend("--ft-modal-container-margin","",lt.spacing3),nt.extend("--ft-modal-header-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-modal-header-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-modal-header-color","",pt.contentGlobalPrimary),nt.extend("--ft-modal-header-trailing-icon-color","",pt.contentGlobalSecondary),nt.extend("--ft-modal-header-vertical-padding","",lt.spacing1),nt.extend("--ft-modal-header-right-padding","",lt.spacing1),nt.extend("--ft-modal-header-left-padding","",lt.spacing6),nt.extend("--ft-modal-header-gap","",lt.spacing2),nt.create("--ft-modal-header-border-bottom","","SIZE","1px"),nt.extend("--ft-modal-border-radius","",lt.borderRadiusM),nt.extend("--ft-drawer-overlay-opacity","",lt.opacity40),nt.extend("--ft-drawer-shadow","",lt.shadowElevation03),nt.extend("--ft-drawer-body-color","",pt.contentGlobalPrimary),nt.extend("--ft-drawer-body-horizontal-padding","",lt.spacing6),nt.extend("--ft-drawer-body-vertical-padding","",lt.spacing6),nt.extend("--ft-drawer-body-gap","",lt.spacing6),nt.extend("--ft-drawer-body-background-color","",lt.colorWhite),nt.extend("--ft-drawer-header-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-drawer-header-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-drawer-header-color","",pt.contentGlobalPrimary),nt.extend("--ft-drawer-header-trailing-icon-color","",pt.contentGlobalSecondary),nt.create("--ft-drawer-header-height","","SIZE","50px"),nt.extend("--ft-drawer-header-horizontal-padding","",lt.spacing2),nt.create("--ft-drawer-header-border-width","","SIZE","1px"),nt.extend("--ft-drawer-header-gap","",lt.spacing3),nt.extend("--ft-drawer-buttons-bar-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-drawer-buttons-bar-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-drawer-buttons-bar-color","",pt.contentGlobalPrimary),nt.extend("--ft-drawer-buttons-bar-horizontal-padding","",lt.spacing4),nt.extend("--ft-drawer-buttons-bar-vertical-padding","",lt.spacing4),nt.extend("--ft-drawer-buttons-bar-gap","",lt.spacing3),nt.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),nt.create("--ft-drawer-container-width","","SIZE","66%"),nt.create("--ft-drawer-container-min-width","","SIZE","500px"),nt.create("--ft-drawer-container-max-width","","SIZE","1000px"),nt.create("--ft-drawer-container-height","","SIZE","100%"),nt.extend("--ft-drawer-overlay-background-color","",lt.colorGray700),nt.extend("--ft-text-input-field-horizontal-padding","",lt.spacing4),nt.extend("--ft-text-input-field-horizontal-gap","",lt.spacing3),nt.extend("--ft-text-input-field-vertical-gap","",lt.spacing05),nt.extend("--ft-text-input-field-icon-size","",lt.iconSize3),nt.create("--ft-text-input-field-height","","SIZE","50px"),nt.extend("--ft-text-input-helper-horizontal-padding","",lt.spacing4),nt.extend("--ft-text-input-helper-horizontal-gap","",lt.spacing1),nt.extend("--ft-text-input-helper-icon-size","",lt.iconSize2),nt.extend("--ft-text-input-border-radius","",lt.borderRadiusM),nt.extend("--ft-text-input-background-color","",lt.colorWhite),nt.extend("--ft-text-input-content-value-color","",pt.contentGlobalPrimary),nt.extend("--ft-text-input-trailing-icon-color","",pt.contentGlobalSubtle),nt.extend("--ft-text-input-label-color","",pt.contentGlobalSubtle),nt.extend("--ft-text-input-default-border-color","",pt.borderInputPrimary),nt.extend("--ft-text-input-default-helper-text-color","",pt.contentGlobalSubtle),nt.create("--ft-text-input-default-border-width","","SIZE","1px"),nt.create("--ft-text-input-error-border-width","","SIZE","2px"),nt.extend("--ft-text-input-error-border-color","",pt.borderErrorPrimary),nt.extend("--ft-text-input-error-helper-text-color","",pt.contentErrorPrimary),nt.extend("--ft-text-input-error-helper-icon-color","",pt.contentErrorIconOnly),nt.create("--ft-text-input-warning-border-width","","SIZE","2px"),nt.create("--ft-text-input-focus-outline-width","","SIZE","2px"),nt.extend("--ft-text-input-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),nt.extend("--ft-text-input-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-text-area-background-color","",lt.colorWhite),nt.extend("--ft-text-area-content-value-color","",pt.contentGlobalPrimary),nt.extend("--ft-text-area-label-color","",pt.contentGlobalSubtle),nt.extend("--ft-text-area-default-border-color","",pt.borderInputPrimary),nt.extend("--ft-text-area-default-helper-text-color","",pt.contentGlobalSubtle),nt.create("--ft-text-area-default-border-width","","SIZE","1px"),nt.create("--ft-text-area-error-border-width","","SIZE","2px"),nt.extend("--ft-text-area-error-border-color","",pt.borderErrorPrimary),nt.extend("--ft-text-area-error-helper-text-color","",pt.contentErrorPrimary),nt.extend("--ft-text-area-error-helper-icon-color","",pt.contentErrorIconOnly),nt.extend("--ft-text-area-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-text-area-focus-outline-width","","SIZE","2px"),nt.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),nt.extend("--ft-text-area-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-text-area-field-horizontal-left-padding","",lt.spacing4),nt.extend("--ft-text-area-field-horizontal-gap","",lt.spacing3),nt.extend("--ft-text-area-field-vertical-gap","",lt.spacing05),nt.create("--ft-text-area-field-min-height","","SIZE","64px"),nt.extend("--ft-text-area-helper-horizontal-padding","",lt.spacing4),nt.extend("--ft-text-area-helper-horizontal-gap","",lt.spacing1),nt.extend("--ft-text-area-helper-icon-size","",lt.iconSize2),nt.extend("--ft-text-area-border-radius","",lt.borderRadiusM),nt.create("--ft-floating-menu-height","","SIZE","50px"),nt.extend("--ft-floating-menu-horizontal-padding","",lt.spacing4),nt.extend("--ft-floating-menu-off-icon-color","",pt.contentGlobalPrimary),nt.extend("--ft-floating-menu-off-color","",pt.contentGlobalPrimary),nt.extend("--ft-floating-menu-on-color","",pt.contentActionPrimary),nt.extend("--ft-floating-menu-on-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-floating-menu-gap","",lt.spacing3),nt.extend("--ft-floating-menu-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),nt.extend("--ft-floating-menu-focus-state-layer-opacity","",lt.opacity8),nt.extend("--ft-floating-menu-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-floating-menu-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-floating-menu-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-floating-menu-icon-size","",lt.iconSize3),nt.extend("--ft-floating-menu-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-combobox-single-select-field-horizontal-padding","",lt.spacing4),nt.extend("--ft-combobox-single-select-field-horizontal-gap","",lt.spacing3),nt.extend("--ft-combobox-single-select-field-vertical-gap","",lt.spacing05),nt.extend("--ft-combobox-single-select-field-icon-size","",lt.iconSize3),nt.create("--ft-combobox-single-select-field-height","","SIZE","50px"),nt.extend("--ft-combobox-single-select-helper-horizontal-padding","",lt.spacing4),nt.extend("--ft-combobox-single-select-helper-horizontal-gap","",lt.spacing1),nt.extend("--ft-combobox-single-select-helper-vertical-gap","",lt.spacing1),nt.extend("--ft-combobox-single-select-helper-icon-size","",lt.iconSize2),nt.extend("--ft-combobox-single-select-menu-vertical-gap","",lt.spacing2),nt.extend("--ft-combobox-single-select-border-radius","",lt.borderRadiusM),nt.extend("--ft-combobox-single-select-background-color","",lt.colorWhite),nt.extend("--ft-combobox-single-select-label-color","",pt.contentGlobalSubtle),nt.extend("--ft-combobox-single-select-content-value-color","",pt.contentGlobalPrimary),nt.extend("--ft-combobox-single-select-trailing-icon-color","",pt.contentGlobalSubtle),nt.extend("--ft-combobox-single-select-default-border-color","",pt.borderInputPrimary),nt.extend("--ft-combobox-single-select-default-helper-text-color","",pt.contentGlobalSubtle),nt.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),nt.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),nt.extend("--ft-combobox-single-select-error-border-color","",pt.borderErrorPrimary),nt.extend("--ft-combobox-single-select-error-helper-text-color","",pt.contentErrorPrimary),nt.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),nt.extend("--ft-combobox-single-select-warning-border-color","",pt.borderWarningPrimary),nt.extend("--ft-combobox-single-select-warning-helper-text-color","",pt.contentWarningPrimary),nt.extend("--ft-combobox-single-select-warning-helper-icon-color","",pt.contentWarningIconOnly),nt.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),nt.extend("--ft-combobox-single-select-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),nt.extend("--ft-combobox-single-select-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-combobox-multi-select-background-color","",lt.colorWhite),nt.extend("--ft-combobox-multi-select-label-color","",pt.contentGlobalSubtle),nt.extend("--ft-combobox-multi-select-trailing-icon-color","",pt.contentGlobalSubtle),nt.extend("--ft-combobox-multi-select-default-border-color","",pt.borderInputPrimary),nt.extend("--ft-combobox-multi-select-default-helper-text-color","",pt.contentGlobalSubtle),nt.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),nt.extend("--ft-combobox-multi-select-error-border-color","",pt.borderErrorPrimary),nt.extend("--ft-combobox-multi-select-error-helper-text-color","",pt.contentErrorPrimary),nt.extend("--ft-combobox-multi-select-error-helper-icon","",pt.contentErrorIconOnly),nt.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),nt.extend("--ft-combobox-multi-select-warning-border-color","",pt.borderWarningPrimary),nt.extend("--ft-combobox-multi-select-warning-helper-text-color","",pt.contentWarningPrimary),nt.extend("--ft-combobox-multi-select-warning-helper-icon-color","",pt.contentWarningIconOnly),nt.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),nt.extend("--ft-combobox-multi-select-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),nt.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),nt.extend("--ft-combobox-multi-select-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-combobox-multi-select-helper-horizontal-padding","",lt.spacing4),nt.extend("--ft-combobox-multi-select-helper-horizontal-gap","",lt.spacing1),nt.extend("--ft-combobox-multi-select-helper-vertical-gap","",lt.spacing1),nt.extend("--ft-combobox-multi-select-helper-icon-size","",lt.iconSize2),nt.extend("--ft-combobox-multi-select-field-horizontal-padding","",lt.spacing4),nt.extend("--ft-combobox-multi-select-field-horizontal-gap","",lt.spacing3),nt.extend("--ft-combobox-multi-select-field-vertical-gap","",lt.spacing05),nt.extend("--ft-combobox-multi-select-field-icon-size","",lt.iconSize3),nt.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),nt.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",lt.spacing1),nt.extend("--ft-combobox-multi-select-content-values-vertical-gap","",lt.spacing1),nt.extend("--ft-combobox-multi-select-border-radius","",lt.borderRadiusM),nt.extend("--ft-popover-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-popover-horizontal-padding","",lt.spacing6),nt.extend("--ft-popover-vertical-padding","",lt.spacing6),nt.extend("--ft-popover-icon-color","",pt.contentGlobalSecondary),nt.extend("--ft-popover-icon-size","",lt.iconSize2),nt.extend("--ft-popover-title-color","",pt.contentGlobalPrimary),nt.extend("--ft-popover-body-color","",pt.contentGlobalSecondary),nt.extend("--ft-popover-link-color","",pt.contentActionPrimary),nt.extend("--ft-popover-gap","",lt.spacing3),nt.extend("--ft-popover-border-radius","",lt.borderRadiusM),nt.extend("--ft-popover-shadow","",lt.shadowElevation02),nt.extend("--ft-tabs-top-left-border-radius","",lt.borderRadiusS),nt.extend("--ft-tabs-top-right-border-radius","",lt.borderRadiusS),nt.extend("--ft-tabs-label-horizontal-padding","",lt.spacing4),nt.extend("--ft-tabs-label-vertical-padding","",lt.spacing3),nt.extend("--ft-tabs-label-gap","",lt.spacing1),nt.extend("--ft-tabs-off-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-tabs-off-focus-state-layer-opacity","",lt.opacity8),nt.extend("--ft-tabs-off-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-tabs-off-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-tabs-off-color","",pt.contentGlobalSubtle),nt.extend("--ft-tabs-off-state-layer-color","",pt.contentGlobalSubtle),nt.extend("--ft-tabs-on-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-tabs-on-focus-state-layer-opacity","",lt.opacity8),nt.extend("--ft-tabs-on-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-tabs-on-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-tabs-on-color","",pt.contentActionPrimary),nt.extend("--ft-tabs-on-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-tabs-icon-horizontal-padding","",lt.spacing1),nt.extend("--ft-tabs-icon-vertical-padding","",lt.spacing4),nt.create("--ft-tabs-focus-outline-width","","SIZE","2px"),nt.extend("--ft-tabs-focus-focus-ring-color","",pt.borderActionFocusRing),nt.extend("--ft-collapsible-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-collapsible-focus-state-layer-opacity","",lt.opacity8),nt.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),nt.extend("--ft-collapsible-focus-focus-ring-color","",pt.borderActionFocusRing),nt.extend("--ft-collapsible-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-collapsible-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-collapsible-horizontal-padding","",lt.spacing4),nt.extend("--ft-collapsible-vertical-padding","",lt.spacing3),nt.extend("--ft-collapsible-color","",pt.contentGlobalPrimary),nt.extend("--ft-collapsible-state-layer-color","",pt.contentGlobalPrimary),nt.extend("--ft-collapsible-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-collapsible-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-collapsible-icon-size","",lt.iconSize3),nt.extend("--ft-switch-group-horizontal-padding","",lt.spacing1),nt.extend("--ft-switch-group-vertical-padding","",lt.spacing1),nt.extend("--ft-switch-group-gap","",lt.spacing1),nt.extend("--ft-switch-group-background-color","",pt.backgroundGlobalSurface),nt.extend("--ft-switch-group-border-color","",pt.borderGlobalSubtle),nt.create("--ft-switch-group-border-radius","","SIZE","6px"),nt.extend("--ft-switch-label-horizontal-padding","",lt.spacing2),nt.extend("--ft-switch-label-vertical-padding","",lt.spacing1),nt.extend("--ft-switch-off-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-switch-off-focus-state-layer-opacity","",lt.opacity8),nt.extend("--ft-switch-off-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-switch-off-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-switch-off-color","",pt.contentGlobalSubtle),nt.extend("--ft-switch-off-state-layer-color","",pt.contentGlobalSubtle),nt.extend("--ft-switch-on-hover-state-layer-opacity","",lt.opacity8),nt.extend("--ft-switch-on-focus-state-layer-opacity","",lt.opacity8),nt.extend("--ft-switch-on-active-state-layer-opacity","",lt.opacity16),nt.extend("--ft-switch-on-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-switch-on-color","",pt.contentActionPrimary),nt.extend("--ft-switch-on-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-switch-icon-horizontal-padding","",lt.spacing1),nt.extend("--ft-switch-icon-vertical-padding","",lt.spacing1),nt.create("--ft-switch-focus-outline-width","","SIZE","2px"),nt.extend("--ft-switch-focus-focus-ring-color","",pt.borderActionFocusRing),nt.extend("--ft-switch-option-border-radius","",lt.borderRadiusS),nt.extend("--ft-chart-1-light","for area color charts",lt.colorBrand40),nt.extend("--ft-chart-1-base","for line charts",lt.colorBrand0),nt.extend("--ft-chart-2-light","for area color charts",lt.colorYellow60),nt.extend("--ft-chart-2-base","for line charts",lt.colorYellow100),nt.extend("--ft-chart-3-light","",lt.colorUltramarine40),nt.extend("--ft-chart-3-base","",lt.colorUltramarine70),nt.extend("--ft-chart-4-light","",lt.colorCyan50),nt.extend("--ft-chart-4-base","",lt.colorCyan100),nt.extend("--ft-chart-5-light","",lt.colorRed40),nt.extend("--ft-chart-5-base","",lt.colorRed60),nt.extend("--ft-chart-6-light","",lt.colorGreen40),nt.extend("--ft-chart-6-base","",lt.colorGreen70),nt.extend("--ft-chart-7-light","",lt.colorOrange70),nt.extend("--ft-chart-7-base","",lt.colorOrange100),nt.extend("--ft-chart-8-light","",lt.colorAvocado70),nt.extend("--ft-chart-8-base","",lt.colorAvocado200),nt.extend("--ft-chart-9-light","",lt.colorBrown50),nt.extend("--ft-chart-9-base","",lt.colorBrown200),nt.extend("--ft-chart-10-light","",lt.colorGray50),nt.extend("--ft-chart-10-base","",lt.colorGray80),nt.extend("--ft-chart-monochrome-10","",lt.colorBrand10),nt.extend("--ft-chart-monochrome-20","",lt.colorBrand20),nt.extend("--ft-chart-monochrome-30","",lt.colorBrand40),nt.extend("--ft-chart-monochrome-40","",lt.colorBrand60),nt.extend("--ft-chart-monochrome-50","",lt.colorBrand0),nt.extend("--ft-chart-monochrome-60","",lt.colorBrand200),nt.extend("--ft-chip-large-horizontal-padding","",lt.spacing4),nt.extend("--ft-chip-large-vertical-padding","",lt.spacing2),nt.extend("--ft-chip-large-gap","",lt.spacing1),nt.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),nt.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),nt.extend("--ft-chip-large-border-radius","",lt.borderRadiusPill),nt.create("--ft-chip-large-border-width","","SIZE","1px"),nt.extend("--ft-chip-large-icon-size","",lt.iconSize3),nt.extend("--ft-chip-medium-horizontal-padding","",lt.spacing3),nt.extend("--ft-chip-medium-vertical-padding","",lt.spacing1),nt.extend("--ft-chip-medium-gap","",lt.spacing1),nt.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),nt.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),nt.extend("--ft-chip-medium-border-radius","",lt.borderRadiusPill),nt.create("--ft-chip-medium-border-width","","SIZE","1px"),nt.extend("--ft-chip-medium-icon-size","",lt.iconSize2),nt.extend("--ft-chip-small-horizontal-padding","",lt.spacing2),nt.extend("--ft-chip-small-vertical-padding","",lt.spacing05),nt.extend("--ft-chip-small-gap","",lt.spacing1),nt.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),nt.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),nt.extend("--ft-chip-small-border-radius","",lt.borderRadiusPill),nt.create("--ft-chip-small-border-width","","SIZE","1px"),nt.extend("--ft-chip-small-icon-size","",lt.iconSize1),nt.extend("--ft-chip-neutral-background-color","",pt.backgroundGlobalOnSurface),nt.extend("--ft-chip-neutral-color","",pt.contentGlobalPrimary),nt.extend("--ft-chip-neutral-icon-color","",pt.contentGlobalPrimary),nt.extend("--ft-chip-neutral-border-color","",pt.borderGlobalSubtle),nt.extend("--ft-chip-info-background-color","",pt.backgroundInfoSubtle),nt.extend("--ft-chip-info-color","",pt.contentInfoPrimary),nt.extend("--ft-chip-info-icon-color","",pt.contentInfoIconOnly),nt.extend("--ft-chip-info-border-color","",pt.borderInfoSubtle),nt.extend("--ft-chip-success-background-color","",pt.backgroundSuccessSubtle),nt.extend("--ft-chip-success-color","",pt.contentSuccessPrimary),nt.extend("--ft-chip-success-icon-color","",pt.contentSuccessIconOnly),nt.extend("--ft-chip-success-border-color","",pt.borderSuccessSubtle),nt.extend("--ft-chip-warning-background-color","",pt.backgroundWarningSubtle),nt.extend("--ft-chip-warning-color","",pt.contentWarningPrimary),nt.extend("--ft-chip-warning-icon-color","",pt.contentWarningIconOnly),nt.extend("--ft-chip-warning-border-color","",pt.borderWarningSubtle),nt.extend("--ft-chip-error-background-color","",pt.backgroundErrorSubtle),nt.extend("--ft-chip-error-color","",pt.contentErrorPrimary),nt.extend("--ft-chip-error-icon-color","",pt.contentErrorIconOnly),nt.extend("--ft-chip-error-border-color","",pt.borderErrorSubtle),nt.extend("--ft-border-info-border-color","",pt.borderInfoSubtle),nt.create("--ft-notice-border-width","","SIZE","1px"),nt.extend("--ft-notice-horizontal-padding","",lt.spacing2),nt.extend("--ft-notice-vertical-padding","",lt.spacing1),nt.extend("--ft-notice-border-radius","",lt.borderRadiusS),nt.extend("--ft-notice-gap","",lt.spacing2),nt.extend("--ft-notice-icon-size","",lt.iconSize3),nt.extend("--ft-notice-info-background-color","",pt.backgroundInfoSubtle),nt.extend("--ft-notice-info-border-color","",pt.borderInfoSubtle),nt.extend("--ft-notice-info-color","",pt.contentInfoPrimary),nt.extend("--ft-notice-info-icon-color","",pt.contentInfoIconOnly),nt.extend("--ft-notice-warning-background-color","",pt.backgroundWarningSubtle),nt.extend("--ft-notice-warning-border-color","",pt.borderWarningSubtle),nt.extend("--ft-notice-warning-color","",pt.contentWarningPrimary),nt.extend("--ft-notice-warning-icon-color","",pt.contentWarningIconOnly),nt.extend("--ft-notice-error-background-color","",pt.backgroundErrorSubtle),nt.extend("--ft-notice-error-border-color","",pt.borderErrorSubtle),nt.extend("--ft-notice-error-color","",pt.contentErrorPrimary),nt.extend("--ft-notice-error-icon-color","",pt.contentErrorIconOnly),nt.extend("--ft-notice-success-background-color","",pt.backgroundSuccessSubtle),nt.extend("--ft-notice-success-border-color","",pt.borderSuccessSubtle),nt.extend("--ft-notice-success-color","",pt.contentSuccessPrimary),nt.extend("--ft-notice-success-icon-color","",pt.contentSuccessIconOnly),nt.extend("--ft-checkbox-color","",pt.contentGlobalPrimary),nt.extend("--ft-checkbox-checked-background-color","",pt.contentActionPrimary),nt.extend("--ft-checkbox-checked-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-checkbox-checked-icon-color","",pt.contentGlobalOnColor),nt.extend("--ft-checkbox-checked-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-checkbox-checked-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-checkbox-checked-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-checkbox-checked-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-checkbox-unchecked-border-color","",lt.colorGray80),nt.extend("--ft-checkbox-unchecked-state-layer-color","",lt.colorGray80),nt.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-checkbox-unchecked-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-checkbox-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),nt.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),nt.extend("--ft-checkbox-gap","",lt.spacing3),nt.extend("--ft-toggle-off-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-toggle-off-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-toggle-off-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-toggle-off-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-toggle-off-background-color","",pt.contentGlobalSubtle),nt.extend("--ft-toggle-off-icon-color","",pt.contentGlobalSubtle),nt.extend("--ft-toggle-off-state-layer-color","",pt.contentGlobalSubtle),nt.extend("--ft-toggle-on-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-toggle-on-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-toggle-on-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-toggle-on-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-toggle-on-background-color","",pt.contentActionPrimary),nt.extend("--ft-toggle-on-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-toggle-on-icon-color","",pt.contentActionPrimary),nt.extend("--ft-toggle-color","",pt.contentGlobalPrimary),nt.extend("--ft-toggle-focus-focus-ring-color","",pt.borderActionFocusRing),nt.extend("--ft-toggle-gap","",lt.spacing3),nt.extend("--ft-radio-color","",pt.contentGlobalPrimary),nt.extend("--ft-radio-selected-radio-color","",pt.contentActionPrimary),nt.extend("--ft-radio-selected-state-layer-color","",pt.contentActionPrimary),nt.extend("--ft-radio-selected-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-radio-selected-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-radio-selected-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-radio-selected-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-radio-unselected-state-layer-color","",pt.borderInputPrimary),nt.extend("--ft-radio-unselected-border-color","",pt.borderInputPrimary),nt.extend("--ft-radio-unselected-hover-state-layer-opacity","",lt.opacity16),nt.extend("--ft-radio-unselected-focus-state-layer-opacity","",lt.opacity16),nt.extend("--ft-radio-unselected-active-state-layer-opacity","",lt.opacity24),nt.extend("--ft-radio-unselected-disabled-component-opacity","",lt.opacity40),nt.extend("--ft-radio-focus-focus-ring-color","",pt.borderActionFocusRing),nt.create("--ft-radio-focus-outline-offset","","SIZE","3px"),nt.create("--ft-radio-focus-outline-width","","SIZE","2px"),nt.extend("--ft-radio-gap","",lt.spacing3),nt.extend("--ft-notification-icon-size","",lt.iconSize4),nt.extend("--ft-notification-horizontal-padding","",lt.spacing4),nt.extend("--ft-notification-vertical-padding","",lt.spacing4),nt.extend("--ft-notification-info-background-color","",pt.backgroundInfoSubtle),nt.extend("--ft-notification-info-color","",pt.contentInfoPrimary),nt.extend("--ft-notification-info-icon-color","",pt.contentInfoIconOnly),nt.extend("--ft-notification-info-border-color","",pt.borderInfoSubtle),nt.extend("--ft-notification-success-background-color","",pt.backgroundSuccessSubtle),nt.extend("--ft-notification-success-color","",pt.contentSuccessPrimary),nt.extend("--ft-notification-success-icon-color","",pt.contentSuccessIconOnly),nt.extend("--ft-notification-success-border-color","",pt.borderSuccessSubtle),nt.extend("--ft-notification-warning-background-color","",pt.backgroundWarningSubtle),nt.extend("--ft-notification-warning-color","",pt.contentWarningPrimary),nt.extend("--ft-notification-warning-icon-color","",pt.contentWarningIconOnly),nt.extend("--ft-notification-warning-border-color","",pt.borderWarningSubtle),nt.extend("--ft-notification-error-background-color","",pt.backgroundErrorSubtle),nt.extend("--ft-notification-error-color","",pt.contentErrorPrimary),nt.extend("--ft-notification-error-icon-color","",pt.contentErrorIconOnly),nt.extend("--ft-notification-error-border-color","",pt.borderErrorSubtle),nt.extend("--ft-notification-border-radius","",lt.borderRadiusPill),nt.create("--ft-notification-border-width","","SIZE","1px"),nt.extend("--ft-notification-leading-gap","",lt.spacing2),nt.extend("--ft-notification-trailing-gap","",lt.spacing8),nt.extend("--ft-tooltip-horizontal-padding","",lt.spacing2),nt.extend("--ft-tooltip-vertical-padding","",lt.spacing2),nt.extend("--ft-tooltip-border-radius","",lt.borderRadiusS),nt.extend("--ft-tooltip-color","",pt.contentGlobalOnColor),nt.extend("--ft-tooltip-background-color","",pt.contentGlobalPrimary),nt.extend("--ft-tooltip-background-opacity","",lt.opacity80),nt.extend("--ft-tooltip-shadow","",lt.shadowElevation03),nt.create("--ft-tooltip-max-width","","SIZE","256px"),nt.extend("--ft-tooltip-gap","",lt.spacing05);const st=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),dt=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),ht={fontFamily:dt,fontSize:o.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:o.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:o.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:o.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:o.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},gt=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",st),yt=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",ht.fontSize,"20px"),bt=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",ht.fontWeight,"normal"),ut=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",ht.letterSpacing,"0.15px"),mt=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",ht.lineHeight,"1.2"),xt=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",ht.textTransform,"inherit"),vt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",st),Ot=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",ht.fontSize,"14px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",ht.fontWeight,"normal"),St=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",ht.letterSpacing,"0.105px"),wt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",ht.lineHeight,"1.7"),$t=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",ht.textTransform,"inherit"),Ct=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",dt),It=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",ht.fontSize,"16px"),Et=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",ht.fontWeight,"600"),Wt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",ht.letterSpacing,"0.144px"),Ut=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",ht.lineHeight,"1.5"),kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",ht.textTransform,"inherit"),Rt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",dt),zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",ht.fontSize,"14px"),Zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",ht.fontWeight,"normal"),Lt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",ht.letterSpacing,"0.098px"),Kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",ht.lineHeight,"1.7"),Ft=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",ht.textTransform,"inherit"),Dt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",dt),Bt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",ht.fontSize,"16px"),Ht=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",ht.fontWeight,"normal"),At=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",ht.letterSpacing,"0.496px"),Gt=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",ht.lineHeight,"1.5"),jt=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",ht.textTransform,"inherit"),Pt={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",dt),fontSize:o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",ht.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",ht.fontWeight,"normal"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",ht.letterSpacing,"0.252px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",ht.lineHeight,"1.4"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",ht.textTransform,"inherit")},Tt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",dt),Mt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",ht.fontSize,"12px"),Yt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",ht.fontWeight,"normal"),_t=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",ht.letterSpacing,"0.396px"),Vt=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",ht.lineHeight,"1.33"),Xt=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",ht.textTransform,"inherit"),qt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",dt),Jt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",ht.fontSize,"10px"),Qt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",ht.fontWeight,"normal"),to=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",ht.letterSpacing,"0.33px"),oo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",ht.lineHeight,"1.6"),eo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",ht.textTransform,"inherit"),ro=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",dt),io=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",ht.fontSize,"10px"),ao=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",ht.fontWeight,"normal"),no=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",ht.letterSpacing,"1.5px"),lo=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",ht.lineHeight,"1.6"),co=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",ht.textTransform,"uppercase"),po={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",dt),fontSize:o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",ht.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",ht.fontWeight,"600"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",ht.letterSpacing,"1.246px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",ht.lineHeight,"1.15"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",ht.textTransform,"uppercase")},fo=e.css`
124
+ `}contentAvailableCallback(o){super.contentAvailableCallback(o),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(o){var n,i;super.update(o),o.has("disabled")&&(this.disabled?(this.endRipple(),(n=this.target)===null||n===void 0||n.removeAttribute("data-is-ft-ripple-target")):(i=this.target)===null||i===void 0||i.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run(()=>this.defaultSetup())}defaultSetup(){var o,n;let i=(o=this.shadowRoot)===null||o===void 0?void 0:o.host.parentElement;i&&this.setupFor((n=this.target)!==null&&n!==void 0?n:i)}setupFor(o){if(this.setupDebouncer.cancel(),this.target===o)return;this.onDisconnect&&this.onDisconnect(),this.target=o,o.setAttribute("data-is-ft-ripple-target","true");let n=(...s)=>d=>{s.forEach(h=>window.addEventListener(h,this.endPress,{once:!0})),this.startPress(d)},i=n("mouseup","contextmenu"),a=n("touchend","touchcancel"),l=s=>{["Enter"," "].includes(s.key)&&n("keyup")(s)},c={passive:!0};o.addEventListener("mouseover",this.startHover,c),o.addEventListener("mousemove",this.moveRipple,c),o.addEventListener("mouseleave",this.endHover,c),o.addEventListener("mousedown",i,c),o.addEventListener("touchstart",a,c),o.addEventListener("touchmove",this.moveRipple,c),o.addEventListener("keydown",l,c),o.addEventListener("focus",this.startFocus,c),o.addEventListener("blur",this.endFocus,c),o.addEventListener("focusin",this.startFocus,c),o.addEventListener("focusout",this.endFocus,c),this.onDisconnect=()=>{o.removeAttribute("data-is-ft-ripple-target"),o.removeEventListener("mouseover",this.startHover,c),o.removeEventListener("mousemove",this.moveRipple,c),o.removeEventListener("mouseleave",this.endHover,c),o.removeEventListener("mousedown",i,c),o.removeEventListener("touchstart",a,c),o.removeEventListener("touchmove",this.moveRipple,c),o.removeEventListener("keydown",l,c),o.removeEventListener("focus",this.startFocus,c),o.removeEventListener("blur",this.endFocus,c),o.removeEventListener("focusin",this.startFocus,c),o.removeEventListener("focusout",this.endFocus,c),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(o){let n=o,i=o,a,l;return n.x!=null?{x:a,y:l}=n:i.touches!=null&&(a=i.touches[0].clientX,l=i.touches[0].clientY),{x:a,y:l}}isFocusVisible(o){return o instanceof HTMLElement?o.matches(":focus-visible"):!0}isIgnored(o){if(this.disabled)return!0;if(o!=null)for(let n of o.composedPath()){if(n===this.target)break;if("hasAttribute"in n&&n.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}};A.elementDefinitions={};A.styles=No;Y([(0,Z.property)({type:Boolean})],A.prototype,"primary",void 0);Y([(0,Z.property)({type:Boolean})],A.prototype,"secondary",void 0);Y([(0,Z.property)({type:Boolean})],A.prototype,"unbounded",void 0);Y([(0,Z.property)({type:Boolean})],A.prototype,"activated",void 0);Y([(0,Z.property)({type:Boolean})],A.prototype,"selected",void 0);Y([(0,Z.property)({type:Boolean})],A.prototype,"disabled",void 0);Y([(0,Z.state)()],A.prototype,"hovered",void 0);Y([(0,Z.state)()],A.prototype,"focused",void 0);Y([(0,Z.state)()],A.prototype,"pressed",void 0);Y([(0,Z.state)()],A.prototype,"rippling",void 0);Y([(0,Z.state)()],A.prototype,"originX",void 0);Y([(0,Z.state)()],A.prototype,"originY",void 0);Y([(0,Z.query)(".ft-ripple")],A.prototype,"ripple",void 0);Y([(0,Z.query)(".ft-ripple--effect")],A.prototype,"rippleEffect",void 0);(0,Ro.customElement)("ft-ripple")(A);var Pr=u(R());var Ke=globalThis,Oe=Ke.trustedTypes,Ao=Oe?Oe.createPolicy("lit-html",{createHTML:e=>e}):void 0,Bo="$lit$",Nt=`lit$${(Math.random()+"").slice(9)}$`,zo="?"+Nt,jn=`<${zo}>`,Pt=document,Se=()=>Pt.createComment(""),le=e=>e===null||typeof e!="object"&&typeof e!="function",To=Array.isArray,Yn=e=>To(e)||typeof e?.[Symbol.iterator]=="function",He=`[
125
+ \f\r]`,ae=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Lo=/-->/g,$o=/>/g,$t=RegExp(`>|${He}(?:([^\\s"'>=/]+)(${He}*=${He}*(?:[^
126
+ \f\r"'\`<>=]|("|')|))|$)`,"g"),Wo=/'/g,Po=/"/g,ko=/^(?:script|style|textarea|title)$/i,Ho=e=>(o,...n)=>({_$litType$:e,strings:o,values:n}),_o=Ho(1),Uo=Ho(2),ce=Symbol.for("lit-noChange"),D=Symbol.for("lit-nothing"),Io=new WeakMap,Wt=Pt.createTreeWalker(Pt,129);function Do(e,o){if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return Ao!==void 0?Ao.createHTML(o):o}var Xn=(e,o)=>{let n=e.length-1,i=[],a,l=o===2?"<svg>":"",c=ae;for(let s=0;s<n;s++){let d=e[s],h,x,m=-1,N=0;for(;N<d.length&&(c.lastIndex=N,x=c.exec(d),x!==null);)N=c.lastIndex,c===ae?x[1]==="!--"?c=Lo:x[1]!==void 0?c=$o:x[2]!==void 0?(ko.test(x[2])&&(a=RegExp("</"+x[2],"g")),c=$t):x[3]!==void 0&&(c=$t):c===$t?x[0]===">"?(c=a??ae,m=-1):x[1]===void 0?m=-2:(m=c.lastIndex-x[2].length,h=x[1],c=x[3]===void 0?$t:x[3]==='"'?Po:Wo):c===Po||c===Wo?c=$t:c===Lo||c===$o?c=ae:(c=$t,a=void 0);let v=c===$t&&e[s+1].startsWith("/>")?" ":"";l+=c===ae?d+jn:m>=0?(i.push(h),d.slice(0,m)+Bo+d.slice(m)+Nt+v):d+Nt+(m===-2?s:v)}return[Do(e,l+(e[n]||"<?>")+(o===2?"</svg>":"")),i]},pe=class e{constructor({strings:o,_$litType$:n},i){let a;this.parts=[];let l=0,c=0,s=o.length-1,d=this.parts,[h,x]=Xn(o,n);if(this.el=e.createElement(h,i),Wt.currentNode=this.el.content,n===2){let m=this.el.content.firstChild;m.replaceWith(...m.childNodes)}for(;(a=Wt.nextNode())!==null&&d.length<s;){if(a.nodeType===1){if(a.hasAttributes())for(let m of a.getAttributeNames())if(m.endsWith(Bo)){let N=x[c++],v=a.getAttribute(m).split(Nt),E=/([.?@])?(.*)/.exec(N);d.push({type:1,index:l,name:E[2],strings:v,ctor:E[1]==="."?Ue:E[1]==="?"?De:E[1]==="@"?Ge:_t}),a.removeAttribute(m)}else m.startsWith(Nt)&&(d.push({type:6,index:l}),a.removeAttribute(m));if(ko.test(a.tagName)){let m=a.textContent.split(Nt),N=m.length-1;if(N>0){a.textContent=Oe?Oe.emptyScript:"";for(let v=0;v<N;v++)a.append(m[v],Se()),Wt.nextNode(),d.push({type:2,index:++l});a.append(m[N],Se())}}}else if(a.nodeType===8)if(a.data===zo)d.push({type:2,index:l});else{let m=-1;for(;(m=a.data.indexOf(Nt,m+1))!==-1;)d.push({type:7,index:l}),m+=Nt.length-1}l++}}static createElement(o,n){let i=Pt.createElement("template");return i.innerHTML=o,i}};function Ht(e,o,n=e,i){if(o===ce)return o;let a=i!==void 0?n._$Co?.[i]:n._$Cl,l=le(o)?void 0:o._$litDirective$;return a?.constructor!==l&&(a?._$AO?.(!1),l===void 0?a=void 0:(a=new l(e),a._$AT(e,n,i)),i!==void 0?(n._$Co??=[])[i]=a:n._$Cl=a),a!==void 0&&(o=Ht(e,a._$AS(e,o.values),a,i)),o}var _e=class{constructor(o,n){this._$AV=[],this._$AN=void 0,this._$AD=o,this._$AM=n}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(o){let{el:{content:n},parts:i}=this._$AD,a=(o?.creationScope??Pt).importNode(n,!0);Wt.currentNode=a;let l=Wt.nextNode(),c=0,s=0,d=i[0];for(;d!==void 0;){if(c===d.index){let h;d.type===2?h=new ve(l,l.nextSibling,this,o):d.type===1?h=new d.ctor(l,d.name,d.strings,this,o):d.type===6&&(h=new Ze(l,this,o)),this._$AV.push(h),d=i[++s]}c!==d?.index&&(l=Wt.nextNode(),c++)}return Wt.currentNode=Pt,a}p(o){let n=0;for(let i of this._$AV)i!==void 0&&(i.strings!==void 0?(i._$AI(o,i,n),n+=i.strings.length-2):i._$AI(o[n])),n++}},ve=class e{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(o,n,i,a){this.type=2,this._$AH=D,this._$AN=void 0,this._$AA=o,this._$AB=n,this._$AM=i,this.options=a,this._$Cv=a?.isConnected??!0}get parentNode(){let o=this._$AA.parentNode,n=this._$AM;return n!==void 0&&o?.nodeType===11&&(o=n.parentNode),o}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(o,n=this){o=Ht(this,o,n),le(o)?o===D||o==null||o===""?(this._$AH!==D&&this._$AR(),this._$AH=D):o!==this._$AH&&o!==ce&&this._(o):o._$litType$!==void 0?this.g(o):o.nodeType!==void 0?this.$(o):Yn(o)?this.T(o):this._(o)}k(o){return this._$AA.parentNode.insertBefore(o,this._$AB)}$(o){this._$AH!==o&&(this._$AR(),this._$AH=this.k(o))}_(o){this._$AH!==D&&le(this._$AH)?this._$AA.nextSibling.data=o:this.$(Pt.createTextNode(o)),this._$AH=o}g(o){let{values:n,_$litType$:i}=o,a=typeof i=="number"?this._$AC(o):(i.el===void 0&&(i.el=pe.createElement(Do(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===a)this._$AH.p(n);else{let l=new _e(a,this),c=l.u(this.options);l.p(n),this.$(c),this._$AH=l}}_$AC(o){let n=Io.get(o.strings);return n===void 0&&Io.set(o.strings,n=new pe(o)),n}T(o){To(this._$AH)||(this._$AH=[],this._$AR());let n=this._$AH,i,a=0;for(let l of o)a===n.length?n.push(i=new e(this.k(Se()),this.k(Se()),this,this.options)):i=n[a],i._$AI(l),a++;a<n.length&&(this._$AR(i&&i._$AB.nextSibling,a),n.length=a)}_$AR(o=this._$AA.nextSibling,n){for(this._$AP?.(!1,!0,n);o&&o!==this._$AB;){let i=o.nextSibling;o.remove(),o=i}}setConnected(o){this._$AM===void 0&&(this._$Cv=o,this._$AP?.(o))}},_t=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(o,n,i,a,l){this.type=1,this._$AH=D,this._$AN=void 0,this.element=o,this.name=n,this._$AM=a,this.options=l,i.length>2||i[0]!==""||i[1]!==""?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=D}_$AI(o,n=this,i,a){let l=this.strings,c=!1;if(l===void 0)o=Ht(this,o,n,0),c=!le(o)||o!==this._$AH&&o!==ce,c&&(this._$AH=o);else{let s=o,d,h;for(o=l[0],d=0;d<l.length-1;d++)h=Ht(this,s[i+d],n,d),h===ce&&(h=this._$AH[d]),c||=!le(h)||h!==this._$AH[d],h===D?o=D:o!==D&&(o+=(h??"")+l[d+1]),this._$AH[d]=h}c&&!a&&this.O(o)}O(o){o===D?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,o??"")}},Ue=class extends _t{constructor(){super(...arguments),this.type=3}O(o){this.element[this.name]=o===D?void 0:o}},De=class extends _t{constructor(){super(...arguments),this.type=4}O(o){this.element.toggleAttribute(this.name,!!o&&o!==D)}},Ge=class extends _t{constructor(o,n,i,a,l){super(o,n,i,a,l),this.type=5}_$AI(o,n=this){if((o=Ht(this,o,n,0)??D)===ce)return;let i=this._$AH,a=o===D&&i!==D||o.capture!==i.capture||o.once!==i.once||o.passive!==i.passive,l=o!==D&&(i===D||a);a&&this.element.removeEventListener(this.name,this,i),l&&this.element.addEventListener(this.name,this,o),this._$AH=o}handleEvent(o){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,o):this._$AH.handleEvent(o)}},Ze=class{constructor(o,n,i){this.element=o,this.type=6,this._$AN=void 0,this._$AM=n,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(o){Ht(this,o)}};var qn=Ke.litHtmlPolyfillSupport;qn?.(pe,ve),(Ke.litHtmlVersions??=[]).push("3.1.0");var Zo=Symbol.for(""),Jn=e=>{if(e?.r===Zo)return e?._$litStatic$},Me=e=>({_$litStatic$:e,r:Zo});var Go=new Map,Ko=e=>(o,...n)=>{let i=n.length,a,l,c=[],s=[],d,h=0,x=!1;for(;h<i;){for(d=o[h];h<i&&(l=n[h],(a=Jn(l))!==void 0);)d+=a+o[++h],x=!0;h!==i&&s.push(l),c.push(d),h++}if(h===i&&c.push(o[i]),x){let m=c.join("$$lit$$");(o=Go.get(m))===void 0&&(c.raw=c,Go.set(m,o=c)),n=s}return e(o,...n)},Fe=Ko(_o),zi=Ko(Uo);var Ve=u(st()),Wr=u(R());var It;(function(e){e.title="title",e.title_dense="title-dense",e.subtitle1="subtitle1",e.subtitle2="subtitle2",e.body1="body1",e.body2="body2",e.caption="caption",e.breadcrumb="breadcrumb",e.overline="overline",e.button="button",e.display="display",e.title1="title-1",e.title2="title-2",e.title3="title-3",e.body1regular="body-1-regular",e.body1medium="body-1-medium",e.body1semibold="body-1-semibold",e.body2regular="body-2-regular",e.body2medium="body-2-medium",e.body2semibold="body-2-semibold",e.label1medium="label-1-medium",e.label1semibold="label-1-semibold",e.label1bold="label-1-bold",e.label2medium="label-2-medium",e.label2semibold="label-2-semibold",e.label2bold="label-2-bold",e.caption1medium="caption-1-medium",e.caption1semibold="caption-1-semibold",e.caption1bold="caption-1-bold",e.caption2medium="caption-2-medium",e.caption2semibold="caption-2-semibold",e.caption2bold="caption-2-bold"})(It||(It={}));var nt=u(_()),g=u(R());var ut=u(_(),1),wt=e=>typeof e=="string"?(0,ut.unsafeCSS)(e):e,t=class{static create(o,n,i,a){let l=s=>wt(s??a),c=ut.css`var(${wt(o)}, ${l(a)})`;return c.name=o,c.description=n,c.category=i,c.defaultValue=a,c.defaultCssValue=l,c.get=s=>ut.css`var(${wt(o)}, ${l(s)})`,c.breadcrumb=()=>[],c.lastResortDefaultValue=()=>a,c}static extend(o,n,i,a){let l=s=>i.get(s??a),c=ut.css`var(${wt(o)}, ${l(a)})`;return c.name=o,c.description=n,c.category=i.category,c.fallbackVariable=i,c.defaultValue=a,c.defaultCssValue=l,c.get=s=>ut.css`var(${wt(o)}, ${l(s)})`,c.breadcrumb=()=>[i.name,...i.breadcrumb()],c.lastResortDefaultValue=()=>a??i.lastResortDefaultValue(),c}static external(o,n){let i=l=>o.fallbackVariable?o.fallbackVariable.get(l??o.defaultValue):wt(l??o.lastResortDefaultValue()),a=ut.css`var(${wt(o.name)}, ${i(o.defaultValue)})`;return a.name=o.name,a.category=o.category,a.fallbackVariable=o.fallbackVariable,a.defaultValue=o.defaultValue,a.context=n,a.defaultCssValue=i,a.get=l=>ut.css`var(${wt(o.name)}, ${i(l)})`,a.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>o.lastResortDefaultValue(),a}};var r={colorWhite:t.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:t.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:t.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:t.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:t.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:t.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:t.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:t.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:t.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:t.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:t.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:t.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:t.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:t.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:t.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:t.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:t.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:t.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:t.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:t.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:t.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:t.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:t.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:t.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:t.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:t.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:t.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:t.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:t.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:t.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:t.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:t.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:t.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:t.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:t.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:t.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:t.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:t.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:t.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:t.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:t.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:t.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:t.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:t.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:t.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:t.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:t.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:t.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:t.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:t.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:t.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:t.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:t.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:t.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:t.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:t.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:t.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:t.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:t.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:t.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:t.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:t.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:t.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:t.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:t.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:t.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:t.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:t.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:t.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:t.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:t.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:t.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:t.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:t.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:t.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:t.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:t.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:t.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:t.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:t.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:t.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:t.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:t.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:t.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:t.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:t.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:t.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:t.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:t.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:t.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:t.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:t.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:t.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:t.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:t.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:t.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:t.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:t.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:t.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:t.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:t.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:t.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:t.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:t.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:t.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:t.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:t.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:t.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:t.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:t.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:t.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:t.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:t.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:t.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:t.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:t.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:t.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:t.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:t.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:t.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:t.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:t.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:t.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:t.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:t.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:t.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:t.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:t.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:t.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:t.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:t.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:t.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:t.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:t.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:t.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:t.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:t.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:t.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:t.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:t.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:t.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:t.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:t.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:t.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:t.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:t.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:t.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:t.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:t.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:t.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:t.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:t.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:t.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:t.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:t.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:t.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:t.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:t.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:t.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:t.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:t.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:t.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:t.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:t.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:t.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:t.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:t.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:t.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:t.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:t.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:t.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:t.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:t.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:t.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:t.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:t.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:t.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:t.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:t.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:t.create("--ft-icon-size-6","","SIZE","48px"),opacity0:t.create("--ft-opacity-0","","NUMBER","0"),opacity8:t.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:t.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:t.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:t.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:t.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:t.create("--ft-shadow-elevation-01","","SHADOW","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)"),shadowElevation02:t.create("--ft-shadow-elevation-02","","SHADOW","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)"),shadowElevation03:t.create("--ft-shadow-elevation-03","","SHADOW","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)"),shadowElevation04:t.create("--ft-shadow-elevation-04","","SHADOW","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)"),shadowElevation06:t.create("--ft-shadow-elevation-06","","SHADOW","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)"),shadowElevation08:t.create("--ft-shadow-elevation-08","","SHADOW","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)"),shadowElevation12:t.create("--ft-shadow-elevation-12","","SHADOW","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)"),shadowElevation16:t.create("--ft-shadow-elevation-16","","SHADOW","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)"),shadowElevation24:t.create("--ft-shadow-elevation-24","","SHADOW","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)")},Mo={fontFamily:t.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:t.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-display-textCase","","UNKNOWN","none")},Fo={fontFamily:t.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:t.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},Vo={fontFamily:t.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:t.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},jo={fontFamily:t.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:t.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:t.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},Yo={fontFamily:t.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},Xo={fontFamily:t.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},qo={fontFamily:t.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Jo={fontFamily:t.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Qo={fontFamily:t.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},Qn={fontFamily:t.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:t.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:t.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},tr={fontFamily:t.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},er={fontFamily:t.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},or={fontFamily:t.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},rr={fontFamily:t.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},nr={fontFamily:t.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},ir={fontFamily:t.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},ar={fontFamily:t.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},lr={fontFamily:t.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},cr={fontFamily:t.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},pr={fontFamily:t.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},sr={fontFamily:t.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},dr={fontFamily:t.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},fr={fontFamily:t.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},gr={fontFamily:t.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},hr={fontFamily:t.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},yr={fontFamily:t.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},Ce={display:Mo,"title-1":Fo,"title-2":Vo,"title-3":jo,"body-1-regular":Yo,"body-1-medium":Xo,"body-1-semibold":qo,"body-2-regular":Jo,"body-2-medium":Qo,"body-2-medium-underline":Qn,"body-2-semibold":tr,"label-1-medium":er,"label-1-semibold":or,"label-1-bold":rr,"label-2-medium":nr,"label-2-semibold":ir,"label-2-bold":ar,"caption-1-medium":lr,"caption-1-semibold":cr,"caption-1-bold":pr,"caption-2-medium":sr,"caption-2-semibold":dr,"caption-2-bold":fr,"caption-3-medium":gr,"caption-3-semibold":hr,"caption-3-bold":yr};var p={backgroundActionPrimary:t.extend("--ft-background-action-primary","Used as backgorund of primary action components.",r.colorBrand0),backgroundErrorSubtle:t.extend("--ft-background-error-subtle","Used as background of subtle error components.",r.colorRed10),backgroundInfoSubtle:t.extend("--ft-background-info-subtle","Used as background of subtle information components.",r.colorCyan10),backgroundWarningSubtle:t.extend("--ft-background-warning-subtle","Used as background of subtle information components.",r.colorOrange10),backgroundSuccessSubtle:t.extend("--ft-background-success-subtle","Used as background of subtle success components.",r.colorGreen10),backgroundGlobalSurface:t.extend("--ft-background-global-surface","Used as app background.",r.colorWhite),backgroundGlobalOnSurface:t.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",r.colorGray10),backgroundGlobalOnSurfaceDark:t.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",r.colorGray30),contentActionPrimary:t.extend("--ft-content-action-primary","Used on label of primary action on light surface.",r.colorBrand0),contentWarningPrimary:t.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",r.colorOrange200),contentWarningIconOnly:t.extend("--ft-content-warning-icon-only","Used on warning status icons alone",r.colorOrange0),contentErrorPrimary:t.extend("--ft-content-error-primary","Used on label of error messages on light surface.",r.colorRed0),contentErrorIconOnly:t.extend("--ft-content-error-icon-only","Used on error status icons alone",r.colorRed70),contentInfoPrimary:t.extend("--ft-content-info-primary","Used on label of information messages on light surface.",r.colorCyan200),contentInfoIconOnly:t.extend("--ft-content-info-icon-only","Used on info status icons alone",r.colorCyan0),contentSuccessPrimary:t.extend("--ft-content-success-primary","Used on label of success messages on light surface.",r.colorGreen200),contentSuccessIconOnly:t.extend("--ft-content-success-icon-only","Used on success status icons alone",r.colorGreen0),contentGlobalPrimary:t.extend("--ft-content-global-primary","Used for main content on the page.",r.colorGray500),contentGlobalSecondary:t.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
127
+ Also for action icons.`,r.colorGray200),contentGlobalSubtle:t.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",r.colorGray0),contentGlobalOnColor:t.extend("--ft-content-global-on-color","Used for content on a dominant color.",r.colorWhite),borderActionPrimary:t.extend("--ft-border-action-primary","Used as border for primary action components.",r.colorBrand0),borderActionFocusRing:t.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",r.colorCyan0),borderWarningPrimary:t.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",r.colorOrange200),borderWarningSubtle:t.extend("--ft-border-warning-subtle","Used as border for warning components.",r.colorOrange30),borderSuccessPrimary:t.extend("--ft-border-success-primary","Used as border for success buttons.",r.colorGreen200),borderSuccessSubtle:t.extend("--ft-border-success-subtle","Used as border for success components.",r.colorGreen30),borderErrorPrimary:t.extend("--ft-border-error-primary","Used as border for text fields in error states.",r.colorRed0),borderErrorSubtle:t.extend("--ft-border-error-subtle","Used as border for error components.",r.colorRed30),borderInfoPrimary:t.extend("--ft-border-info-primary","Used as border for buttons in info color.",r.colorCyan200),borderInfoSubtle:t.extend("--ft-border-info-subtle","Used as border for information components.",r.colorCyan30),borderGlobalPrimary:t.extend("--ft-border-global-primary","Used as border for element like input.",r.colorGray50),borderGlobalSubtle:t.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",r.colorGray30),borderInputPrimary:t.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",r.colorGray80)};var y={largeHeight:t.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:t.extend("--ft-button-large-horizontal-padding","",r.spacing4),largeGap:t.extend("--ft-button-large-gap","",r.spacing2),largeBorderRadius:t.extend("--ft-button-large-border-radius","",r.borderRadiusS),largeIconSize:t.extend("--ft-button-large-icon-size","",r.iconSize3),largeBorderWidth:t.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:t.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:t.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:t.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:t.extend("--ft-button-small-horizontal-padding","",r.spacing3),smallGap:t.extend("--ft-button-small-gap","",r.spacing2),smallBorderRadius:t.extend("--ft-button-small-border-radius","",r.borderRadiusS),smallIconSize:t.extend("--ft-button-small-icon-size","",r.iconSize2),smallBorderWidth:t.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:t.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:t.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:t.extend("--ft-button-primary-background-color","",p.backgroundActionPrimary),primaryColor:t.extend("--ft-button-primary-color","",p.contentGlobalOnColor),primaryIconColor:t.extend("--ft-button-primary-icon-color","",p.contentGlobalOnColor),primaryStateLayerColor:t.extend("--ft-button-primary-state-layer-color","",p.contentGlobalOnColor),primaryHoverStateLayerOpacity:t.extend("--ft-button-primary-hover-state-layer-opacity","",r.opacity16),primaryFocusStateLayerOpacity:t.extend("--ft-button-primary-focus-state-layer-opacity","",r.opacity16),primaryActiveStateLayerOpacity:t.extend("--ft-button-primary-active-state-layer-opacity","",r.opacity24),primaryDisabledComponentOpacity:t.extend("--ft-button-primary-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-button-focus-focus-ring-color","",p.borderActionFocusRing),tertiaryBackgroundColor:t.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:t.extend("--ft-button-tertiary-color","",p.contentActionPrimary),tertiaryIconColor:t.extend("--ft-button-tertiary-icon-color","",p.contentActionPrimary),tertiaryStateLayerColor:t.extend("--ft-button-tertiary-state-layer-color","",p.contentActionPrimary),tertiaryHoverStateLayerOpacity:t.extend("--ft-button-tertiary-hover-state-layer-opacity","",r.opacity8),tertiaryFocusStateLayerOpacity:t.extend("--ft-button-tertiary-focus-state-layer-opacity","",r.opacity8),tertiaryActiveStateLayerOpacity:t.extend("--ft-button-tertiary-active-state-layer-opacity","",r.opacity16),tertiaryDisabledComponentOpacity:t.extend("--ft-button-tertiary-disabled-component-opacity","",r.opacity40),secondaryBackgroundColor:t.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:t.extend("--ft-button-secondary-color","",p.contentActionPrimary),secondaryIconColor:t.extend("--ft-button-secondary-icon-color","",p.contentActionPrimary),secondaryStateLayerColor:t.extend("--ft-button-secondary-state-layer-color","",p.contentActionPrimary),secondaryHoverStateLayerOpacity:t.extend("--ft-button-secondary-hover-state-layer-opacity","",r.opacity8),secondaryFocusStateLayerOpacity:t.extend("--ft-button-secondary-focus-state-layer-opacity","",r.opacity8),secondaryActiveStateLayerOpacity:t.extend("--ft-button-secondary-active-state-layer-opacity","",r.opacity16),secondaryDisabledComponentOpacity:t.extend("--ft-button-secondary-disabled-component-opacity","",r.opacity40),secondaryBorderColor:t.extend("--ft-button-secondary-border-color","",p.borderActionPrimary),neutralBackgroundColor:t.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:t.extend("--ft-button-neutral-icon-color","",p.contentGlobalSecondary),neutralColor:t.extend("--ft-button-neutral-color","",p.contentGlobalSecondary),neutralStateLayerColor:t.extend("--ft-button-neutral-state-layer-color","",p.contentGlobalSecondary),neutralHoverStateLayerOpacity:t.extend("--ft-button-neutral-hover-state-layer-opacity","",r.opacity8),neutralFocusStateLayerOpacity:t.extend("--ft-button-neutral-focus-state-layer-opacity","",r.opacity8),neutralActiveStateLayerOpacity:t.extend("--ft-button-neutral-active-state-layer-opacity","",r.opacity16),neutralDisabledComponentOpacity:t.extend("--ft-button-neutral-disabled-component-opacity","",r.opacity40)};var Qi={iconSize:t.extend("--ft-banner-icon-size","",r.iconSize5),borderWidth:t.create("--ft-banner-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-banner-horizontal-padding","",r.spacing6),verticalPadding:t.extend("--ft-banner-vertical-padding","",r.spacing6),horizontalSideGap:t.extend("--ft-banner-horizontal-side-gap","",r.spacing6),horizontalMobileGap:t.extend("--ft-banner-horizontal-mobile-gap","",r.spacing4),verticalMobileGap:t.extend("--ft-banner-vertical-mobile-gap","",r.spacing6),horizontalMiddleGap:t.extend("--ft-banner-horizontal-middle-gap","",r.spacing20),infoBackgroundColor:t.extend("--ft-banner-info-background-color","",p.backgroundInfoSubtle),infoColor:t.extend("--ft-banner-info-color","",p.contentInfoPrimary),infoIconColor:t.extend("--ft-banner-info-icon-color","",p.contentInfoIconOnly)};var na={horizontalGap:t.extend("--ft-breadcrumb-horizontal-gap","",r.spacing1),verticalGap:t.extend("--ft-breadcrumb-vertical-gap","",r.spacing2),currentElementColor:t.extend("--ft-breadcrumb-current-element-color","",p.contentGlobalPrimary),iconColor:t.extend("--ft-breadcrumb-icon-color","",p.contentGlobalSubtle)};var pa={horizontalPadding:t.extend("--ft-page-header-horizontal-padding","",r.spacing12),horizontalGap:t.extend("--ft-page-header-horizontal-gap","",r.spacing4),verticalGap:t.extend("--ft-page-header-vertical-gap","",r.spacing2),classicVerticalPadding:t.extend("--ft-page-header-classic-vertical-padding","",r.spacing6),multilineVerticalPadding:t.extend("--ft-page-header-multiline-vertical-padding","",r.spacing4),inlineVerticalPadding:t.extend("--ft-page-header-inline-vertical-padding","",r.spacing2),backgroundColor:t.extend("--ft-page-header-background-color","",r.colorWhite),bottomBorderColor:t.extend("--ft-page-header-bottom-border-color","",p.borderGlobalSubtle),titleColor:t.extend("--ft-page-header-title-color","",p.contentGlobalPrimary),subtitleColor:t.extend("--ft-page-header-subtitle-color","",p.contentGlobalSecondary)};var ha={smallContainerWidth:t.create("--ft-modal-small-container-width","","SIZE","600px"),largeContainerWidth:t.create("--ft-modal-large-container-width","","SIZE","900px"),overlayBackgroundColor:t.extend("--ft-modal-overlay-background-color","",r.colorGray700),overlayOpacity:t.extend("--ft-modal-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-modal-shadow","",r.shadowElevation03),bodyBackgroundColor:t.extend("--ft-modal-body-background-color","",r.colorWhite),bodyColor:t.extend("--ft-modal-body-color","",p.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-modal-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-modal-body-vertical-padding","",r.spacing6),bodyVerticalGap:t.extend("--ft-modal-body-vertical-gap","",r.spacing6),containerMargin:t.extend("--ft-modal-container-margin","",r.spacing3),headerBackgroundColor:t.extend("--ft-modal-header-background-color","",p.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-modal-header-border-color","",p.borderGlobalSubtle),headerColor:t.extend("--ft-modal-header-color","",p.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-modal-header-trailing-icon-color","",p.contentGlobalSecondary),headerVerticalPadding:t.extend("--ft-modal-header-vertical-padding","",r.spacing1),headerRightPadding:t.extend("--ft-modal-header-right-padding","",r.spacing1),headerLeftPadding:t.extend("--ft-modal-header-left-padding","",r.spacing6),headerGap:t.extend("--ft-modal-header-gap","",r.spacing2),headerBorderBottom:t.create("--ft-modal-header-border-bottom","","SIZE","1px"),borderRadius:t.extend("--ft-modal-border-radius","",r.borderRadiusM)};var xa={overlayOpacity:t.extend("--ft-drawer-overlay-opacity","",r.opacity40),shadow:t.extend("--ft-drawer-shadow","",r.shadowElevation03),bodyColor:t.extend("--ft-drawer-body-color","",p.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-drawer-body-horizontal-padding","",r.spacing6),bodyVerticalPadding:t.extend("--ft-drawer-body-vertical-padding","",r.spacing6),bodyGap:t.extend("--ft-drawer-body-gap","",r.spacing6),bodyBackgroundColor:t.extend("--ft-drawer-body-background-color","",r.colorWhite),headerBackgroundColor:t.extend("--ft-drawer-header-background-color","",p.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-drawer-header-border-color","",p.borderGlobalSubtle),headerColor:t.extend("--ft-drawer-header-color","",p.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-drawer-header-trailing-icon-color","",p.contentGlobalSecondary),headerHeight:t.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:t.extend("--ft-drawer-header-horizontal-padding","",r.spacing2),headerBorderWidth:t.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:t.extend("--ft-drawer-header-gap","",r.spacing3),buttonsBarBackgroundColor:t.extend("--ft-drawer-buttons-bar-background-color","",p.backgroundGlobalOnSurface),buttonsBarBorderColor:t.extend("--ft-drawer-buttons-bar-border-color","",p.borderGlobalSubtle),buttonsBarColor:t.extend("--ft-drawer-buttons-bar-color","",p.contentGlobalPrimary),buttonsBarHorizontalPadding:t.extend("--ft-drawer-buttons-bar-horizontal-padding","",r.spacing4),buttonsBarVerticalPadding:t.extend("--ft-drawer-buttons-bar-vertical-padding","",r.spacing4),buttonsBarGap:t.extend("--ft-drawer-buttons-bar-gap","",r.spacing3),buttonsBarBorderWidth:t.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),containerWidth:t.create("--ft-drawer-container-width","","SIZE","66%"),containerMinWidth:t.create("--ft-drawer-container-min-width","","SIZE","500px"),containerMaxWidth:t.create("--ft-drawer-container-max-width","","SIZE","1000px"),containerHeight:t.create("--ft-drawer-container-height","","SIZE","100%"),overlayBackgroundColor:t.extend("--ft-drawer-overlay-background-color","",r.colorGray700)};var Na={fieldHorizontalPadding:t.extend("--ft-text-input-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-input-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-input-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-text-input-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-text-input-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-input-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-input-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-input-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-text-input-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-input-content-value-color","",p.contentGlobalPrimary),trailingIconColor:t.extend("--ft-text-input-trailing-icon-color","",p.contentGlobalSubtle),labelColor:t.extend("--ft-text-input-label-color","",p.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-input-default-border-color","",p.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-input-default-helper-text-color","",p.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-input-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-input-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-input-error-border-color","",p.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-input-error-helper-text-color","",p.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-input-error-helper-icon-color","",p.contentErrorIconOnly),warningBorderWidth:t.create("--ft-text-input-warning-border-width","","SIZE","2px"),focusOutlineWidth:t.create("--ft-text-input-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-text-input-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineOffset:t.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-input-disabled-component-opacity","",r.opacity40)};var La={backgroundColor:t.extend("--ft-text-area-background-color","",r.colorWhite),contentValueColor:t.extend("--ft-text-area-content-value-color","",p.contentGlobalPrimary),labelColor:t.extend("--ft-text-area-label-color","",p.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-area-default-border-color","",p.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-area-default-helper-text-color","",p.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-area-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-area-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-area-error-border-color","",p.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-area-error-helper-text-color","",p.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-area-error-helper-icon-color","",p.contentErrorIconOnly),focusFocusRingColor:t.extend("--ft-text-area-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineWidth:t.create("--ft-text-area-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-area-disabled-component-opacity","",r.opacity40),fieldHorizontalLeftPadding:t.extend("--ft-text-area-field-horizontal-left-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-text-area-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-text-area-field-vertical-gap","",r.spacing05),fieldMinHeight:t.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:t.extend("--ft-text-area-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-text-area-helper-horizontal-gap","",r.spacing1),helperIconSize:t.extend("--ft-text-area-helper-icon-size","",r.iconSize2),borderRadius:t.extend("--ft-text-area-border-radius","",r.borderRadiusM)};var Ba={height:t.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:t.extend("--ft-floating-menu-horizontal-padding","",r.spacing4),offIconColor:t.extend("--ft-floating-menu-off-icon-color","",p.contentGlobalPrimary),offColor:t.extend("--ft-floating-menu-off-color","",p.contentGlobalPrimary),onColor:t.extend("--ft-floating-menu-on-color","",p.contentActionPrimary),onStateLayerColor:t.extend("--ft-floating-menu-on-state-layer-color","",p.contentActionPrimary),gap:t.extend("--ft-floating-menu-gap","",r.spacing3),focusFocusRingColor:t.extend("--ft-floating-menu-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineWidth:t.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:t.extend("--ft-floating-menu-focus-state-layer-opacity","",r.opacity8),hoverStateLayerOpacity:t.extend("--ft-floating-menu-hover-state-layer-opacity","",r.opacity8),activeStateLayerOpacity:t.extend("--ft-floating-menu-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-floating-menu-disabled-component-opacity","",r.opacity40),iconSize:t.extend("--ft-floating-menu-icon-size","",r.iconSize3),backgroundColor:t.extend("--ft-floating-menu-background-color","",p.backgroundGlobalOnSurface)};var _a={fieldHorizontalPadding:t.extend("--ft-combobox-single-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-single-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-single-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-single-select-field-icon-size","",r.iconSize3),fieldHeight:t.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-combobox-single-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-single-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-single-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-single-select-helper-icon-size","",r.iconSize2),menuVerticalGap:t.extend("--ft-combobox-single-select-menu-vertical-gap","",r.spacing2),borderRadius:t.extend("--ft-combobox-single-select-border-radius","",r.borderRadiusM),backgroundColor:t.extend("--ft-combobox-single-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-single-select-label-color","",p.contentGlobalSubtle),contentValueColor:t.extend("--ft-combobox-single-select-content-value-color","",p.contentGlobalPrimary),trailingIconColor:t.extend("--ft-combobox-single-select-trailing-icon-color","",p.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-single-select-default-border-color","",p.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-single-select-default-helper-text-color","",p.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-combobox-single-select-error-border-color","",p.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-single-select-error-helper-text-color","",p.contentErrorPrimary),warningBorderWidth:t.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-single-select-warning-border-color","",p.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-single-select-warning-helper-text-color","",p.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-single-select-warning-helper-icon-color","",p.contentWarningIconOnly),focusOutlineWidth:t.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-single-select-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineOffset:t.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-single-select-disabled-component-opacity","",r.opacity40)};var Ka={backgroundColor:t.extend("--ft-combobox-multi-select-background-color","",r.colorWhite),labelColor:t.extend("--ft-combobox-multi-select-label-color","",p.contentGlobalSubtle),trailingIconColor:t.extend("--ft-combobox-multi-select-trailing-icon-color","",p.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-multi-select-default-border-color","",p.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-multi-select-default-helper-text-color","",p.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:t.extend("--ft-combobox-multi-select-error-border-color","",p.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-multi-select-error-helper-text-color","",p.contentErrorPrimary),errorHelperIcon:t.extend("--ft-combobox-multi-select-error-helper-icon","",p.contentErrorIconOnly),errorBorderWidth:t.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-multi-select-warning-border-color","",p.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-multi-select-warning-helper-text-color","",p.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-multi-select-warning-helper-icon-color","",p.contentWarningIconOnly),warningBorderWidth:t.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-multi-select-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineWidth:t.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-multi-select-disabled-component-opacity","",r.opacity40),helperHorizontalPadding:t.extend("--ft-combobox-multi-select-helper-horizontal-padding","",r.spacing4),helperHorizontalGap:t.extend("--ft-combobox-multi-select-helper-horizontal-gap","",r.spacing1),helperVerticalGap:t.extend("--ft-combobox-multi-select-helper-vertical-gap","",r.spacing1),helperIconSize:t.extend("--ft-combobox-multi-select-helper-icon-size","",r.iconSize2),fieldHorizontalPadding:t.extend("--ft-combobox-multi-select-field-horizontal-padding","",r.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-multi-select-field-horizontal-gap","",r.spacing3),fieldVerticalGap:t.extend("--ft-combobox-multi-select-field-vertical-gap","",r.spacing05),fieldIconSize:t.extend("--ft-combobox-multi-select-field-icon-size","",r.iconSize3),fieldMaxHeight:t.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:t.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",r.spacing1),contentValuesVerticalGap:t.extend("--ft-combobox-multi-select-content-values-vertical-gap","",r.spacing1),borderRadius:t.extend("--ft-combobox-multi-select-border-radius","",r.borderRadiusM)};var Ya={backgroundColor:t.extend("--ft-popover-background-color","",p.backgroundGlobalOnSurface),horizontalPadding:t.extend("--ft-popover-horizontal-padding","",r.spacing6),verticalPadding:t.extend("--ft-popover-vertical-padding","",r.spacing6),iconColor:t.extend("--ft-popover-icon-color","",p.contentGlobalSecondary),iconSize:t.extend("--ft-popover-icon-size","",r.iconSize2),titleColor:t.extend("--ft-popover-title-color","",p.contentGlobalPrimary),bodyColor:t.extend("--ft-popover-body-color","",p.contentGlobalSecondary),linkColor:t.extend("--ft-popover-link-color","",p.contentActionPrimary),gap:t.extend("--ft-popover-gap","",r.spacing3),borderRadius:t.extend("--ft-popover-border-radius","",r.borderRadiusM),shadow:t.extend("--ft-popover-shadow","",r.shadowElevation02)};var tl={topLeftBorderRadius:t.extend("--ft-tabs-top-left-border-radius","",r.borderRadiusS),topRightBorderRadius:t.extend("--ft-tabs-top-right-border-radius","",r.borderRadiusS),labelHorizontalPadding:t.extend("--ft-tabs-label-horizontal-padding","",r.spacing4),labelVerticalPadding:t.extend("--ft-tabs-label-vertical-padding","",r.spacing3),labelGap:t.extend("--ft-tabs-label-gap","",r.spacing1),offHoverStateLayerOpacity:t.extend("--ft-tabs-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:t.extend("--ft-tabs-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:t.extend("--ft-tabs-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:t.extend("--ft-tabs-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-tabs-off-color","",p.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-tabs-off-state-layer-color","",p.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-tabs-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-tabs-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:t.extend("--ft-tabs-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:t.extend("--ft-tabs-on-disabled-component-opacity","",r.opacity40),onColor:t.extend("--ft-tabs-on-color","",p.contentActionPrimary),onStateLayerColor:t.extend("--ft-tabs-on-state-layer-color","",p.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-tabs-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:t.extend("--ft-tabs-icon-vertical-padding","",r.spacing4),focusOutlineWidth:t.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-tabs-focus-focus-ring-color","",p.borderActionFocusRing)};var il={hoverStateLayerOpacity:t.extend("--ft-collapsible-hover-state-layer-opacity","",r.opacity8),focusStateLayerOpacity:t.extend("--ft-collapsible-focus-state-layer-opacity","",r.opacity8),focusOutlineWidth:t.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:t.extend("--ft-collapsible-focus-focus-ring-color","",p.borderActionFocusRing),activeStateLayerOpacity:t.extend("--ft-collapsible-active-state-layer-opacity","",r.opacity16),disabledComponentOpacity:t.extend("--ft-collapsible-disabled-component-opacity","",r.opacity40),horizontalPadding:t.extend("--ft-collapsible-horizontal-padding","",r.spacing4),verticalPadding:t.extend("--ft-collapsible-vertical-padding","",r.spacing3),color:t.extend("--ft-collapsible-color","",p.contentGlobalPrimary),stateLayerColor:t.extend("--ft-collapsible-state-layer-color","",p.contentGlobalPrimary),backgroundColor:t.extend("--ft-collapsible-background-color","",p.backgroundGlobalOnSurface),borderColor:t.extend("--ft-collapsible-border-color","",p.borderGlobalSubtle),iconSize:t.extend("--ft-collapsible-icon-size","",r.iconSize3)};var sl={groupHorizontalPadding:t.extend("--ft-switch-group-horizontal-padding","",r.spacing1),groupVerticalPadding:t.extend("--ft-switch-group-vertical-padding","",r.spacing1),groupGap:t.extend("--ft-switch-group-gap","",r.spacing1),groupBackgroundColor:t.extend("--ft-switch-group-background-color","",p.backgroundGlobalSurface),groupBorderColor:t.extend("--ft-switch-group-border-color","",p.borderGlobalSubtle),groupBorderRadius:t.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:t.extend("--ft-switch-label-horizontal-padding","",r.spacing2),labelVerticalPadding:t.extend("--ft-switch-label-vertical-padding","",r.spacing1),offHoverStateLayerOpacity:t.extend("--ft-switch-off-hover-state-layer-opacity","",r.opacity8),offFocusStateLayerOpacity:t.extend("--ft-switch-off-focus-state-layer-opacity","",r.opacity8),offActiveStateLayerOpacity:t.extend("--ft-switch-off-active-state-layer-opacity","",r.opacity16),offDisabledComponentOpacity:t.extend("--ft-switch-off-disabled-component-opacity","",r.opacity40),offColor:t.extend("--ft-switch-off-color","",p.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-switch-off-state-layer-color","",p.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-switch-on-hover-state-layer-opacity","",r.opacity8),onFocusStateLayerOpacity:t.extend("--ft-switch-on-focus-state-layer-opacity","",r.opacity8),onActiveStateLayerOpacity:t.extend("--ft-switch-on-active-state-layer-opacity","",r.opacity16),onDisabledComponentOpacity:t.extend("--ft-switch-on-disabled-component-opacity","",r.opacity40),onColor:t.extend("--ft-switch-on-color","",p.contentActionPrimary),onStateLayerColor:t.extend("--ft-switch-on-state-layer-color","",p.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-switch-icon-horizontal-padding","",r.spacing1),iconVerticalPadding:t.extend("--ft-switch-icon-vertical-padding","",r.spacing1),focusOutlineWidth:t.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-switch-focus-focus-ring-color","",p.borderActionFocusRing),optionBorderRadius:t.extend("--ft-switch-option-border-radius","",r.borderRadiusS)};var hl={color1Light:t.extend("--ft-chart-1-light","for area color charts",r.colorBrand40),color1Base:t.extend("--ft-chart-1-base","for line charts",r.colorBrand0),color2Light:t.extend("--ft-chart-2-light","for area color charts",r.colorYellow60),color2Base:t.extend("--ft-chart-2-base","for line charts",r.colorYellow100),color3Light:t.extend("--ft-chart-3-light","",r.colorUltramarine40),color3Base:t.extend("--ft-chart-3-base","",r.colorUltramarine70),color4Light:t.extend("--ft-chart-4-light","",r.colorCyan50),color4Base:t.extend("--ft-chart-4-base","",r.colorCyan100),color5Light:t.extend("--ft-chart-5-light","",r.colorRed40),color5Base:t.extend("--ft-chart-5-base","",r.colorRed60),color6Light:t.extend("--ft-chart-6-light","",r.colorGreen40),color6Base:t.extend("--ft-chart-6-base","",r.colorGreen70),color7Light:t.extend("--ft-chart-7-light","",r.colorOrange70),color7Base:t.extend("--ft-chart-7-base","",r.colorOrange100),color8Light:t.extend("--ft-chart-8-light","",r.colorAvocado70),color8Base:t.extend("--ft-chart-8-base","",r.colorAvocado200),color9Light:t.extend("--ft-chart-9-light","",r.colorBrown50),color9Base:t.extend("--ft-chart-9-base","",r.colorBrown200),color10Light:t.extend("--ft-chart-10-light","",r.colorGray50),color10Base:t.extend("--ft-chart-10-base","",r.colorGray80),monochrome10:t.extend("--ft-chart-monochrome-10","",r.colorBrand10),monochrome20:t.extend("--ft-chart-monochrome-20","",r.colorBrand20),monochrome30:t.extend("--ft-chart-monochrome-30","",r.colorBrand40),monochrome40:t.extend("--ft-chart-monochrome-40","",r.colorBrand60),monochrome50:t.extend("--ft-chart-monochrome-50","",r.colorBrand0),monochrome60:t.extend("--ft-chart-monochrome-60","",r.colorBrand200)};var xl={largeHorizontalPadding:t.extend("--ft-chip-large-horizontal-padding","",r.spacing4),largeVerticalPadding:t.extend("--ft-chip-large-vertical-padding","",r.spacing2),largeGap:t.extend("--ft-chip-large-gap","",r.spacing1),largeFocusOutlineOffset:t.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:t.extend("--ft-chip-large-border-radius","",r.borderRadiusPill),largeBorderWidth:t.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-large-icon-size","",r.iconSize3),mediumHorizontalPadding:t.extend("--ft-chip-medium-horizontal-padding","",r.spacing3),mediumVerticalPadding:t.extend("--ft-chip-medium-vertical-padding","",r.spacing1),mediumGap:t.extend("--ft-chip-medium-gap","",r.spacing1),mediumFocusOutlineOffset:t.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:t.extend("--ft-chip-medium-border-radius","",r.borderRadiusPill),mediumBorderWidth:t.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-medium-icon-size","",r.iconSize2),smallHorizontalPadding:t.extend("--ft-chip-small-horizontal-padding","",r.spacing2),smallVerticalPadding:t.extend("--ft-chip-small-vertical-padding","",r.spacing05),smallGap:t.extend("--ft-chip-small-gap","",r.spacing1),smallFocusOutlineOffset:t.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:t.extend("--ft-chip-small-border-radius","",r.borderRadiusPill),smallBorderWidth:t.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:t.extend("--ft-chip-small-icon-size","",r.iconSize1),neutralBackgroundColor:t.extend("--ft-chip-neutral-background-color","",p.backgroundGlobalOnSurface),neutralColor:t.extend("--ft-chip-neutral-color","",p.contentGlobalPrimary),neutralIconColor:t.extend("--ft-chip-neutral-icon-color","",p.contentGlobalPrimary),neutralBorderColor:t.extend("--ft-chip-neutral-border-color","",p.borderGlobalSubtle),infoBackgroundColor:t.extend("--ft-chip-info-background-color","",p.backgroundInfoSubtle),infoColor:t.extend("--ft-chip-info-color","",p.contentInfoPrimary),infoIconColor:t.extend("--ft-chip-info-icon-color","",p.contentInfoIconOnly),infoBorderColor:t.extend("--ft-chip-info-border-color","",p.borderInfoSubtle),successBackgroundColor:t.extend("--ft-chip-success-background-color","",p.backgroundSuccessSubtle),successColor:t.extend("--ft-chip-success-color","",p.contentSuccessPrimary),successIconColor:t.extend("--ft-chip-success-icon-color","",p.contentSuccessIconOnly),successBorderColor:t.extend("--ft-chip-success-border-color","",p.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-chip-warning-background-color","",p.backgroundWarningSubtle),warningColor:t.extend("--ft-chip-warning-color","",p.contentWarningPrimary),warningIconColor:t.extend("--ft-chip-warning-icon-color","",p.contentWarningIconOnly),warningBorderColor:t.extend("--ft-chip-warning-border-color","",p.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-chip-error-background-color","",p.backgroundErrorSubtle),errorColor:t.extend("--ft-chip-error-color","",p.contentErrorPrimary),errorIconColor:t.extend("--ft-chip-error-icon-color","",p.contentErrorIconOnly),errorBorderColor:t.extend("--ft-chip-error-border-color","",p.borderErrorSubtle)};var Cl={infoBorderColor:t.extend("--ft-border-info-border-color","",p.borderInfoSubtle)};var Al={borderWidth:t.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-notice-horizontal-padding","",r.spacing2),verticalPadding:t.extend("--ft-notice-vertical-padding","",r.spacing1),borderRadius:t.extend("--ft-notice-border-radius","",r.borderRadiusS),gap:t.extend("--ft-notice-gap","",r.spacing2),iconSize:t.extend("--ft-notice-icon-size","",r.iconSize3),infoBackgroundColor:t.extend("--ft-notice-info-background-color","",p.backgroundInfoSubtle),infoBorderColor:t.extend("--ft-notice-info-border-color","",p.borderInfoSubtle),infoColor:t.extend("--ft-notice-info-color","",p.contentInfoPrimary),infoIconColor:t.extend("--ft-notice-info-icon-color","",p.contentInfoIconOnly),warningBackgroundColor:t.extend("--ft-notice-warning-background-color","",p.backgroundWarningSubtle),warningBorderColor:t.extend("--ft-notice-warning-border-color","",p.borderWarningSubtle),warningColor:t.extend("--ft-notice-warning-color","",p.contentWarningPrimary),warningIconColor:t.extend("--ft-notice-warning-icon-color","",p.contentWarningIconOnly),errorBackgroundColor:t.extend("--ft-notice-error-background-color","",p.backgroundErrorSubtle),errorBorderColor:t.extend("--ft-notice-error-border-color","",p.borderErrorSubtle),errorColor:t.extend("--ft-notice-error-color","",p.contentErrorPrimary),errorIconColor:t.extend("--ft-notice-error-icon-color","",p.contentErrorIconOnly),successBackgroundColor:t.extend("--ft-notice-success-background-color","",p.backgroundSuccessSubtle),successBorderColor:t.extend("--ft-notice-success-border-color","",p.borderSuccessSubtle),successColor:t.extend("--ft-notice-success-color","",p.contentSuccessPrimary),successIconColor:t.extend("--ft-notice-success-icon-color","",p.contentSuccessIconOnly)};var Il={color:t.extend("--ft-checkbox-color","",p.contentGlobalPrimary),checkedBackgroundColor:t.extend("--ft-checkbox-checked-background-color","",p.contentActionPrimary),checkedStateLayerColor:t.extend("--ft-checkbox-checked-state-layer-color","",p.contentActionPrimary),checkedIconColor:t.extend("--ft-checkbox-checked-icon-color","",p.contentGlobalOnColor),checkedHoverStateLayerOpacity:t.extend("--ft-checkbox-checked-hover-state-layer-opacity","",r.opacity16),checkedFocusStateLayerOpacity:t.extend("--ft-checkbox-checked-focus-state-layer-opacity","",r.opacity16),checkedActiveStateLayerOpacity:t.extend("--ft-checkbox-checked-active-state-layer-opacity","",r.opacity24),checkedDisabledComponentOpacity:t.extend("--ft-checkbox-checked-disabled-component-opacity","",r.opacity40),uncheckedBorderColor:t.extend("--ft-checkbox-unchecked-border-color","",r.colorGray80),uncheckedStateLayerColor:t.extend("--ft-checkbox-unchecked-state-layer-color","",r.colorGray80),uncheckedHoverStateLayerOpacity:t.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",r.opacity16),uncheckedFocusStateLayerOpacity:t.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",r.opacity16),uncheckedActiveStateLayerOpacity:t.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",r.opacity24),uncheckedDisabledComponentOpacity:t.extend("--ft-checkbox-unchecked-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-checkbox-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineOffset:t.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-checkbox-gap","",r.spacing3)};var Hl={offHoverStateLayerOpacity:t.extend("--ft-toggle-off-hover-state-layer-opacity","",r.opacity16),offFocusStateLayerOpacity:t.extend("--ft-toggle-off-focus-state-layer-opacity","",r.opacity16),offActiveStateLayerOpacity:t.extend("--ft-toggle-off-active-state-layer-opacity","",r.opacity24),offDisabledComponentOpacity:t.extend("--ft-toggle-off-disabled-component-opacity","",r.opacity40),offBackgroundColor:t.extend("--ft-toggle-off-background-color","",p.contentGlobalSubtle),offIconColor:t.extend("--ft-toggle-off-icon-color","",p.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-toggle-off-state-layer-color","",p.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-toggle-on-hover-state-layer-opacity","",r.opacity16),onFocusStateLayerOpacity:t.extend("--ft-toggle-on-focus-state-layer-opacity","",r.opacity16),onActiveStateLayerOpacity:t.extend("--ft-toggle-on-active-state-layer-opacity","",r.opacity24),onDisabledComponentOpacity:t.extend("--ft-toggle-on-disabled-component-opacity","",r.opacity40),onBackgroundColor:t.extend("--ft-toggle-on-background-color","",p.contentActionPrimary),onStateLayerColor:t.extend("--ft-toggle-on-state-layer-color","",p.contentActionPrimary),onIconColor:t.extend("--ft-toggle-on-icon-color","",p.contentActionPrimary),color:t.extend("--ft-toggle-color","",p.contentGlobalPrimary),focusFocusRingColor:t.extend("--ft-toggle-focus-focus-ring-color","",p.borderActionFocusRing),gap:t.extend("--ft-toggle-gap","",r.spacing3)};var Zl={color:t.extend("--ft-radio-color","",p.contentGlobalPrimary),selectedRadioColor:t.extend("--ft-radio-selected-radio-color","",p.contentActionPrimary),selectedStateLayerColor:t.extend("--ft-radio-selected-state-layer-color","",p.contentActionPrimary),selectedHoverStateLayerOpacity:t.extend("--ft-radio-selected-hover-state-layer-opacity","",r.opacity16),selectedFocusStateLayerOpacity:t.extend("--ft-radio-selected-focus-state-layer-opacity","",r.opacity16),selectedActiveStateLayerOpacity:t.extend("--ft-radio-selected-active-state-layer-opacity","",r.opacity24),selectedDisabledComponentOpacity:t.extend("--ft-radio-selected-disabled-component-opacity","",r.opacity40),unselectedStateLayerColor:t.extend("--ft-radio-unselected-state-layer-color","",p.borderInputPrimary),unselectedBorderColor:t.extend("--ft-radio-unselected-border-color","",p.borderInputPrimary),unselectedHoverStateLayerOpacity:t.extend("--ft-radio-unselected-hover-state-layer-opacity","",r.opacity16),unselectedFocusStateLayerOpacity:t.extend("--ft-radio-unselected-focus-state-layer-opacity","",r.opacity16),unselectedActiveStateLayerOpacity:t.extend("--ft-radio-unselected-active-state-layer-opacity","",r.opacity24),unselectedDisabledComponentOpacity:t.extend("--ft-radio-unselected-disabled-component-opacity","",r.opacity40),focusFocusRingColor:t.extend("--ft-radio-focus-focus-ring-color","",p.borderActionFocusRing),focusOutlineOffset:t.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-radio-gap","",r.spacing3)};var jl={iconSize:t.extend("--ft-notification-icon-size","",r.iconSize4),horizontalPadding:t.extend("--ft-notification-horizontal-padding","",r.spacing4),verticalPadding:t.extend("--ft-notification-vertical-padding","",r.spacing4),infoBackgroundColor:t.extend("--ft-notification-info-background-color","",p.backgroundInfoSubtle),infoColor:t.extend("--ft-notification-info-color","",p.contentInfoPrimary),infoIconColor:t.extend("--ft-notification-info-icon-color","",p.contentInfoIconOnly),infoBorderColor:t.extend("--ft-notification-info-border-color","",p.borderInfoSubtle),successBackgroundColor:t.extend("--ft-notification-success-background-color","",p.backgroundSuccessSubtle),successColor:t.extend("--ft-notification-success-color","",p.contentSuccessPrimary),successIconColor:t.extend("--ft-notification-success-icon-color","",p.contentSuccessIconOnly),successBorderColor:t.extend("--ft-notification-success-border-color","",p.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-notification-warning-background-color","",p.backgroundWarningSubtle),warningColor:t.extend("--ft-notification-warning-color","",p.contentWarningPrimary),warningIconColor:t.extend("--ft-notification-warning-icon-color","",p.contentWarningIconOnly),warningBorderColor:t.extend("--ft-notification-warning-border-color","",p.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-notification-error-background-color","",p.backgroundErrorSubtle),errorColor:t.extend("--ft-notification-error-color","",p.contentErrorPrimary),errorIconColor:t.extend("--ft-notification-error-icon-color","",p.contentErrorIconOnly),errorBorderColor:t.extend("--ft-notification-error-border-color","",p.borderErrorSubtle),borderRadius:t.extend("--ft-notification-border-radius","",r.borderRadiusPill),borderWidth:t.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:t.extend("--ft-notification-leading-gap","",r.spacing2),trailingGap:t.extend("--ft-notification-trailing-gap","",r.spacing8)};var Ql={horizontalPadding:t.extend("--ft-tooltip-horizontal-padding","",r.spacing2),verticalPadding:t.extend("--ft-tooltip-vertical-padding","",r.spacing2),borderRadius:t.extend("--ft-tooltip-border-radius","",r.borderRadiusS),color:t.extend("--ft-tooltip-color","",p.contentGlobalOnColor),backgroundColor:t.extend("--ft-tooltip-background-color","",p.contentGlobalPrimary),backgroundOpacity:t.extend("--ft-tooltip-background-opacity","",r.opacity80),shadow:t.extend("--ft-tooltip-shadow","",r.shadowElevation03),maxWidth:t.create("--ft-tooltip-max-width","","SIZE","256px"),gap:t.extend("--ft-tooltip-gap","",r.spacing05)};var Ne=u(_());function ur(e){let o=Ce[e];return Ne.css`
128
+ .ft-typography--${(0,Ne.unsafeCSS)(e)} {
129
+ font-family: ${o.fontFamily};
130
+ font-size: ${o.fontSize};
131
+ font-weight: ${o.fontWeight};
132
+ letter-spacing: ${o.letterSpacing};
133
+ line-height: ${o.lineHeight};
134
+ text-transform: ${o.textCase};
135
+ }
136
+ `}var mr=g.FtCssVariableFactory.extend("--ft-typography-font-family","",g.designSystemVariables.titleFont),mt=g.FtCssVariableFactory.extend("--ft-typography-font-family","",g.designSystemVariables.contentFont),b={fontFamily:mt,fontSize:g.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:g.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:g.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:g.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:g.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},Ut={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-title-font-family","",mr),fontSize:g.FtCssVariableFactory.extend("--ft-typography-title-font-size","",b.fontSize,"20px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",b.letterSpacing,"0.15px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-title-line-height","",b.lineHeight,"1.2"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",b.textTransform,"inherit")},Dt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",mr),fontSize:g.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",b.fontSize,"14px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",b.letterSpacing,"0.105px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",b.lineHeight,"1.7"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",b.textTransform,"inherit")},Gt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",b.fontSize,"16px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",b.fontWeight,"600"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",b.letterSpacing,"0.144px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",b.lineHeight,"1.5"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",b.textTransform,"inherit")},Zt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",b.fontSize,"14px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",b.letterSpacing,"0.098px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",b.lineHeight,"1.7"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",b.textTransform,"inherit")},Kt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",b.fontSize,"16px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",b.letterSpacing,"0.496px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",b.lineHeight,"1.5"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",b.textTransform,"inherit")},dt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",b.fontSize,"14px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",b.letterSpacing,"0.252px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",b.lineHeight,"1.4"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",b.textTransform,"inherit")},Mt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",b.fontSize,"12px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",b.letterSpacing,"0.396px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",b.lineHeight,"1.33"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",b.textTransform,"inherit")},Ft={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",b.fontSize,"10px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",b.letterSpacing,"0.33px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",b.lineHeight,"1.6"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",b.textTransform,"inherit")},Vt={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",b.fontSize,"10px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",b.fontWeight,"normal"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",b.letterSpacing,"1.5px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",b.lineHeight,"1.6"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",b.textTransform,"uppercase")},ft={fontFamily:g.FtCssVariableFactory.extend("--ft-typography-button-font-family","",mt),fontSize:g.FtCssVariableFactory.extend("--ft-typography-button-font-size","",b.fontSize,"14px"),fontWeight:g.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",b.fontWeight,"600"),letterSpacing:g.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",b.letterSpacing,"1.246px"),lineHeight:g.FtCssVariableFactory.extend("--ft-typography-button-line-height","",b.lineHeight,"1.15"),textTransform:g.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",b.textTransform,"uppercase")},br=nt.css`
137
137
  .ft-typography--title {
138
- font-family: ${gt};
139
- font-size: ${yt};
140
- font-weight: ${bt};
141
- letter-spacing: ${ut};
142
- line-height: ${mt};
143
- text-transform: ${xt};
144
- }
145
- `,so=e.css`
138
+ font-family: ${Ut.fontFamily};
139
+ font-size: ${Ut.fontSize};
140
+ font-weight: ${Ut.fontWeight};
141
+ letter-spacing: ${Ut.letterSpacing};
142
+ line-height: ${Ut.lineHeight};
143
+ text-transform: ${Ut.textTransform};
144
+ }
145
+ `,xr=nt.css`
146
146
  .ft-typography--title-dense {
147
- font-family: ${vt};
148
- font-size: ${Ot};
149
- font-weight: ${Nt};
150
- letter-spacing: ${St};
151
- line-height: ${wt};
152
- text-transform: ${$t};
153
- }
154
- `,ho=e.css`
147
+ font-family: ${Dt.fontFamily};
148
+ font-size: ${Dt.fontSize};
149
+ font-weight: ${Dt.fontWeight};
150
+ letter-spacing: ${Dt.letterSpacing};
151
+ line-height: ${Dt.lineHeight};
152
+ text-transform: ${Dt.textTransform};
153
+ }
154
+ `,Or=nt.css`
155
155
  .ft-typography--subtitle1 {
156
- font-family: ${Ct};
157
- font-size: ${It};
158
- font-weight: ${Et};
159
- letter-spacing: ${Wt};
160
- line-height: ${Ut};
161
- text-transform: ${kt};
162
- }
163
- `,go=e.css`
156
+ font-family: ${Gt.fontFamily};
157
+ font-size: ${Gt.fontSize};
158
+ font-weight: ${Gt.fontWeight};
159
+ letter-spacing: ${Gt.letterSpacing};
160
+ line-height: ${Gt.lineHeight};
161
+ text-transform: ${Gt.textTransform};
162
+ }
163
+ `,Sr=nt.css`
164
164
  .ft-typography--subtitle2 {
165
- font-family: ${Rt};
166
- font-size: ${zt};
167
- font-weight: ${Zt};
168
- letter-spacing: ${Lt};
169
- line-height: ${Kt};
170
- text-transform: ${Ft};
165
+ font-family: ${Zt.fontFamily};
166
+ font-size: ${Zt.fontSize};
167
+ font-weight: ${Zt.fontWeight};
168
+ letter-spacing: ${Zt.letterSpacing};
169
+ line-height: ${Zt.lineHeight};
170
+ text-transform: ${Zt.textTransform};
171
171
  }
172
172
 
173
- `,yo=e.css`
173
+ `,vr=nt.css`
174
174
  .ft-typography--body1 {
175
- font-family: ${Dt};
176
- font-size: ${Bt};
177
- font-weight: ${Ht};
178
- letter-spacing: ${At};
179
- line-height: ${Gt};
180
- text-transform: ${jt};
181
- }
182
- `,bo=e.css`
175
+ font-family: ${Kt.fontFamily};
176
+ font-size: ${Kt.fontSize};
177
+ font-weight: ${Kt.fontWeight};
178
+ letter-spacing: ${Kt.letterSpacing};
179
+ line-height: ${Kt.lineHeight};
180
+ text-transform: ${Kt.textTransform};
181
+ }
182
+ `,Cr=nt.css`
183
183
  .ft-typography--body2 {
184
- font-family: ${Pt.fontFamily};
185
- font-size: ${Pt.fontSize};
186
- font-weight: ${Pt.fontWeight};
187
- letter-spacing: ${Pt.letterSpacing};
188
- line-height: ${Pt.lineHeight};
189
- text-transform: ${Pt.textTransform};
190
- }
191
- `,uo=e.css`
184
+ font-family: ${dt.fontFamily};
185
+ font-size: ${dt.fontSize};
186
+ font-weight: ${dt.fontWeight};
187
+ letter-spacing: ${dt.letterSpacing};
188
+ line-height: ${dt.lineHeight};
189
+ text-transform: ${dt.textTransform};
190
+ }
191
+ `,Nr=nt.css`
192
192
  .ft-typography--caption {
193
- font-family: ${Tt};
194
- font-size: ${Mt};
195
- font-weight: ${Yt};
196
- letter-spacing: ${_t};
197
- line-height: ${Vt};
198
- text-transform: ${Xt};
199
- }
200
- `,mo=e.css`
193
+ font-family: ${Mt.fontFamily};
194
+ font-size: ${Mt.fontSize};
195
+ font-weight: ${Mt.fontWeight};
196
+ letter-spacing: ${Mt.letterSpacing};
197
+ line-height: ${Mt.lineHeight};
198
+ text-transform: ${Mt.textTransform};
199
+ }
200
+ `,wr=nt.css`
201
201
  .ft-typography--breadcrumb {
202
- font-family: ${qt};
203
- font-size: ${Jt};
204
- font-weight: ${Qt};
205
- letter-spacing: ${to};
206
- line-height: ${oo};
207
- text-transform: ${eo};
208
- }
209
- `,xo=e.css`
202
+ font-family: ${Ft.fontFamily};
203
+ font-size: ${Ft.fontSize};
204
+ font-weight: ${Ft.fontWeight};
205
+ letter-spacing: ${Ft.letterSpacing};
206
+ line-height: ${Ft.lineHeight};
207
+ text-transform: ${Ft.textTransform};
208
+ }
209
+ `,Er=nt.css`
210
210
  .ft-typography--overline {
211
- font-family: ${ro};
212
- font-size: ${io};
213
- font-weight: ${ao};
214
- letter-spacing: ${no};
215
- line-height: ${lo};
216
- text-transform: ${co};
217
- }
218
- `,vo=e.css`
211
+ font-family: ${Vt.fontFamily};
212
+ font-size: ${Vt.fontSize};
213
+ font-weight: ${Vt.fontWeight};
214
+ letter-spacing: ${Vt.letterSpacing};
215
+ line-height: ${Vt.lineHeight};
216
+ text-transform: ${Vt.textTransform};
217
+ }
218
+ `,Rr=nt.css`
219
219
  .ft-typography--button {
220
- font-family: ${po.fontFamily};
221
- font-size: ${po.fontSize};
222
- font-weight: ${po.fontWeight};
223
- letter-spacing: ${po.letterSpacing};
224
- line-height: ${po.lineHeight};
225
- text-transform: ${po.textTransform};
226
- }
227
- `,Oo=e.css`
220
+ font-family: ${ft.fontFamily};
221
+ font-size: ${ft.fontSize};
222
+ font-weight: ${ft.fontWeight};
223
+ letter-spacing: ${ft.letterSpacing};
224
+ line-height: ${ft.lineHeight};
225
+ text-transform: ${ft.textTransform};
226
+ }
227
+ `,Ar=nt.css`
228
228
  .ft-typography {
229
229
  vertical-align: inherit;
230
230
  }
231
- `,No=[Object.keys(ct).map((t=>function(t){const o=ct[t];return e.css`
232
- .ft-typography--${e.unsafeCSS(t)} {
233
- font-family: ${o.fontFamily};
234
- font-size: ${o.fontSize};
235
- font-weight: ${o.fontWeight};
236
- letter-spacing: ${o.letterSpacing};
237
- line-height: ${o.lineHeight};
238
- text-transform: ${o.textCase};
239
- }
240
- `}(t)))];var So,wo,$o=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 Co extends o.FtLitElement{constructor(){super(...arguments),this.variant=it.body1}render(){return this.element?rt`
241
- <${ot(this.element)}
231
+ `,Lr=[Object.keys(Ce).map(e=>ur(e))];var $r=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},tt=class extends Wr.FtLitElement{constructor(){super(...arguments),this.variant=It.body1}render(){return this.element?Fe`
232
+ <${Me(this.element)}
233
+ part="text"
242
234
  class="ft-typography ft-typography--${this.variant}">
243
235
  <slot></slot>
244
- </${ot(this.element)}>
245
- `:rt`
246
- <slot class="ft-typography ft-typography--${this.variant}"></slot>
247
- `}}Co.styles=[fo,so,ho,go,yo,bo,uo,mo,xo,vo,Oo,...No],$o([r.property()],Co.prototype,"element",void 0),$o([r.property()],Co.prototype,"variant",void 0),o.customElement("ft-typography")(Co),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.CHART_BAR_NORMALIZED="&#xe97b;",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="&#xe909;",t.OCTAGON_XMARK="&#xe97d;",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.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;",t.CLONE="&#xe979;",t.CLONE_LINK_SIMPLE="&#xe97a;",t.CONSUMER="&#xe97c;",t.HOURGLASS_HALF="&#xe97e;",t.CLOCK_THREE="&#xe97f;",t.CALENDAR_DAY="&#xe980;",t.COMPUTER_MOUSE_MAGNIFYING_GLASS="&#xe981;",t.WAND_MAGIC_SPARKLES="&#xe982;",t.PAPER_PLANE="&#xe983;"}(So||(So={})),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;"}(wo||(wo={})),new Map([...["abw"].map((t=>[t,wo.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,wo.AUDIO])),...["avi"].map((t=>[t,wo.AVI])),...["chm","xhs"].map((t=>[t,wo.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,wo.CODE])),...["csv"].map((t=>[t,wo.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,wo.DITA])),...["epub"].map((t=>[t,wo.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,wo.EXCEL])),...["flac"].map((t=>[t,wo.FLAC])),...["gif"].map((t=>[t,wo.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,wo.GZIP])),...["html","htm","xhtml"].map((t=>[t,wo.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map((t=>[t,wo.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,wo.JPEG])),...["json"].map((t=>[t,wo.JSON])),...["m4a","m4p"].map((t=>[t,wo.M4A])),...["mov","qt"].map((t=>[t,wo.MOV])),...["mp3"].map((t=>[t,wo.MP3])),...["mp4","m4v"].map((t=>[t,wo.MP4])),...["ogg","oga"].map((t=>[t,wo.OGG])),...["pdf","ps"].map((t=>[t,wo.PDF])),...["png"].map((t=>[t,wo.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,wo.POWERPOINT])),...["rar"].map((t=>[t,wo.RAR])),...["stp"].map((t=>[t,wo.STP])),...["txt","rtf","md","mdown"].map((t=>[t,wo.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,wo.VIDEO])),...["wav"].map((t=>[t,wo.WAV])),...["wma"].map((t=>[t,wo.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,wo.WORD])),...["xml","xsl","rdf"].map((t=>[t,wo.XML])),...["yaml","yml","x-yaml"].map((t=>[t,wo.YAML])),...["zip"].map((t=>[t,wo.ZIP]))]),wo.ABW,wo.AUDIO,wo.AVI,wo.CHM,wo.CODE,wo.CSV,wo.DITA,wo.EPUB,wo.EXCEL,wo.FLAC,wo.GIF,wo.GZIP,wo.HTML,wo.IMAGE,wo.JPEG,wo.JSON,wo.M4A,wo.MOV,wo.MP3,wo.MP4,wo.OGG,wo.PDF,wo.PNG,wo.POWERPOINT,wo.RAR,wo.STP,wo.TEXT,wo.UNKNOWN,wo.VIDEO,wo.WAV,wo.WMA,wo.WORD,wo.XML,wo.YAML,wo.ZIP;const Io={size:o.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:o.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:o.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:o.FtCssVariableFactory.extend("--ft-icon-material-font-family","",o.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:o.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Eo=e.css`
236
+ </${Me(this.element)}>
237
+ `:Fe`
238
+ <slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
239
+ `}};tt.styles=[br,xr,Or,Sr,vr,Cr,Nr,wr,Er,Rr,Ar,...Lr];$r([(0,Ve.property)()],tt.prototype,"element",void 0);$r([(0,Ve.property)()],tt.prototype,"variant",void 0);(0,Pr.customElement)("ft-typography")(tt);var _r=u(R());var se=u(_()),Bt=u(st()),kr=u(R()),Hr=u(Br());var we;(function(e){e.THUMBS_DOWN="&#xe94d;",e.THUMBS_DOWN_PLAIN="&#xe94e;",e.THUMBS_UP="&#xe94f;",e.THUMBS_UP_PLAIN="&#xe950;",e.STAR="&#xe94c;",e.STAR_PLAIN="&#xe900;",e.DESKTOP="&#xe95e;",e.LIFE_RING="&#xe975;",e.GLOBE="&#xe976;",e.PIGGY_BANK="&#xe977;",e.TABLET_LANDSCAPE="&#xe95f;",e.TABLET_PORTRAIT="&#xe960;",e.MOBILE_LANDSCAPE="&#xe961;",e.MOBILE_PORTRAIT="&#xe962;",e.ARROW_RIGHT_TO_LINE="&#xe95d;",e.THIN_ARROW_UP="&#xe95c;",e.CONTEXTUAL="&#xe95b;",e.CHART_SIMPLE="&#xe968;",e.BARS_PROGRESS="&#xe969;",e.LINE_CHART="&#xe96c;",e.STACKED_CHART="&#xe96d;",e.CHART_BAR_NORMALIZED="&#xe97b;",e.BOOK_OPEN_GEAR="&#xe96a;",e.BOOK_OPEN_GEAR_SLASH="&#xe96b;",e.DIAGRAM_SUNBURST="&#xe963;",e.DIAGRAM_SANKEY="&#xe964;",e.UNSTRUCTURED_DOC="&#xe95a;",e.RESET="&#xe958;",e.THIN_ARROW_LEFT="&#xe956;",e.THIN_ARROW_RIGHT="&#xe957;",e.MY_COLLECTIONS="&#xe955;",e.OFFLINE_SETTINGS="&#xe954;",e.MY_LIBRARY="&#xe959;",e.RATE_PLAIN="&#xe952;",e.RATE="&#xe953;",e.FEEDBACK_PLAIN="&#xe951;",e.PAUSE="&#xe949;",e.PLAY="&#xe94a;",e.RELATIVES_PLAIN="&#xe947;",e.RELATIVES="&#xe948;",e.SHORTCUT_MENU="&#xe946;",e.PRINT="&#xe944;",e.DEFAULT_ROLES="&#xe945;",e.ACCOUNT_SETTINGS="&#xe943;",e.ONLINE="&#xe941;",e.OFFLINE="&#xe816;",e.UPLOAD="&#xe940;",e.BOOK_PLAIN="&#xe93f;",e.SYNC="&#xe93d;",e.SHARED_PBK="&#xe931;",e.COLLECTIONS="&#xe92a;",e.SEARCH_IN_PUBLICATION="&#xe92f;",e.BOOKS="&#xe806;",e.LOCKER="&#xe93b;",e.ARROW_DOWN="&#xe92b;",e.ARROW_LEFT="&#xe92c;",e.ARROW_RIGHT="&#xe92d;",e.ARROW_UP="&#xe92e;",e.SAVE="&#xe93a;",e.MAILS_AND_NOTIFICATIONS="&#xe939;",e.DOT="&#xe936;",e.MINUS="&#xe937;",e.PLUS="&#xe938;",e.FILTERS="&#xe935;",e.STRIPE_ARROW_RIGHT="&#xe934;",e.STRIPE_ARROW_LEFT="&#xe933;",e.ATTACHMENTS="&#xe932;",e.ADD_BOOKMARK="&#xe804;",e.BOOKMARK="&#xe805;",e.EXPORT="&#xe80f;",e.MENU="&#xe807;",e.TAG="&#xe93e;",e.TAG_PLAIN="&#xe942;",e.COPY_TO_CLIPBOARD="&#xe930;",e.COLUMNS="&#xe928;",e.ARTICLE="&#xe927;",e.CLOSE="&#xe909;",e.OCTAGON_XMARK="&#xe97d;",e.CLOSE_PLAIN="&#xe925;",e.CHECK_PLAIN="&#xe926;",e.LOGOUT="&#xe923;",e.SIGN_IN="&#xe922;",e.THIN_ARROW="&#xe921;",e.TRIANGLE_BOTTOM="&#xe91d;",e.TRIANGLE_LEFT="&#xe91e;",e.TRIANGLE_RIGHT="&#xe91f;",e.TRIANGLE_TOP="&#xe920;",e.FACET_HAS_DESCENDANT="&#xe91c;",e.MINUS_PLAIN="&#xe91a;",e.PLUS_PLAIN="&#xe91b;",e.INFO="&#xe919;",e.ICON_EXPAND="&#xe917;",e.ICON_COLLAPSE="&#xe918;",e.ADD_TO_PBK="&#xe800;",e.ALERT="&#xe801;",e.ADD_ALERT="&#xe802;",e.BACK_TO_SEARCH="&#xe803;",e.DOWNLOAD="&#xe808;",e.EDIT="&#xe809;",e.FEEDBACK="&#xe80a;",e.MODIFY_PBK="&#xe80c;",e.SCHEDULED="&#xe80d;",e.SEARCH="&#xe80e;",e.SHARE="&#xe80f1;",e.TOC="&#xe810;",e.WRITE_UGC="&#xe811;",e.TRASH="&#xe812;",e.EXTLINK="&#xe814;",e.EXTLINK_LIGHT="&#xe978;",e.CALENDAR="&#xe815;",e.BOOK="&#xe817;",e.DOWNLOAD_PLAIN="&#xe818;",e.CHECK="&#xe819;",e.TOPICS="&#xe901;",e.EYE="&#xf06e;",e.EYE_SLASH="&#xe970;",e.DISC="&#xe902;",e.CIRCLE="&#xe903;",e.SHARED="&#xe904;",e.SORT_UNSORTED="&#xe905;",e.SORT_UP="&#xe906;",e.SORT_DOWN="&#xe907;",e.WORKING="&#xe908;",e.ZOOM_OUT="&#xe90a;",e.ZOOM_IN="&#xe90b;",e.ZOOM_REALSIZE="&#xe90c;",e.ZOOM_FULLSCREEN="&#xe90d;",e.ADMIN_RESTRICTED="&#xe90e;",e.ADMIN_THEME="&#xe911;",e.WARNING="&#xe913;",e.CONTEXT="&#xe914;",e.SEARCH_HOME="&#xe915;",e.STEPS="&#xe916;",e.HOME="&#xe80b;",e.TRANSLATE="&#xe924;",e.USER="&#xe813;",e.ADMIN="&#xe90f;",e.ANALYTICS="&#xe929;",e.ADMIN_KHUB="&#xe910;",e.ADMIN_USERS="&#xe912;",e.ADMIN_INTEGRATION="&#xe93c;",e.ADMIN_PORTAL="&#xe94b;",e.COMMENT_QUESTION="&#xe965;",e.COMMENT_QUESTION_PLAIN="&#xe966;",e.MESSAGE_BOT="&#xe967;",e.PIP="&#xe973;",e.PIP_WIDE="&#xe974;",e.EXPAND_WIDE="&#xe972;",e.X_MARK="&#xe971;",e.CLONE="&#xe979;",e.CLONE_LINK_SIMPLE="&#xe97a;",e.CONSUMER="&#xe97c;",e.HOURGLASS_HALF="&#xe97e;",e.CLOCK_THREE="&#xe97f;",e.CALENDAR_DAY="&#xe980;",e.COMPUTER_MOUSE_MAGNIFYING_GLASS="&#xe981;",e.WAND_MAGIC_SPARKLES="&#xe982;",e.PAPER_PLANE="&#xe983;"})(we||(we={}));var f;(function(e){e.UNKNOWN="&#xe90a;",e.ABW="&#xe900;",e.AUDIO="&#xe901;",e.AVI="&#xe902;",e.CHM="&#xe904;",e.CODE="&#xe905;",e.CSV="&#xe903;",e.DITA="&#xe906;",e.EPUB="&#xe907;",e.EXCEL="&#xe908;",e.FLAC="&#xe909;",e.GIF="&#xe90b;",e.GZIP="&#xe90c;",e.HTML="&#xe90d;",e.IMAGE="&#xe90e;",e.JPEG="&#xe90f;",e.JSON="&#xe910;",e.M4A="&#xe911;",e.MOV="&#xe912;",e.MP3="&#xe913;",e.MP4="&#xe914;",e.OGG="&#xe915;",e.PDF="&#xe916;",e.PNG="&#xe917;",e.POWERPOINT="&#xe918;",e.RAR="&#xe91a;",e.STP="&#xe91b;",e.TEXT="&#xe91c;",e.VIDEO="&#xe91e;",e.WAV="&#xe91f;",e.WMA="&#xe920;",e.WORD="&#xe921;",e.XML="&#xe922;",e.YAML="&#xe919;",e.ZIP="&#xe923;"})(f||(f={}));var mp=new Map([...["abw"].map(e=>[e,f.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(e=>[e,f.AUDIO]),...["avi"].map(e=>[e,f.AVI]),...["chm","xhs"].map(e=>[e,f.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(e=>[e,f.CODE]),...["csv"].map(e=>[e,f.CSV]),...["dita","ditamap","ditaval"].map(e=>[e,f.DITA]),...["epub"].map(e=>[e,f.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(e=>[e,f.EXCEL]),...["flac"].map(e=>[e,f.FLAC]),...["gif"].map(e=>[e,f.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(e=>[e,f.GZIP]),...["html","htm","xhtml"].map(e=>[e,f.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(e=>[e,f.IMAGE]),...["jpeg","jpg","jpe"].map(e=>[e,f.JPEG]),...["json"].map(e=>[e,f.JSON]),...["m4a","m4p"].map(e=>[e,f.M4A]),...["mov","qt"].map(e=>[e,f.MOV]),...["mp3"].map(e=>[e,f.MP3]),...["mp4","m4v"].map(e=>[e,f.MP4]),...["ogg","oga"].map(e=>[e,f.OGG]),...["pdf","ps"].map(e=>[e,f.PDF]),...["png"].map(e=>[e,f.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(e=>[e,f.POWERPOINT]),...["rar"].map(e=>[e,f.RAR]),...["stp"].map(e=>[e,f.STP]),...["txt","rtf","md","mdown"].map(e=>[e,f.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(e=>[e,f.VIDEO]),...["wav"].map(e=>[e,f.WAV]),...["wma"].map(e=>[e,f.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(e=>[e,f.WORD]),...["xml","xsl","rdf"].map(e=>[e,f.XML]),...["yaml","yml","x-yaml"].map(e=>[e,f.YAML]),...["zip"].map(e=>[e,f.ZIP])]);var bp={[f.ABW]:"#91ABC6",[f.AUDIO]:"#1795E3",[f.AVI]:"#E63324",[f.CHM]:"#71C3EB",[f.CODE]:"#71C3EB",[f.CSV]:"#1F7345",[f.DITA]:"#71C3EB",[f.EPUB]:"#85B926",[f.EXCEL]:"#1F7345",[f.FLAC]:"#1795E3",[f.GIF]:"#59B031",[f.GZIP]:"#F8AB36",[f.HTML]:"#71C3EB",[f.IMAGE]:"#59B031",[f.JPEG]:"#59B031",[f.JSON]:"#71C3EB",[f.M4A]:"#1795E3",[f.MOV]:"#E63324",[f.MP3]:"#1795E3",[f.MP4]:"#E63324",[f.OGG]:"#1795E3",[f.PDF]:"#E44948",[f.PNG]:"#59B031",[f.POWERPOINT]:"#B54A2B",[f.RAR]:"#F8AB36",[f.STP]:"#3764B1",[f.TEXT]:"#3162AB",[f.UNKNOWN]:"#999999",[f.VIDEO]:"#E63324",[f.WAV]:"#1795E3",[f.WMA]:"#1795E3",[f.WORD]:"#3162AB",[f.XML]:"#71C3EB",[f.YAML]:"#71C3EB",[f.ZIP]:"#F8AB36"};var zr=u(_()),bt=u(R()),M={size:bt.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:bt.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",bt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:bt.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",bt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:bt.FtCssVariableFactory.extend("--ft-icon-material-font-family","",bt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:bt.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Tr=zr.css`
248
240
  :host, i.ft-icon {
249
241
  display: inline-flex;
250
242
  align-items: center;
@@ -253,14 +245,14 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
253
245
  }
254
246
 
255
247
  :host {
256
- width: ${Io.size};
257
- height: ${Io.size};
248
+ width: ${M.size};
249
+ height: ${M.size};
258
250
  }
259
251
 
260
252
  i.ft-icon {
261
253
  width: 100%;
262
254
  height: 100%;
263
- font-size: ${Io.size};
255
+ font-size: ${M.size};
264
256
  line-height: 1;
265
257
  font-weight: normal;
266
258
  text-transform: none;
@@ -271,33 +263,33 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
271
263
  text-rendering: auto;
272
264
  -webkit-font-smoothing: antialiased;
273
265
  -moz-osx-font-smoothing: grayscale;
274
- vertical-align: ${Io.verticalAlign};
266
+ vertical-align: ${M.verticalAlign};
275
267
  }
276
268
 
277
269
  i.ft-icon.ft-icon--fluid-topics {
278
- font-family: ${Io.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
270
+ font-family: ${M.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
279
271
 
280
272
  /* Ugly fix because font is broken */
281
- font-size: calc(0.75 * ${Io.size});
282
- line-height: ${Io.size};
273
+ font-size: calc(0.75 * ${M.size});
274
+ line-height: ${M.size};
283
275
  position: relative;
284
276
  top: -4%;
285
277
  justify-content: center;
286
278
  }
287
279
 
288
280
  .ft-icon--file-format {
289
- font-family: ${Io.fileFormatFontFamily}, ft-mime, sans-serif;
281
+ font-family: ${M.fileFormatFontFamily}, ft-mime, sans-serif;
290
282
  }
291
283
 
292
284
  .ft-icon--material {
293
- font-family: ${Io.materialFontFamily}, "Material Icons", sans-serif;
285
+ font-family: ${M.materialFontFamily}, "Material Icons", sans-serif;
294
286
  }
295
- `;var Wo;!function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(Wo||(Wo={}));var Uo=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 ko extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(Wo).includes(this.variant)?this.variant:Wo.fluid_topics,o=t!==Wo.material||!!this.value;return e.html`
296
- <i class="ft-icon ft-icon--${t}" part="icon icon-${t}">
297
- ${a.unsafeHTML(this.resolvedIcon)}
298
- <slot ?hidden=${o}></slot>
287
+ `;var Et;(function(e){e.fluid_topics="fluid-topics",e.file_format="file-format",e.material="material"})(Et||(Et={}));var Ee=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},X=class extends kr.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=se.nothing}render(){let o=this.variant&&Object.values(Et).includes(this.variant)?this.variant:Et.fluid_topics,n=o!==Et.material||!!this.value;return se.html`
288
+ <i class="ft-icon ft-icon--${o}" part="icon icon-${o}">
289
+ ${(0,Hr.unsafeHTML)(this.resolvedIcon)}
290
+ <slot ?hidden=${n}></slot>
299
291
  </i>
300
- `}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 r=this.value||this.textContent;switch(this.variant){case Wo.file_format:this.resolvedIcon=null!==(t=wo[r.replace("-","_").toUpperCase()])&&void 0!==t?t:r;break;case Wo.material:this.resolvedIcon=this.value||e.nothing;break;default:this.resolvedIcon=null!==(o=So[r.replace("-","_").toUpperCase()])&&void 0!==o?o:r}}firstUpdated(t){super.firstUpdated(t),setTimeout((()=>this.resolveIcon()))}}ko.elementDefinitions={},ko.styles=Eo,Uo([r.property()],ko.prototype,"variant",void 0),Uo([r.property()],ko.prototype,"value",void 0),Uo([r.state()],ko.prototype,"resolvedIcon",void 0),Uo([r.query("slot")],ko.prototype,"slottedContent",void 0),o.customElement("ft-icon")(ko);const Ro={color:o.FtCssVariableFactory.extend("--ft-loader-color","",o.designSystemVariables.colorPrimary),size:o.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},zo=e.css`
292
+ `}get textContent(){var o,n;return(n=(o=this.slottedContent)===null||o===void 0?void 0:o.assignedNodes().map(i=>i.textContent).join("").trim())!==null&&n!==void 0?n:""}update(o){super.update(o),["value","variant"].some(n=>o.has(n))&&this.resolveIcon()}resolveIcon(){var o,n;let i=this.value||this.textContent;switch(this.variant){case Et.file_format:this.resolvedIcon=(o=f[i.replace("-","_").toUpperCase()])!==null&&o!==void 0?o:i;break;case Et.material:this.resolvedIcon=this.value||se.nothing;break;default:this.resolvedIcon=(n=we[i.replace("-","_").toUpperCase()])!==null&&n!==void 0?n:i;break}}firstUpdated(o){super.firstUpdated(o),setTimeout(()=>this.resolveIcon())}};X.elementDefinitions={};X.styles=Tr;Ee([(0,Bt.property)()],X.prototype,"variant",void 0);Ee([(0,Bt.property)()],X.prototype,"value",void 0);Ee([(0,Bt.state)()],X.prototype,"resolvedIcon",void 0);Ee([(0,Bt.query)("slot")],X.prototype,"slottedContent",void 0);(0,_r.customElement)("ft-icon")(X);var Be=u(_()),S=u(R());var io=u(R());var be=u(st()),Nn=u(R());var Kr=u(_()),O=u(R());var Ur=u(_()),de=u(R()),q={color:de.FtCssVariableFactory.extend("--ft-loader-color","",de.designSystemVariables.colorPrimary),size:de.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Dr=Ur.css`
301
293
  :host {
302
294
  line-height: 0;
303
295
  }
@@ -306,8 +298,8 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
306
298
  display: inline-block;
307
299
  position: relative;
308
300
 
309
- width: ${Ro.size};
310
- height: ${Ro.size};
301
+ width: ${q.size};
302
+ height: ${q.size};
311
303
  }
312
304
 
313
305
  .ft-loader div {
@@ -316,7 +308,7 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
316
308
  width: 25%;
317
309
  height: 25%;
318
310
  border-radius: 50%;
319
- background: ${Ro.color};
311
+ background: ${q.color};
320
312
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
321
313
  }
322
314
 
@@ -363,10 +355,10 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
363
355
  transform: translate(0, 0);
364
356
  }
365
357
  100% {
366
- transform: translate(calc(0.35 * ${Ro.size}), 0);
358
+ transform: translate(calc(0.35 * ${q.size}), 0);
367
359
  }
368
360
  }
369
- `,Zo=o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorPrimary),Lo={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorSurface),borderRadius:o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusL),color:Zo,fontSize:o.FtCssVariableFactory.extend("--ft-button-font-size","",po.fontSize),iconSize:o.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:o.FtCssVariableFactory.extend("--ft-button-ripple-color","",Zo),verticalPadding:o.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:o.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:o.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOpacityDisabled,"Design system")},Ko=o.FtCssVariableFactory.extend("--ft-button-primary-color","",o.FtCssVariableFactory.extend("--ft-button-color","",o.designSystemVariables.colorOnPrimary)),Fo={backgroundColor:o.FtCssVariableFactory.extend("--ft-button-primary-background-color","",o.FtCssVariableFactory.extend("--ft-button-background-color","",o.designSystemVariables.colorPrimary)),color:Ko,rippleColor:o.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",Ko)},Do=o.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",o.FtCssVariableFactory.extend("--ft-button-border-radius","",o.designSystemVariables.borderRadiusM)),Bo=o.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),Ho=o.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),Ao=o.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px"),Go=[e.css`
361
+ `;var Gr=O.FtCssVariableFactory.extend("--ft-button-color","",O.designSystemVariables.colorPrimary),$={backgroundColor:O.FtCssVariableFactory.extend("--ft-button-background-color","",O.designSystemVariables.colorSurface),borderRadius:O.FtCssVariableFactory.extend("--ft-button-border-radius","",O.designSystemVariables.borderRadiusL),color:Gr,fontSize:O.FtCssVariableFactory.extend("--ft-button-font-size","",ft.fontSize),iconSize:O.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:O.FtCssVariableFactory.extend("--ft-button-ripple-color","",Gr),verticalPadding:O.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:O.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:O.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:O.FtCssVariableFactory.external(O.designSystemVariables.colorOpacityDisabled,"Design system")},Zr=O.FtCssVariableFactory.extend("--ft-button-primary-color","",O.FtCssVariableFactory.extend("--ft-button-color","",O.designSystemVariables.colorOnPrimary)),je={backgroundColor:O.FtCssVariableFactory.extend("--ft-button-primary-background-color","",O.FtCssVariableFactory.extend("--ft-button-background-color","",O.designSystemVariables.colorPrimary)),color:Zr,rippleColor:O.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",Zr)},gt={borderRadius:O.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",O.FtCssVariableFactory.extend("--ft-button-border-radius","",O.designSystemVariables.borderRadiusM)),verticalPadding:O.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),horizontalPadding:O.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),iconPadding:O.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px")},Mr=[Kr.css`
370
362
  :host {
371
363
  display: inline-block;
372
364
  max-width: 100%;
@@ -377,7 +369,7 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
377
369
  box-shadow: 0px 0px 0px transparent;
378
370
  border: 0px solid transparent;
379
371
  text-shadow: 0px 0px 0px transparent;
380
- font-size: ${Lo.fontSize};
372
+ font-size: ${$.fontSize};
381
373
  }
382
374
 
383
375
  button:hover {
@@ -406,31 +398,31 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
406
398
  border: none;
407
399
  pointer-events: auto;
408
400
 
409
- --ft-button-internal-line-height: max(calc(${Lo.fontSize} + 2px), ${Lo.iconSize});
410
- --ft-button-internal-color: ${Lo.color};
411
- ${o.setVariable(Io.size,Lo.iconSize)};
412
- ${o.setVariable(l.color,Lo.rippleColor)};
401
+ --ft-button-internal-line-height: max(calc(${$.fontSize} + 2px), ${$.iconSize});
402
+ --ft-button-internal-color: ${$.color};
403
+ ${(0,O.setVariable)(M.size,$.iconSize)};
404
+ ${(0,O.setVariable)(C.color,$.rippleColor)};
413
405
 
414
- border-radius: ${Lo.borderRadius};
415
- padding: ${Lo.verticalPadding} ${Lo.horizontalPadding};
416
- background-color: ${Lo.backgroundColor};
406
+ border-radius: ${$.borderRadius};
407
+ padding: ${$.verticalPadding} ${$.horizontalPadding};
408
+ background-color: ${$.backgroundColor};
417
409
  color: var(--ft-button-internal-color);
418
410
  -webkit-mask-image: radial-gradient(white, black);
419
411
  }
420
412
 
421
413
  .ft-button.ft-button--outlined {
422
414
  border: 1px solid var(--ft-button-internal-color);
423
- padding: calc(${Lo.verticalPadding} - 1px) calc(${Lo.horizontalPadding} - 1px);
415
+ padding: calc(${$.verticalPadding} - 1px) calc(${$.horizontalPadding} - 1px);
424
416
  }
425
417
 
426
418
  .ft-button.ft-button--dense {
427
- padding: ${Bo} ${Ho};
428
- border-radius: ${Do};
429
- gap: ${Ao};
419
+ padding: ${gt.verticalPadding} ${gt.horizontalPadding};
420
+ border-radius: ${gt.borderRadius};
421
+ gap: ${gt.iconPadding};
430
422
  }
431
423
 
432
424
  .ft-button.ft-button--dense.ft-button--outlined {
433
- padding: calc(${Bo} - 1px) calc(${Ho} - 1px);
425
+ padding: calc(${gt.verticalPadding} - 1px) calc(${gt.horizontalPadding} - 1px);
434
426
  }
435
427
 
436
428
  .ft-button:not([disabled]):hover {
@@ -438,22 +430,22 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
438
430
  }
439
431
 
440
432
  .ft-button--round {
441
- border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Lo.verticalPadding});
433
+ border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${$.verticalPadding});
442
434
  }
443
435
 
444
436
  .ft-button--round.ft-button--dense {
445
- border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${Bo});
437
+ border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${gt.verticalPadding});
446
438
  }
447
439
 
448
440
  .ft-button[disabled] {
449
441
  filter: grayscale(1);
450
- opacity: ${Lo.opacityDisabled};
442
+ opacity: ${$.opacityDisabled};
451
443
  }
452
444
 
453
445
  .ft-button.ft-button--primary {
454
- background-color: ${Fo.backgroundColor};
455
- --ft-button-internal-color: ${Fo.color};
456
- ${o.setVariable(l.color,Fo.rippleColor)};
446
+ background-color: ${je.backgroundColor};
447
+ --ft-button-internal-color: ${je.color};
448
+ ${(0,O.setVariable)(C.color,je.rippleColor)};
457
449
  }
458
450
 
459
451
  .ft-button:focus {
@@ -466,44 +458,43 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
466
458
  white-space: nowrap;
467
459
  text-overflow: ellipsis;
468
460
  display: block;
469
- margin: 0 ${Lo.iconPadding};
470
- ${o.setVariable(po.fontSize,"1em")};
471
- ${o.setVariable(po.lineHeight,"var(--ft-button-internal-line-height)")};
461
+ margin: 0 ${$.iconPadding};
462
+ ${(0,O.setVariable)(ft.fontSize,"1em")};
463
+ ${(0,O.setVariable)(ft.lineHeight,"var(--ft-button-internal-line-height)")};
472
464
  }
473
465
 
474
466
  .ft-button--dense .ft-button--label {
475
- margin: 0 ${Ao};
467
+ margin: 0 ${gt.iconPadding};
476
468
  }
477
469
 
478
470
  .ft-button--label[hidden] {
479
471
  display: none;
480
472
  }
481
473
 
482
- ft-icon {
474
+ [part="icon"] {
483
475
  flex-shrink: 0;
484
476
  position: relative;
485
477
  }
486
478
 
487
- .ft-button--label[hidden] + ft-icon {
488
- margin: 0 calc(${Lo.horizontalPadding} * -1);
489
- padding: 0 ${Lo.verticalPadding};
479
+ .ft-button--label[hidden] + [part="icon"] {
480
+ margin: 0 calc(${$.horizontalPadding} * -1);
481
+ padding: 0 ${$.verticalPadding};
490
482
  }
491
483
 
492
- .ft-button--dense .ft-button--label[hidden] + ft-icon {
493
- margin: 0 calc(${Ho} * -1);
494
- padding: 0 ${Bo};
484
+ .ft-button--dense .ft-button--label[hidden] + [part="icon"] {
485
+ margin: 0 calc(${gt.horizontalPadding} * -1);
486
+ padding: 0 ${gt.verticalPadding};
495
487
  }
496
488
 
497
- .ft-button:not(.ft-button--trailing-icon) ft-icon,
498
- .ft-button:not(.ft-button--trailing-icon) ft-loader {
499
- order: -1;
489
+ .ft-button:not(.ft-button--trailing-icon) [part="label"]{
490
+ order: 2;
500
491
  }
501
492
 
502
493
  ft-loader {
503
- ${o.setVariable(Ro.size,Lo.iconSize)};
504
- ${o.setVariable(Ro.color,"var(--ft-button-internal-color)")};
494
+ ${(0,O.setVariable)(q.size,$.iconSize)};
495
+ ${(0,O.setVariable)(q.color,"var(--ft-button-internal-color)")};
505
496
  }
506
- `,o.noTextSelect],jo=o.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),Po=o.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),To=o.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),Mo=o.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),Yo=o.FtCssVariableFactory.external(o.designSystemVariables.borderRadiusS,"Design system"),_o=o.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px"),Vo=e.css`
497
+ `,O.noTextSelect];var Qt=u(R());var xn=u(R());var bn=u(_()),U=u(st()),me=u(R());var Fr=u(_()),xt=u(R()),jt={distance:xt.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),color:xt.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),backgroundColor:xt.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),zIndex:xt.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),borderRadiusS:xt.FtCssVariableFactory.external(xt.designSystemVariables.borderRadiusS,"Design system"),maxWidth:xt.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px")},Vr=Fr.css`
507
498
  .ft-tooltip--container {
508
499
  display: block;
509
500
  }
@@ -518,21 +509,21 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
518
509
  box-sizing: border-box;
519
510
  overflow: hidden;
520
511
  width: max-content;
521
- max-width: ${_o};
512
+ max-width: ${jt.maxWidth};
522
513
  text-align: center;
523
- padding: ${jo};
524
- z-index: ${Mo};
514
+ padding: ${jt.distance};
515
+ z-index: ${jt.zIndex};
525
516
  }
526
517
 
527
518
  .ft-tooltip--content {
528
519
  padding: 4px 8px;
529
- border-radius: ${Yo};
530
- background-color: ${To};
531
- color: ${Po};
520
+ border-radius: ${jt.borderRadiusS};
521
+ background-color: ${jt.backgroundColor};
522
+ color: ${jt.color};
532
523
  position: relative;
533
524
  word-break: break-word;
534
525
  }
535
- `,Xo=["start","end"],qo=["top","right","bottom","left"].reduce(((t,o)=>t.concat(o,o+"-"+Xo[0],o+"-"+Xo[1])),[]),Jo=Math.min,Qo=Math.max,te=Math.round,oe=t=>({x:t,y:t}),ee={left:"right",right:"left",bottom:"top",top:"bottom"},re={start:"end",end:"start"};function ie(t,o,e){return Qo(t,Jo(o,e))}function ae(t,o){return"function"==typeof t?t(o):t}function ne(t){return t.split("-")[0]}function le(t){return t.split("-")[1]}function ce(t){return"x"===t?"y":"x"}function pe(t){return"y"===t?"height":"width"}function fe(t){return["top","bottom"].includes(ne(t))?"y":"x"}function se(t){return ce(fe(t))}function de(t){return t.replace(/left|right|bottom|top/g,(t=>ee[t]))}function he(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function ge(t,o,e){let{reference:r,floating:i}=t;const a=fe(o),n=se(o),l=pe(n),c=ne(o),p="y"===a,f=r.x+r.width/2-i.width/2,s=r.y+r.height/2-i.height/2,d=r[l]/2-i[l]/2;let h;switch(c){case"top":h={x:f,y:r.y-i.height};break;case"bottom":h={x:f,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:s};break;case"left":h={x:r.x-i.width,y:s};break;default:h={x:r.x,y:r.y}}switch(le(o)){case"start":h[n]-=d*(e&&p?-1:1);break;case"end":h[n]+=d*(e&&p?-1:1)}return h}async function ye(t,o){var e;void 0===o&&(o={});const{x:r,y:i,platform:a,rects:n,elements:l,strategy:c}=t,{boundary:p="clippingAncestors",rootBoundary:f="viewport",elementContext:s="floating",altBoundary:d=!1,padding:h=0}=ae(o,t),g=function(t){return"number"!=typeof t?function(t){return{top:0,right:0,bottom:0,left:0,...t}}(t):{top:t,right:t,bottom:t,left:t}}(h),y=l[d?"floating"===s?"reference":"floating":s],b=he(await a.getClippingRect({element:null==(e=await(null==a.isElement?void 0:a.isElement(y)))||e?y:y.contextElement||await(null==a.getDocumentElement?void 0:a.getDocumentElement(l.floating)),boundary:p,rootBoundary:f,strategy:c})),u="floating"===s?{...n.floating,x:r,y:i}:n.reference,m=await(null==a.getOffsetParent?void 0:a.getOffsetParent(l.floating)),x=await(null==a.isElement?void 0:a.isElement(m))&&await(null==a.getScale?void 0:a.getScale(m))||{x:1,y:1},v=he(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({rect:u,offsetParent:m,strategy:c}):u);return{top:(b.top-v.top+g.top)/x.y,bottom:(v.bottom-b.bottom+g.bottom)/x.y,left:(b.left-v.left+g.left)/x.x,right:(v.right-b.right+g.right)/x.x}}function be(t,o,e){return(t?[...e.filter((o=>le(o)===t)),...e.filter((o=>le(o)!==t))]:e.filter((t=>ne(t)===t))).filter((e=>!t||(le(e)===t||!!o&&function(t){return t.replace(/start|end/g,(t=>re[t]))}(e)!==e)))}const ue=function(t){return void 0===t&&(t={}),{name:"autoPlacement",options:t,async fn(o){var e,r,i;const{rects:a,middlewareData:n,placement:l,platform:c,elements:p}=o,{crossAxis:f=!1,alignment:s,allowedPlacements:d=qo,autoAlignment:h=!0,...g}=ae(t,o),y=void 0!==s||d===qo?be(s||null,h,d):d,b=await ye(o,g),u=(null==(e=n.autoPlacement)?void 0:e.index)||0,m=y[u];if(null==m)return{};const x=function(t,o,e){void 0===e&&(e=!1);const r=le(t),i=se(t),a=pe(i);let n="x"===i?r===(e?"end":"start")?"right":"left":"start"===r?"bottom":"top";return o.reference[a]>o.floating[a]&&(n=de(n)),[n,de(n)]}(m,a,await(null==c.isRTL?void 0:c.isRTL(p.floating)));if(l!==m)return{reset:{placement:y[0]}};const v=[b[ne(m)],b[x[0]],b[x[1]]],O=[...(null==(r=n.autoPlacement)?void 0:r.overflows)||[],{placement:m,overflows:v}],N=y[u+1];if(N)return{data:{index:u+1,overflows:O},reset:{placement:N}};const S=O.map((t=>{const o=le(t.placement);return[t.placement,o&&f?t.overflows.slice(0,2).reduce(((t,o)=>t+o),0):t.overflows[0],t.overflows]})).sort(((t,o)=>t[1]-o[1])),w=S.filter((t=>t[2].slice(0,le(t[0])?2:3).every((t=>t<=0)))),$=(null==(i=w[0])?void 0:i[0])||S[0][0];return $!==l?{data:{index:u+1,overflows:O},reset:{placement:$}}:{}}}};function me(t){return Oe(t)?(t.nodeName||"").toLowerCase():"#document"}function xe(t){var o;return(null==t||null==(o=t.ownerDocument)?void 0:o.defaultView)||window}function ve(t){var o;return null==(o=(Oe(t)?t.ownerDocument:t.document)||window.document)?void 0:o.documentElement}function Oe(t){return t instanceof Node||t instanceof xe(t).Node}function Ne(t){return t instanceof Element||t instanceof xe(t).Element}function Se(t){return t instanceof HTMLElement||t instanceof xe(t).HTMLElement}function we(t){return"undefined"!=typeof ShadowRoot&&(t instanceof ShadowRoot||t instanceof xe(t).ShadowRoot)}function $e(t){const{overflow:o,overflowX:e,overflowY:r,display:i}=Ue(t);return/auto|scroll|overlay|hidden|clip/.test(o+r+e)&&!["inline","contents"].includes(i)}function Ce(t){return["table","td","th"].includes(me(t))}function Ie(t){const o=Ee(),e=Ue(t);return"none"!==e.transform||"none"!==e.perspective||!!e.containerType&&"normal"!==e.containerType||!o&&!!e.backdropFilter&&"none"!==e.backdropFilter||!o&&!!e.filter&&"none"!==e.filter||["transform","perspective","filter"].some((t=>(e.willChange||"").includes(t)))||["paint","layout","strict","content"].some((t=>(e.contain||"").includes(t)))}function Ee(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function We(t){return["html","body","#document"].includes(me(t))}function Ue(t){return xe(t).getComputedStyle(t)}function ke(t){return Ne(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function Re(t){if("html"===me(t))return t;const o=t.assignedSlot||t.parentNode||we(t)&&t.host||ve(t);return we(o)?o.host:o}function ze(t){const o=Re(t);return We(o)?t.ownerDocument?t.ownerDocument.body:t.body:Se(o)&&$e(o)?o:ze(o)}function Ze(t,o,e){var r;void 0===o&&(o=[]),void 0===e&&(e=!0);const i=ze(t),a=i===(null==(r=t.ownerDocument)?void 0:r.body),n=xe(i);return a?o.concat(n,n.visualViewport||[],$e(i)?i:[],n.frameElement&&e?Ze(n.frameElement):[]):o.concat(i,Ze(i,[],e))}function Le(t){const o=Ue(t);let e=parseFloat(o.width)||0,r=parseFloat(o.height)||0;const i=Se(t),a=i?t.offsetWidth:e,n=i?t.offsetHeight:r,l=te(e)!==a||te(r)!==n;return l&&(e=a,r=n),{width:e,height:r,$:l}}function Ke(t){return Ne(t)?t:t.contextElement}function Fe(t){const o=Ke(t);if(!Se(o))return oe(1);const e=o.getBoundingClientRect(),{width:r,height:i,$:a}=Le(o);let n=(a?te(e.width):e.width)/r,l=(a?te(e.height):e.height)/i;return n&&Number.isFinite(n)||(n=1),l&&Number.isFinite(l)||(l=1),{x:n,y:l}}const De=oe(0);function Be(t){const o=xe(t);return Ee()&&o.visualViewport?{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}:De}function He(t,o,e,r){void 0===o&&(o=!1),void 0===e&&(e=!1);const i=t.getBoundingClientRect(),a=Ke(t);let n=oe(1);o&&(r?Ne(r)&&(n=Fe(r)):n=Fe(t));const l=function(t,o,e){return void 0===o&&(o=!1),!(!e||o&&e!==xe(t))&&o}(a,e,r)?Be(a):oe(0);let c=(i.left+l.x)/n.x,p=(i.top+l.y)/n.y,f=i.width/n.x,s=i.height/n.y;if(a){const t=xe(a),o=r&&Ne(r)?xe(r):r;let e=t.frameElement;for(;e&&r&&o!==t;){const t=Fe(e),o=e.getBoundingClientRect(),r=Ue(e),i=o.left+(e.clientLeft+parseFloat(r.paddingLeft))*t.x,a=o.top+(e.clientTop+parseFloat(r.paddingTop))*t.y;c*=t.x,p*=t.y,f*=t.x,s*=t.y,c+=i,p+=a,e=xe(e).frameElement}}return he({width:f,height:s,x:c,y:p})}function Ae(t){return He(ve(t)).left+ke(t).scrollLeft}function Ge(t,o,e){let r;if("viewport"===o)r=function(t,o){const e=xe(t),r=ve(t),i=e.visualViewport;let a=r.clientWidth,n=r.clientHeight,l=0,c=0;if(i){a=i.width,n=i.height;const t=Ee();(!t||t&&"fixed"===o)&&(l=i.offsetLeft,c=i.offsetTop)}return{width:a,height:n,x:l,y:c}}(t,e);else if("document"===o)r=function(t){const o=ve(t),e=ke(t),r=t.ownerDocument.body,i=Qo(o.scrollWidth,o.clientWidth,r.scrollWidth,r.clientWidth),a=Qo(o.scrollHeight,o.clientHeight,r.scrollHeight,r.clientHeight);let n=-e.scrollLeft+Ae(t);const l=-e.scrollTop;return"rtl"===Ue(r).direction&&(n+=Qo(o.clientWidth,r.clientWidth)-i),{width:i,height:a,x:n,y:l}}(ve(t));else if(Ne(o))r=function(t,o){const e=He(t,!0,"fixed"===o),r=e.top+t.clientTop,i=e.left+t.clientLeft,a=Se(t)?Fe(t):oe(1);return{width:t.clientWidth*a.x,height:t.clientHeight*a.y,x:i*a.x,y:r*a.y}}(o,e);else{const e=Be(t);r={...o,x:o.x-e.x,y:o.y-e.y}}return he(r)}function je(t,o){const e=Re(t);return!(e===o||!Ne(e)||We(e))&&("fixed"===Ue(e).position||je(e,o))}function Pe(t,o,e){const r=Se(o),i=ve(o),a="fixed"===e,n=He(t,!0,a,o);let l={scrollLeft:0,scrollTop:0};const c=oe(0);if(r||!r&&!a)if(("body"!==me(o)||$e(i))&&(l=ke(o)),r){const t=He(o,!0,a,o);c.x=t.x+o.clientLeft,c.y=t.y+o.clientTop}else i&&(c.x=Ae(i));return{x:n.left+l.scrollLeft-c.x,y:n.top+l.scrollTop-c.y,width:n.width,height:n.height}}function Te(t,o){return Se(t)&&"fixed"!==Ue(t).position?o?o(t):t.offsetParent:null}function Me(t,o){const e=xe(t);if(!Se(t))return e;let r=Te(t,o);for(;r&&Ce(r)&&"static"===Ue(r).position;)r=Te(r,o);return r&&("html"===me(r)||"body"===me(r)&&"static"===Ue(r).position&&!Ie(r))?e:r||function(t){let o=Re(t);for(;Se(o)&&!We(o);){if(Ie(o))return o;o=Re(o)}return null}(t)||e}const Ye={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:o,offsetParent:e,strategy:r}=t;const i=Se(e),a=ve(e);if(e===a)return o;let n={scrollLeft:0,scrollTop:0},l=oe(1);const c=oe(0);if((i||!i&&"fixed"!==r)&&(("body"!==me(e)||$e(a))&&(n=ke(e)),Se(e))){const t=He(e);l=Fe(e),c.x=t.x+e.clientLeft,c.y=t.y+e.clientTop}return{width:o.width*l.x,height:o.height*l.y,x:o.x*l.x-n.scrollLeft*l.x+c.x,y:o.y*l.y-n.scrollTop*l.y+c.y}},getDocumentElement:ve,getClippingRect:function(t){let{element:o,boundary:e,rootBoundary:r,strategy:i}=t;const a=[..."clippingAncestors"===e?function(t,o){const e=o.get(t);if(e)return e;let r=Ze(t,[],!1).filter((t=>Ne(t)&&"body"!==me(t))),i=null;const a="fixed"===Ue(t).position;let n=a?Re(t):t;for(;Ne(n)&&!We(n);){const o=Ue(n),e=Ie(n);e||"fixed"!==o.position||(i=null),(a?!e&&!i:!e&&"static"===o.position&&i&&["absolute","fixed"].includes(i.position)||$e(n)&&!e&&je(t,n))?r=r.filter((t=>t!==n)):i=o,n=Re(n)}return o.set(t,r),r}(o,this._c):[].concat(e),r],n=a[0],l=a.reduce(((t,e)=>{const r=Ge(o,e,i);return t.top=Qo(r.top,t.top),t.right=Jo(r.right,t.right),t.bottom=Jo(r.bottom,t.bottom),t.left=Qo(r.left,t.left),t}),Ge(o,n,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:Me,getElementRects:async function(t){let{reference:o,floating:e,strategy:r}=t;const i=this.getOffsetParent||Me,a=this.getDimensions;return{reference:Pe(o,await i(e),r),floating:{x:0,y:0,...await a(e)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return Le(t)},getScale:Fe,isElement:Ne,isRTL:function(t){return"rtl"===Ue(t).direction}},_e=(t,o,e)=>{const r=new Map,i={platform:Ye,...e},a={...i.platform,_c:r};return(async(t,o,e)=>{const{placement:r="bottom",strategy:i="absolute",middleware:a=[],platform:n}=e,l=a.filter(Boolean),c=await(null==n.isRTL?void 0:n.isRTL(o));let p=await n.getElementRects({reference:t,floating:o,strategy:i}),{x:f,y:s}=ge(p,r,c),d=r,h={},g=0;for(let e=0;e<l.length;e++){const{name:a,fn:y}=l[e],{x:b,y:u,data:m,reset:x}=await y({x:f,y:s,initialPlacement:r,placement:d,strategy:i,middlewareData:h,rects:p,platform:n,elements:{reference:t,floating:o}});f=null!=b?b:f,s=null!=u?u:s,h={...h,[a]:{...h[a],...m}},x&&g<=50&&(g++,"object"==typeof x&&(x.placement&&(d=x.placement),x.rects&&(p=!0===x.rects?await n.getElementRects({reference:t,floating:o,strategy:i}):x.rects),({x:f,y:s}=ge(p,d,c))),e=-1)}return{x:f,y:s,placement:d,strategy:i,middlewareData:h}})(t,o,{...i,platform:a})};function Ve(t){return function(t){for(let o=t;o;o=Xe(o))if(o instanceof Element&&"none"===getComputedStyle(o).display)return null;for(let o=Xe(t);o;o=Xe(o)){if(!(o instanceof Element))continue;const t=getComputedStyle(o);if("contents"!==t.display){if("static"!==t.position||"none"!==t.filter)return o;if("BODY"===o.tagName)return o}}return null}(t)}function Xe(t){return t.assignedSlot?t.assignedSlot:t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}var qe=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 Je extends o.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new o.Debouncer,this.revealDebouncer=new o.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return e.html`
526
+ `;var Yr=["top","right","bottom","left"],jr=["start","end"],Xe=Yr.reduce((e,o)=>e.concat(o,o+"-"+jr[0],o+"-"+jr[1]),[]),fe=Math.min,Rt=Math.max,ge=Math.round;var Ot=e=>({x:e,y:e}),ti={left:"right",right:"left",bottom:"top",top:"bottom"},ei={start:"end",end:"start"};function qe(e,o,n){return Rt(e,fe(o,n))}function Re(e,o){return typeof e=="function"?e(o):e}function Yt(e){return e.split("-")[0]}function At(e){return e.split("-")[1]}function Je(e){return e==="x"?"y":"x"}function Qe(e){return e==="y"?"height":"width"}function Ae(e){return["top","bottom"].includes(Yt(e))?"y":"x"}function to(e){return Je(Ae(e))}function Xr(e,o,n){n===void 0&&(n=!1);let i=At(e),a=to(e),l=Qe(a),c=a==="x"?i===(n?"end":"start")?"right":"left":i==="start"?"bottom":"top";return o.reference[l]>o.floating[l]&&(c=Ye(c)),[c,Ye(c)]}function qr(e){return e.replace(/start|end/g,o=>ei[o])}function Ye(e){return e.replace(/left|right|bottom|top/g,o=>ti[o])}function oi(e){return{top:0,right:0,bottom:0,left:0,...e}}function Jr(e){return typeof e!="number"?oi(e):{top:e,right:e,bottom:e,left:e}}function zt(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function Qr(e,o,n){let{reference:i,floating:a}=e,l=Ae(o),c=to(o),s=Qe(c),d=Yt(o),h=l==="y",x=i.x+i.width/2-a.width/2,m=i.y+i.height/2-a.height/2,N=i[s]/2-a[s]/2,v;switch(d){case"top":v={x,y:i.y-a.height};break;case"bottom":v={x,y:i.y+i.height};break;case"right":v={x:i.x+i.width,y:m};break;case"left":v={x:i.x-a.width,y:m};break;default:v={x:i.x,y:i.y}}switch(At(o)){case"start":v[c]-=N*(n&&h?-1:1);break;case"end":v[c]+=N*(n&&h?-1:1);break}return v}var tn=async(e,o,n)=>{let{placement:i="bottom",strategy:a="absolute",middleware:l=[],platform:c}=n,s=l.filter(Boolean),d=await(c.isRTL==null?void 0:c.isRTL(o)),h=await c.getElementRects({reference:e,floating:o,strategy:a}),{x,y:m}=Qr(h,i,d),N=i,v={},E=0;for(let I=0;I<s.length;I++){let{name:k,fn:B}=s[I],{x:H,y:F,data:Ct,reset:K}=await B({x,y:m,initialPlacement:i,placement:N,strategy:a,middlewareData:v,rects:h,platform:c,elements:{reference:e,floating:o}});if(x=H??x,m=F??m,v={...v,[k]:{...v[k],...Ct}},K&&E<=50){E++,typeof K=="object"&&(K.placement&&(N=K.placement),K.rects&&(h=K.rects===!0?await c.getElementRects({reference:e,floating:o,strategy:a}):K.rects),{x,y:m}=Qr(h,N,d)),I=-1;continue}}return{x,y:m,placement:N,strategy:a,middlewareData:v}};async function eo(e,o){var n;o===void 0&&(o={});let{x:i,y:a,platform:l,rects:c,elements:s,strategy:d}=e,{boundary:h="clippingAncestors",rootBoundary:x="viewport",elementContext:m="floating",altBoundary:N=!1,padding:v=0}=Re(o,e),E=Jr(v),k=s[N?m==="floating"?"reference":"floating":m],B=zt(await l.getClippingRect({element:(n=await(l.isElement==null?void 0:l.isElement(k)))==null||n?k:k.contextElement||await(l.getDocumentElement==null?void 0:l.getDocumentElement(s.floating)),boundary:h,rootBoundary:x,strategy:d})),H=m==="floating"?{...c.floating,x:i,y:a}:c.reference,F=await(l.getOffsetParent==null?void 0:l.getOffsetParent(s.floating)),Ct=await(l.isElement==null?void 0:l.isElement(F))?await(l.getScale==null?void 0:l.getScale(F))||{x:1,y:1}:{x:1,y:1},K=zt(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({rect:H,offsetParent:F,strategy:d}):H);return{top:(B.top-K.top+E.top)/Ct.y,bottom:(K.bottom-B.bottom+E.bottom)/Ct.y,left:(B.left-K.left+E.left)/Ct.x,right:(K.right-B.right+E.right)/Ct.x}}function ri(e,o,n){return(e?[...n.filter(a=>At(a)===e),...n.filter(a=>At(a)!==e)]:n.filter(a=>Yt(a)===a)).filter(a=>e?At(a)===e||(o?qr(a)!==a:!1):!0)}var oo=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(o){var n,i,a;let{rects:l,middlewareData:c,placement:s,platform:d,elements:h}=o,{crossAxis:x=!1,alignment:m,allowedPlacements:N=Xe,autoAlignment:v=!0,...E}=Re(e,o),I=m!==void 0||N===Xe?ri(m||null,v,N):N,k=await eo(o,E),B=((n=c.autoPlacement)==null?void 0:n.index)||0,H=I[B];if(H==null)return{};let F=Xr(H,l,await(d.isRTL==null?void 0:d.isRTL(h.floating)));if(s!==H)return{reset:{placement:I[0]}};let Ct=[k[Yt(H)],k[F[0]],k[F[1]]],K=[...((i=c.autoPlacement)==null?void 0:i.overflows)||[],{placement:H,overflows:Ct}],co=I[B+1];if(co)return{data:{index:B+1,overflows:K},reset:{placement:co}};let po=K.map(pt=>{let oe=At(pt.placement);return[pt.placement,oe&&x?pt.overflows.slice(0,2).reduce((Un,Dn)=>Un+Dn,0):pt.overflows[0],pt.overflows]}).sort((pt,oe)=>pt[1]-oe[1]),so=((a=po.filter(pt=>pt[2].slice(0,At(pt[0])?2:3).every(oe=>oe<=0))[0])==null?void 0:a[0])||po[0][0];return so!==s?{data:{index:B+1,overflows:K},reset:{placement:so}}:{}}}};var ro=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(o){let{x:n,y:i,placement:a}=o,{mainAxis:l=!0,crossAxis:c=!1,limiter:s={fn:k=>{let{x:B,y:H}=k;return{x:B,y:H}}},...d}=Re(e,o),h={x:n,y:i},x=await eo(o,d),m=Ae(Yt(a)),N=Je(m),v=h[N],E=h[m];if(l){let k=N==="y"?"top":"left",B=N==="y"?"bottom":"right",H=v+x[k],F=v-x[B];v=qe(H,v,F)}if(c){let k=m==="y"?"top":"left",B=m==="y"?"bottom":"right",H=E+x[k],F=E-x[B];E=qe(H,E,F)}let I=s.fn({...o,[N]:v,[m]:E});return{...I,data:{x:I.x-n,y:I.y-i}}}}};function St(e){return on(e)?(e.nodeName||"").toLowerCase():"#document"}function J(e){var o;return(e==null||(o=e.ownerDocument)==null?void 0:o.defaultView)||window}function vt(e){var o;return(o=(on(e)?e.ownerDocument:e.document)||window.document)==null?void 0:o.documentElement}function on(e){return e instanceof Node||e instanceof J(e).Node}function ht(e){return e instanceof Element||e instanceof J(e).Element}function at(e){return e instanceof HTMLElement||e instanceof J(e).HTMLElement}function en(e){return typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof J(e).ShadowRoot}function Xt(e){let{overflow:o,overflowX:n,overflowY:i,display:a}=et(e);return/auto|scroll|overlay|hidden|clip/.test(o+i+n)&&!["inline","contents"].includes(a)}function rn(e){return["table","td","th"].includes(St(e))}function $e(e){let o=We(),n=et(e);return n.transform!=="none"||n.perspective!=="none"||(n.containerType?n.containerType!=="normal":!1)||!o&&(n.backdropFilter?n.backdropFilter!=="none":!1)||!o&&(n.filter?n.filter!=="none":!1)||["transform","perspective","filter"].some(i=>(n.willChange||"").includes(i))||["paint","layout","strict","content"].some(i=>(n.contain||"").includes(i))}function nn(e){let o=Tt(e);for(;at(o)&&!he(o);){if($e(o))return o;o=Tt(o)}return null}function We(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function he(e){return["html","body","#document"].includes(St(e))}function et(e){return J(e).getComputedStyle(e)}function ye(e){return ht(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Tt(e){if(St(e)==="html")return e;let o=e.assignedSlot||e.parentNode||en(e)&&e.host||vt(e);return en(o)?o.host:o}function an(e){let o=Tt(e);return he(o)?e.ownerDocument?e.ownerDocument.body:e.body:at(o)&&Xt(o)?o:an(o)}function Le(e,o,n){var i;o===void 0&&(o=[]),n===void 0&&(n=!0);let a=an(e),l=a===((i=e.ownerDocument)==null?void 0:i.body),c=J(a);return l?o.concat(c,c.visualViewport||[],Xt(a)?a:[],c.frameElement&&n?Le(c.frameElement):[]):o.concat(a,Le(a,[],n))}function pn(e){let o=et(e),n=parseFloat(o.width)||0,i=parseFloat(o.height)||0,a=at(e),l=a?e.offsetWidth:n,c=a?e.offsetHeight:i,s=ge(n)!==l||ge(i)!==c;return s&&(n=l,i=c),{width:n,height:i,$:s}}function sn(e){return ht(e)?e:e.contextElement}function qt(e){let o=sn(e);if(!at(o))return Ot(1);let n=o.getBoundingClientRect(),{width:i,height:a,$:l}=pn(o),c=(l?ge(n.width):n.width)/i,s=(l?ge(n.height):n.height)/a;return(!c||!Number.isFinite(c))&&(c=1),(!s||!Number.isFinite(s))&&(s=1),{x:c,y:s}}var ni=Ot(0);function dn(e){let o=J(e);return!We()||!o.visualViewport?ni:{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}}function ii(e,o,n){return o===void 0&&(o=!1),!n||o&&n!==J(e)?!1:o}function ue(e,o,n,i){o===void 0&&(o=!1),n===void 0&&(n=!1);let a=e.getBoundingClientRect(),l=sn(e),c=Ot(1);o&&(i?ht(i)&&(c=qt(i)):c=qt(e));let s=ii(l,n,i)?dn(l):Ot(0),d=(a.left+s.x)/c.x,h=(a.top+s.y)/c.y,x=a.width/c.x,m=a.height/c.y;if(l){let N=J(l),v=i&&ht(i)?J(i):i,E=N.frameElement;for(;E&&i&&v!==N;){let I=qt(E),k=E.getBoundingClientRect(),B=et(E),H=k.left+(E.clientLeft+parseFloat(B.paddingLeft))*I.x,F=k.top+(E.clientTop+parseFloat(B.paddingTop))*I.y;d*=I.x,h*=I.y,x*=I.x,m*=I.y,d+=H,h+=F,E=J(E).frameElement}}return zt({width:x,height:m,x:d,y:h})}function ai(e){let{rect:o,offsetParent:n,strategy:i}=e,a=at(n),l=vt(n);if(n===l)return o;let c={scrollLeft:0,scrollTop:0},s=Ot(1),d=Ot(0);if((a||!a&&i!=="fixed")&&((St(n)!=="body"||Xt(l))&&(c=ye(n)),at(n))){let h=ue(n);s=qt(n),d.x=h.x+n.clientLeft,d.y=h.y+n.clientTop}return{width:o.width*s.x,height:o.height*s.y,x:o.x*s.x-c.scrollLeft*s.x+d.x,y:o.y*s.y-c.scrollTop*s.y+d.y}}function li(e){return Array.from(e.getClientRects())}function fn(e){return ue(vt(e)).left+ye(e).scrollLeft}function ci(e){let o=vt(e),n=ye(e),i=e.ownerDocument.body,a=Rt(o.scrollWidth,o.clientWidth,i.scrollWidth,i.clientWidth),l=Rt(o.scrollHeight,o.clientHeight,i.scrollHeight,i.clientHeight),c=-n.scrollLeft+fn(e),s=-n.scrollTop;return et(i).direction==="rtl"&&(c+=Rt(o.clientWidth,i.clientWidth)-a),{width:a,height:l,x:c,y:s}}function pi(e,o){let n=J(e),i=vt(e),a=n.visualViewport,l=i.clientWidth,c=i.clientHeight,s=0,d=0;if(a){l=a.width,c=a.height;let h=We();(!h||h&&o==="fixed")&&(s=a.offsetLeft,d=a.offsetTop)}return{width:l,height:c,x:s,y:d}}function si(e,o){let n=ue(e,!0,o==="fixed"),i=n.top+e.clientTop,a=n.left+e.clientLeft,l=at(e)?qt(e):Ot(1),c=e.clientWidth*l.x,s=e.clientHeight*l.y,d=a*l.x,h=i*l.y;return{width:c,height:s,x:d,y:h}}function ln(e,o,n){let i;if(o==="viewport")i=pi(e,n);else if(o==="document")i=ci(vt(e));else if(ht(o))i=si(o,n);else{let a=dn(e);i={...o,x:o.x-a.x,y:o.y-a.y}}return zt(i)}function gn(e,o){let n=Tt(e);return n===o||!ht(n)||he(n)?!1:et(n).position==="fixed"||gn(n,o)}function di(e,o){let n=o.get(e);if(n)return n;let i=Le(e,[],!1).filter(s=>ht(s)&&St(s)!=="body"),a=null,l=et(e).position==="fixed",c=l?Tt(e):e;for(;ht(c)&&!he(c);){let s=et(c),d=$e(c);!d&&s.position==="fixed"&&(a=null),(l?!d&&!a:!d&&s.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||Xt(c)&&!d&&gn(e,c))?i=i.filter(x=>x!==c):a=s,c=Tt(c)}return o.set(e,i),i}function fi(e){let{element:o,boundary:n,rootBoundary:i,strategy:a}=e,c=[...n==="clippingAncestors"?di(o,this._c):[].concat(n),i],s=c[0],d=c.reduce((h,x)=>{let m=ln(o,x,a);return h.top=Rt(m.top,h.top),h.right=fe(m.right,h.right),h.bottom=fe(m.bottom,h.bottom),h.left=Rt(m.left,h.left),h},ln(o,s,a));return{width:d.right-d.left,height:d.bottom-d.top,x:d.left,y:d.top}}function gi(e){return pn(e)}function hi(e,o,n){let i=at(o),a=vt(o),l=n==="fixed",c=ue(e,!0,l,o),s={scrollLeft:0,scrollTop:0},d=Ot(0);if(i||!i&&!l)if((St(o)!=="body"||Xt(a))&&(s=ye(o)),i){let h=ue(o,!0,l,o);d.x=h.x+o.clientLeft,d.y=h.y+o.clientTop}else a&&(d.x=fn(a));return{x:c.left+s.scrollLeft-d.x,y:c.top+s.scrollTop-d.y,width:c.width,height:c.height}}function cn(e,o){return!at(e)||et(e).position==="fixed"?null:o?o(e):e.offsetParent}function hn(e,o){let n=J(e);if(!at(e))return n;let i=cn(e,o);for(;i&&rn(i)&&et(i).position==="static";)i=cn(i,o);return i&&(St(i)==="html"||St(i)==="body"&&et(i).position==="static"&&!$e(i))?n:i||nn(e)||n}var yi=async function(e){let{reference:o,floating:n,strategy:i}=e,a=this.getOffsetParent||hn,l=this.getDimensions;return{reference:hi(o,await a(n),i),floating:{x:0,y:0,...await l(n)}}};function ui(e){return et(e).direction==="rtl"}var Pe={convertOffsetParentRelativeRectToViewportRelativeRect:ai,getDocumentElement:vt,getClippingRect:fi,getOffsetParent:hn,getElementRects:yi,getClientRects:li,getDimensions:gi,getScale:qt,isElement:ht,isRTL:ui};var yn=(e,o,n)=>{let i=new Map,a={platform:Pe,...n},l={...a.platform,_c:i};return tn(e,o,{...a,platform:l})};function un(e){return mi(e)}function no(e){return e.assignedSlot?e.assignedSlot:e.parentNode instanceof ShadowRoot?e.parentNode.host:e.parentNode}function mi(e){for(let o=e;o;o=no(o))if(o instanceof Element&&getComputedStyle(o).display==="none")return null;for(let o=no(e);o;o=no(o)){if(!(o instanceof Element))continue;let n=getComputedStyle(o);if(n.display!=="contents"&&(n.position!=="static"||n.filter!=="none"||o.tagName==="BODY"))return o}return null}async function mn(e,o,n){return yn(e,o,{platform:{...Pe,getOffsetParent:i=>Pe.getOffsetParent(i,un)},middleware:[ro({crossAxis:!0}),oo({allowedPlacements:[n]})]})}var Q=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},W=class extends me.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new me.Debouncer,this.revealDebouncer=new me.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return bn.html`
536
527
  <div part="container"
537
528
  class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
538
529
  @mouseenter=${this.onHover}
@@ -550,37 +541,40 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
550
541
  </div>
551
542
  </div>
552
543
  </div>
553
- `}updated(t){t.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(t)}contentAvailableCallback(t){super.contentAvailableCallback(t),["visible","text"].some((o=>t.has(o)))&&this.visible&&this.positionTooltip()}async show(t){this.visible=!0,null!=t&&await this.hideDebounce.run((()=>{this.hide()}),t)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var t;return(null!==(t=this.slotNodes)&&void 0!==t?t:[]).filter((t=>t.nodeType==Node.ELEMENT_NODE))[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){const t=this.tooltipContent.style;switch(t.transition="none",this.validPosition){case"top":t.top=this.tooltip.clientHeight+"px",t.left="0";break;case"bottom":t.top=-this.tooltip.clientHeight+"px",t.left="0";break;case"left":t.top="0",t.left=this.tooltip.clientWidth+"px";break;case"right":t.top="0",t.left=-this.tooltip.clientWidth+"px"}}}positionTooltip(){this.resetTooltipContent(),this.tooltip&&this.slottedElement&&(this.tooltip.style.left="",this.tooltip.style.top="",async function(t,o,e){return _e(t,o,{platform:{...Ye,getOffsetParent:t=>Ye.getOffsetParent(t,Ve)},middleware:[(r={crossAxis:!0},void 0===r&&(r={}),{name:"shift",options:r,async fn(t){const{x:o,y:e,placement:i}=t,{mainAxis:a=!0,crossAxis:n=!1,limiter:l={fn:t=>{let{x:o,y:e}=t;return{x:o,y:e}}},...c}=ae(r,t),p={x:o,y:e},f=await ye(t,c),s=fe(ne(i)),d=ce(s);let h=p[d],g=p[s];if(a){const t="y"===d?"bottom":"right";h=ie(h+f["y"===d?"top":"left"],h,h-f[t])}if(n){const t="y"===s?"bottom":"right";g=ie(g+f["y"===s?"top":"left"],g,g-f[t])}const y=l.fn({...t,[d]:h,[s]:g});return{...y,data:{x:y.x-o,y:y.y-e}}}}),ue({allowedPlacements:[e]})]});var r}(this.slottedElement,this.tooltip,this.position).then((({x:t,y:o})=>{this.tooltip&&(this.tooltip.style.left=`${t}px`,this.tooltip.style.top=`${o}px`)}))),this.revealDebouncer.run((()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")}),this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout((()=>window.addEventListener("touchstart",(t=>{t.composedPath().includes(this.container)||this.onOut()}),{once:!0})),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}onClick(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(t,o){return Math.max(t,Math.min(0,-o))}}Je.elementDefinitions={"ft-typography":Co},Je.styles=Vo,qe([r.property()],Je.prototype,"text",void 0),qe([r.property({type:Boolean})],Je.prototype,"manual",void 0),qe([r.property({type:Boolean})],Je.prototype,"inline",void 0),qe([r.property({type:Number})],Je.prototype,"delay",void 0),qe([r.property()],Je.prototype,"position",void 0),qe([r.queryAssignedNodes()],Je.prototype,"slotNodes",void 0),qe([r.query(".ft-tooltip--container")],Je.prototype,"container",void 0),qe([r.query(".ft-tooltip")],Je.prototype,"tooltip",void 0),qe([r.query(".ft-tooltip--content")],Je.prototype,"tooltipContent",void 0),qe([r.state()],Je.prototype,"visible",void 0),qe([r.eventOptions({passive:!0})],Je.prototype,"onTouch",null),qe([r.eventOptions({passive:!0})],Je.prototype,"onHover",null),qe([r.eventOptions({passive:!0})],Je.prototype,"onOut",null),qe([r.eventOptions({passive:!0})],Je.prototype,"onClick",null),o.customElement("ft-tooltip")(Je);class Qe extends o.FtLitElement{render(){return e.html`
544
+ `}updated(o){o.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(o)}contentAvailableCallback(o){super.contentAvailableCallback(o),["visible","text"].some(n=>o.has(n))&&this.visible&&this.positionTooltip()}async show(o){this.visible=!0,o!=null&&await this.hideDebounce.run(()=>{this.hide()},o)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var o;return((o=this.slotNodes)!==null&&o!==void 0?o:[]).filter(n=>n.nodeType==Node.ELEMENT_NODE)[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){let o=this.tooltipContent.style;switch(o.transition="none",this.validPosition){case"top":o.top=this.tooltip.clientHeight+"px",o.left="0";break;case"bottom":o.top=-this.tooltip.clientHeight+"px",o.left="0";break;case"left":o.top="0",o.left=this.tooltip.clientWidth+"px";break;case"right":o.top="0",o.left=-this.tooltip.clientWidth+"px";break}}}positionTooltip(){this.resetTooltipContent(),this.tooltip&&this.slottedElement&&(this.tooltip.style.left="",this.tooltip.style.top="",mn(this.slottedElement,this.tooltip,this.position).then(({x:o,y:n})=>{this.tooltip&&(this.tooltip.style.left=`${o}px`,this.tooltip.style.top=`${n}px`)})),this.revealDebouncer.run(()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")},this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout(()=>window.addEventListener("touchstart",o=>{o.composedPath().includes(this.container)||this.onOut()},{once:!0}),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}onClick(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(o,n){return Math.max(o,Math.min(0,-n))}};W.elementDefinitions={"ft-typography":tt};W.styles=Vr;Q([(0,U.property)()],W.prototype,"text",void 0);Q([(0,U.property)({type:Boolean})],W.prototype,"manual",void 0);Q([(0,U.property)({type:Boolean})],W.prototype,"inline",void 0);Q([(0,U.property)({type:Number})],W.prototype,"delay",void 0);Q([(0,U.property)()],W.prototype,"position",void 0);Q([(0,U.queryAssignedNodes)()],W.prototype,"slotNodes",void 0);Q([(0,U.query)(".ft-tooltip--container")],W.prototype,"container",void 0);Q([(0,U.query)(".ft-tooltip")],W.prototype,"tooltip",void 0);Q([(0,U.query)(".ft-tooltip--content")],W.prototype,"tooltipContent",void 0);Q([(0,U.state)()],W.prototype,"visible",void 0);Q([(0,U.eventOptions)({passive:!0})],W.prototype,"onTouch",null);Q([(0,U.eventOptions)({passive:!0})],W.prototype,"onHover",null);Q([(0,U.eventOptions)({passive:!0})],W.prototype,"onOut",null);Q([(0,U.eventOptions)({passive:!0})],W.prototype,"onClick",null);(0,xn.customElement)("ft-tooltip")(W);var vn=u(R());var On=u(_()),Sn=u(R());var kt=class extends Sn.FtLitElement{render(){return On.html`
554
545
  <div class="ft-loader">
555
546
  <div></div>
556
547
  <div></div>
557
548
  <div></div>
558
549
  <div></div>
559
550
  </div>
560
- `}}Qe.styles=zo,o.customElement("ft-loader")(Qe);var tr=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 or extends(o.toFtFormComponent(o.FtLitElement,"button")){constructor(){super(),this.role="button",this.type="button",this.disabled=!1,this.label="",this.icon=void 0,this.trailingIcon=!1,this.loading=!1,this.tooltipPosition="bottom",this.hideTooltip=!1,this.forceTooltip=!1,this.addEventListener("click",(t=>{var o;this.isDisabled()?(t.preventDefault(),t.stopPropagation(),t.stopImmediatePropagation()):"submit"==this.type&&(null===(o=this.form)||void 0===o||o.requestSubmit())}))}render(){return this.addTooltipIfNeeded(e.html`
551
+ `}};kt.styles=Dr;(0,vn.customElement)("ft-loader")(kt);var Jt=u(_()),Cn=u(ne()),V=u(st()),ot=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},T=class extends(0,Qt.toFtFormComponent)(Qt.FtLitElement,"button"){constructor(){super(),this.role="button",this.type="button",this.disabled=!1,this.label="",this.icon=void 0,this.trailingIcon=!1,this.loading=!1,this.tooltipPosition="bottom",this.hideTooltip=!1,this.forceTooltip=!1,this.addEventListener("click",o=>{var n;this.isDisabled()?(o.preventDefault(),o.stopPropagation(),o.stopImmediatePropagation()):this.type=="submit"&&((n=this.form)===null||n===void 0||n.requestSubmit())})}render(){return this.addTooltipIfNeeded(Jt.html`
561
552
  <button part="button"
562
- class="${i.classMap(this.buttonClasses)}"
553
+ class="${(0,Cn.classMap)(this.buttonClasses)}"
563
554
  aria-label="${this.getLabel()}"
564
555
  ?disabled=${this.isDisabled()}>
565
556
  <ft-ripple part="ripple" ?disabled=${this.isDisabled()}></ft-ripple>
566
557
  <ft-typography part="label"
567
558
  variant=${this.typographyVariant}
568
559
  element="span"
569
- class="ft-button--label ${o.isSafari?"ft-safari-ellipsis-fix":""}"
560
+ class="ft-button--label ${Qt.isSafari?"ft-safari-ellipsis-fix":""}"
570
561
  ?hidden=${!this.hasTextContent()}>
571
562
  <slot @slotchange=${this.onSlotchange}></slot>
572
563
  </ft-typography>
573
564
  ${this.resolveIcon()}
574
565
  </button>
575
- `)}addTooltipIfNeeded(t){return this.getLabel().trim().length>0&&(this.forceTooltip||!this.hasTextContent()&&!this.hideTooltip)?e.html`
566
+ `)}addTooltipIfNeeded(o){return this.getLabel().trim().length>0&&(this.forceTooltip||!this.hasTextContent()&&!this.hideTooltip)?Jt.html`
576
567
  <ft-tooltip part="tooltip"
577
568
  text="${this.getLabel()}"
578
569
  position="${this.tooltipPosition}">
579
- ${t}
570
+ ${o}
580
571
  </ft-tooltip>
581
- `:t}resolveIcon(){return this.loading?e.html`
582
- <ft-loader part="loader icon"></ft-loader> `:this.icon?e.html`
583
- <ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon> `:e.nothing}focus(){var t;null===(t=this.button)||void 0===t||t.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(t){return t instanceof HTMLSlotElement?t.assignedNodes().map((t=>this.unslotText(t))).join(""):(null==t?void 0:t.textContent)||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}}or.elementDefinitions={"ft-ripple":b,"ft-tooltip":Je,"ft-typography":Co,"ft-icon":ko,"ft-loader":Qe},tr([r.property({type:String,reflect:!0})],or.prototype,"role",void 0),tr([r.property()],or.prototype,"type",void 0),tr([r.property({type:Boolean})],or.prototype,"disabled",void 0),tr([r.property()],or.prototype,"label",void 0),tr([r.property()],or.prototype,"icon",void 0),tr([r.property()],or.prototype,"iconVariant",void 0),tr([r.property({type:Boolean})],or.prototype,"trailingIcon",void 0),tr([r.property({type:Boolean})],or.prototype,"loading",void 0),tr([r.property()],or.prototype,"tooltipPosition",void 0),tr([r.property({type:Boolean})],or.prototype,"hideTooltip",void 0),tr([r.property({type:Boolean})],or.prototype,"forceTooltip",void 0),tr([r.query(".ft-button")],or.prototype,"button",void 0),tr([r.query(".ft-button--label slot")],or.prototype,"slottedContent",void 0);var er=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 rr extends or{constructor(){super(...arguments),this.primary=!1,this.outlined=!1,this.dense=!1,this.round=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--outlined":this.outlined,"ft-button--dense":this.dense,"ft-button--round":this.round,"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0}}get typographyVariant(){return"button"}}rr.styles=[o.safariEllipsisFix,Go],er([r.property({type:Boolean})],rr.prototype,"primary",void 0),er([r.property({type:Boolean})],rr.prototype,"outlined",void 0),er([r.property({type:Boolean})],rr.prototype,"dense",void 0),er([r.property({type:Boolean})],rr.prototype,"round",void 0);const ir=[e.css`
572
+ `:o}resolveIcon(){return this.loading?Jt.html`
573
+ <ft-loader part="loader icon"></ft-loader> `:this.icon?Jt.html`
574
+ <ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon>
575
+ `:Jt.html`
576
+ <slot part="icon" name="icon"></slot>
577
+ `}focus(){var o;(o=this.button)===null||o===void 0||o.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(o){return o instanceof HTMLSlotElement?o.assignedNodes().map(n=>this.unslotText(n)).join(""):o?.textContent||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}};T.elementDefinitions={"ft-ripple":A,"ft-tooltip":W,"ft-typography":tt,"ft-icon":X,"ft-loader":kt};ot([(0,V.property)({type:String,reflect:!0})],T.prototype,"role",void 0);ot([(0,V.property)()],T.prototype,"type",void 0);ot([(0,V.property)({type:Boolean})],T.prototype,"disabled",void 0);ot([(0,V.property)()],T.prototype,"label",void 0);ot([(0,V.property)()],T.prototype,"icon",void 0);ot([(0,V.property)()],T.prototype,"iconVariant",void 0);ot([(0,V.property)({type:Boolean})],T.prototype,"trailingIcon",void 0);ot([(0,V.property)({type:Boolean})],T.prototype,"loading",void 0);ot([(0,V.property)()],T.prototype,"tooltipPosition",void 0);ot([(0,V.property)({type:Boolean})],T.prototype,"hideTooltip",void 0);ot([(0,V.property)({type:Boolean})],T.prototype,"forceTooltip",void 0);ot([(0,V.query)(".ft-button")],T.prototype,"button",void 0);ot([(0,V.query)(".ft-button--label slot")],T.prototype,"slottedContent",void 0);var Ie=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},lt=class extends T{constructor(){super(...arguments),this.primary=!1,this.outlined=!1,this.dense=!1,this.round=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--outlined":this.outlined,"ft-button--dense":this.dense,"ft-button--round":this.round,"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0}}get typographyVariant(){return"button"}};lt.styles=[Nn.safariEllipsisFix,Mr];Ie([(0,be.property)({type:Boolean})],lt.prototype,"primary",void 0);Ie([(0,be.property)({type:Boolean})],lt.prototype,"outlined",void 0);Ie([(0,be.property)({type:Boolean})],lt.prototype,"dense",void 0);Ie([(0,be.property)({type:Boolean})],lt.prototype,"round",void 0);var te=u(st());var Rn=u(R());var wn=u(_()),w=u(R());var En=[wn.css`
584
578
  :host {
585
579
  display: inline-block;
586
580
  max-width: 100%;
@@ -630,7 +624,7 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
630
624
  }
631
625
 
632
626
  .ft-button:focus-visible {
633
- outline-color: ${ft.focusFocusRingColor};
627
+ outline-color: ${y.focusFocusRingColor};
634
628
  outline-style: solid;
635
629
  }
636
630
 
@@ -659,146 +653,146 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
659
653
  /** Primary styles **/
660
654
 
661
655
  .ft-button--primary {
662
- ${o.setVariable(Ro.color,ft.primaryIconColor)};
656
+ ${(0,w.setVariable)(q.color,y.primaryIconColor)};
663
657
 
664
- ${o.setVariable(l.color,ft.primaryStateLayerColor)};
665
- ${o.setVariable(l.opacityContentOnSurfaceHover,ft.primaryHoverStateLayerOpacity)};
666
- ${o.setVariable(l.opacityContentOnSurfaceFocused,ft.primaryFocusStateLayerOpacity)};
667
- ${o.setVariable(l.opacityContentOnSurfaceSelected,ft.primaryActiveStateLayerOpacity)};
668
- ${o.setVariable(l.opacityContentOnSurfacePressed,ft.primaryActiveStateLayerOpacity)};
658
+ ${(0,w.setVariable)(C.color,y.primaryStateLayerColor)};
659
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceHover,y.primaryHoverStateLayerOpacity)};
660
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceFocused,y.primaryFocusStateLayerOpacity)};
661
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceSelected,y.primaryActiveStateLayerOpacity)};
662
+ ${(0,w.setVariable)(C.opacityContentOnSurfacePressed,y.primaryActiveStateLayerOpacity)};
669
663
 
670
- background-color: ${ft.primaryBackgroundColor};
671
- color: ${ft.primaryColor};
664
+ background-color: ${y.primaryBackgroundColor};
665
+ color: ${y.primaryColor};
672
666
  border-style: none;
673
667
  }
674
668
 
675
669
  .ft-button--primary[disabled] {
676
- opacity: ${ft.primaryDisabledComponentOpacity};
670
+ opacity: ${y.primaryDisabledComponentOpacity};
677
671
  }
678
672
 
679
673
  .ft-button--primary ft-icon {
680
- color: ${ft.primaryIconColor};
674
+ color: ${y.primaryIconColor};
681
675
  }
682
676
 
683
677
  /** Secondary styles **/
684
678
 
685
679
  .ft-button--secondary {
686
- ${o.setVariable(Ro.color,ft.secondaryIconColor)};
680
+ ${(0,w.setVariable)(q.color,y.secondaryIconColor)};
687
681
 
688
- ${o.setVariable(l.color,ft.secondaryStateLayerColor)};
689
- ${o.setVariable(l.opacityContentOnSurfaceHover,ft.secondaryHoverStateLayerOpacity)};
690
- ${o.setVariable(l.opacityContentOnSurfaceFocused,ft.secondaryFocusStateLayerOpacity)};
691
- ${o.setVariable(l.opacityContentOnSurfaceSelected,ft.secondaryActiveStateLayerOpacity)};
692
- ${o.setVariable(l.opacityContentOnSurfacePressed,ft.secondaryActiveStateLayerOpacity)};
682
+ ${(0,w.setVariable)(C.color,y.secondaryStateLayerColor)};
683
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceHover,y.secondaryHoverStateLayerOpacity)};
684
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceFocused,y.secondaryFocusStateLayerOpacity)};
685
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceSelected,y.secondaryActiveStateLayerOpacity)};
686
+ ${(0,w.setVariable)(C.opacityContentOnSurfacePressed,y.secondaryActiveStateLayerOpacity)};
693
687
 
694
- background-color: ${ft.secondaryBackgroundColor};
695
- color: ${ft.secondaryColor};
696
- border-color: ${ft.secondaryBorderColor};
688
+ background-color: ${y.secondaryBackgroundColor};
689
+ color: ${y.secondaryColor};
690
+ border-color: ${y.secondaryBorderColor};
697
691
  border-style: solid;
698
692
  }
699
693
 
700
694
  .ft-button--secondary[disabled] {
701
- opacity: ${ft.secondaryDisabledComponentOpacity};
695
+ opacity: ${y.secondaryDisabledComponentOpacity};
702
696
  }
703
697
 
704
698
  .ft-button--secondary ft-icon {
705
- color: ${ft.secondaryIconColor};
699
+ color: ${y.secondaryIconColor};
706
700
  }
707
701
 
708
702
  /** Tertiary styles **/
709
703
 
710
704
  .ft-button--tertiary {
711
- ${o.setVariable(Ro.color,ft.tertiaryIconColor)};
705
+ ${(0,w.setVariable)(q.color,y.tertiaryIconColor)};
712
706
 
713
- ${o.setVariable(l.color,ft.tertiaryStateLayerColor)};
714
- ${o.setVariable(l.opacityContentOnSurfaceHover,ft.tertiaryHoverStateLayerOpacity)};
715
- ${o.setVariable(l.opacityContentOnSurfaceFocused,ft.tertiaryFocusStateLayerOpacity)};
716
- ${o.setVariable(l.opacityContentOnSurfaceSelected,ft.tertiaryActiveStateLayerOpacity)};
717
- ${o.setVariable(l.opacityContentOnSurfacePressed,ft.tertiaryActiveStateLayerOpacity)};
707
+ ${(0,w.setVariable)(C.color,y.tertiaryStateLayerColor)};
708
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceHover,y.tertiaryHoverStateLayerOpacity)};
709
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceFocused,y.tertiaryFocusStateLayerOpacity)};
710
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceSelected,y.tertiaryActiveStateLayerOpacity)};
711
+ ${(0,w.setVariable)(C.opacityContentOnSurfacePressed,y.tertiaryActiveStateLayerOpacity)};
718
712
 
719
- background-color: ${ft.tertiaryBackgroundColor};
720
- color: ${ft.tertiaryColor};
713
+ background-color: ${y.tertiaryBackgroundColor};
714
+ color: ${y.tertiaryColor};
721
715
  border-style: none;
722
716
  }
723
717
 
724
718
  .ft-button--tertiary[disabled] {
725
- opacity: ${ft.tertiaryDisabledComponentOpacity};
719
+ opacity: ${y.tertiaryDisabledComponentOpacity};
726
720
  }
727
721
 
728
722
  .ft-button--tertiary ft-icon {
729
- color: ${ft.tertiaryIconColor};
723
+ color: ${y.tertiaryIconColor};
730
724
  }
731
725
 
732
726
  /** Neutral styles **/
733
727
 
734
728
  .ft-button--neutral {
735
- ${o.setVariable(Ro.color,ft.neutralIconColor)};
729
+ ${(0,w.setVariable)(q.color,y.neutralIconColor)};
736
730
 
737
- ${o.setVariable(l.backgroundColor,ft.neutralStateLayerColor)};
738
- ${o.setVariable(l.opacityContentOnSurfaceHover,ft.neutralHoverStateLayerOpacity)};
739
- ${o.setVariable(l.opacityContentOnSurfaceFocused,ft.neutralFocusStateLayerOpacity)};
740
- ${o.setVariable(l.opacityContentOnSurfaceSelected,ft.neutralActiveStateLayerOpacity)};
741
- ${o.setVariable(l.opacityContentOnSurfacePressed,ft.neutralActiveStateLayerOpacity)};
731
+ ${(0,w.setVariable)(C.backgroundColor,y.neutralStateLayerColor)};
732
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceHover,y.neutralHoverStateLayerOpacity)};
733
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceFocused,y.neutralFocusStateLayerOpacity)};
734
+ ${(0,w.setVariable)(C.opacityContentOnSurfaceSelected,y.neutralActiveStateLayerOpacity)};
735
+ ${(0,w.setVariable)(C.opacityContentOnSurfacePressed,y.neutralActiveStateLayerOpacity)};
742
736
 
743
- background-color: ${ft.neutralBackgroundColor};
744
- color: ${ft.neutralColor};
737
+ background-color: ${y.neutralBackgroundColor};
738
+ color: ${y.neutralColor};
745
739
  border-style: none;
746
740
  }
747
741
 
748
742
  .ft-button--neutral[disabled] {
749
- opacity: ${ft.neutralDisabledComponentOpacity};
743
+ opacity: ${y.neutralDisabledComponentOpacity};
750
744
  }
751
745
 
752
746
  .ft-button--neutral ft-icon {
753
- color: ${ft.neutralIconColor};
747
+ color: ${y.neutralIconColor};
754
748
  }
755
749
 
756
750
  /** Large styles **/
757
751
 
758
752
  .ft-button--large {
759
- ${o.setVariable(Io.size,ft.largeIconSize)};
760
- ${o.setVariable(Ro.size,ft.largeIconSize)};
753
+ ${(0,w.setVariable)(M.size,y.largeIconSize)};
754
+ ${(0,w.setVariable)(q.size,y.largeIconSize)};
761
755
 
762
- height: ${ft.largeHeight};
763
- padding: 0 ${ft.largeHorizontalPadding};
764
- gap: ${ft.largeGap};
765
- border-radius: ${ft.largeBorderRadius};
766
- border-width: ${ft.largeBorderWidth};
756
+ height: ${y.largeHeight};
757
+ padding: 0 ${y.largeHorizontalPadding};
758
+ gap: ${y.largeGap};
759
+ border-radius: ${y.largeBorderRadius};
760
+ border-width: ${y.largeBorderWidth};
767
761
  }
768
762
 
769
763
  .ft-button--large:focus-visible {
770
- outline-width: ${ft.largeFocusOutlineWidth};
771
- outline-offset: ${ft.largeFocusOutlineOffset};
764
+ outline-width: ${y.largeFocusOutlineWidth};
765
+ outline-offset: ${y.largeFocusOutlineOffset};
772
766
  }
773
767
 
774
768
  .ft-button--large.ft-button--icon-only {
775
- width: ${ft.largeIconOnlyWidth};
769
+ width: ${y.largeIconOnlyWidth};
776
770
  padding: unset;
777
771
  }
778
772
 
779
773
  /** Small styles **/
780
774
 
781
775
  .ft-button--small {
782
- ${o.setVariable(Io.size,ft.smallIconSize)};
783
- ${o.setVariable(Ro.size,ft.smallIconSize)};
776
+ ${(0,w.setVariable)(M.size,y.smallIconSize)};
777
+ ${(0,w.setVariable)(q.size,y.smallIconSize)};
784
778
 
785
- height: ${ft.smallHeight};
786
- padding: 0 ${ft.smallHorizontalPadding};
787
- gap: ${ft.smallGap};
788
- border-radius: ${ft.smallBorderRadius};
789
- border-width: ${ft.smallBorderWidth};
779
+ height: ${y.smallHeight};
780
+ padding: 0 ${y.smallHorizontalPadding};
781
+ gap: ${y.smallGap};
782
+ border-radius: ${y.smallBorderRadius};
783
+ border-width: ${y.smallBorderWidth};
790
784
  }
791
785
 
792
786
  .ft-button--small:focus-visible {
793
- outline-width: ${ft.smallFocusOutlineWidth};
794
- outline-offset: ${ft.smallFocusOutlineOffset};
787
+ outline-width: ${y.smallFocusOutlineWidth};
788
+ outline-offset: ${y.smallFocusOutlineOffset};
795
789
  }
796
790
 
797
791
  .ft-button--small.ft-button--icon-only {
798
- width: ${ft.smallIconOnlyWidth};
792
+ width: ${y.smallIconOnlyWidth};
799
793
  padding: unset;
800
794
  }
801
- `,o.noTextSelect];var ar=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 nr extends or{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--secondary":this.secondary,"ft-button--tertiary":this.tertiary||!this.primary&&!this.secondary&&!this.neutral,"ft-button--neutral":this.neutral,"ft-button--large":!this.small,"ft-button--small":this.small,"ft-button--icon-only":!this.hasTextContent(),"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0,"ft-button--no-icon":!this.icon}}get typographyVariant(){return this.small?it.caption1medium:it.body2medium}}nr.styles=[o.safariEllipsisFix,ir],ar([r.property({type:Boolean})],nr.prototype,"primary",void 0),ar([r.property({type:Boolean})],nr.prototype,"secondary",void 0),ar([r.property({type:Boolean})],nr.prototype,"tertiary",void 0),ar([r.property({type:Boolean})],nr.prototype,"neutral",void 0),ar([r.property({type:Boolean})],nr.prototype,"small",void 0),o.customElement("ft-button")(rr),o.customElement("ftds-button")(nr);const lr=o.FtCssVariableFactory.extend("--ft-chip-color","",o.designSystemVariables.colorOnSurface),cr={backgroundColor:o.FtCssVariableFactory.extend("--ft-chip-background-color","",o.designSystemVariables.colorSurface),color:lr,fontSize:o.FtCssVariableFactory.extend("--ft-chip-font-size","",Pt.fontSize),iconSize:o.FtCssVariableFactory.create("--ft-chip-icon-size","","SIZE","18px"),borderRadius:o.FtCssVariableFactory.create("--ft-chip-border-radius","","SIZE",""),rippleColor:o.FtCssVariableFactory.extend("--ft-chip-ripple-color","",lr),horizontalPadding:o.FtCssVariableFactory.create("--ft-chip-horizontal-padding","","SIZE","6px"),verticalPadding:o.FtCssVariableFactory.create("--ft-chip-vertical-padding","","SIZE","6px"),colorOutline:o.FtCssVariableFactory.external(o.designSystemVariables.colorOutline,"Design system"),opacityDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOpacityDisabled,"Design system")},pr=o.FtCssVariableFactory.extend("--ft-chip-highlighted-color","",o.FtCssVariableFactory.extend("--ft-chip-color","",o.designSystemVariables.colorOnPrimary)),fr={backgroundColor:o.FtCssVariableFactory.extend("--ft-chip-highlighted-background-color","",o.FtCssVariableFactory.extend("--ft-chip-background-color","",o.designSystemVariables.colorPrimary)),color:pr,rippleColor:o.FtCssVariableFactory.extend("--ft-chip-highlighted-ripple-color","",pr)},sr=o.FtCssVariableFactory.create("--ft-chip-dense-horizontal-padding","","SIZE","4px"),dr=o.FtCssVariableFactory.create("--ft-chip-dense-vertical-padding","","SIZE","4px"),hr=[o.noTextSelect,e.css`
795
+ `,w.noTextSelect];var xe=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},yt=class extends T{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--secondary":this.secondary,"ft-button--tertiary":this.tertiary||!this.primary&&!this.secondary&&!this.neutral,"ft-button--neutral":this.neutral,"ft-button--large":!this.small,"ft-button--small":this.small,"ft-button--icon-only":!this.hasTextContent(),"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0,"ft-button--no-icon":!this.icon}}get typographyVariant(){return this.small?It.caption1medium:It.body2medium}};yt.styles=[Rn.safariEllipsisFix,En];xe([(0,te.property)({type:Boolean})],yt.prototype,"primary",void 0);xe([(0,te.property)({type:Boolean})],yt.prototype,"secondary",void 0);xe([(0,te.property)({type:Boolean})],yt.prototype,"tertiary",void 0);xe([(0,te.property)({type:Boolean})],yt.prototype,"neutral",void 0);xe([(0,te.property)({type:Boolean})],yt.prototype,"small",void 0);(0,io.customElement)("ft-button")(lt);(0,io.customElement)("ftds-button")(yt);var An=S.FtCssVariableFactory.extend("--ft-chip-color","",S.designSystemVariables.colorOnSurface),G={backgroundColor:S.FtCssVariableFactory.extend("--ft-chip-background-color","",S.designSystemVariables.colorSurface),color:An,fontSize:S.FtCssVariableFactory.extend("--ft-chip-font-size","",dt.fontSize),iconSize:S.FtCssVariableFactory.create("--ft-chip-icon-size","","SIZE","18px"),borderRadius:S.FtCssVariableFactory.create("--ft-chip-border-radius","","SIZE",""),rippleColor:S.FtCssVariableFactory.extend("--ft-chip-ripple-color","",An),horizontalPadding:S.FtCssVariableFactory.create("--ft-chip-horizontal-padding","","SIZE","6px"),verticalPadding:S.FtCssVariableFactory.create("--ft-chip-vertical-padding","","SIZE","6px"),colorOutline:S.FtCssVariableFactory.external(S.designSystemVariables.colorOutline,"Design system"),opacityDisabled:S.FtCssVariableFactory.external(S.designSystemVariables.colorOpacityDisabled,"Design system")},Ln=S.FtCssVariableFactory.extend("--ft-chip-highlighted-color","",S.FtCssVariableFactory.extend("--ft-chip-color","",S.designSystemVariables.colorOnPrimary)),ao={backgroundColor:S.FtCssVariableFactory.extend("--ft-chip-highlighted-background-color","",S.FtCssVariableFactory.extend("--ft-chip-background-color","",S.designSystemVariables.colorPrimary)),color:Ln,rippleColor:S.FtCssVariableFactory.extend("--ft-chip-highlighted-ripple-color","",Ln)},$n={horizontalPadding:S.FtCssVariableFactory.create("--ft-chip-dense-horizontal-padding","","SIZE","4px"),verticalPadding:S.FtCssVariableFactory.create("--ft-chip-dense-vertical-padding","","SIZE","4px")},Wn=[S.noTextSelect,Be.css`
802
796
  :host {
803
797
  display: inline-block;
804
798
  max-width: 100%;
@@ -814,20 +808,20 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
814
808
  box-sizing: border-box;
815
809
  pointer-events: auto;
816
810
 
817
- --ft-chip-internal-font-size: ${cr.fontSize};
811
+ --ft-chip-internal-font-size: ${G.fontSize};
818
812
  --ft-chip-internal-line-height: max(20px, calc(var(--ft-chip-internal-font-size) + 2px));
819
- ${o.setVariable(Io.size,cr.iconSize)};
820
- --ft-chip-internal-vertical-padding: ${cr.verticalPadding};
821
- --ft-chip-internal-horizontal-padding: ${cr.horizontalPadding};
813
+ ${(0,S.setVariable)(M.size,G.iconSize)};
814
+ --ft-chip-internal-vertical-padding: ${G.verticalPadding};
815
+ --ft-chip-internal-horizontal-padding: ${G.horizontalPadding};
822
816
  --ft-chip-internal-icon-padding: 3px;
823
- --ft-chip-internal-content-height: max(var(--ft-chip-internal-line-height), ${cr.iconSize});
817
+ --ft-chip-internal-content-height: max(var(--ft-chip-internal-line-height), ${G.iconSize});
824
818
 
825
- border: 1px solid ${cr.colorOutline};
826
- color: ${cr.color};
827
- ${o.setVariable(l.color,cr.rippleColor)};
828
- border-radius: var(${e.unsafeCSS(cr.borderRadius.name)}, calc(var(--ft-chip-internal-content-height) / 2 + var(--ft-chip-internal-vertical-padding)));
819
+ border: 1px solid ${G.colorOutline};
820
+ color: ${G.color};
821
+ ${(0,S.setVariable)(C.color,G.rippleColor)};
822
+ border-radius: var(${(0,Be.unsafeCSS)(G.borderRadius.name)}, calc(var(--ft-chip-internal-content-height) / 2 + var(--ft-chip-internal-vertical-padding)));
829
823
  padding: calc(var(--ft-chip-internal-vertical-padding) - 1px) calc(var(--ft-chip-internal-horizontal-padding) - 1px);
830
- background-color: ${cr.backgroundColor};
824
+ background-color: ${G.backgroundColor};
831
825
  line-height: var(--ft-chip-internal-content-height);
832
826
  }
833
827
 
@@ -837,8 +831,8 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
837
831
 
838
832
  .ft-chip--dense {
839
833
  --ft-chip-internal-icon-padding: 3px;
840
- --ft-chip-internal-vertical-padding: ${dr};
841
- --ft-chip-internal-horizontal-padding: ${sr};
834
+ --ft-chip-internal-vertical-padding: ${$n.verticalPadding};
835
+ --ft-chip-internal-horizontal-padding: ${$n.horizontalPadding};
842
836
  --ft-chip-internal-line-height: max(16px, calc(var(--ft-chip-internal-font-size) + 2px));
843
837
  }
844
838
 
@@ -850,15 +844,15 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
850
844
  cursor: default;
851
845
  pointer-events: none;
852
846
  filter: grayscale(1);
853
- opacity: ${cr.opacityDisabled};
847
+ opacity: ${G.opacityDisabled};
854
848
  }
855
849
 
856
850
  .ft-chip--highlighted {
857
851
  border: none;
858
852
  padding: var(--ft-chip-internal-vertical-padding) var(--ft-chip-internal-horizontal-padding);
859
- background-color: ${fr.backgroundColor};
860
- ${o.setVariable(l.color,fr.rippleColor)};
861
- color: ${fr.color};
853
+ background-color: ${ao.backgroundColor};
854
+ ${(0,S.setVariable)(C.color,ao.rippleColor)};
855
+ color: ${ao.color};
862
856
  }
863
857
 
864
858
  .ft-chip--clickable {
@@ -888,9 +882,9 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
888
882
  }
889
883
 
890
884
  .ft-chip--icon-button {
891
- ${o.setVariable(Lo.iconSize,cr.iconSize)};
892
- ${o.setVariable(Lo.horizontalPadding,"var(--ft-chip-internal-icon-padding)")};
893
- ${o.setVariable(Lo.verticalPadding,"var(--ft-chip-internal-icon-padding)")};
885
+ ${(0,S.setVariable)($.iconSize,G.iconSize)};
886
+ ${(0,S.setVariable)($.horizontalPadding,"var(--ft-chip-internal-icon-padding)")};
887
+ ${(0,S.setVariable)($.verticalPadding,"var(--ft-chip-internal-icon-padding)")};
894
888
  margin: calc((-1) * var(--ft-chip-internal-icon-padding));
895
889
  }
896
890
 
@@ -898,8 +892,8 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
898
892
  vertical-align: bottom;
899
893
  display: block;
900
894
  margin: 0 var(--ft-chip-internal-horizontal-padding);
901
- ${o.setVariable(Pt.fontSize,"var(--ft-chip-internal-font-size)")};
902
- ${o.setVariable(Pt.lineHeight,"var(--ft-chip-internal-content-height)")};
895
+ ${(0,S.setVariable)(dt.fontSize,"var(--ft-chip-internal-font-size)")};
896
+ ${(0,S.setVariable)(dt.lineHeight,"var(--ft-chip-internal-content-height)")};
903
897
  }
904
898
 
905
899
  .ft-chip--safari-fix .ft-chip--label {
@@ -935,8 +929,8 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
935
929
  .ft-chip:not(.ft-chip--trailing-icon) .ft-chip--icon-button {
936
930
  order: -1;
937
931
  }
938
- `];var gr=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 yr extends CustomEvent{constructor(){super("icon-click")}}class br extends o.FtLitElement{constructor(){super(...arguments),this.highlighted=!1,this.removable=!1,this.disabled=!1,this.clickable=!1,this.iconClickable=!1,this.dense=!1,this.multiLine=!1,this.label="",this.iconLabel="",this.icon=void 0,this.trailingIcon=!1}render(){const t={"ft-chip":!0,"ft-chip--highlighted":this.highlighted,"ft-chip--disabled":this.disabled,"ft-chip--clickable":this.interactionsOnChip,"ft-chip--trailing-icon":this.trailingIcon||this.removable,"ft-chip--no-content":!this.hasTextContent(),"ft-chip--dense":this.dense,"ft-chip--multi-line":this.multiLine,"ft-chip--safari-fix":o.isSafari};return e.html`
939
- <div class="${i.classMap(t)}"
932
+ `];var rt=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},Te=class extends CustomEvent{constructor(){super("icon-click")}},P=class extends ke.FtLitElement{constructor(){super(...arguments),this.highlighted=!1,this.removable=!1,this.disabled=!1,this.clickable=!1,this.iconClickable=!1,this.dense=!1,this.multiLine=!1,this.label="",this.iconLabel="",this.icon=void 0,this.trailingIcon=!1}render(){let o={"ft-chip":!0,"ft-chip--highlighted":this.highlighted,"ft-chip--disabled":this.disabled,"ft-chip--clickable":this.interactionsOnChip,"ft-chip--trailing-icon":this.trailingIcon||this.removable,"ft-chip--no-content":!this.hasTextContent(),"ft-chip--dense":this.dense,"ft-chip--multi-line":this.multiLine,"ft-chip--safari-fix":ke.isSafari};return ze.html`
933
+ <div class="${(0,Pn.classMap)(o)}"
940
934
  aria-label="${this.getLabel()}"
941
935
  tabindex="${this.interactionsOnChip?0:-1}"
942
936
  @keyup=${this.onKeyUp}
@@ -947,7 +941,7 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
947
941
  </ft-typography>
948
942
  ${this.internalIcon?this.renderIcon():null}
949
943
  </div>
950
- `}get interactionsOnChip(){return this.clickable&&!this.disabled}get interactionsOnIcon(){return(this.iconClickable||this.removable)&&!this.disabled}renderIcon(){return this.interactionsOnIcon?e.html`
944
+ `}get interactionsOnChip(){return this.clickable&&!this.disabled}get interactionsOnIcon(){return(this.iconClickable||this.removable)&&!this.disabled}renderIcon(){return this.interactionsOnIcon?ze.html`
951
945
  <ft-button round
952
946
  class="ft-chip--icon-button"
953
947
  @click=${this.onIconClick}
@@ -956,11 +950,11 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
956
950
  label="${this.iconLabel}"
957
951
  part="icon-button"
958
952
  ></ft-button>
959
- `:e.html`
953
+ `:ze.html`
960
954
  <div class="ft-chip--icon-container ft-no-text-select" part="icon-container">
961
955
  <ft-icon .variant=${this.iconVariant} .value="${this.internalIcon}" part="icon"></ft-icon>
962
956
  </div>
963
- `}onKeyUp(t){this.interactionsOnChip&&["Enter"," "].includes(t.key)&&t.target.click()}onIconKeyUp(t){this.interactionsOnIcon&&["Enter"," "].includes(t.key)&&(t.stopPropagation(),this.dispatchEvent(new yr))}onIconClick(t){this.interactionsOnIcon&&(t.stopPropagation(),this.dispatchEvent(new yr))}getLabel(){return this.label||this.textContent}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:""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}get internalIcon(){return this.icon||(this.removable?"close":void 0)}}br.elementDefinitions={"ft-ripple":b,"ft-typography":Co,"ft-icon":ko,"ft-button":rr},br.styles=hr,gr([r.property({type:Boolean})],br.prototype,"highlighted",void 0),gr([r.property({type:Boolean})],br.prototype,"removable",void 0),gr([r.property({type:Boolean})],br.prototype,"disabled",void 0),gr([r.property({type:Boolean})],br.prototype,"clickable",void 0),gr([r.property({type:Boolean})],br.prototype,"iconClickable",void 0),gr([r.property({type:Boolean})],br.prototype,"dense",void 0),gr([r.property({type:Boolean})],br.prototype,"multiLine",void 0),gr([r.property()],br.prototype,"label",void 0),gr([r.property()],br.prototype,"iconLabel",void 0),gr([r.property()],br.prototype,"icon",void 0),gr([r.property()],br.prototype,"iconVariant",void 0),gr([r.property({type:Boolean})],br.prototype,"trailingIcon",void 0),gr([r.query("ft-typography slot")],br.prototype,"slottedContent",void 0),o.customElement("ft-chip")(br);const ur={zIndex:o.FtCssVariableFactory.create("--ft-file-drop-z-index","","NUMBER","10"),hintBackgroundColor:o.FtCssVariableFactory.extend("--ft-file-drop-hint-background-color","",o.designSystemVariables.colorSurface),hintColor:o.FtCssVariableFactory.extend("--ft-file-drop-hint-color","",o.designSystemVariables.colorPrimary),errorColor:o.FtCssVariableFactory.extend("--ft-file-drop-error-color","",o.designSystemVariables.colorError),borderRadius:o.FtCssVariableFactory.extend("--ft-file-drop-border-radius","",o.designSystemVariables.borderRadiusL),borderWidth:o.FtCssVariableFactory.create("--ft-file-drop-border-width","","SIZE","4px"),borderColor:o.FtCssVariableFactory.create("--ft-file-drop-border-color","","COLOR","transparent"),visibleBorderColor:o.FtCssVariableFactory.extend("--ft-file-drop-visible-border-color","",o.designSystemVariables.colorOutline),activeBorderColor:o.FtCssVariableFactory.extend("--ft-file-drop-active-border-color","",o.designSystemVariables.colorPrimary)},mr=e.css`
957
+ `}onKeyUp(o){this.interactionsOnChip&&["Enter"," "].includes(o.key)&&o.target.click()}onIconKeyUp(o){this.interactionsOnIcon&&["Enter"," "].includes(o.key)&&(o.stopPropagation(),this.dispatchEvent(new Te))}onIconClick(o){this.interactionsOnIcon&&(o.stopPropagation(),this.dispatchEvent(new Te))}getLabel(){return this.label||this.textContent}get textContent(){var o,n;return(n=(o=this.slottedContent)===null||o===void 0?void 0:o.assignedNodes().map(i=>i.textContent).join("").trim())!==null&&n!==void 0?n:""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}get internalIcon(){return this.icon||(this.removable?"close":void 0)}};P.elementDefinitions={"ft-ripple":A,"ft-typography":tt,"ft-icon":X,"ft-button":lt};P.styles=Wn;rt([(0,j.property)({type:Boolean})],P.prototype,"highlighted",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"removable",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"disabled",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"clickable",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"iconClickable",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"dense",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"multiLine",void 0);rt([(0,j.property)()],P.prototype,"label",void 0);rt([(0,j.property)()],P.prototype,"iconLabel",void 0);rt([(0,j.property)()],P.prototype,"icon",void 0);rt([(0,j.property)()],P.prototype,"iconVariant",void 0);rt([(0,j.property)({type:Boolean})],P.prototype,"trailingIcon",void 0);rt([(0,j.query)("ft-typography slot")],P.prototype,"slottedContent",void 0);(0,In.customElement)("ft-chip")(P);var Bn=u(_()),L=u(R());var ct={zIndex:L.FtCssVariableFactory.create("--ft-file-drop-z-index","","NUMBER","10"),hintBackgroundColor:L.FtCssVariableFactory.extend("--ft-file-drop-hint-background-color","",L.designSystemVariables.colorSurface),hintColor:L.FtCssVariableFactory.extend("--ft-file-drop-hint-color","",L.designSystemVariables.colorPrimary),errorColor:L.FtCssVariableFactory.extend("--ft-file-drop-error-color","",L.designSystemVariables.colorError),borderRadius:L.FtCssVariableFactory.extend("--ft-file-drop-border-radius","",L.designSystemVariables.borderRadiusL),borderWidth:L.FtCssVariableFactory.create("--ft-file-drop-border-width","","SIZE","4px"),borderColor:L.FtCssVariableFactory.create("--ft-file-drop-border-color","","COLOR","transparent"),visibleBorderColor:L.FtCssVariableFactory.extend("--ft-file-drop-visible-border-color","",L.designSystemVariables.colorOutline),activeBorderColor:L.FtCssVariableFactory.extend("--ft-file-drop-active-border-color","",L.designSystemVariables.colorPrimary)},zn=Bn.css`
964
958
  :host {
965
959
  display: block;
966
960
  position: relative;
@@ -969,16 +963,16 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
969
963
  #container {
970
964
  position: absolute;
971
965
  inset: 0;
972
- border: dashed ${ur.borderWidth} ${ur.borderColor};
973
- border-radius: ${ur.borderRadius};
966
+ border: dashed ${ct.borderWidth} ${ct.borderColor};
967
+ border-radius: ${ct.borderRadius};
974
968
  }
975
969
 
976
970
  #container.visible {
977
- border-color: ${ur.visibleBorderColor}
971
+ border-color: ${ct.visibleBorderColor}
978
972
  }
979
973
 
980
974
  #container.dragging {
981
- border-color: ${ur.activeBorderColor}
975
+ border-color: ${ct.activeBorderColor}
982
976
  }
983
977
 
984
978
  slot {
@@ -992,7 +986,7 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
992
986
  display: none;
993
987
  position: absolute;
994
988
  inset: 0;
995
- z-index: ${ur.zIndex};
989
+ z-index: ${ct.zIndex};
996
990
  }
997
991
 
998
992
  #container.dragging #overlay {
@@ -1003,9 +997,9 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
1003
997
  z-index: 1;
1004
998
  position: absolute;
1005
999
  inset: 0;
1006
- background-color: ${ur.activeBorderColor};
1000
+ background-color: ${ct.activeBorderColor};
1007
1001
  opacity: 0.20;
1008
- border-radius: ${ur.borderRadius};
1002
+ border-radius: ${ct.borderRadius};
1009
1003
  }
1010
1004
 
1011
1005
  #overlay-drop {
@@ -1025,22 +1019,22 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
1025
1019
 
1026
1020
  #overlay-content ft-chip {
1027
1021
  margin-bottom: 10%;
1028
- ${o.setVariable(cr.color,ur.hintColor)};
1029
- ${o.setVariable(cr.iconSize,"32px")};
1030
- ${o.setVariable(cr.colorOutline,"transparent")};
1022
+ ${(0,L.setVariable)(G.color,ct.hintColor)};
1023
+ ${(0,L.setVariable)(G.iconSize,"32px")};
1024
+ ${(0,L.setVariable)(G.colorOutline,"transparent")};
1031
1025
  }
1032
1026
 
1033
1027
  #overlay-content xft-chip[icon=error] {
1034
- ${o.setVariable(cr.color,ur.errorColor)};
1035
- ${o.setVariable(cr.backgroundColor,ur.hintBackgroundColor)};
1028
+ ${(0,L.setVariable)(G.color,ct.errorColor)};
1029
+ ${(0,L.setVariable)(G.backgroundColor,ct.hintBackgroundColor)};
1036
1030
  }
1037
1031
 
1038
1032
  [hidden] {
1039
1033
  display: none;
1040
1034
  }
1041
- `;var xr=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(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 vr extends CustomEvent{constructor(t){super("file-drop",{detail:{file:t}})}}class Or extends o.FtLitElement{constructor(){super(...arguments),this.dropHint="Drop your file here",this.accept="",this.fileTypeError="Unsupported file type",this.visible=!1,this.dragging=!1,this.fileError=!1}render(){let t={dragging:this.dragging,visible:this.visible};return e.html`
1035
+ `;var ee=function(e,o,n,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,n):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,n,i);else for(var s=e.length-1;s>=0;s--)(c=e[s])&&(l=(a<3?c(l):a>3?c(o,n,l):c(o,n))||l);return a>3&&l&&Object.defineProperty(o,n,l),l},lo=class extends CustomEvent{constructor(o){super("file-drop",{detail:{file:o}})}},it=class extends kn.FtLitElement{constructor(){super(...arguments),this.dropHint="Drop your file here",this.accept="",this.fileTypeError="Unsupported file type",this.visible=!1,this.dragging=!1,this.fileError=!1}render(){let o={dragging:this.dragging,visible:this.visible};return Tn.html`
1042
1036
  <div id="container"
1043
- class="${i.classMap(t)}"
1037
+ class="${(0,Hn.classMap)(o)}"
1044
1038
  @dragenter=${this.onDragEnter}
1045
1039
  @dragover=${this.onDragOver}
1046
1040
  @drop=${this.onDrop}>
@@ -1056,4 +1050,20 @@ const Q=Symbol.for(""),tt=t=>{if(t?.r===Q)return t?._$litStatic$},ot=t=>({_$litS
1056
1050
  </div>
1057
1051
  <slot></slot>
1058
1052
  </div>
1059
- `}onDragEnter(t){this.dragging=!0,t.preventDefault()}onDragOver(t){t.preventDefault()}onDragLeave(t){this.dragging=!1,t.preventDefault()}async onDrop(t){if(t.preventDefault(),t.dataTransfer&&t.dataTransfer.files){let o=t.dataTransfer.files[0];!function(t,o,e){if(0==t.length)return!0;let r=t.replace(/[.+?^${}()|[\]\\]/g,"\\$&").replace(/\*/g,".*").replace(/,/g,"|"),i=new RegExp(r),a=o.includes(".")?"."+o.split(".").pop():void 0;return!(!a||!i.test(a))||i.test(e)}(this.accept,o.name,o.type)?(this.fileError=!0,setTimeout((()=>{this.dragging=!1,this.fileError=!1}),2e3)):(this.dragging=!1,this.dispatchEvent(new vr(o)))}}}Or.elementDefinitions={"ft-chip":br},Or.styles=mr,xr([r.property()],Or.prototype,"dropHint",void 0),xr([r.property()],Or.prototype,"accept",void 0),xr([r.property()],Or.prototype,"fileTypeError",void 0),xr([r.property({type:Boolean})],Or.prototype,"visible",void 0),xr([r.state()],Or.prototype,"dragging",void 0),xr([r.state()],Or.prototype,"fileError",void 0),o.customElement("ft-file-drop")(Or),t.FileDropEvent=vr,t.FtFileDrop=Or,t.FtFileDropCssVariables=ur,t.styles=mr}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap,ftGlobals.litUnsafeHTML);
1053
+ `}onDragEnter(o){this.dragging=!0,o.preventDefault()}onDragOver(o){o.preventDefault()}onDragLeave(o){this.dragging=!1,o.preventDefault()}async onDrop(o){if(o.preventDefault(),o.dataTransfer&&o.dataTransfer.files){let n=o.dataTransfer.files[0];mo(this.accept,n.name,n.type)?(this.dragging=!1,this.dispatchEvent(new lo(n))):(this.fileError=!0,setTimeout(()=>{this.dragging=!1,this.fileError=!1},2e3))}}};it.elementDefinitions={"ft-chip":P};it.styles=zn;ee([(0,Lt.property)()],it.prototype,"dropHint",void 0);ee([(0,Lt.property)()],it.prototype,"accept",void 0);ee([(0,Lt.property)()],it.prototype,"fileTypeError",void 0);ee([(0,Lt.property)({type:Boolean})],it.prototype,"visible",void 0);ee([(0,Lt.state)()],it.prototype,"dragging",void 0);ee([(0,Lt.state)()],it.prototype,"fileError",void 0);(0,_n.customElement)("ft-file-drop")(it);})();
1054
+ /*! Bundled license information:
1055
+
1056
+ lit-html/lit-html.js:
1057
+ (**
1058
+ * @license
1059
+ * Copyright 2017 Google LLC
1060
+ * SPDX-License-Identifier: BSD-3-Clause
1061
+ *)
1062
+
1063
+ lit-html/static.js:
1064
+ (**
1065
+ * @license
1066
+ * Copyright 2020 Google LLC
1067
+ * SPDX-License-Identifier: BSD-3-Clause
1068
+ *)
1069
+ */