@fluid-topics/ft-checkbox 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.
- package/build/ft-checkbox.light.js +141 -133
- package/build/ft-checkbox.min.js +331 -271
- package/package.json +5 -5
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";(()=>{var qe=Object.create;var It=Object.defineProperty;var Je=Object.getOwnPropertyDescriptor;var Qe=Object.getOwnPropertyNames;var to=Object.getPrototypeOf,eo=Object.prototype.hasOwnProperty;var it=(i,o)=>()=>(o||i((o={exports:{}}).exports,o),o.exports);var oo=(i,o,a,n)=>{if(o&&typeof o=="object"||typeof o=="function")for(let c of Qe(o))!eo.call(i,c)&&c!==a&&It(i,c,{get:()=>o[c],enumerable:!(n=Je(o,c))||n.enumerable});return i};var m=(i,o,a)=>(a=i!=null?qe(to(i)):{},oo(o||!i||!i.__esModule?It(a,"default",{value:i,enumerable:!0}):a,i));var W=it((so,Wt)=>{Wt.exports=ftGlobals.wcUtils});var z=it((fo,wt)=>{wt.exports=ftGlobals.lit});var ct=it((yo,Et)=>{Et.exports=ftGlobals.litDecorators});var gt=it((go,Rt)=>{Rt.exports=ftGlobals.litClassMap});var Xe=m(W());var Me=m(z()),U=m(ct()),Ye=m(W()),je=m(gt());var Pt=m(W());var At=m(z()),O=m(ct()),Ht=m(gt()),tt=m(W());var Bt=m(z()),u=m(W()),kt=u.FtCssVariableFactory.extend("--ft-ripple-color","",u.designSystemVariables.colorContent),A={color:kt,backgroundColor:u.FtCssVariableFactory.extend("--ft-ripple-background-color","",kt),opacityContentOnSurfacePressed:u.FtCssVariableFactory.external(u.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:u.FtCssVariableFactory.external(u.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:u.FtCssVariableFactory.external(u.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:u.FtCssVariableFactory.external(u.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:u.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},Lt=u.FtCssVariableFactory.extend("--ft-ripple-color","",u.designSystemVariables.colorPrimary),Ft={color:Lt,backgroundColor:u.FtCssVariableFactory.extend("--ft-ripple-background-color","",Lt)},zt=u.FtCssVariableFactory.extend("--ft-ripple-color","",u.designSystemVariables.colorSecondary),$t={color:zt,backgroundColor:u.FtCssVariableFactory.extend("--ft-ripple-background-color","",zt)},Ut=Bt.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: ${
|
|
14
|
+
border-radius: ${A.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: ${
|
|
48
|
+
background-color: ${A.backgroundColor};
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.ft-ripple .ft-ripple--effect {
|
|
52
|
-
background-color: ${
|
|
52
|
+
background-color: ${A.color};
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.ft-ripple.ft-ripple--secondary .ft-ripple--background {
|
|
56
|
-
background-color: ${
|
|
56
|
+
background-color: ${$t.backgroundColor};
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.ft-ripple.ft-ripple--secondary .ft-ripple--effect {
|
|
60
|
-
background-color: ${
|
|
60
|
+
background-color: ${$t.color};
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.ft-ripple.ft-ripple--primary .ft-ripple--background {
|
|
64
|
-
background-color: ${
|
|
64
|
+
background-color: ${Ft.backgroundColor};
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
68
|
-
background-color: ${
|
|
68
|
+
background-color: ${Ft.color};
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ft-ripple .ft-ripple--background {
|
|
@@ -95,164 +95,156 @@
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.ft-ripple.ft-ripple--hovered .ft-ripple--background {
|
|
98
|
-
opacity: ${
|
|
98
|
+
opacity: ${A.opacityContentOnSurfaceHover};
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.ft-ripple.ft-ripple--selected .ft-ripple--background {
|
|
102
|
-
opacity: ${
|
|
102
|
+
opacity: ${A.opacityContentOnSurfaceSelected};
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.ft-ripple.ft-ripple--focused .ft-ripple--background {
|
|
106
|
-
opacity: ${
|
|
106
|
+
opacity: ${A.opacityContentOnSurfaceFocused};
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.ft-ripple.ft-ripple--pressed .ft-ripple--effect {
|
|
110
|
-
opacity: ${
|
|
110
|
+
opacity: ${A.opacityContentOnSurfacePressed};
|
|
111
111
|
transform: translate(-50%, -50%) scale(1);
|
|
112
112
|
}
|
|
113
|
-
`;var
|
|
113
|
+
`;var C=function(i,o,a,n){var c=arguments.length,p=c<3?o:n===null?n=Object.getOwnPropertyDescriptor(o,a):n,l;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")p=Reflect.decorate(i,o,a,n);else for(var f=i.length-1;f>=0;f--)(l=i[f])&&(p=(c<3?l(p):c>3?l(o,a,p):l(o,a))||p);return c>3&&p&&Object.defineProperty(o,a,p),p},b=class extends tt.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 tt.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 tt.Debouncer(10),this.moveRipple=o=>{var a,n;let{x:c,y:p}=this.getCoordinates(o),l=(n=(a=this.ripple)===null||a===void 0?void 0:a.getBoundingClientRect())!==null&&n!==void 0?n:{x:0,y:0,width:0,height:0};this.originX=Math.round(c!=null?c-l.x:l.width/2),this.originY=Math.round(p!=null?p-l.y:l.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 At.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="${
|
|
120
|
+
<div class="${(0,Ht.classMap)(o)}">
|
|
121
121
|
<div class="ft-ripple--background"></div>
|
|
122
122
|
<div class="ft-ripple--effect"></div>
|
|
123
123
|
</div>
|
|
124
|
-
`}contentAvailableCallback(
|
|
125
|
-
|
|
126
|
-
* @license
|
|
127
|
-
* Copyright 2017 Google LLC
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$litStatic$:t,r:at}),lt=new Map,ct=(t=>(o,...e)=>{const r=e.length;let a,i;const n=[],l=[];let c,p=0,f=!1;for(;p<r;){for(c=o[p];p<r&&void 0!==(i=e[p],a=it(i));)c+=a+o[++p],f=!0;p!==r&&l.push(i),n.push(c),p++}if(p===r&&n.push(o[r]),f){const t=n.join("$$lit$$");void 0===(o=lt.get(t))&&(n.raw=n,lt.set(t,o=n)),e=l}return t(o,...e)})(A);var pt;!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"}(pt||(pt={}));const ft=t=>"string"==typeof t?e.unsafeCSS(t):t;class st{static create(t,o,r,a){const i=t=>ft(null!=t?t:a),n=e.css`var(${ft(t)}, ${i(a)})`;return n.name=t,n.description=o,n.category=r,n.defaultValue=a,n.defaultCssValue=i,n.get=o=>e.css`var(${ft(t)}, ${i(o)})`,n.breadcrumb=()=>[],n.lastResortDefaultValue=()=>a,n}static extend(t,o,r,a){const i=t=>r.get(null!=t?t:a),n=e.css`var(${ft(t)}, ${i(a)})`;return n.name=t,n.description=o,n.category=r.category,n.fallbackVariable=r,n.defaultValue=a,n.defaultCssValue=i,n.get=o=>e.css`var(${ft(t)}, ${i(o)})`,n.breadcrumb=()=>[r.name,...r.breadcrumb()],n.lastResortDefaultValue=()=>null!=a?a:r.lastResortDefaultValue(),n}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):ft(null!=o?o:t.lastResortDefaultValue()),a=e.css`var(${ft(t.name)}, ${r(t.defaultValue)})`;return a.name=t.name,a.category=t.category,a.fallbackVariable=t.fallbackVariable,a.defaultValue=t.defaultValue,a.context=o,a.defaultCssValue=r,a.get=o=>e.css`var(${ft(t.name)}, ${r(o)})`,a.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>t.lastResortDefaultValue(),a}}const dt={colorWhite:st.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:st.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:st.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:st.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:st.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:st.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:st.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:st.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:st.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:st.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:st.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:st.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:st.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:st.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:st.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:st.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:st.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:st.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:st.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:st.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:st.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:st.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:st.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:st.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:st.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:st.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:st.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:st.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:st.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:st.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:st.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:st.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:st.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:st.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:st.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:st.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:st.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:st.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:st.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:st.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:st.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:st.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:st.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:st.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:st.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:st.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:st.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:st.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:st.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:st.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:st.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:st.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:st.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:st.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:st.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:st.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:st.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:st.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:st.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:st.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:st.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:st.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:st.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:st.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:st.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:st.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:st.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:st.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:st.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:st.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:st.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:st.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:st.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:st.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:st.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:st.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:st.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:st.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:st.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:st.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:st.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:st.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:st.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:st.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:st.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:st.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:st.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:st.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:st.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:st.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:st.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:st.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:st.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:st.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:st.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:st.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:st.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:st.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:st.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:st.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:st.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:st.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:st.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:st.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:st.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:st.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:st.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:st.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:st.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:st.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:st.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:st.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:st.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:st.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:st.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:st.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:st.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:st.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:st.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:st.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:st.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:st.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:st.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:st.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:st.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:st.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:st.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:st.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:st.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:st.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:st.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:st.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:st.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:st.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:st.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:st.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:st.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:st.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:st.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:st.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:st.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:st.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:st.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:st.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:st.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:st.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:st.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:st.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:st.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:st.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:st.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:st.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:st.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:st.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:st.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:st.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:st.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:st.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:st.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:st.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:st.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:st.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:st.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:st.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:st.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:st.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:st.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:st.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:st.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:st.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:st.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:st.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:st.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:st.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:st.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:st.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:st.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:st.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:st.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:st.create("--ft-icon-size-6","","SIZE","48px"),opacity0:st.create("--ft-opacity-0","","NUMBER","0"),opacity8:st.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:st.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:st.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:st.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:st.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:st.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:st.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:st.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:st.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:st.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:st.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:st.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:st.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:st.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)")},ht={display:{fontFamily:st.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:st.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:st.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:st.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:st.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:st.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:st.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:st.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:st.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:st.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:st.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:st.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:st.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:st.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:st.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:st.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:st.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:st.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:st.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:st.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:st.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:st.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:st.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:st.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:st.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:st.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-medium-underline":{fontFamily:st.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:st.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:st.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},"body-2-semibold":{fontFamily:st.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:st.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:st.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:st.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:st.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:st.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:st.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:st.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:st.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:st.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:st.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:st.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:st.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:st.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:st.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:st.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:st.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:st.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:st.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:st.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:st.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:st.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:st.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:st.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:st.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:st.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:st.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:st.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},"caption-3-medium":{fontFamily:st.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:st.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:st.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},"caption-3-semibold":{fontFamily:st.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:st.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:st.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},"caption-3-bold":{fontFamily:st.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:st.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:st.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:st.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:st.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:st.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:st.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:st.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:st.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")}},gt={backgroundActionPrimary:st.extend("--ft-background-action-primary","Used as backgorund of primary action components.",dt.colorBrand0),backgroundErrorSubtle:st.extend("--ft-background-error-subtle","Used as background of subtle error components.",dt.colorRed10),backgroundInfoSubtle:st.extend("--ft-background-info-subtle","Used as background of subtle information components.",dt.colorCyan10),backgroundWarningSubtle:st.extend("--ft-background-warning-subtle","Used as background of subtle information components.",dt.colorOrange10),backgroundSuccessSubtle:st.extend("--ft-background-success-subtle","Used as background of subtle success components.",dt.colorGreen10),backgroundGlobalSurface:st.extend("--ft-background-global-surface","Used as app background.",dt.colorWhite),backgroundGlobalOnSurface:st.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",dt.colorGray10),backgroundGlobalOnSurfaceDark:st.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",dt.colorGray30),contentActionPrimary:st.extend("--ft-content-action-primary","Used on label of primary action on light surface.",dt.colorBrand0),contentWarningPrimary:st.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",dt.colorOrange200),contentWarningIconOnly:st.extend("--ft-content-warning-icon-only","Used on warning status icons alone",dt.colorOrange0),contentErrorPrimary:st.extend("--ft-content-error-primary","Used on label of error messages on light surface.",dt.colorRed0),contentErrorIconOnly:st.extend("--ft-content-error-icon-only","Used on error status icons alone",dt.colorRed70),contentInfoPrimary:st.extend("--ft-content-info-primary","Used on label of information messages on light surface.",dt.colorCyan200),contentInfoIconOnly:st.extend("--ft-content-info-icon-only","Used on info status icons alone",dt.colorCyan0),contentSuccessPrimary:st.extend("--ft-content-success-primary","Used on label of success messages on light surface.",dt.colorGreen200),contentSuccessIconOnly:st.extend("--ft-content-success-icon-only","Used on success status icons alone",dt.colorGreen0),contentGlobalPrimary:st.extend("--ft-content-global-primary","Used for main content on the page.",dt.colorGray500),contentGlobalSecondary:st.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",dt.colorGray200),contentGlobalSubtle:st.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",dt.colorGray0),contentGlobalOnColor:st.extend("--ft-content-global-on-color","Used for content on a dominant color.",dt.colorWhite),borderActionPrimary:st.extend("--ft-border-action-primary","Used as border for primary action components.",dt.colorBrand0),borderActionFocusRing:st.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",dt.colorCyan0),borderWarningPrimary:st.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",dt.colorOrange200),borderWarningSubtle:st.extend("--ft-border-warning-subtle","Used as border for warning components.",dt.colorOrange30),borderSuccessPrimary:st.extend("--ft-border-success-primary","Used as border for success buttons.",dt.colorGreen200),borderSuccessSubtle:st.extend("--ft-border-success-subtle","Used as border for success components.",dt.colorGreen30),borderErrorPrimary:st.extend("--ft-border-error-primary","Used as border for text fields in error states.",dt.colorRed0),borderErrorSubtle:st.extend("--ft-border-error-subtle","Used as border for error components.",dt.colorRed30),borderInfoPrimary:st.extend("--ft-border-info-primary","Used as border for buttons in info color.",dt.colorCyan200),borderInfoSubtle:st.extend("--ft-border-info-subtle","Used as border for information components.",dt.colorCyan30),borderGlobalPrimary:st.extend("--ft-border-global-primary","Used as border for element like input.",dt.colorGray50),borderGlobalSubtle:st.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",dt.colorGray30),borderInputPrimary:st.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",dt.colorGray80)};st.create("--ft-button-large-height","","SIZE","40px"),st.extend("--ft-button-large-horizontal-padding","",dt.spacing4),st.extend("--ft-button-large-gap","",dt.spacing2),st.extend("--ft-button-large-border-radius","",dt.borderRadiusS),st.extend("--ft-button-large-icon-size","",dt.iconSize3),st.create("--ft-button-large-border-width","","SIZE","1px"),st.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),st.create("--ft-button-large-focus-outline-width","","SIZE","2px"),st.create("--ft-button-large-icon-only-width","","SIZE","40px"),st.create("--ft-button-small-height","","SIZE","30px"),st.extend("--ft-button-small-horizontal-padding","",dt.spacing3),st.extend("--ft-button-small-gap","",dt.spacing2),st.extend("--ft-button-small-border-radius","",dt.borderRadiusS),st.extend("--ft-button-small-icon-size","",dt.iconSize2),st.create("--ft-button-small-border-width","","SIZE","1px"),st.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),st.create("--ft-button-small-focus-outline-width","","SIZE","2px"),st.create("--ft-button-small-icon-only-width","","SIZE","30px"),st.extend("--ft-button-primary-background-color","",gt.backgroundActionPrimary),st.extend("--ft-button-primary-color","",gt.contentGlobalOnColor),st.extend("--ft-button-primary-icon-color","",gt.contentGlobalOnColor),st.extend("--ft-button-primary-state-layer-color","",gt.contentGlobalOnColor),st.extend("--ft-button-primary-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-button-primary-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-button-primary-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-button-primary-disabled-component-opacity","",dt.opacity40),st.extend("--ft-button-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),st.extend("--ft-button-tertiary-color","",gt.contentActionPrimary),st.extend("--ft-button-tertiary-icon-color","",gt.contentActionPrimary),st.extend("--ft-button-tertiary-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-button-tertiary-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-tertiary-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-tertiary-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-button-tertiary-disabled-component-opacity","",dt.opacity40),st.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),st.extend("--ft-button-secondary-color","",gt.contentActionPrimary),st.extend("--ft-button-secondary-icon-color","",gt.contentActionPrimary),st.extend("--ft-button-secondary-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-button-secondary-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-secondary-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-secondary-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-button-secondary-disabled-component-opacity","",dt.opacity40),st.extend("--ft-button-secondary-border-color","",gt.borderActionPrimary),st.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),st.extend("--ft-button-neutral-icon-color","",gt.contentGlobalSecondary),st.extend("--ft-button-neutral-color","",gt.contentGlobalSecondary),st.extend("--ft-button-neutral-state-layer-color","",gt.contentGlobalSecondary),st.extend("--ft-button-neutral-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-neutral-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-button-neutral-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-button-neutral-disabled-component-opacity","",dt.opacity40),st.extend("--ft-banner-icon-size","",dt.iconSize5),st.create("--ft-banner-border-width","","SIZE","1px"),st.extend("--ft-banner-horizontal-padding","",dt.spacing6),st.extend("--ft-banner-vertical-padding","",dt.spacing6),st.extend("--ft-banner-horizontal-side-gap","",dt.spacing6),st.extend("--ft-banner-horizontal-mobile-gap","",dt.spacing4),st.extend("--ft-banner-vertical-mobile-gap","",dt.spacing6),st.extend("--ft-banner-horizontal-middle-gap","",dt.spacing20),st.extend("--ft-banner-info-background-color","",gt.backgroundInfoSubtle),st.extend("--ft-banner-info-color","",gt.contentInfoPrimary),st.extend("--ft-banner-info-icon-color","",gt.contentInfoIconOnly),st.extend("--ft-breadcrumb-horizontal-gap","",dt.spacing1),st.extend("--ft-breadcrumb-vertical-gap","",dt.spacing2),st.extend("--ft-breadcrumb-current-element-color","",gt.contentGlobalPrimary),st.extend("--ft-breadcrumb-icon-color","",gt.contentGlobalSubtle),st.extend("--ft-page-header-horizontal-padding","",dt.spacing12),st.extend("--ft-page-header-horizontal-gap","",dt.spacing4),st.extend("--ft-page-header-vertical-gap","",dt.spacing2),st.extend("--ft-page-header-classic-vertical-padding","",dt.spacing6),st.extend("--ft-page-header-multiline-vertical-padding","",dt.spacing4),st.extend("--ft-page-header-inline-vertical-padding","",dt.spacing2),st.extend("--ft-page-header-background-color","",dt.colorWhite),st.extend("--ft-page-header-bottom-border-color","",gt.borderGlobalSubtle),st.extend("--ft-page-header-title-color","",gt.contentGlobalPrimary),st.extend("--ft-page-header-subtitle-color","",gt.contentGlobalSecondary),st.create("--ft-modal-small-container-width","","SIZE","600px"),st.create("--ft-modal-large-container-width","","SIZE","900px"),st.extend("--ft-modal-overlay-background-color","",dt.colorGray700),st.extend("--ft-modal-overlay-opacity","",dt.opacity40),st.extend("--ft-modal-shadow","",dt.shadowElevation03),st.extend("--ft-modal-body-background-color","",dt.colorWhite),st.extend("--ft-modal-body-color","",gt.contentGlobalPrimary),st.extend("--ft-modal-body-horizontal-padding","",dt.spacing6),st.extend("--ft-modal-body-vertical-padding","",dt.spacing6),st.extend("--ft-modal-body-vertical-gap","",dt.spacing6),st.extend("--ft-modal-container-margin","",dt.spacing3),st.extend("--ft-modal-header-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-modal-header-border-color","",gt.borderGlobalSubtle),st.extend("--ft-modal-header-color","",gt.contentGlobalPrimary),st.extend("--ft-modal-header-trailing-icon-color","",gt.contentGlobalSecondary),st.extend("--ft-modal-header-vertical-padding","",dt.spacing1),st.extend("--ft-modal-header-right-padding","",dt.spacing1),st.extend("--ft-modal-header-left-padding","",dt.spacing6),st.extend("--ft-modal-header-gap","",dt.spacing2),st.create("--ft-modal-header-border-bottom","","SIZE","1px"),st.extend("--ft-modal-border-radius","",dt.borderRadiusM),st.extend("--ft-drawer-overlay-opacity","",dt.opacity40),st.extend("--ft-drawer-shadow","",dt.shadowElevation03),st.extend("--ft-drawer-body-color","",gt.contentGlobalPrimary),st.extend("--ft-drawer-body-horizontal-padding","",dt.spacing6),st.extend("--ft-drawer-body-vertical-padding","",dt.spacing6),st.extend("--ft-drawer-body-gap","",dt.spacing6),st.extend("--ft-drawer-body-background-color","",dt.colorWhite),st.extend("--ft-drawer-header-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-drawer-header-border-color","",gt.borderGlobalSubtle),st.extend("--ft-drawer-header-color","",gt.contentGlobalPrimary),st.extend("--ft-drawer-header-trailing-icon-color","",gt.contentGlobalSecondary),st.create("--ft-drawer-header-height","","SIZE","50px"),st.extend("--ft-drawer-header-horizontal-padding","",dt.spacing2),st.create("--ft-drawer-header-border-width","","SIZE","1px"),st.extend("--ft-drawer-header-gap","",dt.spacing3),st.extend("--ft-drawer-buttons-bar-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-drawer-buttons-bar-border-color","",gt.borderGlobalSubtle),st.extend("--ft-drawer-buttons-bar-color","",gt.contentGlobalPrimary),st.extend("--ft-drawer-buttons-bar-horizontal-padding","",dt.spacing4),st.extend("--ft-drawer-buttons-bar-vertical-padding","",dt.spacing4),st.extend("--ft-drawer-buttons-bar-gap","",dt.spacing3),st.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),st.create("--ft-drawer-container-width","","SIZE","66%"),st.create("--ft-drawer-container-min-width","","SIZE","500px"),st.create("--ft-drawer-container-max-width","","SIZE","1000px"),st.create("--ft-drawer-container-height","","SIZE","100%"),st.extend("--ft-drawer-overlay-background-color","",dt.colorGray700),st.extend("--ft-text-input-field-horizontal-padding","",dt.spacing4),st.extend("--ft-text-input-field-horizontal-gap","",dt.spacing3),st.extend("--ft-text-input-field-vertical-gap","",dt.spacing05),st.extend("--ft-text-input-field-icon-size","",dt.iconSize3),st.create("--ft-text-input-field-height","","SIZE","50px"),st.extend("--ft-text-input-helper-horizontal-padding","",dt.spacing4),st.extend("--ft-text-input-helper-horizontal-gap","",dt.spacing1),st.extend("--ft-text-input-helper-icon-size","",dt.iconSize2),st.extend("--ft-text-input-border-radius","",dt.borderRadiusM),st.extend("--ft-text-input-background-color","",dt.colorWhite),st.extend("--ft-text-input-content-value-color","",gt.contentGlobalPrimary),st.extend("--ft-text-input-trailing-icon-color","",gt.contentGlobalSubtle),st.extend("--ft-text-input-label-color","",gt.contentGlobalSubtle),st.extend("--ft-text-input-default-border-color","",gt.borderInputPrimary),st.extend("--ft-text-input-default-helper-text-color","",gt.contentGlobalSubtle),st.create("--ft-text-input-default-border-width","","SIZE","1px"),st.create("--ft-text-input-error-border-width","","SIZE","2px"),st.extend("--ft-text-input-error-border-color","",gt.borderErrorPrimary),st.extend("--ft-text-input-error-helper-text-color","",gt.contentErrorPrimary),st.extend("--ft-text-input-error-helper-icon-color","",gt.contentErrorIconOnly),st.create("--ft-text-input-warning-border-width","","SIZE","2px"),st.create("--ft-text-input-focus-outline-width","","SIZE","2px"),st.extend("--ft-text-input-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),st.extend("--ft-text-input-disabled-component-opacity","",dt.opacity40),st.extend("--ft-text-area-background-color","",dt.colorWhite),st.extend("--ft-text-area-content-value-color","",gt.contentGlobalPrimary),st.extend("--ft-text-area-label-color","",gt.contentGlobalSubtle),st.extend("--ft-text-area-default-border-color","",gt.borderInputPrimary),st.extend("--ft-text-area-default-helper-text-color","",gt.contentGlobalSubtle),st.create("--ft-text-area-default-border-width","","SIZE","1px"),st.create("--ft-text-area-error-border-width","","SIZE","2px"),st.extend("--ft-text-area-error-border-color","",gt.borderErrorPrimary),st.extend("--ft-text-area-error-helper-text-color","",gt.contentErrorPrimary),st.extend("--ft-text-area-error-helper-icon-color","",gt.contentErrorIconOnly),st.extend("--ft-text-area-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-text-area-focus-outline-width","","SIZE","2px"),st.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),st.extend("--ft-text-area-disabled-component-opacity","",dt.opacity40),st.extend("--ft-text-area-field-horizontal-left-padding","",dt.spacing4),st.extend("--ft-text-area-field-horizontal-gap","",dt.spacing3),st.extend("--ft-text-area-field-vertical-gap","",dt.spacing05),st.create("--ft-text-area-field-min-height","","SIZE","64px"),st.extend("--ft-text-area-helper-horizontal-padding","",dt.spacing4),st.extend("--ft-text-area-helper-horizontal-gap","",dt.spacing1),st.extend("--ft-text-area-helper-icon-size","",dt.iconSize2),st.extend("--ft-text-area-border-radius","",dt.borderRadiusM),st.create("--ft-floating-menu-height","","SIZE","50px"),st.extend("--ft-floating-menu-horizontal-padding","",dt.spacing4),st.extend("--ft-floating-menu-off-icon-color","",gt.contentGlobalPrimary),st.extend("--ft-floating-menu-off-color","",gt.contentGlobalPrimary),st.extend("--ft-floating-menu-on-color","",gt.contentActionPrimary),st.extend("--ft-floating-menu-on-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-floating-menu-gap","",dt.spacing3),st.extend("--ft-floating-menu-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),st.extend("--ft-floating-menu-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-floating-menu-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-floating-menu-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-floating-menu-disabled-component-opacity","",dt.opacity40),st.extend("--ft-floating-menu-icon-size","",dt.iconSize3),st.extend("--ft-floating-menu-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-combobox-single-select-field-horizontal-padding","",dt.spacing4),st.extend("--ft-combobox-single-select-field-horizontal-gap","",dt.spacing3),st.extend("--ft-combobox-single-select-field-vertical-gap","",dt.spacing05),st.extend("--ft-combobox-single-select-field-icon-size","",dt.iconSize3),st.create("--ft-combobox-single-select-field-height","","SIZE","50px"),st.extend("--ft-combobox-single-select-helper-horizontal-padding","",dt.spacing4),st.extend("--ft-combobox-single-select-helper-horizontal-gap","",dt.spacing1),st.extend("--ft-combobox-single-select-helper-vertical-gap","",dt.spacing1),st.extend("--ft-combobox-single-select-helper-icon-size","",dt.iconSize2),st.extend("--ft-combobox-single-select-menu-vertical-gap","",dt.spacing2),st.extend("--ft-combobox-single-select-border-radius","",dt.borderRadiusM),st.extend("--ft-combobox-single-select-background-color","",dt.colorWhite),st.extend("--ft-combobox-single-select-label-color","",gt.contentGlobalSubtle),st.extend("--ft-combobox-single-select-content-value-color","",gt.contentGlobalPrimary),st.extend("--ft-combobox-single-select-trailing-icon-color","",gt.contentGlobalSubtle),st.extend("--ft-combobox-single-select-default-border-color","",gt.borderInputPrimary),st.extend("--ft-combobox-single-select-default-helper-text-color","",gt.contentGlobalSubtle),st.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),st.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),st.extend("--ft-combobox-single-select-error-border-color","",gt.borderErrorPrimary),st.extend("--ft-combobox-single-select-error-helper-text-color","",gt.contentErrorPrimary),st.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),st.extend("--ft-combobox-single-select-warning-border-color","",gt.borderWarningPrimary),st.extend("--ft-combobox-single-select-warning-helper-text-color","",gt.contentWarningPrimary),st.extend("--ft-combobox-single-select-warning-helper-icon-color","",gt.contentWarningIconOnly),st.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),st.extend("--ft-combobox-single-select-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),st.extend("--ft-combobox-single-select-disabled-component-opacity","",dt.opacity40),st.extend("--ft-combobox-multi-select-background-color","",dt.colorWhite),st.extend("--ft-combobox-multi-select-label-color","",gt.contentGlobalSubtle),st.extend("--ft-combobox-multi-select-trailing-icon-color","",gt.contentGlobalSubtle),st.extend("--ft-combobox-multi-select-default-border-color","",gt.borderInputPrimary),st.extend("--ft-combobox-multi-select-default-helper-text-color","",gt.contentGlobalSubtle),st.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),st.extend("--ft-combobox-multi-select-error-border-color","",gt.borderErrorPrimary),st.extend("--ft-combobox-multi-select-error-helper-text-color","",gt.contentErrorPrimary),st.extend("--ft-combobox-multi-select-error-helper-icon","",gt.contentErrorIconOnly),st.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),st.extend("--ft-combobox-multi-select-warning-border-color","",gt.borderWarningPrimary),st.extend("--ft-combobox-multi-select-warning-helper-text-color","",gt.contentWarningPrimary),st.extend("--ft-combobox-multi-select-warning-helper-icon-color","",gt.contentWarningIconOnly),st.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),st.extend("--ft-combobox-multi-select-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),st.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),st.extend("--ft-combobox-multi-select-disabled-component-opacity","",dt.opacity40),st.extend("--ft-combobox-multi-select-helper-horizontal-padding","",dt.spacing4),st.extend("--ft-combobox-multi-select-helper-horizontal-gap","",dt.spacing1),st.extend("--ft-combobox-multi-select-helper-vertical-gap","",dt.spacing1),st.extend("--ft-combobox-multi-select-helper-icon-size","",dt.iconSize2),st.extend("--ft-combobox-multi-select-field-horizontal-padding","",dt.spacing4),st.extend("--ft-combobox-multi-select-field-horizontal-gap","",dt.spacing3),st.extend("--ft-combobox-multi-select-field-vertical-gap","",dt.spacing05),st.extend("--ft-combobox-multi-select-field-icon-size","",dt.iconSize3),st.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),st.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",dt.spacing1),st.extend("--ft-combobox-multi-select-content-values-vertical-gap","",dt.spacing1),st.extend("--ft-combobox-multi-select-border-radius","",dt.borderRadiusM),st.extend("--ft-popover-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-popover-horizontal-padding","",dt.spacing6),st.extend("--ft-popover-vertical-padding","",dt.spacing6),st.extend("--ft-popover-icon-color","",gt.contentGlobalSecondary),st.extend("--ft-popover-icon-size","",dt.iconSize2),st.extend("--ft-popover-title-color","",gt.contentGlobalPrimary),st.extend("--ft-popover-body-color","",gt.contentGlobalSecondary),st.extend("--ft-popover-link-color","",gt.contentActionPrimary),st.extend("--ft-popover-gap","",dt.spacing3),st.extend("--ft-popover-border-radius","",dt.borderRadiusM),st.extend("--ft-popover-shadow","",dt.shadowElevation02),st.extend("--ft-tabs-top-left-border-radius","",dt.borderRadiusS),st.extend("--ft-tabs-top-right-border-radius","",dt.borderRadiusS),st.extend("--ft-tabs-label-horizontal-padding","",dt.spacing4),st.extend("--ft-tabs-label-vertical-padding","",dt.spacing3),st.extend("--ft-tabs-label-gap","",dt.spacing1),st.extend("--ft-tabs-off-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-tabs-off-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-tabs-off-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-tabs-off-disabled-component-opacity","",dt.opacity40),st.extend("--ft-tabs-off-color","",gt.contentGlobalSubtle),st.extend("--ft-tabs-off-state-layer-color","",gt.contentGlobalSubtle),st.extend("--ft-tabs-on-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-tabs-on-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-tabs-on-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-tabs-on-disabled-component-opacity","",dt.opacity40),st.extend("--ft-tabs-on-color","",gt.contentActionPrimary),st.extend("--ft-tabs-on-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-tabs-icon-horizontal-padding","",dt.spacing1),st.extend("--ft-tabs-icon-vertical-padding","",dt.spacing4),st.create("--ft-tabs-focus-outline-width","","SIZE","2px"),st.extend("--ft-tabs-focus-focus-ring-color","",gt.borderActionFocusRing),st.extend("--ft-collapsible-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-collapsible-focus-state-layer-opacity","",dt.opacity8),st.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),st.extend("--ft-collapsible-focus-focus-ring-color","",gt.borderActionFocusRing),st.extend("--ft-collapsible-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-collapsible-disabled-component-opacity","",dt.opacity40),st.extend("--ft-collapsible-horizontal-padding","",dt.spacing4),st.extend("--ft-collapsible-vertical-padding","",dt.spacing3),st.extend("--ft-collapsible-color","",gt.contentGlobalPrimary),st.extend("--ft-collapsible-state-layer-color","",gt.contentGlobalPrimary),st.extend("--ft-collapsible-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-collapsible-border-color","",gt.borderGlobalSubtle),st.extend("--ft-collapsible-icon-size","",dt.iconSize3),st.extend("--ft-switch-group-horizontal-padding","",dt.spacing1),st.extend("--ft-switch-group-vertical-padding","",dt.spacing1),st.extend("--ft-switch-group-gap","",dt.spacing1),st.extend("--ft-switch-group-background-color","",gt.backgroundGlobalSurface),st.extend("--ft-switch-group-border-color","",gt.borderGlobalSubtle),st.create("--ft-switch-group-border-radius","","SIZE","6px"),st.extend("--ft-switch-label-horizontal-padding","",dt.spacing2),st.extend("--ft-switch-label-vertical-padding","",dt.spacing1),st.extend("--ft-switch-off-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-switch-off-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-switch-off-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-switch-off-disabled-component-opacity","",dt.opacity40),st.extend("--ft-switch-off-color","",gt.contentGlobalSubtle),st.extend("--ft-switch-off-state-layer-color","",gt.contentGlobalSubtle),st.extend("--ft-switch-on-hover-state-layer-opacity","",dt.opacity8),st.extend("--ft-switch-on-focus-state-layer-opacity","",dt.opacity8),st.extend("--ft-switch-on-active-state-layer-opacity","",dt.opacity16),st.extend("--ft-switch-on-disabled-component-opacity","",dt.opacity40),st.extend("--ft-switch-on-color","",gt.contentActionPrimary),st.extend("--ft-switch-on-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-switch-icon-horizontal-padding","",dt.spacing1),st.extend("--ft-switch-icon-vertical-padding","",dt.spacing1),st.create("--ft-switch-focus-outline-width","","SIZE","2px"),st.extend("--ft-switch-focus-focus-ring-color","",gt.borderActionFocusRing),st.extend("--ft-switch-option-border-radius","",dt.borderRadiusS),st.extend("--ft-chart-1-light","for area color charts",dt.colorBrand40),st.extend("--ft-chart-1-base","for line charts",dt.colorBrand0),st.extend("--ft-chart-2-light","for area color charts",dt.colorYellow60),st.extend("--ft-chart-2-base","for line charts",dt.colorYellow100),st.extend("--ft-chart-3-light","",dt.colorUltramarine40),st.extend("--ft-chart-3-base","",dt.colorUltramarine70),st.extend("--ft-chart-4-light","",dt.colorCyan50),st.extend("--ft-chart-4-base","",dt.colorCyan100),st.extend("--ft-chart-5-light","",dt.colorRed40),st.extend("--ft-chart-5-base","",dt.colorRed60),st.extend("--ft-chart-6-light","",dt.colorGreen40),st.extend("--ft-chart-6-base","",dt.colorGreen70),st.extend("--ft-chart-7-light","",dt.colorOrange70),st.extend("--ft-chart-7-base","",dt.colorOrange100),st.extend("--ft-chart-8-light","",dt.colorAvocado70),st.extend("--ft-chart-8-base","",dt.colorAvocado200),st.extend("--ft-chart-9-light","",dt.colorBrown50),st.extend("--ft-chart-9-base","",dt.colorBrown200),st.extend("--ft-chart-10-light","",dt.colorGray50),st.extend("--ft-chart-10-base","",dt.colorGray80),st.extend("--ft-chart-monochrome-10","",dt.colorBrand10),st.extend("--ft-chart-monochrome-20","",dt.colorBrand20),st.extend("--ft-chart-monochrome-30","",dt.colorBrand40),st.extend("--ft-chart-monochrome-40","",dt.colorBrand60),st.extend("--ft-chart-monochrome-50","",dt.colorBrand0),st.extend("--ft-chart-monochrome-60","",dt.colorBrand200),st.extend("--ft-chip-large-horizontal-padding","",dt.spacing4),st.extend("--ft-chip-large-vertical-padding","",dt.spacing2),st.extend("--ft-chip-large-gap","",dt.spacing1),st.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),st.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),st.extend("--ft-chip-large-border-radius","",dt.borderRadiusPill),st.create("--ft-chip-large-border-width","","SIZE","1px"),st.extend("--ft-chip-large-icon-size","",dt.iconSize3),st.extend("--ft-chip-medium-horizontal-padding","",dt.spacing3),st.extend("--ft-chip-medium-vertical-padding","",dt.spacing1),st.extend("--ft-chip-medium-gap","",dt.spacing1),st.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),st.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),st.extend("--ft-chip-medium-border-radius","",dt.borderRadiusPill),st.create("--ft-chip-medium-border-width","","SIZE","1px"),st.extend("--ft-chip-medium-icon-size","",dt.iconSize2),st.extend("--ft-chip-small-horizontal-padding","",dt.spacing2),st.extend("--ft-chip-small-vertical-padding","",dt.spacing05),st.extend("--ft-chip-small-gap","",dt.spacing1),st.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),st.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),st.extend("--ft-chip-small-border-radius","",dt.borderRadiusPill),st.create("--ft-chip-small-border-width","","SIZE","1px"),st.extend("--ft-chip-small-icon-size","",dt.iconSize1),st.extend("--ft-chip-neutral-background-color","",gt.backgroundGlobalOnSurface),st.extend("--ft-chip-neutral-color","",gt.contentGlobalPrimary),st.extend("--ft-chip-neutral-icon-color","",gt.contentGlobalPrimary),st.extend("--ft-chip-neutral-border-color","",gt.borderGlobalSubtle),st.extend("--ft-chip-info-background-color","",gt.backgroundInfoSubtle),st.extend("--ft-chip-info-color","",gt.contentInfoPrimary),st.extend("--ft-chip-info-icon-color","",gt.contentInfoIconOnly),st.extend("--ft-chip-info-border-color","",gt.borderInfoSubtle),st.extend("--ft-chip-success-background-color","",gt.backgroundSuccessSubtle),st.extend("--ft-chip-success-color","",gt.contentSuccessPrimary),st.extend("--ft-chip-success-icon-color","",gt.contentSuccessIconOnly),st.extend("--ft-chip-success-border-color","",gt.borderSuccessSubtle),st.extend("--ft-chip-warning-background-color","",gt.backgroundWarningSubtle),st.extend("--ft-chip-warning-color","",gt.contentWarningPrimary),st.extend("--ft-chip-warning-icon-color","",gt.contentWarningIconOnly),st.extend("--ft-chip-warning-border-color","",gt.borderWarningSubtle),st.extend("--ft-chip-error-background-color","",gt.backgroundErrorSubtle),st.extend("--ft-chip-error-color","",gt.contentErrorPrimary),st.extend("--ft-chip-error-icon-color","",gt.contentErrorIconOnly),st.extend("--ft-chip-error-border-color","",gt.borderErrorSubtle),st.extend("--ft-border-info-border-color","",gt.borderInfoSubtle),st.create("--ft-notice-border-width","","SIZE","1px"),st.extend("--ft-notice-horizontal-padding","",dt.spacing2),st.extend("--ft-notice-vertical-padding","",dt.spacing1),st.extend("--ft-notice-border-radius","",dt.borderRadiusS),st.extend("--ft-notice-gap","",dt.spacing2),st.extend("--ft-notice-icon-size","",dt.iconSize3),st.extend("--ft-notice-info-background-color","",gt.backgroundInfoSubtle),st.extend("--ft-notice-info-border-color","",gt.borderInfoSubtle),st.extend("--ft-notice-info-color","",gt.contentInfoPrimary),st.extend("--ft-notice-info-icon-color","",gt.contentInfoIconOnly),st.extend("--ft-notice-warning-background-color","",gt.backgroundWarningSubtle),st.extend("--ft-notice-warning-border-color","",gt.borderWarningSubtle),st.extend("--ft-notice-warning-color","",gt.contentWarningPrimary),st.extend("--ft-notice-warning-icon-color","",gt.contentWarningIconOnly),st.extend("--ft-notice-error-background-color","",gt.backgroundErrorSubtle),st.extend("--ft-notice-error-border-color","",gt.borderErrorSubtle),st.extend("--ft-notice-error-color","",gt.contentErrorPrimary),st.extend("--ft-notice-error-icon-color","",gt.contentErrorIconOnly),st.extend("--ft-notice-success-background-color","",gt.backgroundSuccessSubtle),st.extend("--ft-notice-success-border-color","",gt.borderSuccessSubtle),st.extend("--ft-notice-success-color","",gt.contentSuccessPrimary),st.extend("--ft-notice-success-icon-color","",gt.contentSuccessIconOnly),st.extend("--ft-checkbox-color","",gt.contentGlobalPrimary),st.extend("--ft-checkbox-checked-background-color","",gt.contentActionPrimary),st.extend("--ft-checkbox-checked-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-checkbox-checked-icon-color","",gt.contentGlobalOnColor),st.extend("--ft-checkbox-checked-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-checkbox-checked-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-checkbox-checked-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-checkbox-checked-disabled-component-opacity","",dt.opacity40),st.extend("--ft-checkbox-unchecked-border-color","",dt.colorGray80),st.extend("--ft-checkbox-unchecked-state-layer-color","",dt.colorGray80),st.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-checkbox-unchecked-disabled-component-opacity","",dt.opacity40),st.extend("--ft-checkbox-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),st.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),st.extend("--ft-checkbox-gap","",dt.spacing3),st.extend("--ft-toggle-off-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-toggle-off-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-toggle-off-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-toggle-off-disabled-component-opacity","",dt.opacity40),st.extend("--ft-toggle-off-background-color","",gt.contentGlobalSubtle),st.extend("--ft-toggle-off-icon-color","",gt.contentGlobalSubtle),st.extend("--ft-toggle-off-state-layer-color","",gt.contentGlobalSubtle),st.extend("--ft-toggle-on-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-toggle-on-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-toggle-on-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-toggle-on-disabled-component-opacity","",dt.opacity40),st.extend("--ft-toggle-on-background-color","",gt.contentActionPrimary),st.extend("--ft-toggle-on-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-toggle-on-icon-color","",gt.contentActionPrimary),st.extend("--ft-toggle-color","",gt.contentGlobalPrimary),st.extend("--ft-toggle-focus-focus-ring-color","",gt.borderActionFocusRing),st.extend("--ft-toggle-gap","",dt.spacing3),st.extend("--ft-radio-color","",gt.contentGlobalPrimary),st.extend("--ft-radio-selected-radio-color","",gt.contentActionPrimary),st.extend("--ft-radio-selected-state-layer-color","",gt.contentActionPrimary),st.extend("--ft-radio-selected-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-radio-selected-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-radio-selected-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-radio-selected-disabled-component-opacity","",dt.opacity40),st.extend("--ft-radio-unselected-state-layer-color","",gt.borderInputPrimary),st.extend("--ft-radio-unselected-border-color","",gt.borderInputPrimary),st.extend("--ft-radio-unselected-hover-state-layer-opacity","",dt.opacity16),st.extend("--ft-radio-unselected-focus-state-layer-opacity","",dt.opacity16),st.extend("--ft-radio-unselected-active-state-layer-opacity","",dt.opacity24),st.extend("--ft-radio-unselected-disabled-component-opacity","",dt.opacity40),st.extend("--ft-radio-focus-focus-ring-color","",gt.borderActionFocusRing),st.create("--ft-radio-focus-outline-offset","","SIZE","3px"),st.create("--ft-radio-focus-outline-width","","SIZE","2px"),st.extend("--ft-radio-gap","",dt.spacing3),st.extend("--ft-notification-icon-size","",dt.iconSize4),st.extend("--ft-notification-horizontal-padding","",dt.spacing4),st.extend("--ft-notification-vertical-padding","",dt.spacing4),st.extend("--ft-notification-info-background-color","",gt.backgroundInfoSubtle),st.extend("--ft-notification-info-color","",gt.contentInfoPrimary),st.extend("--ft-notification-info-icon-color","",gt.contentInfoIconOnly),st.extend("--ft-notification-info-border-color","",gt.borderInfoSubtle),st.extend("--ft-notification-success-background-color","",gt.backgroundSuccessSubtle),st.extend("--ft-notification-success-color","",gt.contentSuccessPrimary),st.extend("--ft-notification-success-icon-color","",gt.contentSuccessIconOnly),st.extend("--ft-notification-success-border-color","",gt.borderSuccessSubtle),st.extend("--ft-notification-warning-background-color","",gt.backgroundWarningSubtle),st.extend("--ft-notification-warning-color","",gt.contentWarningPrimary),st.extend("--ft-notification-warning-icon-color","",gt.contentWarningIconOnly),st.extend("--ft-notification-warning-border-color","",gt.borderWarningSubtle),st.extend("--ft-notification-error-background-color","",gt.backgroundErrorSubtle),st.extend("--ft-notification-error-color","",gt.contentErrorPrimary),st.extend("--ft-notification-error-icon-color","",gt.contentErrorIconOnly),st.extend("--ft-notification-error-border-color","",gt.borderErrorSubtle),st.extend("--ft-notification-border-radius","",dt.borderRadiusPill),st.create("--ft-notification-border-width","","SIZE","1px"),st.extend("--ft-notification-leading-gap","",dt.spacing2),st.extend("--ft-notification-trailing-gap","",dt.spacing8),st.extend("--ft-tooltip-horizontal-padding","",dt.spacing2),st.extend("--ft-tooltip-vertical-padding","",dt.spacing2),st.extend("--ft-tooltip-border-radius","",dt.borderRadiusS),st.extend("--ft-tooltip-color","",gt.contentGlobalOnColor),st.extend("--ft-tooltip-background-color","",gt.contentGlobalPrimary),st.extend("--ft-tooltip-background-opacity","",dt.opacity80),st.extend("--ft-tooltip-shadow","",dt.shadowElevation03),st.create("--ft-tooltip-max-width","","SIZE","256px"),st.extend("--ft-tooltip-gap","",dt.spacing05);const yt=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),bt=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),ut={fontFamily:bt,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")},mt=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",yt),xt=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",ut.fontSize,"20px"),Ot=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",ut.fontWeight,"normal"),Nt=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",ut.letterSpacing,"0.15px"),St=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",ut.lineHeight,"1.2"),vt=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",ut.textTransform,"inherit"),wt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",yt),It=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",ut.fontSize,"14px"),Ct=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",ut.fontWeight,"normal"),Et=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",ut.letterSpacing,"0.105px"),Wt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",ut.lineHeight,"1.7"),Ut=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",ut.textTransform,"inherit"),kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",bt),Rt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",ut.fontSize,"16px"),Zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",ut.fontWeight,"600"),Lt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",ut.letterSpacing,"0.144px"),zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",ut.lineHeight,"1.5"),Kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",ut.textTransform,"inherit"),$t=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",bt),Dt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",ut.fontSize,"14px"),Ft=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",ut.fontWeight,"normal"),Bt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",ut.letterSpacing,"0.098px"),Ht=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",ut.lineHeight,"1.7"),At=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",ut.textTransform,"inherit"),Gt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",bt),Mt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",ut.fontSize,"16px"),Pt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",ut.fontWeight,"normal"),Yt=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",ut.letterSpacing,"0.496px"),_t=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",ut.lineHeight,"1.5"),jt=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",ut.textTransform,"inherit"),Tt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",bt),Xt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",ut.fontSize,"14px"),Vt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",ut.fontWeight,"normal"),qt=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",ut.letterSpacing,"0.252px"),Jt=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",ut.lineHeight,"1.4"),Qt=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",ut.textTransform,"inherit"),to=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",bt),oo=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",ut.fontSize,"12px"),eo=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",ut.fontWeight,"normal"),ro=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",ut.letterSpacing,"0.396px"),ao=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",ut.lineHeight,"1.33"),io=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",ut.textTransform,"inherit"),no=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",bt),lo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",ut.fontSize,"10px"),co=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",ut.fontWeight,"normal"),po=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",ut.letterSpacing,"0.33px"),fo=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",ut.lineHeight,"1.6"),so=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",ut.textTransform,"inherit"),ho=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",bt),go=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",ut.fontSize,"10px"),yo=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",ut.fontWeight,"normal"),bo=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",ut.letterSpacing,"1.5px"),uo=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",ut.lineHeight,"1.6"),mo=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",ut.textTransform,"uppercase"),xo=o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",bt),Oo=o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",ut.fontSize,"14px"),No=o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",ut.fontWeight,"600"),So=o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",ut.letterSpacing,"1.246px"),vo=o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",ut.lineHeight,"1.15"),wo=o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",ut.textTransform,"uppercase"),Io=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 a,n;super.update(o),o.has("disabled")&&(this.disabled?(this.endRipple(),(a=this.target)===null||a===void 0||a.removeAttribute("data-is-ft-ripple-target")):(n=this.target)===null||n===void 0||n.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,a;let n=(o=this.shadowRoot)===null||o===void 0?void 0:o.host.parentElement;n&&this.setupFor((a=this.target)!==null&&a!==void 0?a:n)}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 a=(...f)=>y=>{f.forEach(g=>window.addEventListener(g,this.endPress,{once:!0})),this.startPress(y)},n=a("mouseup","contextmenu"),c=a("touchend","touchcancel"),p=f=>{["Enter"," "].includes(f.key)&&a("keyup")(f)},l={passive:!0};o.addEventListener("mouseover",this.startHover,l),o.addEventListener("mousemove",this.moveRipple,l),o.addEventListener("mouseleave",this.endHover,l),o.addEventListener("mousedown",n,l),o.addEventListener("touchstart",c,l),o.addEventListener("touchmove",this.moveRipple,l),o.addEventListener("keydown",p,l),o.addEventListener("focus",this.startFocus,l),o.addEventListener("blur",this.endFocus,l),o.addEventListener("focusin",this.startFocus,l),o.addEventListener("focusout",this.endFocus,l),this.onDisconnect=()=>{o.removeAttribute("data-is-ft-ripple-target"),o.removeEventListener("mouseover",this.startHover,l),o.removeEventListener("mousemove",this.moveRipple,l),o.removeEventListener("mouseleave",this.endHover,l),o.removeEventListener("mousedown",n,l),o.removeEventListener("touchstart",c,l),o.removeEventListener("touchmove",this.moveRipple,l),o.removeEventListener("keydown",p,l),o.removeEventListener("focus",this.startFocus,l),o.removeEventListener("blur",this.endFocus,l),o.removeEventListener("focusin",this.startFocus,l),o.removeEventListener("focusout",this.endFocus,l),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(o){let a=o,n=o,c,p;return a.x!=null?{x:c,y:p}=a:n.touches!=null&&(c=n.touches[0].clientX,p=n.touches[0].clientY),{x:c,y:p}}isFocusVisible(o){return o instanceof HTMLElement?o.matches(":focus-visible"):!0}isIgnored(o){if(this.disabled)return!0;if(o!=null)for(let a of o.composedPath()){if(a===this.target)break;if("hasAttribute"in a&&a.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}};b.elementDefinitions={};b.styles=Ut;C([(0,O.property)({type:Boolean})],b.prototype,"primary",void 0);C([(0,O.property)({type:Boolean})],b.prototype,"secondary",void 0);C([(0,O.property)({type:Boolean})],b.prototype,"unbounded",void 0);C([(0,O.property)({type:Boolean})],b.prototype,"activated",void 0);C([(0,O.property)({type:Boolean})],b.prototype,"selected",void 0);C([(0,O.property)({type:Boolean})],b.prototype,"disabled",void 0);C([(0,O.state)()],b.prototype,"hovered",void 0);C([(0,O.state)()],b.prototype,"focused",void 0);C([(0,O.state)()],b.prototype,"pressed",void 0);C([(0,O.state)()],b.prototype,"rippling",void 0);C([(0,O.state)()],b.prototype,"originX",void 0);C([(0,O.state)()],b.prototype,"originY",void 0);C([(0,O.query)(".ft-ripple")],b.prototype,"ripple",void 0);C([(0,O.query)(".ft-ripple--effect")],b.prototype,"rippleEffect",void 0);(0,Pt.customElement)("ft-ripple")(b);var _e=m(W());var Ot=globalThis,lt=Ot.trustedTypes,Zt=lt?lt.createPolicy("lit-html",{createHTML:i=>i}):void 0,Vt="$lit$",$=`lit$${(Math.random()+"").slice(9)}$`,Mt="?"+$,ro=`<${Mt}>`,Z=document,pt=()=>Z.createComment(""),ot=i=>i===null||typeof i!="object"&&typeof i!="function",Yt=Array.isArray,ao=i=>Yt(i)||typeof i?.[Symbol.iterator]=="function",ht=`[
|
|
125
|
+
\f\r]`,et=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Gt=/-->/g,Kt=/>/g,H=RegExp(`>|${ht}(?:([^\\s"'>=/]+)(${ht}*=${ht}*(?:[^
|
|
126
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),Dt=/'/g,_t=/"/g,jt=/^(?:script|style|textarea|title)$/i,Xt=i=>(o,...a)=>({_$litType$:i,strings:o,values:a}),qt=Xt(1),Jt=Xt(2),rt=Symbol.for("lit-noChange"),S=Symbol.for("lit-nothing"),Tt=new WeakMap,P=Z.createTreeWalker(Z,129);function Qt(i,o){if(!Array.isArray(i)||!i.hasOwnProperty("raw"))throw Error("invalid template strings array");return Zt!==void 0?Zt.createHTML(o):o}var no=(i,o)=>{let a=i.length-1,n=[],c,p=o===2?"<svg>":"",l=et;for(let f=0;f<a;f++){let y=i[f],g,x,h=-1,w=0;for(;w<y.length&&(l.lastIndex=w,x=l.exec(y),x!==null);)w=l.lastIndex,l===et?x[1]==="!--"?l=Gt:x[1]!==void 0?l=Kt:x[2]!==void 0?(jt.test(x[2])&&(c=RegExp("</"+x[2],"g")),l=H):x[3]!==void 0&&(l=H):l===H?x[0]===">"?(l=c??et,h=-1):x[1]===void 0?h=-2:(h=l.lastIndex-x[2].length,g=x[1],l=x[3]===void 0?H:x[3]==='"'?_t:Dt):l===_t||l===Dt?l=H:l===Gt||l===Kt?l=et:(l=H,c=void 0);let F=l===H&&i[f+1].startsWith("/>")?" ":"";p+=l===et?y+ro:h>=0?(n.push(g),y.slice(0,h)+Vt+y.slice(h)+$+F):y+$+(h===-2?f:F)}return[Qt(i,p+(i[a]||"<?>")+(o===2?"</svg>":"")),n]},at=class i{constructor({strings:o,_$litType$:a},n){let c;this.parts=[];let p=0,l=0,f=o.length-1,y=this.parts,[g,x]=no(o,a);if(this.el=i.createElement(g,n),P.currentNode=this.el.content,a===2){let h=this.el.content.firstChild;h.replaceWith(...h.childNodes)}for(;(c=P.nextNode())!==null&&y.length<f;){if(c.nodeType===1){if(c.hasAttributes())for(let h of c.getAttributeNames())if(h.endsWith(Vt)){let w=x[l++],F=c.getAttribute(h).split($),nt=/([.?@])?(.*)/.exec(w);y.push({type:1,index:p,name:nt[2],strings:F,ctor:nt[1]==="."?mt:nt[1]==="?"?ut:nt[1]==="@"?xt:K}),c.removeAttribute(h)}else h.startsWith($)&&(y.push({type:6,index:p}),c.removeAttribute(h));if(jt.test(c.tagName)){let h=c.textContent.split($),w=h.length-1;if(w>0){c.textContent=lt?lt.emptyScript:"";for(let F=0;F<w;F++)c.append(h[F],pt()),P.nextNode(),y.push({type:2,index:++p});c.append(h[w],pt())}}}else if(c.nodeType===8)if(c.data===Mt)y.push({type:2,index:p});else{let h=-1;for(;(h=c.data.indexOf($,h+1))!==-1;)y.push({type:7,index:p}),h+=$.length-1}p++}}static createElement(o,a){let n=Z.createElement("template");return n.innerHTML=o,n}};function G(i,o,a=i,n){if(o===rt)return o;let c=n!==void 0?a._$Co?.[n]:a._$Cl,p=ot(o)?void 0:o._$litDirective$;return c?.constructor!==p&&(c?._$AO?.(!1),p===void 0?c=void 0:(c=new p(i),c._$AT(i,a,n)),n!==void 0?(a._$Co??=[])[n]=c:a._$Cl=c),c!==void 0&&(o=G(i,c._$AS(i,o.values),c,n)),o}var bt=class{constructor(o,a){this._$AV=[],this._$AN=void 0,this._$AD=o,this._$AM=a}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(o){let{el:{content:a},parts:n}=this._$AD,c=(o?.creationScope??Z).importNode(a,!0);P.currentNode=c;let p=P.nextNode(),l=0,f=0,y=n[0];for(;y!==void 0;){if(l===y.index){let g;y.type===2?g=new dt(p,p.nextSibling,this,o):y.type===1?g=new y.ctor(p,y.name,y.strings,this,o):y.type===6&&(g=new St(p,this,o)),this._$AV.push(g),y=n[++f]}l!==y?.index&&(p=P.nextNode(),l++)}return P.currentNode=Z,c}p(o){let a=0;for(let n of this._$AV)n!==void 0&&(n.strings!==void 0?(n._$AI(o,n,a),a+=n.strings.length-2):n._$AI(o[a])),a++}},dt=class i{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(o,a,n,c){this.type=2,this._$AH=S,this._$AN=void 0,this._$AA=o,this._$AB=a,this._$AM=n,this.options=c,this._$Cv=c?.isConnected??!0}get parentNode(){let o=this._$AA.parentNode,a=this._$AM;return a!==void 0&&o?.nodeType===11&&(o=a.parentNode),o}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(o,a=this){o=G(this,o,a),ot(o)?o===S||o==null||o===""?(this._$AH!==S&&this._$AR(),this._$AH=S):o!==this._$AH&&o!==rt&&this._(o):o._$litType$!==void 0?this.g(o):o.nodeType!==void 0?this.$(o):ao(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!==S&&ot(this._$AH)?this._$AA.nextSibling.data=o:this.$(Z.createTextNode(o)),this._$AH=o}g(o){let{values:a,_$litType$:n}=o,c=typeof n=="number"?this._$AC(o):(n.el===void 0&&(n.el=at.createElement(Qt(n.h,n.h[0]),this.options)),n);if(this._$AH?._$AD===c)this._$AH.p(a);else{let p=new bt(c,this),l=p.u(this.options);p.p(a),this.$(l),this._$AH=p}}_$AC(o){let a=Tt.get(o.strings);return a===void 0&&Tt.set(o.strings,a=new at(o)),a}T(o){Yt(this._$AH)||(this._$AH=[],this._$AR());let a=this._$AH,n,c=0;for(let p of o)c===a.length?a.push(n=new i(this.k(pt()),this.k(pt()),this,this.options)):n=a[c],n._$AI(p),c++;c<a.length&&(this._$AR(n&&n._$AB.nextSibling,c),a.length=c)}_$AR(o=this._$AA.nextSibling,a){for(this._$AP?.(!1,!0,a);o&&o!==this._$AB;){let n=o.nextSibling;o.remove(),o=n}}setConnected(o){this._$AM===void 0&&(this._$Cv=o,this._$AP?.(o))}},K=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(o,a,n,c,p){this.type=1,this._$AH=S,this._$AN=void 0,this.element=o,this.name=a,this._$AM=c,this.options=p,n.length>2||n[0]!==""||n[1]!==""?(this._$AH=Array(n.length-1).fill(new String),this.strings=n):this._$AH=S}_$AI(o,a=this,n,c){let p=this.strings,l=!1;if(p===void 0)o=G(this,o,a,0),l=!ot(o)||o!==this._$AH&&o!==rt,l&&(this._$AH=o);else{let f=o,y,g;for(o=p[0],y=0;y<p.length-1;y++)g=G(this,f[n+y],a,y),g===rt&&(g=this._$AH[y]),l||=!ot(g)||g!==this._$AH[y],g===S?o=S:o!==S&&(o+=(g??"")+p[y+1]),this._$AH[y]=g}l&&!c&&this.O(o)}O(o){o===S?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,o??"")}},mt=class extends K{constructor(){super(...arguments),this.type=3}O(o){this.element[this.name]=o===S?void 0:o}},ut=class extends K{constructor(){super(...arguments),this.type=4}O(o){this.element.toggleAttribute(this.name,!!o&&o!==S)}},xt=class extends K{constructor(o,a,n,c,p){super(o,a,n,c,p),this.type=5}_$AI(o,a=this){if((o=G(this,o,a,0)??S)===rt)return;let n=this._$AH,c=o===S&&n!==S||o.capture!==n.capture||o.once!==n.once||o.passive!==n.passive,p=o!==S&&(n===S||c);c&&this.element.removeEventListener(this.name,this,n),p&&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)}},St=class{constructor(o,a,n){this.element=o,this.type=6,this._$AN=void 0,this._$AM=a,this.options=n}get _$AU(){return this._$AM._$AU}_$AI(o){G(this,o)}};var io=Ot.litHtmlPolyfillSupport;io?.(at,dt),(Ot.litHtmlVersions??=[]).push("3.1.0");var ee=Symbol.for(""),co=i=>{if(i?.r===ee)return i?._$litStatic$},Ct=i=>({_$litStatic$:i,r:ee});var te=new Map,oe=i=>(o,...a)=>{let n=a.length,c,p,l=[],f=[],y,g=0,x=!1;for(;g<n;){for(y=o[g];g<n&&(p=a[g],(c=co(p))!==void 0);)y+=c+o[++g],x=!0;g!==n&&f.push(p),l.push(y),g++}if(g===n&&l.push(o[n]),x){let h=l.join("$$lit$$");(o=te.get(h))===void 0&&(l.raw=l,te.set(h,o=l)),a=f}return i(o,...a)},Nt=oe(qt),Io=oe(Jt);var vt=m(ct()),De=m(W());var st;(function(i){i.title="title",i.title_dense="title-dense",i.subtitle1="subtitle1",i.subtitle2="subtitle2",i.body1="body1",i.body2="body2",i.caption="caption",i.breadcrumb="breadcrumb",i.overline="overline",i.button="button",i.display="display",i.title1="title-1",i.title2="title-2",i.title3="title-3",i.body1regular="body-1-regular",i.body1medium="body-1-medium",i.body1semibold="body-1-semibold",i.body2regular="body-2-regular",i.body2medium="body-2-medium",i.body2semibold="body-2-semibold",i.label1medium="label-1-medium",i.label1semibold="label-1-semibold",i.label1bold="label-1-bold",i.label2medium="label-2-medium",i.label2semibold="label-2-semibold",i.label2bold="label-2-bold",i.caption1medium="caption-1-medium",i.caption1semibold="caption-1-semibold",i.caption1bold="caption-1-bold",i.caption2medium="caption-2-medium",i.caption2semibold="caption-2-semibold",i.caption2bold="caption-2-bold"})(st||(st={}));var v=m(z()),d=m(W());var E=m(z(),1),B=i=>typeof i=="string"?(0,E.unsafeCSS)(i):i,t=class{static create(o,a,n,c){let p=f=>B(f??c),l=E.css`var(${B(o)}, ${p(c)})`;return l.name=o,l.description=a,l.category=n,l.defaultValue=c,l.defaultCssValue=p,l.get=f=>E.css`var(${B(o)}, ${p(f)})`,l.breadcrumb=()=>[],l.lastResortDefaultValue=()=>c,l}static extend(o,a,n,c){let p=f=>n.get(f??c),l=E.css`var(${B(o)}, ${p(c)})`;return l.name=o,l.description=a,l.category=n.category,l.fallbackVariable=n,l.defaultValue=c,l.defaultCssValue=p,l.get=f=>E.css`var(${B(o)}, ${p(f)})`,l.breadcrumb=()=>[n.name,...n.breadcrumb()],l.lastResortDefaultValue=()=>c??n.lastResortDefaultValue(),l}static external(o,a){let n=p=>o.fallbackVariable?o.fallbackVariable.get(p??o.defaultValue):B(p??o.lastResortDefaultValue()),c=E.css`var(${B(o.name)}, ${n(o.defaultValue)})`;return c.name=o.name,c.category=o.category,c.fallbackVariable=o.fallbackVariable,c.defaultValue=o.defaultValue,c.context=a,c.defaultCssValue=n,c.get=p=>E.css`var(${B(o.name)}, ${n(p)})`,c.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],c.lastResortDefaultValue=()=>o.lastResortDefaultValue(),c}};var e={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)")},re={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")},ae={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")},ne={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")},ie={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")},ce={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")},le={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")},pe={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")},de={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")},se={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")},lo={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")},fe={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")},ye={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")},ge={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")},he={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")},be={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")},me={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")},ue={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")},xe={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")},Se={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")},Oe={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")},Ce={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")},Ne={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")},ve={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")},Ie={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")},We={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")},we={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")},ft={display:re,"title-1":ae,"title-2":ne,"title-3":ie,"body-1-regular":ce,"body-1-medium":le,"body-1-semibold":pe,"body-2-regular":de,"body-2-medium":se,"body-2-medium-underline":lo,"body-2-semibold":fe,"label-1-medium":ye,"label-1-semibold":ge,"label-1-bold":he,"label-2-medium":be,"label-2-semibold":me,"label-2-bold":ue,"caption-1-medium":xe,"caption-1-semibold":Se,"caption-1-bold":Oe,"caption-2-medium":Ce,"caption-2-semibold":Ne,"caption-2-bold":ve,"caption-3-medium":Ie,"caption-3-semibold":We,"caption-3-bold":we};var r={backgroundActionPrimary:t.extend("--ft-background-action-primary","Used as backgorund of primary action components.",e.colorBrand0),backgroundErrorSubtle:t.extend("--ft-background-error-subtle","Used as background of subtle error components.",e.colorRed10),backgroundInfoSubtle:t.extend("--ft-background-info-subtle","Used as background of subtle information components.",e.colorCyan10),backgroundWarningSubtle:t.extend("--ft-background-warning-subtle","Used as background of subtle information components.",e.colorOrange10),backgroundSuccessSubtle:t.extend("--ft-background-success-subtle","Used as background of subtle success components.",e.colorGreen10),backgroundGlobalSurface:t.extend("--ft-background-global-surface","Used as app background.",e.colorWhite),backgroundGlobalOnSurface:t.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",e.colorGray10),backgroundGlobalOnSurfaceDark:t.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",e.colorGray30),contentActionPrimary:t.extend("--ft-content-action-primary","Used on label of primary action on light surface.",e.colorBrand0),contentWarningPrimary:t.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",e.colorOrange200),contentWarningIconOnly:t.extend("--ft-content-warning-icon-only","Used on warning status icons alone",e.colorOrange0),contentErrorPrimary:t.extend("--ft-content-error-primary","Used on label of error messages on light surface.",e.colorRed0),contentErrorIconOnly:t.extend("--ft-content-error-icon-only","Used on error status icons alone",e.colorRed70),contentInfoPrimary:t.extend("--ft-content-info-primary","Used on label of information messages on light surface.",e.colorCyan200),contentInfoIconOnly:t.extend("--ft-content-info-icon-only","Used on info status icons alone",e.colorCyan0),contentSuccessPrimary:t.extend("--ft-content-success-primary","Used on label of success messages on light surface.",e.colorGreen200),contentSuccessIconOnly:t.extend("--ft-content-success-icon-only","Used on success status icons alone",e.colorGreen0),contentGlobalPrimary:t.extend("--ft-content-global-primary","Used for main content on the page.",e.colorGray500),contentGlobalSecondary:t.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
|
|
127
|
+
Also for action icons.`,e.colorGray200),contentGlobalSubtle:t.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",e.colorGray0),contentGlobalOnColor:t.extend("--ft-content-global-on-color","Used for content on a dominant color.",e.colorWhite),borderActionPrimary:t.extend("--ft-border-action-primary","Used as border for primary action components.",e.colorBrand0),borderActionFocusRing:t.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",e.colorCyan0),borderWarningPrimary:t.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",e.colorOrange200),borderWarningSubtle:t.extend("--ft-border-warning-subtle","Used as border for warning components.",e.colorOrange30),borderSuccessPrimary:t.extend("--ft-border-success-primary","Used as border for success buttons.",e.colorGreen200),borderSuccessSubtle:t.extend("--ft-border-success-subtle","Used as border for success components.",e.colorGreen30),borderErrorPrimary:t.extend("--ft-border-error-primary","Used as border for text fields in error states.",e.colorRed0),borderErrorSubtle:t.extend("--ft-border-error-subtle","Used as border for error components.",e.colorRed30),borderInfoPrimary:t.extend("--ft-border-info-primary","Used as border for buttons in info color.",e.colorCyan200),borderInfoSubtle:t.extend("--ft-border-info-subtle","Used as border for information components.",e.colorCyan30),borderGlobalPrimary:t.extend("--ft-border-global-primary","Used as border for element like input.",e.colorGray50),borderGlobalSubtle:t.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",e.colorGray30),borderInputPrimary:t.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",e.colorGray80)};var Po={largeHeight:t.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:t.extend("--ft-button-large-horizontal-padding","",e.spacing4),largeGap:t.extend("--ft-button-large-gap","",e.spacing2),largeBorderRadius:t.extend("--ft-button-large-border-radius","",e.borderRadiusS),largeIconSize:t.extend("--ft-button-large-icon-size","",e.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","",e.spacing3),smallGap:t.extend("--ft-button-small-gap","",e.spacing2),smallBorderRadius:t.extend("--ft-button-small-border-radius","",e.borderRadiusS),smallIconSize:t.extend("--ft-button-small-icon-size","",e.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","",r.backgroundActionPrimary),primaryColor:t.extend("--ft-button-primary-color","",r.contentGlobalOnColor),primaryIconColor:t.extend("--ft-button-primary-icon-color","",r.contentGlobalOnColor),primaryStateLayerColor:t.extend("--ft-button-primary-state-layer-color","",r.contentGlobalOnColor),primaryHoverStateLayerOpacity:t.extend("--ft-button-primary-hover-state-layer-opacity","",e.opacity16),primaryFocusStateLayerOpacity:t.extend("--ft-button-primary-focus-state-layer-opacity","",e.opacity16),primaryActiveStateLayerOpacity:t.extend("--ft-button-primary-active-state-layer-opacity","",e.opacity24),primaryDisabledComponentOpacity:t.extend("--ft-button-primary-disabled-component-opacity","",e.opacity40),focusFocusRingColor:t.extend("--ft-button-focus-focus-ring-color","",r.borderActionFocusRing),tertiaryBackgroundColor:t.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:t.extend("--ft-button-tertiary-color","",r.contentActionPrimary),tertiaryIconColor:t.extend("--ft-button-tertiary-icon-color","",r.contentActionPrimary),tertiaryStateLayerColor:t.extend("--ft-button-tertiary-state-layer-color","",r.contentActionPrimary),tertiaryHoverStateLayerOpacity:t.extend("--ft-button-tertiary-hover-state-layer-opacity","",e.opacity8),tertiaryFocusStateLayerOpacity:t.extend("--ft-button-tertiary-focus-state-layer-opacity","",e.opacity8),tertiaryActiveStateLayerOpacity:t.extend("--ft-button-tertiary-active-state-layer-opacity","",e.opacity16),tertiaryDisabledComponentOpacity:t.extend("--ft-button-tertiary-disabled-component-opacity","",e.opacity40),secondaryBackgroundColor:t.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:t.extend("--ft-button-secondary-color","",r.contentActionPrimary),secondaryIconColor:t.extend("--ft-button-secondary-icon-color","",r.contentActionPrimary),secondaryStateLayerColor:t.extend("--ft-button-secondary-state-layer-color","",r.contentActionPrimary),secondaryHoverStateLayerOpacity:t.extend("--ft-button-secondary-hover-state-layer-opacity","",e.opacity8),secondaryFocusStateLayerOpacity:t.extend("--ft-button-secondary-focus-state-layer-opacity","",e.opacity8),secondaryActiveStateLayerOpacity:t.extend("--ft-button-secondary-active-state-layer-opacity","",e.opacity16),secondaryDisabledComponentOpacity:t.extend("--ft-button-secondary-disabled-component-opacity","",e.opacity40),secondaryBorderColor:t.extend("--ft-button-secondary-border-color","",r.borderActionPrimary),neutralBackgroundColor:t.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:t.extend("--ft-button-neutral-icon-color","",r.contentGlobalSecondary),neutralColor:t.extend("--ft-button-neutral-color","",r.contentGlobalSecondary),neutralStateLayerColor:t.extend("--ft-button-neutral-state-layer-color","",r.contentGlobalSecondary),neutralHoverStateLayerOpacity:t.extend("--ft-button-neutral-hover-state-layer-opacity","",e.opacity8),neutralFocusStateLayerOpacity:t.extend("--ft-button-neutral-focus-state-layer-opacity","",e.opacity8),neutralActiveStateLayerOpacity:t.extend("--ft-button-neutral-active-state-layer-opacity","",e.opacity16),neutralDisabledComponentOpacity:t.extend("--ft-button-neutral-disabled-component-opacity","",e.opacity40)};var _o={iconSize:t.extend("--ft-banner-icon-size","",e.iconSize5),borderWidth:t.create("--ft-banner-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-banner-horizontal-padding","",e.spacing6),verticalPadding:t.extend("--ft-banner-vertical-padding","",e.spacing6),horizontalSideGap:t.extend("--ft-banner-horizontal-side-gap","",e.spacing6),horizontalMobileGap:t.extend("--ft-banner-horizontal-mobile-gap","",e.spacing4),verticalMobileGap:t.extend("--ft-banner-vertical-mobile-gap","",e.spacing6),horizontalMiddleGap:t.extend("--ft-banner-horizontal-middle-gap","",e.spacing20),infoBackgroundColor:t.extend("--ft-banner-info-background-color","",r.backgroundInfoSubtle),infoColor:t.extend("--ft-banner-info-color","",r.contentInfoPrimary),infoIconColor:t.extend("--ft-banner-info-icon-color","",r.contentInfoIconOnly)};var jo={horizontalGap:t.extend("--ft-breadcrumb-horizontal-gap","",e.spacing1),verticalGap:t.extend("--ft-breadcrumb-vertical-gap","",e.spacing2),currentElementColor:t.extend("--ft-breadcrumb-current-element-color","",r.contentGlobalPrimary),iconColor:t.extend("--ft-breadcrumb-icon-color","",r.contentGlobalSubtle)};var tr={horizontalPadding:t.extend("--ft-page-header-horizontal-padding","",e.spacing12),horizontalGap:t.extend("--ft-page-header-horizontal-gap","",e.spacing4),verticalGap:t.extend("--ft-page-header-vertical-gap","",e.spacing2),classicVerticalPadding:t.extend("--ft-page-header-classic-vertical-padding","",e.spacing6),multilineVerticalPadding:t.extend("--ft-page-header-multiline-vertical-padding","",e.spacing4),inlineVerticalPadding:t.extend("--ft-page-header-inline-vertical-padding","",e.spacing2),backgroundColor:t.extend("--ft-page-header-background-color","",e.colorWhite),bottomBorderColor:t.extend("--ft-page-header-bottom-border-color","",r.borderGlobalSubtle),titleColor:t.extend("--ft-page-header-title-color","",r.contentGlobalPrimary),subtitleColor:t.extend("--ft-page-header-subtitle-color","",r.contentGlobalSecondary)};var nr={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","",e.colorGray700),overlayOpacity:t.extend("--ft-modal-overlay-opacity","",e.opacity40),shadow:t.extend("--ft-modal-shadow","",e.shadowElevation03),bodyBackgroundColor:t.extend("--ft-modal-body-background-color","",e.colorWhite),bodyColor:t.extend("--ft-modal-body-color","",r.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-modal-body-horizontal-padding","",e.spacing6),bodyVerticalPadding:t.extend("--ft-modal-body-vertical-padding","",e.spacing6),bodyVerticalGap:t.extend("--ft-modal-body-vertical-gap","",e.spacing6),containerMargin:t.extend("--ft-modal-container-margin","",e.spacing3),headerBackgroundColor:t.extend("--ft-modal-header-background-color","",r.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-modal-header-border-color","",r.borderGlobalSubtle),headerColor:t.extend("--ft-modal-header-color","",r.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-modal-header-trailing-icon-color","",r.contentGlobalSecondary),headerVerticalPadding:t.extend("--ft-modal-header-vertical-padding","",e.spacing1),headerRightPadding:t.extend("--ft-modal-header-right-padding","",e.spacing1),headerLeftPadding:t.extend("--ft-modal-header-left-padding","",e.spacing6),headerGap:t.extend("--ft-modal-header-gap","",e.spacing2),headerBorderBottom:t.create("--ft-modal-header-border-bottom","","SIZE","1px"),borderRadius:t.extend("--ft-modal-border-radius","",e.borderRadiusM)};var dr={overlayOpacity:t.extend("--ft-drawer-overlay-opacity","",e.opacity40),shadow:t.extend("--ft-drawer-shadow","",e.shadowElevation03),bodyColor:t.extend("--ft-drawer-body-color","",r.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-drawer-body-horizontal-padding","",e.spacing6),bodyVerticalPadding:t.extend("--ft-drawer-body-vertical-padding","",e.spacing6),bodyGap:t.extend("--ft-drawer-body-gap","",e.spacing6),bodyBackgroundColor:t.extend("--ft-drawer-body-background-color","",e.colorWhite),headerBackgroundColor:t.extend("--ft-drawer-header-background-color","",r.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-drawer-header-border-color","",r.borderGlobalSubtle),headerColor:t.extend("--ft-drawer-header-color","",r.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-drawer-header-trailing-icon-color","",r.contentGlobalSecondary),headerHeight:t.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:t.extend("--ft-drawer-header-horizontal-padding","",e.spacing2),headerBorderWidth:t.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:t.extend("--ft-drawer-header-gap","",e.spacing3),buttonsBarBackgroundColor:t.extend("--ft-drawer-buttons-bar-background-color","",r.backgroundGlobalOnSurface),buttonsBarBorderColor:t.extend("--ft-drawer-buttons-bar-border-color","",r.borderGlobalSubtle),buttonsBarColor:t.extend("--ft-drawer-buttons-bar-color","",r.contentGlobalPrimary),buttonsBarHorizontalPadding:t.extend("--ft-drawer-buttons-bar-horizontal-padding","",e.spacing4),buttonsBarVerticalPadding:t.extend("--ft-drawer-buttons-bar-vertical-padding","",e.spacing4),buttonsBarGap:t.extend("--ft-drawer-buttons-bar-gap","",e.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","",e.colorGray700)};var hr={fieldHorizontalPadding:t.extend("--ft-text-input-field-horizontal-padding","",e.spacing4),fieldHorizontalGap:t.extend("--ft-text-input-field-horizontal-gap","",e.spacing3),fieldVerticalGap:t.extend("--ft-text-input-field-vertical-gap","",e.spacing05),fieldIconSize:t.extend("--ft-text-input-field-icon-size","",e.iconSize3),fieldHeight:t.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-text-input-helper-horizontal-padding","",e.spacing4),helperHorizontalGap:t.extend("--ft-text-input-helper-horizontal-gap","",e.spacing1),helperIconSize:t.extend("--ft-text-input-helper-icon-size","",e.iconSize2),borderRadius:t.extend("--ft-text-input-border-radius","",e.borderRadiusM),backgroundColor:t.extend("--ft-text-input-background-color","",e.colorWhite),contentValueColor:t.extend("--ft-text-input-content-value-color","",r.contentGlobalPrimary),trailingIconColor:t.extend("--ft-text-input-trailing-icon-color","",r.contentGlobalSubtle),labelColor:t.extend("--ft-text-input-label-color","",r.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-input-default-border-color","",r.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-input-default-helper-text-color","",r.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","",r.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-input-error-helper-text-color","",r.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-input-error-helper-icon-color","",r.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","",r.borderActionFocusRing),focusOutlineOffset:t.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-input-disabled-component-opacity","",e.opacity40)};var Sr={backgroundColor:t.extend("--ft-text-area-background-color","",e.colorWhite),contentValueColor:t.extend("--ft-text-area-content-value-color","",r.contentGlobalPrimary),labelColor:t.extend("--ft-text-area-label-color","",r.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-area-default-border-color","",r.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-area-default-helper-text-color","",r.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","",r.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-area-error-helper-text-color","",r.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-area-error-helper-icon-color","",r.contentErrorIconOnly),focusFocusRingColor:t.extend("--ft-text-area-focus-focus-ring-color","",r.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","",e.opacity40),fieldHorizontalLeftPadding:t.extend("--ft-text-area-field-horizontal-left-padding","",e.spacing4),fieldHorizontalGap:t.extend("--ft-text-area-field-horizontal-gap","",e.spacing3),fieldVerticalGap:t.extend("--ft-text-area-field-vertical-gap","",e.spacing05),fieldMinHeight:t.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:t.extend("--ft-text-area-helper-horizontal-padding","",e.spacing4),helperHorizontalGap:t.extend("--ft-text-area-helper-horizontal-gap","",e.spacing1),helperIconSize:t.extend("--ft-text-area-helper-icon-size","",e.iconSize2),borderRadius:t.extend("--ft-text-area-border-radius","",e.borderRadiusM)};var Ir={height:t.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:t.extend("--ft-floating-menu-horizontal-padding","",e.spacing4),offIconColor:t.extend("--ft-floating-menu-off-icon-color","",r.contentGlobalPrimary),offColor:t.extend("--ft-floating-menu-off-color","",r.contentGlobalPrimary),onColor:t.extend("--ft-floating-menu-on-color","",r.contentActionPrimary),onStateLayerColor:t.extend("--ft-floating-menu-on-state-layer-color","",r.contentActionPrimary),gap:t.extend("--ft-floating-menu-gap","",e.spacing3),focusFocusRingColor:t.extend("--ft-floating-menu-focus-focus-ring-color","",r.borderActionFocusRing),focusOutlineWidth:t.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:t.extend("--ft-floating-menu-focus-state-layer-opacity","",e.opacity8),hoverStateLayerOpacity:t.extend("--ft-floating-menu-hover-state-layer-opacity","",e.opacity8),activeStateLayerOpacity:t.extend("--ft-floating-menu-active-state-layer-opacity","",e.opacity16),disabledComponentOpacity:t.extend("--ft-floating-menu-disabled-component-opacity","",e.opacity40),iconSize:t.extend("--ft-floating-menu-icon-size","",e.iconSize3),backgroundColor:t.extend("--ft-floating-menu-background-color","",r.backgroundGlobalOnSurface)};var kr={fieldHorizontalPadding:t.extend("--ft-combobox-single-select-field-horizontal-padding","",e.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-single-select-field-horizontal-gap","",e.spacing3),fieldVerticalGap:t.extend("--ft-combobox-single-select-field-vertical-gap","",e.spacing05),fieldIconSize:t.extend("--ft-combobox-single-select-field-icon-size","",e.iconSize3),fieldHeight:t.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-combobox-single-select-helper-horizontal-padding","",e.spacing4),helperHorizontalGap:t.extend("--ft-combobox-single-select-helper-horizontal-gap","",e.spacing1),helperVerticalGap:t.extend("--ft-combobox-single-select-helper-vertical-gap","",e.spacing1),helperIconSize:t.extend("--ft-combobox-single-select-helper-icon-size","",e.iconSize2),menuVerticalGap:t.extend("--ft-combobox-single-select-menu-vertical-gap","",e.spacing2),borderRadius:t.extend("--ft-combobox-single-select-border-radius","",e.borderRadiusM),backgroundColor:t.extend("--ft-combobox-single-select-background-color","",e.colorWhite),labelColor:t.extend("--ft-combobox-single-select-label-color","",r.contentGlobalSubtle),contentValueColor:t.extend("--ft-combobox-single-select-content-value-color","",r.contentGlobalPrimary),trailingIconColor:t.extend("--ft-combobox-single-select-trailing-icon-color","",r.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-single-select-default-border-color","",r.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-single-select-default-helper-text-color","",r.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","",r.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-single-select-error-helper-text-color","",r.contentErrorPrimary),warningBorderWidth:t.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-single-select-warning-border-color","",r.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-single-select-warning-helper-text-color","",r.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-single-select-warning-helper-icon-color","",r.contentWarningIconOnly),focusOutlineWidth:t.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-single-select-focus-focus-ring-color","",r.borderActionFocusRing),focusOutlineOffset:t.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-single-select-disabled-component-opacity","",e.opacity40)};var Br={backgroundColor:t.extend("--ft-combobox-multi-select-background-color","",e.colorWhite),labelColor:t.extend("--ft-combobox-multi-select-label-color","",r.contentGlobalSubtle),trailingIconColor:t.extend("--ft-combobox-multi-select-trailing-icon-color","",r.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-multi-select-default-border-color","",r.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-multi-select-default-helper-text-color","",r.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:t.extend("--ft-combobox-multi-select-error-border-color","",r.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-multi-select-error-helper-text-color","",r.contentErrorPrimary),errorHelperIcon:t.extend("--ft-combobox-multi-select-error-helper-icon","",r.contentErrorIconOnly),errorBorderWidth:t.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-multi-select-warning-border-color","",r.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-multi-select-warning-helper-text-color","",r.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-multi-select-warning-helper-icon-color","",r.contentWarningIconOnly),warningBorderWidth:t.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-multi-select-focus-focus-ring-color","",r.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","",e.opacity40),helperHorizontalPadding:t.extend("--ft-combobox-multi-select-helper-horizontal-padding","",e.spacing4),helperHorizontalGap:t.extend("--ft-combobox-multi-select-helper-horizontal-gap","",e.spacing1),helperVerticalGap:t.extend("--ft-combobox-multi-select-helper-vertical-gap","",e.spacing1),helperIconSize:t.extend("--ft-combobox-multi-select-helper-icon-size","",e.iconSize2),fieldHorizontalPadding:t.extend("--ft-combobox-multi-select-field-horizontal-padding","",e.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-multi-select-field-horizontal-gap","",e.spacing3),fieldVerticalGap:t.extend("--ft-combobox-multi-select-field-vertical-gap","",e.spacing05),fieldIconSize:t.extend("--ft-combobox-multi-select-field-icon-size","",e.iconSize3),fieldMaxHeight:t.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:t.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",e.spacing1),contentValuesVerticalGap:t.extend("--ft-combobox-multi-select-content-values-vertical-gap","",e.spacing1),borderRadius:t.extend("--ft-combobox-multi-select-border-radius","",e.borderRadiusM)};var Zr={backgroundColor:t.extend("--ft-popover-background-color","",r.backgroundGlobalOnSurface),horizontalPadding:t.extend("--ft-popover-horizontal-padding","",e.spacing6),verticalPadding:t.extend("--ft-popover-vertical-padding","",e.spacing6),iconColor:t.extend("--ft-popover-icon-color","",r.contentGlobalSecondary),iconSize:t.extend("--ft-popover-icon-size","",e.iconSize2),titleColor:t.extend("--ft-popover-title-color","",r.contentGlobalPrimary),bodyColor:t.extend("--ft-popover-body-color","",r.contentGlobalSecondary),linkColor:t.extend("--ft-popover-link-color","",r.contentActionPrimary),gap:t.extend("--ft-popover-gap","",e.spacing3),borderRadius:t.extend("--ft-popover-border-radius","",e.borderRadiusM),shadow:t.extend("--ft-popover-shadow","",e.shadowElevation02)};var Tr={topLeftBorderRadius:t.extend("--ft-tabs-top-left-border-radius","",e.borderRadiusS),topRightBorderRadius:t.extend("--ft-tabs-top-right-border-radius","",e.borderRadiusS),labelHorizontalPadding:t.extend("--ft-tabs-label-horizontal-padding","",e.spacing4),labelVerticalPadding:t.extend("--ft-tabs-label-vertical-padding","",e.spacing3),labelGap:t.extend("--ft-tabs-label-gap","",e.spacing1),offHoverStateLayerOpacity:t.extend("--ft-tabs-off-hover-state-layer-opacity","",e.opacity8),offFocusStateLayerOpacity:t.extend("--ft-tabs-off-focus-state-layer-opacity","",e.opacity8),offActiveStateLayerOpacity:t.extend("--ft-tabs-off-active-state-layer-opacity","",e.opacity16),offDisabledComponentOpacity:t.extend("--ft-tabs-off-disabled-component-opacity","",e.opacity40),offColor:t.extend("--ft-tabs-off-color","",r.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-tabs-off-state-layer-color","",r.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-tabs-on-hover-state-layer-opacity","",e.opacity8),onFocusStateLayerOpacity:t.extend("--ft-tabs-on-focus-state-layer-opacity","",e.opacity8),onActiveStateLayerOpacity:t.extend("--ft-tabs-on-active-state-layer-opacity","",e.opacity16),onDisabledComponentOpacity:t.extend("--ft-tabs-on-disabled-component-opacity","",e.opacity40),onColor:t.extend("--ft-tabs-on-color","",r.contentActionPrimary),onStateLayerColor:t.extend("--ft-tabs-on-state-layer-color","",r.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-tabs-icon-horizontal-padding","",e.spacing1),iconVerticalPadding:t.extend("--ft-tabs-icon-vertical-padding","",e.spacing4),focusOutlineWidth:t.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-tabs-focus-focus-ring-color","",r.borderActionFocusRing)};var Xr={hoverStateLayerOpacity:t.extend("--ft-collapsible-hover-state-layer-opacity","",e.opacity8),focusStateLayerOpacity:t.extend("--ft-collapsible-focus-state-layer-opacity","",e.opacity8),focusOutlineWidth:t.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:t.extend("--ft-collapsible-focus-focus-ring-color","",r.borderActionFocusRing),activeStateLayerOpacity:t.extend("--ft-collapsible-active-state-layer-opacity","",e.opacity16),disabledComponentOpacity:t.extend("--ft-collapsible-disabled-component-opacity","",e.opacity40),horizontalPadding:t.extend("--ft-collapsible-horizontal-padding","",e.spacing4),verticalPadding:t.extend("--ft-collapsible-vertical-padding","",e.spacing3),color:t.extend("--ft-collapsible-color","",r.contentGlobalPrimary),stateLayerColor:t.extend("--ft-collapsible-state-layer-color","",r.contentGlobalPrimary),backgroundColor:t.extend("--ft-collapsible-background-color","",r.backgroundGlobalOnSurface),borderColor:t.extend("--ft-collapsible-border-color","",r.borderGlobalSubtle),iconSize:t.extend("--ft-collapsible-icon-size","",e.iconSize3)};var ea={groupHorizontalPadding:t.extend("--ft-switch-group-horizontal-padding","",e.spacing1),groupVerticalPadding:t.extend("--ft-switch-group-vertical-padding","",e.spacing1),groupGap:t.extend("--ft-switch-group-gap","",e.spacing1),groupBackgroundColor:t.extend("--ft-switch-group-background-color","",r.backgroundGlobalSurface),groupBorderColor:t.extend("--ft-switch-group-border-color","",r.borderGlobalSubtle),groupBorderRadius:t.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:t.extend("--ft-switch-label-horizontal-padding","",e.spacing2),labelVerticalPadding:t.extend("--ft-switch-label-vertical-padding","",e.spacing1),offHoverStateLayerOpacity:t.extend("--ft-switch-off-hover-state-layer-opacity","",e.opacity8),offFocusStateLayerOpacity:t.extend("--ft-switch-off-focus-state-layer-opacity","",e.opacity8),offActiveStateLayerOpacity:t.extend("--ft-switch-off-active-state-layer-opacity","",e.opacity16),offDisabledComponentOpacity:t.extend("--ft-switch-off-disabled-component-opacity","",e.opacity40),offColor:t.extend("--ft-switch-off-color","",r.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-switch-off-state-layer-color","",r.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-switch-on-hover-state-layer-opacity","",e.opacity8),onFocusStateLayerOpacity:t.extend("--ft-switch-on-focus-state-layer-opacity","",e.opacity8),onActiveStateLayerOpacity:t.extend("--ft-switch-on-active-state-layer-opacity","",e.opacity16),onDisabledComponentOpacity:t.extend("--ft-switch-on-disabled-component-opacity","",e.opacity40),onColor:t.extend("--ft-switch-on-color","",r.contentActionPrimary),onStateLayerColor:t.extend("--ft-switch-on-state-layer-color","",r.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-switch-icon-horizontal-padding","",e.spacing1),iconVerticalPadding:t.extend("--ft-switch-icon-vertical-padding","",e.spacing1),focusOutlineWidth:t.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-switch-focus-focus-ring-color","",r.borderActionFocusRing),optionBorderRadius:t.extend("--ft-switch-option-border-radius","",e.borderRadiusS)};var na={color1Light:t.extend("--ft-chart-1-light","for area color charts",e.colorBrand40),color1Base:t.extend("--ft-chart-1-base","for line charts",e.colorBrand0),color2Light:t.extend("--ft-chart-2-light","for area color charts",e.colorYellow60),color2Base:t.extend("--ft-chart-2-base","for line charts",e.colorYellow100),color3Light:t.extend("--ft-chart-3-light","",e.colorUltramarine40),color3Base:t.extend("--ft-chart-3-base","",e.colorUltramarine70),color4Light:t.extend("--ft-chart-4-light","",e.colorCyan50),color4Base:t.extend("--ft-chart-4-base","",e.colorCyan100),color5Light:t.extend("--ft-chart-5-light","",e.colorRed40),color5Base:t.extend("--ft-chart-5-base","",e.colorRed60),color6Light:t.extend("--ft-chart-6-light","",e.colorGreen40),color6Base:t.extend("--ft-chart-6-base","",e.colorGreen70),color7Light:t.extend("--ft-chart-7-light","",e.colorOrange70),color7Base:t.extend("--ft-chart-7-base","",e.colorOrange100),color8Light:t.extend("--ft-chart-8-light","",e.colorAvocado70),color8Base:t.extend("--ft-chart-8-base","",e.colorAvocado200),color9Light:t.extend("--ft-chart-9-light","",e.colorBrown50),color9Base:t.extend("--ft-chart-9-base","",e.colorBrown200),color10Light:t.extend("--ft-chart-10-light","",e.colorGray50),color10Base:t.extend("--ft-chart-10-base","",e.colorGray80),monochrome10:t.extend("--ft-chart-monochrome-10","",e.colorBrand10),monochrome20:t.extend("--ft-chart-monochrome-20","",e.colorBrand20),monochrome30:t.extend("--ft-chart-monochrome-30","",e.colorBrand40),monochrome40:t.extend("--ft-chart-monochrome-40","",e.colorBrand60),monochrome50:t.extend("--ft-chart-monochrome-50","",e.colorBrand0),monochrome60:t.extend("--ft-chart-monochrome-60","",e.colorBrand200)};var da={largeHorizontalPadding:t.extend("--ft-chip-large-horizontal-padding","",e.spacing4),largeVerticalPadding:t.extend("--ft-chip-large-vertical-padding","",e.spacing2),largeGap:t.extend("--ft-chip-large-gap","",e.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","",e.borderRadiusPill),largeBorderWidth:t.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-large-icon-size","",e.iconSize3),mediumHorizontalPadding:t.extend("--ft-chip-medium-horizontal-padding","",e.spacing3),mediumVerticalPadding:t.extend("--ft-chip-medium-vertical-padding","",e.spacing1),mediumGap:t.extend("--ft-chip-medium-gap","",e.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","",e.borderRadiusPill),mediumBorderWidth:t.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-medium-icon-size","",e.iconSize2),smallHorizontalPadding:t.extend("--ft-chip-small-horizontal-padding","",e.spacing2),smallVerticalPadding:t.extend("--ft-chip-small-vertical-padding","",e.spacing05),smallGap:t.extend("--ft-chip-small-gap","",e.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","",e.borderRadiusPill),smallBorderWidth:t.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:t.extend("--ft-chip-small-icon-size","",e.iconSize1),neutralBackgroundColor:t.extend("--ft-chip-neutral-background-color","",r.backgroundGlobalOnSurface),neutralColor:t.extend("--ft-chip-neutral-color","",r.contentGlobalPrimary),neutralIconColor:t.extend("--ft-chip-neutral-icon-color","",r.contentGlobalPrimary),neutralBorderColor:t.extend("--ft-chip-neutral-border-color","",r.borderGlobalSubtle),infoBackgroundColor:t.extend("--ft-chip-info-background-color","",r.backgroundInfoSubtle),infoColor:t.extend("--ft-chip-info-color","",r.contentInfoPrimary),infoIconColor:t.extend("--ft-chip-info-icon-color","",r.contentInfoIconOnly),infoBorderColor:t.extend("--ft-chip-info-border-color","",r.borderInfoSubtle),successBackgroundColor:t.extend("--ft-chip-success-background-color","",r.backgroundSuccessSubtle),successColor:t.extend("--ft-chip-success-color","",r.contentSuccessPrimary),successIconColor:t.extend("--ft-chip-success-icon-color","",r.contentSuccessIconOnly),successBorderColor:t.extend("--ft-chip-success-border-color","",r.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-chip-warning-background-color","",r.backgroundWarningSubtle),warningColor:t.extend("--ft-chip-warning-color","",r.contentWarningPrimary),warningIconColor:t.extend("--ft-chip-warning-icon-color","",r.contentWarningIconOnly),warningBorderColor:t.extend("--ft-chip-warning-border-color","",r.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-chip-error-background-color","",r.backgroundErrorSubtle),errorColor:t.extend("--ft-chip-error-color","",r.contentErrorPrimary),errorIconColor:t.extend("--ft-chip-error-icon-color","",r.contentErrorIconOnly),errorBorderColor:t.extend("--ft-chip-error-border-color","",r.borderErrorSubtle)};var ga={infoBorderColor:t.extend("--ft-border-info-border-color","",r.borderInfoSubtle)};var xa={borderWidth:t.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-notice-horizontal-padding","",e.spacing2),verticalPadding:t.extend("--ft-notice-vertical-padding","",e.spacing1),borderRadius:t.extend("--ft-notice-border-radius","",e.borderRadiusS),gap:t.extend("--ft-notice-gap","",e.spacing2),iconSize:t.extend("--ft-notice-icon-size","",e.iconSize3),infoBackgroundColor:t.extend("--ft-notice-info-background-color","",r.backgroundInfoSubtle),infoBorderColor:t.extend("--ft-notice-info-border-color","",r.borderInfoSubtle),infoColor:t.extend("--ft-notice-info-color","",r.contentInfoPrimary),infoIconColor:t.extend("--ft-notice-info-icon-color","",r.contentInfoIconOnly),warningBackgroundColor:t.extend("--ft-notice-warning-background-color","",r.backgroundWarningSubtle),warningBorderColor:t.extend("--ft-notice-warning-border-color","",r.borderWarningSubtle),warningColor:t.extend("--ft-notice-warning-color","",r.contentWarningPrimary),warningIconColor:t.extend("--ft-notice-warning-icon-color","",r.contentWarningIconOnly),errorBackgroundColor:t.extend("--ft-notice-error-background-color","",r.backgroundErrorSubtle),errorBorderColor:t.extend("--ft-notice-error-border-color","",r.borderErrorSubtle),errorColor:t.extend("--ft-notice-error-color","",r.contentErrorPrimary),errorIconColor:t.extend("--ft-notice-error-icon-color","",r.contentErrorIconOnly),successBackgroundColor:t.extend("--ft-notice-success-background-color","",r.backgroundSuccessSubtle),successBorderColor:t.extend("--ft-notice-success-border-color","",r.borderSuccessSubtle),successColor:t.extend("--ft-notice-success-color","",r.contentSuccessPrimary),successIconColor:t.extend("--ft-notice-success-icon-color","",r.contentSuccessIconOnly)};var va={color:t.extend("--ft-checkbox-color","",r.contentGlobalPrimary),checkedBackgroundColor:t.extend("--ft-checkbox-checked-background-color","",r.contentActionPrimary),checkedStateLayerColor:t.extend("--ft-checkbox-checked-state-layer-color","",r.contentActionPrimary),checkedIconColor:t.extend("--ft-checkbox-checked-icon-color","",r.contentGlobalOnColor),checkedHoverStateLayerOpacity:t.extend("--ft-checkbox-checked-hover-state-layer-opacity","",e.opacity16),checkedFocusStateLayerOpacity:t.extend("--ft-checkbox-checked-focus-state-layer-opacity","",e.opacity16),checkedActiveStateLayerOpacity:t.extend("--ft-checkbox-checked-active-state-layer-opacity","",e.opacity24),checkedDisabledComponentOpacity:t.extend("--ft-checkbox-checked-disabled-component-opacity","",e.opacity40),uncheckedBorderColor:t.extend("--ft-checkbox-unchecked-border-color","",e.colorGray80),uncheckedStateLayerColor:t.extend("--ft-checkbox-unchecked-state-layer-color","",e.colorGray80),uncheckedHoverStateLayerOpacity:t.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",e.opacity16),uncheckedFocusStateLayerOpacity:t.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",e.opacity16),uncheckedActiveStateLayerOpacity:t.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",e.opacity24),uncheckedDisabledComponentOpacity:t.extend("--ft-checkbox-unchecked-disabled-component-opacity","",e.opacity40),focusFocusRingColor:t.extend("--ft-checkbox-focus-focus-ring-color","",r.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","",e.spacing3)};var Ra={offHoverStateLayerOpacity:t.extend("--ft-toggle-off-hover-state-layer-opacity","",e.opacity16),offFocusStateLayerOpacity:t.extend("--ft-toggle-off-focus-state-layer-opacity","",e.opacity16),offActiveStateLayerOpacity:t.extend("--ft-toggle-off-active-state-layer-opacity","",e.opacity24),offDisabledComponentOpacity:t.extend("--ft-toggle-off-disabled-component-opacity","",e.opacity40),offBackgroundColor:t.extend("--ft-toggle-off-background-color","",r.contentGlobalSubtle),offIconColor:t.extend("--ft-toggle-off-icon-color","",r.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-toggle-off-state-layer-color","",r.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-toggle-on-hover-state-layer-opacity","",e.opacity16),onFocusStateLayerOpacity:t.extend("--ft-toggle-on-focus-state-layer-opacity","",e.opacity16),onActiveStateLayerOpacity:t.extend("--ft-toggle-on-active-state-layer-opacity","",e.opacity24),onDisabledComponentOpacity:t.extend("--ft-toggle-on-disabled-component-opacity","",e.opacity40),onBackgroundColor:t.extend("--ft-toggle-on-background-color","",r.contentActionPrimary),onStateLayerColor:t.extend("--ft-toggle-on-state-layer-color","",r.contentActionPrimary),onIconColor:t.extend("--ft-toggle-on-icon-color","",r.contentActionPrimary),color:t.extend("--ft-toggle-color","",r.contentGlobalPrimary),focusFocusRingColor:t.extend("--ft-toggle-focus-focus-ring-color","",r.borderActionFocusRing),gap:t.extend("--ft-toggle-gap","",e.spacing3)};var $a={color:t.extend("--ft-radio-color","",r.contentGlobalPrimary),selectedRadioColor:t.extend("--ft-radio-selected-radio-color","",r.contentActionPrimary),selectedStateLayerColor:t.extend("--ft-radio-selected-state-layer-color","",r.contentActionPrimary),selectedHoverStateLayerOpacity:t.extend("--ft-radio-selected-hover-state-layer-opacity","",e.opacity16),selectedFocusStateLayerOpacity:t.extend("--ft-radio-selected-focus-state-layer-opacity","",e.opacity16),selectedActiveStateLayerOpacity:t.extend("--ft-radio-selected-active-state-layer-opacity","",e.opacity24),selectedDisabledComponentOpacity:t.extend("--ft-radio-selected-disabled-component-opacity","",e.opacity40),unselectedStateLayerColor:t.extend("--ft-radio-unselected-state-layer-color","",r.borderInputPrimary),unselectedBorderColor:t.extend("--ft-radio-unselected-border-color","",r.borderInputPrimary),unselectedHoverStateLayerOpacity:t.extend("--ft-radio-unselected-hover-state-layer-opacity","",e.opacity16),unselectedFocusStateLayerOpacity:t.extend("--ft-radio-unselected-focus-state-layer-opacity","",e.opacity16),unselectedActiveStateLayerOpacity:t.extend("--ft-radio-unselected-active-state-layer-opacity","",e.opacity24),unselectedDisabledComponentOpacity:t.extend("--ft-radio-unselected-disabled-component-opacity","",e.opacity40),focusFocusRingColor:t.extend("--ft-radio-focus-focus-ring-color","",r.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","",e.spacing3)};var Pa={iconSize:t.extend("--ft-notification-icon-size","",e.iconSize4),horizontalPadding:t.extend("--ft-notification-horizontal-padding","",e.spacing4),verticalPadding:t.extend("--ft-notification-vertical-padding","",e.spacing4),infoBackgroundColor:t.extend("--ft-notification-info-background-color","",r.backgroundInfoSubtle),infoColor:t.extend("--ft-notification-info-color","",r.contentInfoPrimary),infoIconColor:t.extend("--ft-notification-info-icon-color","",r.contentInfoIconOnly),infoBorderColor:t.extend("--ft-notification-info-border-color","",r.borderInfoSubtle),successBackgroundColor:t.extend("--ft-notification-success-background-color","",r.backgroundSuccessSubtle),successColor:t.extend("--ft-notification-success-color","",r.contentSuccessPrimary),successIconColor:t.extend("--ft-notification-success-icon-color","",r.contentSuccessIconOnly),successBorderColor:t.extend("--ft-notification-success-border-color","",r.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-notification-warning-background-color","",r.backgroundWarningSubtle),warningColor:t.extend("--ft-notification-warning-color","",r.contentWarningPrimary),warningIconColor:t.extend("--ft-notification-warning-icon-color","",r.contentWarningIconOnly),warningBorderColor:t.extend("--ft-notification-warning-border-color","",r.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-notification-error-background-color","",r.backgroundErrorSubtle),errorColor:t.extend("--ft-notification-error-color","",r.contentErrorPrimary),errorIconColor:t.extend("--ft-notification-error-icon-color","",r.contentErrorIconOnly),errorBorderColor:t.extend("--ft-notification-error-border-color","",r.borderErrorSubtle),borderRadius:t.extend("--ft-notification-border-radius","",e.borderRadiusPill),borderWidth:t.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:t.extend("--ft-notification-leading-gap","",e.spacing2),trailingGap:t.extend("--ft-notification-trailing-gap","",e.spacing8)};var _a={horizontalPadding:t.extend("--ft-tooltip-horizontal-padding","",e.spacing2),verticalPadding:t.extend("--ft-tooltip-vertical-padding","",e.spacing2),borderRadius:t.extend("--ft-tooltip-border-radius","",e.borderRadiusS),color:t.extend("--ft-tooltip-color","",r.contentGlobalOnColor),backgroundColor:t.extend("--ft-tooltip-background-color","",r.contentGlobalPrimary),backgroundOpacity:t.extend("--ft-tooltip-background-opacity","",e.opacity80),shadow:t.extend("--ft-tooltip-shadow","",e.shadowElevation03),maxWidth:t.create("--ft-tooltip-max-width","","SIZE","256px"),gap:t.extend("--ft-tooltip-gap","",e.spacing05)};var yt=m(z());function Ee(i){let o=ft[i];return yt.css`
|
|
128
|
+
.ft-typography--${(0,yt.unsafeCSS)(i)} {
|
|
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 Re=d.FtCssVariableFactory.extend("--ft-typography-font-family","",d.designSystemVariables.titleFont),R=d.FtCssVariableFactory.extend("--ft-typography-font-family","",d.designSystemVariables.contentFont),s={fontFamily:R,fontSize:d.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:d.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:d.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:d.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:d.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},D={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-title-font-family","",Re),fontSize:d.FtCssVariableFactory.extend("--ft-typography-title-font-size","",s.fontSize,"20px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",s.letterSpacing,"0.15px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-title-line-height","",s.lineHeight,"1.2"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",s.textTransform,"inherit")},_={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",Re),fontSize:d.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",s.fontSize,"14px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",s.letterSpacing,"0.105px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",s.lineHeight,"1.7"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",s.textTransform,"inherit")},T={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",s.fontSize,"16px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",s.fontWeight,"600"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",s.letterSpacing,"0.144px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",s.lineHeight,"1.5"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",s.textTransform,"inherit")},V={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",s.fontSize,"14px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",s.letterSpacing,"0.098px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",s.lineHeight,"1.7"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",s.textTransform,"inherit")},M={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",s.fontSize,"16px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",s.letterSpacing,"0.496px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",s.lineHeight,"1.5"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",s.textTransform,"inherit")},Y={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",s.fontSize,"14px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",s.letterSpacing,"0.252px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",s.lineHeight,"1.4"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",s.textTransform,"inherit")},j={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",s.fontSize,"12px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",s.letterSpacing,"0.396px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",s.lineHeight,"1.33"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",s.textTransform,"inherit")},X={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",s.fontSize,"10px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",s.letterSpacing,"0.33px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",s.lineHeight,"1.6"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",s.textTransform,"inherit")},q={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",s.fontSize,"10px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",s.fontWeight,"normal"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",s.letterSpacing,"1.5px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",s.lineHeight,"1.6"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",s.textTransform,"uppercase")},J={fontFamily:d.FtCssVariableFactory.extend("--ft-typography-button-font-family","",R),fontSize:d.FtCssVariableFactory.extend("--ft-typography-button-font-size","",s.fontSize,"14px"),fontWeight:d.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",s.fontWeight,"600"),letterSpacing:d.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",s.letterSpacing,"1.246px"),lineHeight:d.FtCssVariableFactory.extend("--ft-typography-button-line-height","",s.lineHeight,"1.15"),textTransform:d.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",s.textTransform,"uppercase")},ke=v.css`
|
|
137
137
|
.ft-typography--title {
|
|
138
|
-
font-family: ${
|
|
139
|
-
font-size: ${
|
|
140
|
-
font-weight: ${
|
|
141
|
-
letter-spacing: ${
|
|
142
|
-
line-height: ${
|
|
143
|
-
text-transform: ${
|
|
144
|
-
}
|
|
145
|
-
`,
|
|
138
|
+
font-family: ${D.fontFamily};
|
|
139
|
+
font-size: ${D.fontSize};
|
|
140
|
+
font-weight: ${D.fontWeight};
|
|
141
|
+
letter-spacing: ${D.letterSpacing};
|
|
142
|
+
line-height: ${D.lineHeight};
|
|
143
|
+
text-transform: ${D.textTransform};
|
|
144
|
+
}
|
|
145
|
+
`,Le=v.css`
|
|
146
146
|
.ft-typography--title-dense {
|
|
147
|
-
font-family: ${
|
|
148
|
-
font-size: ${
|
|
149
|
-
font-weight: ${
|
|
150
|
-
letter-spacing: ${
|
|
151
|
-
line-height: ${
|
|
152
|
-
text-transform: ${
|
|
153
|
-
}
|
|
154
|
-
`,
|
|
147
|
+
font-family: ${_.fontFamily};
|
|
148
|
+
font-size: ${_.fontSize};
|
|
149
|
+
font-weight: ${_.fontWeight};
|
|
150
|
+
letter-spacing: ${_.letterSpacing};
|
|
151
|
+
line-height: ${_.lineHeight};
|
|
152
|
+
text-transform: ${_.textTransform};
|
|
153
|
+
}
|
|
154
|
+
`,Fe=v.css`
|
|
155
155
|
.ft-typography--subtitle1 {
|
|
156
|
-
font-family: ${
|
|
157
|
-
font-size: ${
|
|
158
|
-
font-weight: ${
|
|
159
|
-
letter-spacing: ${
|
|
160
|
-
line-height: ${
|
|
161
|
-
text-transform: ${
|
|
162
|
-
}
|
|
163
|
-
`,
|
|
156
|
+
font-family: ${T.fontFamily};
|
|
157
|
+
font-size: ${T.fontSize};
|
|
158
|
+
font-weight: ${T.fontWeight};
|
|
159
|
+
letter-spacing: ${T.letterSpacing};
|
|
160
|
+
line-height: ${T.lineHeight};
|
|
161
|
+
text-transform: ${T.textTransform};
|
|
162
|
+
}
|
|
163
|
+
`,ze=v.css`
|
|
164
164
|
.ft-typography--subtitle2 {
|
|
165
|
-
font-family: ${
|
|
166
|
-
font-size: ${
|
|
167
|
-
font-weight: ${
|
|
168
|
-
letter-spacing: ${
|
|
169
|
-
line-height: ${
|
|
170
|
-
text-transform: ${
|
|
165
|
+
font-family: ${V.fontFamily};
|
|
166
|
+
font-size: ${V.fontSize};
|
|
167
|
+
font-weight: ${V.fontWeight};
|
|
168
|
+
letter-spacing: ${V.letterSpacing};
|
|
169
|
+
line-height: ${V.lineHeight};
|
|
170
|
+
text-transform: ${V.textTransform};
|
|
171
171
|
}
|
|
172
172
|
|
|
173
|
-
|
|
173
|
+
`,$e=v.css`
|
|
174
174
|
.ft-typography--body1 {
|
|
175
|
-
font-family: ${
|
|
176
|
-
font-size: ${
|
|
177
|
-
font-weight: ${
|
|
178
|
-
letter-spacing: ${
|
|
179
|
-
line-height: ${
|
|
180
|
-
text-transform: ${
|
|
181
|
-
}
|
|
182
|
-
`,
|
|
175
|
+
font-family: ${M.fontFamily};
|
|
176
|
+
font-size: ${M.fontSize};
|
|
177
|
+
font-weight: ${M.fontWeight};
|
|
178
|
+
letter-spacing: ${M.letterSpacing};
|
|
179
|
+
line-height: ${M.lineHeight};
|
|
180
|
+
text-transform: ${M.textTransform};
|
|
181
|
+
}
|
|
182
|
+
`,Be=v.css`
|
|
183
183
|
.ft-typography--body2 {
|
|
184
|
-
font-family: ${
|
|
185
|
-
font-size: ${
|
|
186
|
-
font-weight: ${
|
|
187
|
-
letter-spacing: ${
|
|
188
|
-
line-height: ${
|
|
189
|
-
text-transform: ${
|
|
190
|
-
}
|
|
191
|
-
`,
|
|
184
|
+
font-family: ${Y.fontFamily};
|
|
185
|
+
font-size: ${Y.fontSize};
|
|
186
|
+
font-weight: ${Y.fontWeight};
|
|
187
|
+
letter-spacing: ${Y.letterSpacing};
|
|
188
|
+
line-height: ${Y.lineHeight};
|
|
189
|
+
text-transform: ${Y.textTransform};
|
|
190
|
+
}
|
|
191
|
+
`,Ue=v.css`
|
|
192
192
|
.ft-typography--caption {
|
|
193
|
-
font-family: ${
|
|
194
|
-
font-size: ${
|
|
195
|
-
font-weight: ${
|
|
196
|
-
letter-spacing: ${
|
|
197
|
-
line-height: ${
|
|
198
|
-
text-transform: ${
|
|
199
|
-
}
|
|
200
|
-
`,
|
|
193
|
+
font-family: ${j.fontFamily};
|
|
194
|
+
font-size: ${j.fontSize};
|
|
195
|
+
font-weight: ${j.fontWeight};
|
|
196
|
+
letter-spacing: ${j.letterSpacing};
|
|
197
|
+
line-height: ${j.lineHeight};
|
|
198
|
+
text-transform: ${j.textTransform};
|
|
199
|
+
}
|
|
200
|
+
`,Ae=v.css`
|
|
201
201
|
.ft-typography--breadcrumb {
|
|
202
|
-
font-family: ${
|
|
203
|
-
font-size: ${
|
|
204
|
-
font-weight: ${
|
|
205
|
-
letter-spacing: ${
|
|
206
|
-
line-height: ${
|
|
207
|
-
text-transform: ${
|
|
208
|
-
}
|
|
209
|
-
`,
|
|
202
|
+
font-family: ${X.fontFamily};
|
|
203
|
+
font-size: ${X.fontSize};
|
|
204
|
+
font-weight: ${X.fontWeight};
|
|
205
|
+
letter-spacing: ${X.letterSpacing};
|
|
206
|
+
line-height: ${X.lineHeight};
|
|
207
|
+
text-transform: ${X.textTransform};
|
|
208
|
+
}
|
|
209
|
+
`,He=v.css`
|
|
210
210
|
.ft-typography--overline {
|
|
211
|
-
font-family: ${
|
|
212
|
-
font-size: ${
|
|
213
|
-
font-weight: ${
|
|
214
|
-
letter-spacing: ${
|
|
215
|
-
line-height: ${
|
|
216
|
-
text-transform: ${
|
|
217
|
-
}
|
|
218
|
-
`,
|
|
211
|
+
font-family: ${q.fontFamily};
|
|
212
|
+
font-size: ${q.fontSize};
|
|
213
|
+
font-weight: ${q.fontWeight};
|
|
214
|
+
letter-spacing: ${q.letterSpacing};
|
|
215
|
+
line-height: ${q.lineHeight};
|
|
216
|
+
text-transform: ${q.textTransform};
|
|
217
|
+
}
|
|
218
|
+
`,Pe=v.css`
|
|
219
219
|
.ft-typography--button {
|
|
220
|
-
font-family: ${
|
|
221
|
-
font-size: ${
|
|
222
|
-
font-weight: ${
|
|
223
|
-
letter-spacing: ${
|
|
224
|
-
line-height: ${
|
|
225
|
-
text-transform: ${
|
|
226
|
-
}
|
|
227
|
-
`,
|
|
220
|
+
font-family: ${J.fontFamily};
|
|
221
|
+
font-size: ${J.fontSize};
|
|
222
|
+
font-weight: ${J.fontWeight};
|
|
223
|
+
letter-spacing: ${J.letterSpacing};
|
|
224
|
+
line-height: ${J.lineHeight};
|
|
225
|
+
text-transform: ${J.textTransform};
|
|
226
|
+
}
|
|
227
|
+
`,Ze=v.css`
|
|
228
228
|
.ft-typography {
|
|
229
229
|
vertical-align: inherit;
|
|
230
230
|
}
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
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 Do=function(t,o,e,r){for(var a,i=arguments.length,n=i<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(a=t[l])&&(n=(i<3?a(n):i>3?a(o,e,n):a(o,e))||n);return i>3&&n&&Object.defineProperty(o,e,n),n};class Fo extends o.FtLitElement{constructor(){super(...arguments),this.variant=pt.body1}render(){return this.element?ct`
|
|
241
|
-
<${nt(this.element)}
|
|
231
|
+
`,Ge=[Object.keys(ft).map(i=>Ee(i))];var Ke=function(i,o,a,n){var c=arguments.length,p=c<3?o:n===null?n=Object.getOwnPropertyDescriptor(o,a):n,l;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")p=Reflect.decorate(i,o,a,n);else for(var f=i.length-1;f>=0;f--)(l=i[f])&&(p=(c<3?l(p):c>3?l(o,a,p):l(o,a))||p);return c>3&&p&&Object.defineProperty(o,a,p),p},k=class extends De.FtLitElement{constructor(){super(...arguments),this.variant=st.body1}render(){return this.element?Nt`
|
|
232
|
+
<${Ct(this.element)}
|
|
233
|
+
part="text"
|
|
242
234
|
class="ft-typography ft-typography--${this.variant}">
|
|
243
235
|
<slot></slot>
|
|
244
|
-
</${
|
|
245
|
-
`:
|
|
246
|
-
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
247
|
-
`}}
|
|
236
|
+
</${Ct(this.element)}>
|
|
237
|
+
`:Nt`
|
|
238
|
+
<slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
|
|
239
|
+
`}};k.styles=[ke,Le,Fe,ze,$e,Be,Ue,Ae,He,Pe,Ze,...Ge];Ke([(0,vt.property)()],k.prototype,"element",void 0);Ke([(0,vt.property)()],k.prototype,"variant",void 0);(0,_e.customElement)("ft-typography")(k);var N=m(W()),Te=m(z());var L={textColor:N.FtCssVariableFactory.extend("--ft-checkbox-text-color","",N.designSystemVariables.colorOnSurfaceHigh),fontSize:N.FtCssVariableFactory.extend("--ft-checkbox-font-size","",s.fontSize),colorPrimary:N.FtCssVariableFactory.external(N.designSystemVariables.colorPrimary,"Design system"),colorOnPrimary:N.FtCssVariableFactory.external(N.designSystemVariables.colorOnPrimary,"Design system"),borderColor:N.FtCssVariableFactory.extend("--ft-checkbox-border-color","",N.designSystemVariables.colorOnSurfaceMedium),colorOnSurfaceDisabled:N.FtCssVariableFactory.external(N.designSystemVariables.colorOnSurfaceDisabled,"Design system")},Ve=Te.css`
|
|
248
240
|
* {
|
|
249
241
|
box-sizing: border-box;
|
|
250
242
|
}
|
|
251
243
|
|
|
252
244
|
.ft-checkbox {
|
|
253
245
|
box-sizing: border-box;
|
|
254
|
-
color: ${
|
|
255
|
-
font-size: ${
|
|
246
|
+
color: ${L.textColor};
|
|
247
|
+
font-size: ${L.fontSize};
|
|
256
248
|
|
|
257
249
|
display: inline-flex;
|
|
258
250
|
align-items: center;
|
|
@@ -260,7 +252,7 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
260
252
|
}
|
|
261
253
|
|
|
262
254
|
.ft-checkbox--disabled {
|
|
263
|
-
color: ${
|
|
255
|
+
color: ${L.colorOnSurfaceDisabled};
|
|
264
256
|
}
|
|
265
257
|
|
|
266
258
|
input {
|
|
@@ -284,26 +276,26 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
284
276
|
|
|
285
277
|
.ft-checkbox--box {
|
|
286
278
|
display: flex;
|
|
287
|
-
border: 2px solid ${
|
|
279
|
+
border: 2px solid ${L.borderColor};
|
|
288
280
|
border-radius: 2px;
|
|
289
281
|
|
|
290
282
|
width: 18px;
|
|
291
283
|
height: 18px;
|
|
292
284
|
|
|
293
|
-
color: ${
|
|
285
|
+
color: ${L.colorOnPrimary};
|
|
294
286
|
}
|
|
295
287
|
|
|
296
288
|
|
|
297
289
|
.ft-checkbox--checked .ft-checkbox--box,
|
|
298
290
|
.ft-checkbox--indeterminate .ft-checkbox--box {
|
|
299
|
-
border-color: ${
|
|
300
|
-
background-color: ${
|
|
291
|
+
border-color: ${L.colorPrimary};
|
|
292
|
+
background-color: ${L.colorPrimary};
|
|
301
293
|
}
|
|
302
294
|
|
|
303
295
|
.ft-checkbox--disabled .ft-checkbox--box {
|
|
304
|
-
border-color: ${
|
|
296
|
+
border-color: ${L.colorOnSurfaceDisabled};
|
|
305
297
|
background-color: transparent;
|
|
306
|
-
color: ${
|
|
298
|
+
color: ${L.colorOnSurfaceDisabled};
|
|
307
299
|
}
|
|
308
300
|
|
|
309
301
|
.ft-checkbox--checkmark {
|
|
@@ -322,8 +314,8 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
322
314
|
.ft-checkbox--indeterminate .ft-checkbox--checkmark {
|
|
323
315
|
opacity: 1;
|
|
324
316
|
}
|
|
325
|
-
`;var
|
|
326
|
-
<label class="${
|
|
317
|
+
`;var Q=function(i,o,a,n){var c=arguments.length,p=c<3?o:n===null?n=Object.getOwnPropertyDescriptor(o,a):n,l;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")p=Reflect.decorate(i,o,a,n);else for(var f=i.length-1;f>=0;f--)(l=i[f])&&(p=(c<3?l(p):c>3?l(o,a,p):l(o,a))||p);return c>3&&p&&Object.defineProperty(o,a,p),p},I=class extends Ye.FtLitElement{constructor(){super(...arguments),this.name="",this.checked=!1,this.indeterminate=!1,this.disabled=!1}render(){let o={"ft-checkbox":!0,"ft-checkbox--checked":this.checked,"ft-checkbox--indeterminate":this.indeterminate,"ft-checkbox--disabled":this.disabled};return Me.html`
|
|
318
|
+
<label class="${(0,je.classMap)(o)}" for="checkbox-input">
|
|
327
319
|
<div class="ft-checkbox--box-container">
|
|
328
320
|
<ft-ripple
|
|
329
321
|
?disabled=${this.disabled}
|
|
@@ -349,4 +341,20 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
349
341
|
<slot></slot>
|
|
350
342
|
</ft-typography>
|
|
351
343
|
</label>
|
|
352
|
-
`}onChange(
|
|
344
|
+
`}onChange(o){o.stopPropagation(),this.checked=o.target.checked,this.indeterminate=!1,this.dispatchEvent(new CustomEvent("change",{detail:this.checked}))}contentAvailableCallback(o){var a;super.contentAvailableCallback(o),(a=this.ripple)===null||a===void 0||a.setupFor(this.container)}};I.elementDefinitions={"ft-ripple":b,"ft-typography":k};I.styles=Ve;Q([(0,U.property)()],I.prototype,"name",void 0);Q([(0,U.property)({type:Boolean,reflect:!0})],I.prototype,"checked",void 0);Q([(0,U.property)({type:Boolean})],I.prototype,"indeterminate",void 0);Q([(0,U.property)({type:Boolean})],I.prototype,"disabled",void 0);Q([(0,U.query)(".ft-checkbox")],I.prototype,"container",void 0);Q([(0,U.query)("ft-ripple")],I.prototype,"ripple",void 0);(0,Xe.customElement)("ft-checkbox")(I);})();
|
|
345
|
+
/*! Bundled license information:
|
|
346
|
+
|
|
347
|
+
lit-html/lit-html.js:
|
|
348
|
+
(**
|
|
349
|
+
* @license
|
|
350
|
+
* Copyright 2017 Google LLC
|
|
351
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
352
|
+
*)
|
|
353
|
+
|
|
354
|
+
lit-html/static.js:
|
|
355
|
+
(**
|
|
356
|
+
* @license
|
|
357
|
+
* Copyright 2020 Google LLC
|
|
358
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
359
|
+
*)
|
|
360
|
+
*/
|