@fluid-topics/ft-radio 1.1.56 → 1.1.57
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-radio-group.d.ts +4 -0
- package/build/ft-radio-group.js +26 -0
- package/build/ft-radio.d.ts +3 -1
- package/build/ft-radio.js +24 -8
- package/build/ft-radio.light.js +20 -20
- package/build/ft-radio.min.js +7 -7
- package/package.json +5 -5
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
import { FtLitElement } from "@fluid-topics/ft-wc-utils";
|
|
2
|
+
import { PropertyValues } from "lit";
|
|
2
3
|
import { FtRadio } from "./ft-radio";
|
|
3
4
|
import { FtRadioGroupProperties } from "./ft-radio-group.properties";
|
|
4
5
|
export declare class FtRadioGroup extends FtLitElement implements FtRadioGroupProperties {
|
|
5
6
|
static elementDefinitions: {};
|
|
6
7
|
name: string;
|
|
8
|
+
role: string;
|
|
9
|
+
ariaLabelledBy: string;
|
|
7
10
|
radioButtons: Array<FtRadio>;
|
|
8
11
|
static styles: import("lit").CSSResult;
|
|
9
12
|
protected render(): import("lit").TemplateResult<1>;
|
|
10
13
|
private onSlotChange;
|
|
14
|
+
protected contentAvailableCallback(props: PropertyValues): void;
|
|
11
15
|
private onChange;
|
|
12
16
|
private onKeyDown;
|
|
13
17
|
private findFtRadio;
|
package/build/ft-radio-group.js
CHANGED
|
@@ -12,6 +12,8 @@ class FtRadioGroup extends FtLitElement {
|
|
|
12
12
|
constructor() {
|
|
13
13
|
super(...arguments);
|
|
14
14
|
this.name = "";
|
|
15
|
+
this.role = "radiogroup";
|
|
16
|
+
this.ariaLabelledBy = "";
|
|
15
17
|
}
|
|
16
18
|
render() {
|
|
17
19
|
return html `
|
|
@@ -24,6 +26,11 @@ class FtRadioGroup extends FtLitElement {
|
|
|
24
26
|
onSlotChange() {
|
|
25
27
|
this.radioButtons.forEach(rb => rb.name = this.name);
|
|
26
28
|
}
|
|
29
|
+
contentAvailableCallback(props) {
|
|
30
|
+
super.contentAvailableCallback(props);
|
|
31
|
+
//make the first radio button focusable
|
|
32
|
+
this.radioButtons[0].setAttribute("tabindex", "0");
|
|
33
|
+
}
|
|
27
34
|
onChange(event) {
|
|
28
35
|
event.stopPropagation();
|
|
29
36
|
this.radioButtons.forEach(rb => rb.checked = event.detail.value === rb.value);
|
|
@@ -31,20 +38,33 @@ class FtRadioGroup extends FtLitElement {
|
|
|
31
38
|
this.focusCurrentValue();
|
|
32
39
|
}
|
|
33
40
|
onKeyDown(event) {
|
|
41
|
+
let blockUnwhishedReaction = false;
|
|
34
42
|
switch (event.key) {
|
|
35
43
|
case "ArrowUp":
|
|
36
44
|
case "ArrowLeft": {
|
|
45
|
+
blockUnwhishedReaction = true;
|
|
37
46
|
let searchElement = this.findFtRadio(event);
|
|
38
47
|
let indexToFocus = this.radioButtons.indexOf(searchElement) - 1;
|
|
39
48
|
this.radioButtons[indexToFocus < 0 ? this.radioButtons.length - 1 : indexToFocus].select();
|
|
49
|
+
this.radioButtons[indexToFocus < 0 ? this.radioButtons.length - 1 : indexToFocus].focus();
|
|
40
50
|
break;
|
|
41
51
|
}
|
|
42
52
|
case "ArrowDown":
|
|
43
53
|
case "ArrowRight": {
|
|
54
|
+
blockUnwhishedReaction = true;
|
|
44
55
|
let indexToFocus = this.radioButtons.indexOf(this.findFtRadio(event)) + 1;
|
|
45
56
|
this.radioButtons[indexToFocus > this.radioButtons.length - 1 ? 0 : indexToFocus].select();
|
|
57
|
+
this.radioButtons[indexToFocus > this.radioButtons.length - 1 ? 0 : indexToFocus].focus();
|
|
46
58
|
break;
|
|
47
59
|
}
|
|
60
|
+
case "Enter": {
|
|
61
|
+
let indexToSelect = this.radioButtons.indexOf(this.findFtRadio(event));
|
|
62
|
+
this.radioButtons[indexToSelect].select();
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
if (blockUnwhishedReaction) {
|
|
66
|
+
event.stopPropagation();
|
|
67
|
+
event.preventDefault();
|
|
48
68
|
}
|
|
49
69
|
}
|
|
50
70
|
findFtRadio(event) {
|
|
@@ -59,6 +79,12 @@ FtRadioGroup.styles = groupStyles;
|
|
|
59
79
|
__decorate([
|
|
60
80
|
property()
|
|
61
81
|
], FtRadioGroup.prototype, "name", void 0);
|
|
82
|
+
__decorate([
|
|
83
|
+
property({ reflect: true, attribute: "role" })
|
|
84
|
+
], FtRadioGroup.prototype, "role", void 0);
|
|
85
|
+
__decorate([
|
|
86
|
+
property({ reflect: true, attribute: "aria-labelledby" })
|
|
87
|
+
], FtRadioGroup.prototype, "ariaLabelledBy", void 0);
|
|
62
88
|
__decorate([
|
|
63
89
|
queryAssignedElements()
|
|
64
90
|
], FtRadioGroup.prototype, "radioButtons", void 0);
|
package/build/ft-radio.d.ts
CHANGED
|
@@ -14,12 +14,14 @@ export declare class FtRadio extends FtLitElement implements FtRadioProperties {
|
|
|
14
14
|
name: string;
|
|
15
15
|
checked: boolean;
|
|
16
16
|
disabled: boolean;
|
|
17
|
+
tabIndex: number;
|
|
18
|
+
role: string;
|
|
17
19
|
private container?;
|
|
18
20
|
private ripple?;
|
|
19
21
|
private input?;
|
|
20
22
|
protected render(): import("lit").TemplateResult<1>;
|
|
23
|
+
protected update(changedProperties: PropertyValues): void;
|
|
21
24
|
private onChange;
|
|
22
25
|
protected contentAvailableCallback(props: PropertyValues): void;
|
|
23
26
|
select(): void;
|
|
24
|
-
focus(): void;
|
|
25
27
|
}
|
package/build/ft-radio.js
CHANGED
|
@@ -23,6 +23,8 @@ class FtRadio extends FtLitElement {
|
|
|
23
23
|
this.name = "";
|
|
24
24
|
this.checked = false;
|
|
25
25
|
this.disabled = false;
|
|
26
|
+
this.tabIndex = -1;
|
|
27
|
+
this.role = "radio";
|
|
26
28
|
}
|
|
27
29
|
render() {
|
|
28
30
|
const classes = {
|
|
@@ -34,9 +36,9 @@ class FtRadio extends FtLitElement {
|
|
|
34
36
|
<div class="${classMap(classes)}">
|
|
35
37
|
<div class="ft-radio--box-container">
|
|
36
38
|
<ft-ripple
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
39
|
+
?disabled=${this.disabled}
|
|
40
|
+
?primary=${this.checked}
|
|
41
|
+
unbounded>
|
|
40
42
|
</ft-ripple>
|
|
41
43
|
<div class="ft-radio--box">
|
|
42
44
|
</div>
|
|
@@ -57,6 +59,19 @@ class FtRadio extends FtLitElement {
|
|
|
57
59
|
</div>
|
|
58
60
|
`;
|
|
59
61
|
}
|
|
62
|
+
update(changedProperties) {
|
|
63
|
+
super.update(changedProperties);
|
|
64
|
+
if (changedProperties.has('checked') && !changedProperties.has('aria-checked')) {
|
|
65
|
+
if (this.checked) {
|
|
66
|
+
this.setAttribute("aria-checked", "true");
|
|
67
|
+
this.tabIndex = 0;
|
|
68
|
+
}
|
|
69
|
+
else {
|
|
70
|
+
this.setAttribute("aria-checked", "false");
|
|
71
|
+
this.tabIndex = -1;
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
60
75
|
onChange(event) {
|
|
61
76
|
event.stopPropagation();
|
|
62
77
|
this.checked = event.target.checked;
|
|
@@ -70,11 +85,6 @@ class FtRadio extends FtLitElement {
|
|
|
70
85
|
select() {
|
|
71
86
|
this.checked = true;
|
|
72
87
|
this.dispatchEvent(new FtRadioChangeEvent(this.value, this.checked));
|
|
73
|
-
this.focus();
|
|
74
|
-
}
|
|
75
|
-
focus() {
|
|
76
|
-
var _a;
|
|
77
|
-
(_a = this.input) === null || _a === void 0 ? void 0 : _a.focus();
|
|
78
88
|
}
|
|
79
89
|
}
|
|
80
90
|
FtRadio.elementDefinitions = {
|
|
@@ -94,6 +104,12 @@ __decorate([
|
|
|
94
104
|
__decorate([
|
|
95
105
|
property({ type: Boolean })
|
|
96
106
|
], FtRadio.prototype, "disabled", void 0);
|
|
107
|
+
__decorate([
|
|
108
|
+
property({ reflect: true })
|
|
109
|
+
], FtRadio.prototype, "tabIndex", void 0);
|
|
110
|
+
__decorate([
|
|
111
|
+
property({ reflect: true, attribute: "role" })
|
|
112
|
+
], FtRadio.prototype, "role", void 0);
|
|
97
113
|
__decorate([
|
|
98
114
|
query(".ft-radio")
|
|
99
115
|
], FtRadio.prototype, "container", void 0);
|
package/build/ft-radio.light.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
!function(t,o,e,r,a){const i=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),n=i,l=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",i),c=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),p=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),f=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),s=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),d=o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px"),
|
|
1
|
+
!function(t,o,e,r,a){const i=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorContent),n=i,l=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",i),c=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),p=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),f=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),s=o.FtCssVariableFactory.external(o.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),d=o.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px"),h=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorPrimary),g=h,y=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",h),b=o.FtCssVariableFactory.extend("--ft-ripple-color","",o.designSystemVariables.colorSecondary),u=b,m=o.FtCssVariableFactory.extend("--ft-ripple-background-color","",b),x=e.css`
|
|
2
2
|
:host {
|
|
3
3
|
display: contents;
|
|
4
4
|
}
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
68
|
-
background-color: ${
|
|
68
|
+
background-color: ${g};
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ft-ripple .ft-ripple--background {
|
|
@@ -127,13 +127,13 @@
|
|
|
127
127
|
* Copyright 2017 Google LLC
|
|
128
128
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
129
129
|
*/
|
|
130
|
-
const S=globalThis,v=S.trustedTypes,w=v?v.createPolicy("lit-html",{createHTML:t=>t}):void 0,I="$lit$",C=`lit$${(Math.random()+"").slice(9)}$`,E="?"+C,W=`<${E}>`,U=document,R=()=>U.createComment(""),Z=t=>null===t||"object"!=typeof t&&"function"!=typeof t,L=Array.isArray,K="[ \t\n\f\r]",
|
|
130
|
+
const S=globalThis,v=S.trustedTypes,w=v?v.createPolicy("lit-html",{createHTML:t=>t}):void 0,I="$lit$",C=`lit$${(Math.random()+"").slice(9)}$`,E="?"+C,W=`<${E}>`,U=document,R=()=>U.createComment(""),Z=t=>null===t||"object"!=typeof t&&"function"!=typeof t,L=Array.isArray,K="[ \t\n\f\r]",k=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,z=/-->/g,$=/>/g,D=RegExp(`>|${K}(?:([^\\s"'>=/]+)(${K}*=${K}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),F=/'/g,A=/"/g,B=/^(?:script|style|textarea|title)$/i,H=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),G=Symbol.for("lit-noChange"),P=Symbol.for("lit-nothing"),Y=new WeakMap,M=U.createTreeWalker(U,129);function _(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==w?w.createHTML(o):o}const j=(t,o)=>{const e=t.length-1,r=[];let a,i=2===o?"<svg>":"",n=k;for(let o=0;o<e;o++){const e=t[o];let l,c,p=-1,f=0;for(;f<e.length&&(n.lastIndex=f,c=n.exec(e),null!==c);)f=n.lastIndex,n===k?"!--"===c[1]?n=z:void 0!==c[1]?n=$:void 0!==c[2]?(B.test(c[2])&&(a=RegExp("</"+c[2],"g")),n=D):void 0!==c[3]&&(n=D):n===D?">"===c[0]?(n=a??k,p=-1):void 0===c[1]?p=-2:(p=n.lastIndex-c[2].length,l=c[1],n=void 0===c[3]?D:'"'===c[3]?A:F):n===A||n===F?n=D:n===z||n===$?n=k:(n=D,a=void 0);const s=n===D&&t[o+1].startsWith("/>")?" ":"";i+=n===k?e+W:p>=0?(r.push(l),e.slice(0,p)+I+e.slice(p)+C+s):e+C+(-2===p?o:s)}return[_(t,i+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class T{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let a=0,i=0;const n=t.length-1,l=this.parts,[c,p]=j(t,o);if(this.el=T.createElement(c,e),M.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=M.nextNode())&&l.length<n;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(I)){const o=p[i++],e=r.getAttribute(t).split(C),n=/([.?@])?(.*)/.exec(o);l.push({type:1,index:a,name:n[2],strings:e,ctor:"."===n[1]?Q:"?"===n[1]?tt:"@"===n[1]?ot:J}),r.removeAttribute(t)}else t.startsWith(C)&&(l.push({type:6,index:a}),r.removeAttribute(t));if(B.test(r.tagName)){const t=r.textContent.split(C),o=t.length-1;if(o>0){r.textContent=v?v.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],R()),M.nextNode(),l.push({type:2,index:++a});r.append(t[o],R())}}}else if(8===r.nodeType)if(r.data===E)l.push({type:2,index:a});else{let t=-1;for(;-1!==(t=r.data.indexOf(C,t+1));)l.push({type:7,index:a}),t+=C.length-1}a++}}static createElement(t,o){const e=U.createElement("template");return e.innerHTML=t,e}}function V(t,o,e=t,r){if(o===G)return o;let a=void 0!==r?e._$Co?.[r]:e._$Cl;const i=Z(o)?void 0:o._$litDirective$;return a?.constructor!==i&&(a?._$AO?.(!1),void 0===i?a=void 0:(a=new i(t),a._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=a:e._$Cl=a),void 0!==a&&(o=V(t,a._$AS(t,o.values),a,r)),o}class X{constructor(t,o){this._$AV=[],this._$AN=void 0,this._$AD=t,this._$AM=o}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(t){const{el:{content:o},parts:e}=this._$AD,r=(t?.creationScope??U).importNode(o,!0);M.currentNode=r;let a=M.nextNode(),i=0,n=0,l=e[0];for(;void 0!==l;){if(i===l.index){let o;2===l.type?o=new q(a,a.nextSibling,this,t):1===l.type?o=new l.ctor(a,l.name,l.strings,this,t):6===l.type&&(o=new et(a,this,t)),this._$AV.push(o),l=e[++n]}i!==l?.index&&(a=M.nextNode(),i++)}return M.currentNode=U,r}p(t){let o=0;for(const e of this._$AV)void 0!==e&&(void 0!==e.strings?(e._$AI(t,e,o),o+=e.strings.length-2):e._$AI(t[o])),o++}}class q{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=P,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=e,this.options=r,this._$Cv=r?.isConnected??!0}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===t?.nodeType&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=V(this,t,o),Z(t)?t===P||null==t||""===t?(this._$AH!==P&&this._$AR(),this._$AH=P):t!==this._$AH&&t!==G&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>L(t)||"function"==typeof t?.[Symbol.iterator])(t)?this.T(t):this._(t)}k(t){return this._$AA.parentNode.insertBefore(t,this._$AB)}$(t){this._$AH!==t&&(this._$AR(),this._$AH=this.k(t))}_(t){this._$AH!==P&&Z(this._$AH)?this._$AA.nextSibling.data=t:this.$(U.createTextNode(t)),this._$AH=t}g(t){const{values:o,_$litType$:e}=t,r="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=T.createElement(_(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new X(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=Y.get(t.strings);return void 0===o&&Y.set(t.strings,o=new T(t)),o}T(t){L(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let e,r=0;for(const a of t)r===o.length?o.push(e=new q(this.k(R()),this.k(R()),this,this.options)):e=o[r],e._$AI(a),r++;r<o.length&&(this._$AR(e&&e._$AB.nextSibling,r),o.length=r)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class J{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,a){this.type=1,this._$AH=P,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=a,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=P}_$AI(t,o=this,e,r){const a=this.strings;let i=!1;if(void 0===a)t=V(this,t,o,0),i=!Z(t)||t!==this._$AH&&t!==G,i&&(this._$AH=t);else{const r=t;let n,l;for(t=a[0],n=0;n<a.length-1;n++)l=V(this,r[e+n],o,n),l===G&&(l=this._$AH[n]),i||=!Z(l)||l!==this._$AH[n],l===P?t=P:t!==P&&(t+=(l??"")+a[n+1]),this._$AH[n]=l}i&&!r&&this.O(t)}O(t){t===P?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Q extends J{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===P?void 0:t}}class tt extends J{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==P)}}class ot extends J{constructor(t,o,e,r,a){super(t,o,e,r,a),this.type=5}_$AI(t,o=this){if((t=V(this,t,o,0)??P)===G)return;const e=this._$AH,r=t===P&&e!==P||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,a=t!==P&&(e===P||r);r&&this.element.removeEventListener(this.name,this,e),a&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class et{constructor(t,o,e){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=e}get _$AU(){return this._$AM._$AU}_$AI(t){V(this,t)}}const rt=S.litHtmlPolyfillSupport;rt?.(T,q),(S.litHtmlVersions??=[]).push("3.1.0");
|
|
131
131
|
/**
|
|
132
132
|
* @license
|
|
133
133
|
* Copyright 2020 Google LLC
|
|
134
134
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
135
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)})(H);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)")},gt={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")}},ht={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","",ht.backgroundActionPrimary),st.extend("--ft-button-primary-color","",ht.contentGlobalOnColor),st.extend("--ft-button-primary-icon-color","",ht.contentGlobalOnColor),st.extend("--ft-button-primary-state-layer-color","",ht.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","",ht.borderActionFocusRing),st.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),st.extend("--ft-button-tertiary-color","",ht.contentActionPrimary),st.extend("--ft-button-tertiary-icon-color","",ht.contentActionPrimary),st.extend("--ft-button-tertiary-state-layer-color","",ht.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","",ht.contentActionPrimary),st.extend("--ft-button-secondary-icon-color","",ht.contentActionPrimary),st.extend("--ft-button-secondary-state-layer-color","",ht.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","",ht.borderActionPrimary),st.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),st.extend("--ft-button-neutral-icon-color","",ht.contentGlobalSecondary),st.extend("--ft-button-neutral-color","",ht.contentGlobalSecondary),st.extend("--ft-button-neutral-state-layer-color","",ht.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","",ht.backgroundInfoSubtle),st.extend("--ft-banner-info-color","",ht.contentInfoPrimary),st.extend("--ft-banner-info-icon-color","",ht.contentInfoIconOnly),st.extend("--ft-breadcrumb-horizontal-gap","",dt.spacing1),st.extend("--ft-breadcrumb-vertical-gap","",dt.spacing2),st.extend("--ft-breadcrumb-current-element-color","",ht.contentGlobalPrimary),st.extend("--ft-breadcrumb-icon-color","",ht.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","",ht.borderGlobalSubtle),st.extend("--ft-page-header-title-color","",ht.contentGlobalPrimary),st.extend("--ft-page-header-subtitle-color","",ht.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","",ht.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","",ht.backgroundGlobalOnSurface),st.extend("--ft-modal-header-border-color","",ht.borderGlobalSubtle),st.extend("--ft-modal-header-color","",ht.contentGlobalPrimary),st.extend("--ft-modal-header-trailing-icon-color","",ht.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","",ht.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","",ht.backgroundGlobalOnSurface),st.extend("--ft-drawer-header-border-color","",ht.borderGlobalSubtle),st.extend("--ft-drawer-header-color","",ht.contentGlobalPrimary),st.extend("--ft-drawer-header-trailing-icon-color","",ht.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","",ht.backgroundGlobalOnSurface),st.extend("--ft-drawer-buttons-bar-border-color","",ht.borderGlobalSubtle),st.extend("--ft-drawer-buttons-bar-color","",ht.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","",ht.contentGlobalPrimary),st.extend("--ft-text-input-trailing-icon-color","",ht.contentGlobalSubtle),st.extend("--ft-text-input-label-color","",ht.contentGlobalSubtle),st.extend("--ft-text-input-default-border-color","",ht.borderInputPrimary),st.extend("--ft-text-input-default-helper-text-color","",ht.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","",ht.borderErrorPrimary),st.extend("--ft-text-input-error-helper-text-color","",ht.contentErrorPrimary),st.extend("--ft-text-input-error-helper-icon-color","",ht.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","",ht.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","",ht.contentGlobalPrimary),st.extend("--ft-text-area-label-color","",ht.contentGlobalSubtle),st.extend("--ft-text-area-default-border-color","",ht.borderInputPrimary),st.extend("--ft-text-area-default-helper-text-color","",ht.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","",ht.borderErrorPrimary),st.extend("--ft-text-area-error-helper-text-color","",ht.contentErrorPrimary),st.extend("--ft-text-area-error-helper-icon-color","",ht.contentErrorIconOnly),st.extend("--ft-text-area-focus-focus-ring-color","",ht.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","",ht.contentGlobalPrimary),st.extend("--ft-floating-menu-off-color","",ht.contentGlobalPrimary),st.extend("--ft-floating-menu-on-color","",ht.contentActionPrimary),st.extend("--ft-floating-menu-on-state-layer-color","",ht.contentActionPrimary),st.extend("--ft-floating-menu-gap","",dt.spacing3),st.extend("--ft-floating-menu-focus-focus-ring-color","",ht.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","",ht.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","",ht.contentGlobalSubtle),st.extend("--ft-combobox-single-select-content-value-color","",ht.contentGlobalPrimary),st.extend("--ft-combobox-single-select-trailing-icon-color","",ht.contentGlobalSubtle),st.extend("--ft-combobox-single-select-default-border-color","",ht.borderInputPrimary),st.extend("--ft-combobox-single-select-default-helper-text-color","",ht.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","",ht.borderErrorPrimary),st.extend("--ft-combobox-single-select-error-helper-text-color","",ht.contentErrorPrimary),st.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),st.extend("--ft-combobox-single-select-warning-border-color","",ht.borderWarningPrimary),st.extend("--ft-combobox-single-select-warning-helper-text-color","",ht.contentWarningPrimary),st.extend("--ft-combobox-single-select-warning-helper-icon-color","",ht.contentWarningIconOnly),st.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),st.extend("--ft-combobox-single-select-focus-focus-ring-color","",ht.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","",ht.contentGlobalSubtle),st.extend("--ft-combobox-multi-select-trailing-icon-color","",ht.contentGlobalSubtle),st.extend("--ft-combobox-multi-select-default-border-color","",ht.borderInputPrimary),st.extend("--ft-combobox-multi-select-default-helper-text-color","",ht.contentGlobalSubtle),st.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),st.extend("--ft-combobox-multi-select-error-border-color","",ht.borderErrorPrimary),st.extend("--ft-combobox-multi-select-error-helper-text-color","",ht.contentErrorPrimary),st.extend("--ft-combobox-multi-select-error-helper-icon","",ht.contentErrorIconOnly),st.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),st.extend("--ft-combobox-multi-select-warning-border-color","",ht.borderWarningPrimary),st.extend("--ft-combobox-multi-select-warning-helper-text-color","",ht.contentWarningPrimary),st.extend("--ft-combobox-multi-select-warning-helper-icon-color","",ht.contentWarningIconOnly),st.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),st.extend("--ft-combobox-multi-select-focus-focus-ring-color","",ht.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","",ht.backgroundGlobalOnSurface),st.extend("--ft-popover-horizontal-padding","",dt.spacing6),st.extend("--ft-popover-vertical-padding","",dt.spacing6),st.extend("--ft-popover-icon-color","",ht.contentGlobalSecondary),st.extend("--ft-popover-icon-size","",dt.iconSize2),st.extend("--ft-popover-title-color","",ht.contentGlobalPrimary),st.extend("--ft-popover-body-color","",ht.contentGlobalSecondary),st.extend("--ft-popover-link-color","",ht.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","",ht.contentGlobalSubtle),st.extend("--ft-tabs-off-state-layer-color","",ht.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","",ht.contentActionPrimary),st.extend("--ft-tabs-on-state-layer-color","",ht.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","",ht.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","",ht.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","",ht.contentGlobalPrimary),st.extend("--ft-collapsible-state-layer-color","",ht.contentGlobalPrimary),st.extend("--ft-collapsible-background-color","",ht.backgroundGlobalOnSurface),st.extend("--ft-collapsible-border-color","",ht.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","",ht.backgroundGlobalSurface),st.extend("--ft-switch-group-border-color","",ht.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","",ht.contentGlobalSubtle),st.extend("--ft-switch-off-state-layer-color","",ht.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","",ht.contentActionPrimary),st.extend("--ft-switch-on-state-layer-color","",ht.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","",ht.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","",ht.backgroundGlobalOnSurface),st.extend("--ft-chip-neutral-color","",ht.contentGlobalPrimary),st.extend("--ft-chip-neutral-icon-color","",ht.contentGlobalPrimary),st.extend("--ft-chip-neutral-border-color","",ht.borderGlobalSubtle),st.extend("--ft-chip-info-background-color","",ht.backgroundInfoSubtle),st.extend("--ft-chip-info-color","",ht.contentInfoPrimary),st.extend("--ft-chip-info-icon-color","",ht.contentInfoIconOnly),st.extend("--ft-chip-info-border-color","",ht.borderInfoSubtle),st.extend("--ft-chip-success-background-color","",ht.backgroundSuccessSubtle),st.extend("--ft-chip-success-color","",ht.contentSuccessPrimary),st.extend("--ft-chip-success-icon-color","",ht.contentSuccessIconOnly),st.extend("--ft-chip-success-border-color","",ht.borderSuccessSubtle),st.extend("--ft-chip-warning-background-color","",ht.backgroundWarningSubtle),st.extend("--ft-chip-warning-color","",ht.contentWarningPrimary),st.extend("--ft-chip-warning-icon-color","",ht.contentWarningIconOnly),st.extend("--ft-chip-warning-border-color","",ht.borderWarningSubtle),st.extend("--ft-chip-error-background-color","",ht.backgroundErrorSubtle),st.extend("--ft-chip-error-color","",ht.contentErrorPrimary),st.extend("--ft-chip-error-icon-color","",ht.contentErrorIconOnly),st.extend("--ft-chip-error-border-color","",ht.borderErrorSubtle),st.extend("--ft-border-info-border-color","",ht.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","",ht.backgroundInfoSubtle),st.extend("--ft-notice-info-border-color","",ht.borderInfoSubtle),st.extend("--ft-notice-info-color","",ht.contentInfoPrimary),st.extend("--ft-notice-info-icon-color","",ht.contentInfoIconOnly),st.extend("--ft-notice-warning-background-color","",ht.backgroundWarningSubtle),st.extend("--ft-notice-warning-border-color","",ht.borderWarningSubtle),st.extend("--ft-notice-warning-color","",ht.contentWarningPrimary),st.extend("--ft-notice-warning-icon-color","",ht.contentWarningIconOnly),st.extend("--ft-notice-error-background-color","",ht.backgroundErrorSubtle),st.extend("--ft-notice-error-border-color","",ht.borderErrorSubtle),st.extend("--ft-notice-error-color","",ht.contentErrorPrimary),st.extend("--ft-notice-error-icon-color","",ht.contentErrorIconOnly),st.extend("--ft-notice-success-background-color","",ht.backgroundSuccessSubtle),st.extend("--ft-notice-success-border-color","",ht.borderSuccessSubtle),st.extend("--ft-notice-success-color","",ht.contentSuccessPrimary),st.extend("--ft-notice-success-icon-color","",ht.contentSuccessIconOnly),st.extend("--ft-checkbox-color","",ht.contentGlobalPrimary),st.extend("--ft-checkbox-checked-background-color","",ht.contentActionPrimary),st.extend("--ft-checkbox-checked-state-layer-color","",ht.contentActionPrimary),st.extend("--ft-checkbox-checked-icon-color","",ht.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","",ht.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","",ht.contentGlobalSubtle),st.extend("--ft-toggle-off-icon-color","",ht.contentGlobalSubtle),st.extend("--ft-toggle-off-state-layer-color","",ht.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","",ht.contentActionPrimary),st.extend("--ft-toggle-on-state-layer-color","",ht.contentActionPrimary),st.extend("--ft-toggle-on-icon-color","",ht.contentActionPrimary),st.extend("--ft-toggle-color","",ht.contentGlobalPrimary),st.extend("--ft-toggle-focus-focus-ring-color","",ht.borderActionFocusRing),st.extend("--ft-toggle-gap","",dt.spacing3),st.extend("--ft-radio-color","",ht.contentGlobalPrimary),st.extend("--ft-radio-selected-radio-color","",ht.contentActionPrimary),st.extend("--ft-radio-selected-state-layer-color","",ht.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","",ht.borderInputPrimary),st.extend("--ft-radio-unselected-border-color","",ht.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","",ht.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","",ht.backgroundInfoSubtle),st.extend("--ft-notification-info-color","",ht.contentInfoPrimary),st.extend("--ft-notification-info-icon-color","",ht.contentInfoIconOnly),st.extend("--ft-notification-info-border-color","",ht.borderInfoSubtle),st.extend("--ft-notification-success-background-color","",ht.backgroundSuccessSubtle),st.extend("--ft-notification-success-color","",ht.contentSuccessPrimary),st.extend("--ft-notification-success-icon-color","",ht.contentSuccessIconOnly),st.extend("--ft-notification-success-border-color","",ht.borderSuccessSubtle),st.extend("--ft-notification-warning-background-color","",ht.backgroundWarningSubtle),st.extend("--ft-notification-warning-color","",ht.contentWarningPrimary),st.extend("--ft-notification-warning-icon-color","",ht.contentWarningIconOnly),st.extend("--ft-notification-warning-border-color","",ht.borderWarningSubtle),st.extend("--ft-notification-error-background-color","",ht.backgroundErrorSubtle),st.extend("--ft-notification-error-color","",ht.contentErrorPrimary),st.extend("--ft-notification-error-icon-color","",ht.contentErrorIconOnly),st.extend("--ft-notification-error-border-color","",ht.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","",ht.contentGlobalOnColor),st.extend("--ft-tooltip-background-color","",ht.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"),Rt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",bt),Zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",ut.fontSize,"16px"),Lt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",ut.fontWeight,"600"),Kt=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"),$t=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",ut.textTransform,"inherit"),kt=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"),At=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",ut.letterSpacing,"0.098px"),Bt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",ut.lineHeight,"1.7"),Ht=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",ut.textTransform,"inherit"),Gt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",bt),Pt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",ut.fontSize,"16px"),Yt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",ut.fontWeight,"normal"),Mt=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),Vt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",ut.fontSize,"14px"),Xt=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"),go=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",bt),ho=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`
|
|
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)})(H);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"),Rt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",bt),Zt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",ut.fontSize,"16px"),Lt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",ut.fontWeight,"600"),Kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",ut.letterSpacing,"0.144px"),kt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",ut.lineHeight,"1.5"),zt=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"),At=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",ut.letterSpacing,"0.098px"),Bt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",ut.lineHeight,"1.7"),Ht=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",ut.textTransform,"inherit"),Gt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",bt),Pt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",ut.fontSize,"16px"),Yt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",ut.fontWeight,"normal"),Mt=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),Vt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",ut.fontSize,"14px"),Xt=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`
|
|
137
137
|
.ft-typography--title {
|
|
138
138
|
font-family: ${mt};
|
|
139
139
|
font-size: ${xt};
|
|
@@ -157,12 +157,12 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
157
157
|
font-size: ${Zt};
|
|
158
158
|
font-weight: ${Lt};
|
|
159
159
|
letter-spacing: ${Kt};
|
|
160
|
-
line-height: ${
|
|
161
|
-
text-transform: ${
|
|
160
|
+
line-height: ${kt};
|
|
161
|
+
text-transform: ${zt};
|
|
162
162
|
}
|
|
163
163
|
`,Wo=e.css`
|
|
164
164
|
.ft-typography--subtitle2 {
|
|
165
|
-
font-family: ${
|
|
165
|
+
font-family: ${$t};
|
|
166
166
|
font-size: ${Dt};
|
|
167
167
|
font-weight: ${Ft};
|
|
168
168
|
letter-spacing: ${At};
|
|
@@ -208,14 +208,14 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
208
208
|
}
|
|
209
209
|
`,Ko=e.css`
|
|
210
210
|
.ft-typography--overline {
|
|
211
|
-
font-family: ${
|
|
212
|
-
font-size: ${
|
|
211
|
+
font-family: ${ho};
|
|
212
|
+
font-size: ${go};
|
|
213
213
|
font-weight: ${yo};
|
|
214
214
|
letter-spacing: ${bo};
|
|
215
215
|
line-height: ${uo};
|
|
216
216
|
text-transform: ${mo};
|
|
217
217
|
}
|
|
218
|
-
`,
|
|
218
|
+
`,ko=e.css`
|
|
219
219
|
.ft-typography--button {
|
|
220
220
|
font-family: ${xo};
|
|
221
221
|
font-size: ${Oo};
|
|
@@ -224,11 +224,11 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
224
224
|
line-height: ${vo};
|
|
225
225
|
text-transform: ${wo};
|
|
226
226
|
}
|
|
227
|
-
|
|
227
|
+
`,zo=e.css`
|
|
228
228
|
.ft-typography {
|
|
229
229
|
vertical-align: inherit;
|
|
230
230
|
}
|
|
231
|
-
|
|
231
|
+
`,$o=[Object.keys(ht).map((t=>function(t){const o=ht[t];return e.css`
|
|
232
232
|
.ft-typography--${e.unsafeCSS(t)} {
|
|
233
233
|
font-family: ${o.fontFamily};
|
|
234
234
|
font-size: ${o.fontSize};
|
|
@@ -244,7 +244,7 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
244
244
|
</${nt(this.element)}>
|
|
245
245
|
`:ct`
|
|
246
246
|
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
247
|
-
`}}Fo.styles=[Io,Co,Eo,Wo,Uo,Ro,Zo,Lo,Ko,zo
|
|
247
|
+
`}}Fo.styles=[Io,Co,Eo,Wo,Uo,Ro,Zo,Lo,Ko,ko,zo,...$o],Do([r.property()],Fo.prototype,"element",void 0),Do([r.property()],Fo.prototype,"variant",void 0),o.customElement("ft-typography")(Fo);const Ao={textColor:o.FtCssVariableFactory.extend("--ft-radio-text-color","",o.designSystemVariables.colorOnSurfaceHigh),colorPrimary:o.FtCssVariableFactory.external(o.designSystemVariables.colorPrimary,"Design system"),colorOnPrimary:o.FtCssVariableFactory.external(o.designSystemVariables.colorOnPrimary,"Design system"),borderColor:o.FtCssVariableFactory.extend("--ft-radio-border-color","",o.designSystemVariables.colorOnSurfaceMedium),colorOnSurfaceDisabled:o.FtCssVariableFactory.external(o.designSystemVariables.colorOnSurfaceDisabled,"Design system")},Bo=e.css`
|
|
248
248
|
* {
|
|
249
249
|
box-sizing: border-box;
|
|
250
250
|
}
|
|
@@ -323,13 +323,13 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
323
323
|
.ft-radio--disabled .ft-radio--box:after {
|
|
324
324
|
background-color: ${Ao.colorOnSurfaceDisabled};
|
|
325
325
|
}
|
|
326
|
-
`;var Ho=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 Go extends CustomEvent{constructor(t,o){super("change",{detail:{value:t,checked:o},bubbles:!0,composed:!0})}}class Po extends o.FtLitElement{constructor(){super(...arguments),this.value="",this.name="",this.checked=!1,this.disabled=!1}render(){const t={"ft-radio":!0,"ft-radio--checked":this.checked,"ft-radio--disabled":this.disabled};return e.html`
|
|
326
|
+
`;var Ho=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 Go extends CustomEvent{constructor(t,o){super("change",{detail:{value:t,checked:o},bubbles:!0,composed:!0})}}class Po extends o.FtLitElement{constructor(){super(...arguments),this.value="",this.name="",this.checked=!1,this.disabled=!1,this.tabIndex=-1,this.role="radio"}render(){const t={"ft-radio":!0,"ft-radio--checked":this.checked,"ft-radio--disabled":this.disabled};return e.html`
|
|
327
327
|
<div class="${a.classMap(t)}">
|
|
328
328
|
<div class="ft-radio--box-container">
|
|
329
329
|
<ft-ripple
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
330
|
+
?disabled=${this.disabled}
|
|
331
|
+
?primary=${this.checked}
|
|
332
|
+
unbounded>
|
|
333
333
|
</ft-ripple>
|
|
334
334
|
<div class="ft-radio--box">
|
|
335
335
|
</div>
|
|
@@ -348,13 +348,13 @@ const at=Symbol.for(""),it=t=>{if(t?.r===at)return t?._$litStatic$},nt=t=>({_$li
|
|
|
348
348
|
</ft-typography>
|
|
349
349
|
</label>
|
|
350
350
|
</div>
|
|
351
|
-
`}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new Go(this.value,this.checked))}contentAvailableCallback(t){var o;super.contentAvailableCallback(t),null===(o=this.ripple)||void 0===o||o.setupFor(this.container)}select(){this.checked=!0,this.dispatchEvent(new Go(this.value,this.checked))
|
|
351
|
+
`}update(t){super.update(t),t.has("checked")&&!t.has("aria-checked")&&(this.checked?(this.setAttribute("aria-checked","true"),this.tabIndex=0):(this.setAttribute("aria-checked","false"),this.tabIndex=-1))}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new Go(this.value,this.checked))}contentAvailableCallback(t){var o;super.contentAvailableCallback(t),null===(o=this.ripple)||void 0===o||o.setupFor(this.container)}select(){this.checked=!0,this.dispatchEvent(new Go(this.value,this.checked))}}Po.elementDefinitions={"ft-ripple":N,"ft-typography":Fo},Po.styles=Bo,Ho([r.property()],Po.prototype,"value",void 0),Ho([r.property()],Po.prototype,"name",void 0),Ho([r.property({type:Boolean,reflect:!0})],Po.prototype,"checked",void 0),Ho([r.property({type:Boolean})],Po.prototype,"disabled",void 0),Ho([r.property({reflect:!0})],Po.prototype,"tabIndex",void 0),Ho([r.property({reflect:!0,attribute:"role"})],Po.prototype,"role",void 0),Ho([r.query(".ft-radio")],Po.prototype,"container",void 0),Ho([r.query("ft-ripple")],Po.prototype,"ripple",void 0),Ho([r.query("input")],Po.prototype,"input",void 0);const Yo=e.css`
|
|
352
352
|
:host {
|
|
353
353
|
display: contents;
|
|
354
354
|
}
|
|
355
|
-
`;var Mo=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 _o extends o.FtLitElement{constructor(){super(...arguments),this.name=""}render(){return e.html`
|
|
355
|
+
`;var Mo=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 _o extends o.FtLitElement{constructor(){super(...arguments),this.name="",this.role="radiogroup",this.ariaLabelledBy=""}render(){return e.html`
|
|
356
356
|
<slot @slotchange=${this.onSlotChange}
|
|
357
357
|
@change=${this.onChange}
|
|
358
358
|
@keydown=${this.onKeyDown}
|
|
359
359
|
></slot>
|
|
360
|
-
`}onSlotChange(){this.radioButtons.forEach((t=>t.name=this.name))}onChange(t){t.stopPropagation(),this.radioButtons.forEach((o=>o.checked=t.detail.value===o.value)),this.dispatchEvent(new CustomEvent("change",{detail:t.detail.value})),this.focusCurrentValue()}onKeyDown(t){switch(t.key){case"ArrowUp":case"ArrowLeft":{let
|
|
360
|
+
`}onSlotChange(){this.radioButtons.forEach((t=>t.name=this.name))}contentAvailableCallback(t){super.contentAvailableCallback(t),this.radioButtons[0].setAttribute("tabindex","0")}onChange(t){t.stopPropagation(),this.radioButtons.forEach((o=>o.checked=t.detail.value===o.value)),this.dispatchEvent(new CustomEvent("change",{detail:t.detail.value})),this.focusCurrentValue()}onKeyDown(t){let o=!1;switch(t.key){case"ArrowUp":case"ArrowLeft":{o=!0;let e=this.findFtRadio(t),r=this.radioButtons.indexOf(e)-1;this.radioButtons[r<0?this.radioButtons.length-1:r].select(),this.radioButtons[r<0?this.radioButtons.length-1:r].focus();break}case"ArrowDown":case"ArrowRight":{o=!0;let e=this.radioButtons.indexOf(this.findFtRadio(t))+1;this.radioButtons[e>this.radioButtons.length-1?0:e].select(),this.radioButtons[e>this.radioButtons.length-1?0:e].focus();break}case"Enter":{let o=this.radioButtons.indexOf(this.findFtRadio(t));this.radioButtons[o].select()}}o&&(t.stopPropagation(),t.preventDefault())}findFtRadio(t){return t.composedPath().find((t=>"FT-RADIO"===t.tagName))}focusCurrentValue(){setTimeout((()=>{var t;return null===(t=this.radioButtons.find((t=>t.checked)))||void 0===t?void 0:t.focus()}),10)}}_o.elementDefinitions={},_o.styles=Yo,Mo([r.property()],_o.prototype,"name",void 0),Mo([r.property({reflect:!0,attribute:"role"})],_o.prototype,"role",void 0),Mo([r.property({reflect:!0,attribute:"aria-labelledby"})],_o.prototype,"ariaLabelledBy",void 0),Mo([r.queryAssignedElements()],_o.prototype,"radioButtons",void 0),o.customElement("ft-radio")(Po),o.customElement("ft-radio-group")(_o),t.FtRadio=Po,t.FtRadioChangeEvent=Go,t.FtRadioCssVariables=Ao,t.FtRadioGroup=_o,t.FtRadioGroupCssVariables={},t.groupStyles=Yo,t.styles=Bo}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap);
|
package/build/ft-radio.min.js
CHANGED
|
@@ -493,13 +493,13 @@ const xl=Symbol.for(""),Sl=t=>{if(t?.r===xl)return t?._$litStatic$},wl=t=>({_$li
|
|
|
493
493
|
.ft-radio--disabled .ft-radio--box:after {
|
|
494
494
|
background-color: ${Yc.colorOnSurfaceDisabled};
|
|
495
495
|
}
|
|
496
|
-
`;var Xc=function(t,e,o,r){for(var i,n=arguments.length,a=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,o):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(e,o,a):i(e,o))||a);return n>3&&a&&Object.defineProperty(e,o,a),a};class Qc extends CustomEvent{constructor(t,e){super("change",{detail:{value:t,checked:e},bubbles:!0,composed:!0})}}class ts extends Fi{constructor(){super(...arguments),this.value="",this.name="",this.checked=!1,this.disabled=!1}render(){const t={"ft-radio":!0,"ft-radio--checked":this.checked,"ft-radio--disabled":this.disabled};return Jt`
|
|
496
|
+
`;var Xc=function(t,e,o,r){for(var i,n=arguments.length,a=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,o):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(e,o,a):i(e,o))||a);return n>3&&a&&Object.defineProperty(e,o,a),a};class Qc extends CustomEvent{constructor(t,e){super("change",{detail:{value:t,checked:e},bubbles:!0,composed:!0})}}class ts extends Fi{constructor(){super(...arguments),this.value="",this.name="",this.checked=!1,this.disabled=!1,this.tabIndex=-1,this.role="radio"}render(){const t={"ft-radio":!0,"ft-radio--checked":this.checked,"ft-radio--disabled":this.disabled};return Jt`
|
|
497
497
|
<div class="${Ze(t)}">
|
|
498
498
|
<div class="ft-radio--box-container">
|
|
499
499
|
<ft-ripple
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
500
|
+
?disabled=${this.disabled}
|
|
501
|
+
?primary=${this.checked}
|
|
502
|
+
unbounded>
|
|
503
503
|
</ft-ripple>
|
|
504
504
|
<div class="ft-radio--box">
|
|
505
505
|
</div>
|
|
@@ -518,13 +518,13 @@ const xl=Symbol.for(""),Sl=t=>{if(t?.r===xl)return t?._$litStatic$},wl=t=>({_$li
|
|
|
518
518
|
</ft-typography>
|
|
519
519
|
</label>
|
|
520
520
|
</div>
|
|
521
|
-
`}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new Qc(this.value,this.checked))}contentAvailableCallback(t){var e;super.contentAvailableCallback(t),null===(e=this.ripple)||void 0===e||e.setupFor(this.container)}select(){this.checked=!0,this.dispatchEvent(new Qc(this.value,this.checked))
|
|
521
|
+
`}update(t){super.update(t),t.has("checked")&&!t.has("aria-checked")&&(this.checked?(this.setAttribute("aria-checked","true"),this.tabIndex=0):(this.setAttribute("aria-checked","false"),this.tabIndex=-1))}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new Qc(this.value,this.checked))}contentAvailableCallback(t){var e;super.contentAvailableCallback(t),null===(e=this.ripple)||void 0===e||e.setupFor(this.container)}select(){this.checked=!0,this.dispatchEvent(new Qc(this.value,this.checked))}}ts.elementDefinitions={"ft-ripple":Ol,"ft-typography":qc},ts.styles=Jc,Xc([Se()],ts.prototype,"value",void 0),Xc([Se()],ts.prototype,"name",void 0),Xc([Se({type:Boolean,reflect:!0})],ts.prototype,"checked",void 0),Xc([Se({type:Boolean})],ts.prototype,"disabled",void 0),Xc([Se({reflect:!0})],ts.prototype,"tabIndex",void 0),Xc([Se({reflect:!0,attribute:"role"})],ts.prototype,"role",void 0),Xc([Ne(".ft-radio")],ts.prototype,"container",void 0),Xc([Ne("ft-ripple")],ts.prototype,"ripple",void 0),Xc([Ne("input")],ts.prototype,"input",void 0);const es=dt`
|
|
522
522
|
:host {
|
|
523
523
|
display: contents;
|
|
524
524
|
}
|
|
525
|
-
`;var os=function(t,e,o,r){for(var i,n=arguments.length,a=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,o):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(e,o,a):i(e,o))||a);return n>3&&a&&Object.defineProperty(e,o,a),a};class rs extends Fi{constructor(){super(...arguments),this.name=""}render(){return Jt`
|
|
525
|
+
`;var os=function(t,e,o,r){for(var i,n=arguments.length,a=n<3?e:null===r?r=Object.getOwnPropertyDescriptor(e,o):r,l=t.length-1;l>=0;l--)(i=t[l])&&(a=(n<3?i(a):n>3?i(e,o,a):i(e,o))||a);return n>3&&a&&Object.defineProperty(e,o,a),a};class rs extends Fi{constructor(){super(...arguments),this.name="",this.role="radiogroup",this.ariaLabelledBy=""}render(){return Jt`
|
|
526
526
|
<slot @slotchange=${this.onSlotChange}
|
|
527
527
|
@change=${this.onChange}
|
|
528
528
|
@keydown=${this.onKeyDown}
|
|
529
529
|
></slot>
|
|
530
|
-
`}onSlotChange(){this.radioButtons.forEach((t=>t.name=this.name))}onChange(t){t.stopPropagation(),this.radioButtons.forEach((e=>e.checked=t.detail.value===e.value)),this.dispatchEvent(new CustomEvent("change",{detail:t.detail.value})),this.focusCurrentValue()}onKeyDown(t){switch(t.key){case"ArrowUp":case"ArrowLeft":{let
|
|
530
|
+
`}onSlotChange(){this.radioButtons.forEach((t=>t.name=this.name))}contentAvailableCallback(t){super.contentAvailableCallback(t),this.radioButtons[0].setAttribute("tabindex","0")}onChange(t){t.stopPropagation(),this.radioButtons.forEach((e=>e.checked=t.detail.value===e.value)),this.dispatchEvent(new CustomEvent("change",{detail:t.detail.value})),this.focusCurrentValue()}onKeyDown(t){let e=!1;switch(t.key){case"ArrowUp":case"ArrowLeft":{e=!0;let o=this.findFtRadio(t),r=this.radioButtons.indexOf(o)-1;this.radioButtons[r<0?this.radioButtons.length-1:r].select(),this.radioButtons[r<0?this.radioButtons.length-1:r].focus();break}case"ArrowDown":case"ArrowRight":{e=!0;let o=this.radioButtons.indexOf(this.findFtRadio(t))+1;this.radioButtons[o>this.radioButtons.length-1?0:o].select(),this.radioButtons[o>this.radioButtons.length-1?0:o].focus();break}case"Enter":{let e=this.radioButtons.indexOf(this.findFtRadio(t));this.radioButtons[e].select()}}e&&(t.stopPropagation(),t.preventDefault())}findFtRadio(t){return t.composedPath().find((t=>"FT-RADIO"===t.tagName))}focusCurrentValue(){setTimeout((()=>{var t;return null===(t=this.radioButtons.find((t=>t.checked)))||void 0===t?void 0:t.focus()}),10)}}rs.elementDefinitions={},rs.styles=es,os([Se()],rs.prototype,"name",void 0),os([Se({reflect:!0,attribute:"role"})],rs.prototype,"role",void 0),os([Se({reflect:!0,attribute:"aria-labelledby"})],rs.prototype,"ariaLabelledBy",void 0),os([Re()],rs.prototype,"radioButtons",void 0),po("ft-radio")(ts),po("ft-radio-group")(rs),t.FtRadio=ts,t.FtRadioChangeEvent=Qc,t.FtRadioCssVariables=Yc,t.FtRadioGroup=rs,t.FtRadioGroupCssVariables={},t.groupStyles=es,t.styles=Jc}({});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fluid-topics/ft-radio",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.57",
|
|
4
4
|
"description": "A radio component",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Lit"
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"url": "ssh://git@scm.mrs.antidot.net:2222/fluidtopics/ft-web-components.git"
|
|
20
20
|
},
|
|
21
21
|
"dependencies": {
|
|
22
|
-
"@fluid-topics/ft-ripple": "1.1.
|
|
23
|
-
"@fluid-topics/ft-typography": "1.1.
|
|
24
|
-
"@fluid-topics/ft-wc-utils": "1.1.
|
|
22
|
+
"@fluid-topics/ft-ripple": "1.1.57",
|
|
23
|
+
"@fluid-topics/ft-typography": "1.1.57",
|
|
24
|
+
"@fluid-topics/ft-wc-utils": "1.1.57",
|
|
25
25
|
"lit": "3.1.0"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "fe4e0c17422ecce6e7a0ae3fd8ce5b618357adad"
|
|
28
28
|
}
|