@fluid-topics/ft-toggle 1.0.59 → 1.0.60
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-toggle.css.js +8 -8
- package/build/ft-toggle.light.js +97 -90
- package/build/ft-toggle.min.js +105 -98
- package/package.json +4 -4
package/build/ft-toggle.css.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { designSystemVariables, FtCssVariableFactory } from "@fluid-topics/ft-wc-utils";
|
|
2
2
|
import { css } from "lit";
|
|
3
3
|
export const FtToggleCssVariables = {
|
|
4
|
-
textColor: FtCssVariableFactory.extend("--ft-toggle-text-color", designSystemVariables.colorOnSurfaceHigh),
|
|
5
|
-
onColor: FtCssVariableFactory.extend("--ft-toggle-on-color", designSystemVariables.colorPrimary),
|
|
6
|
-
offColor: FtCssVariableFactory.create("--ft-toggle-off-color", "COLOR", "#e0e0e0"),
|
|
7
|
-
handleColor: FtCssVariableFactory.extend("--ft-toggle-handle-color", designSystemVariables.colorOnPrimary),
|
|
4
|
+
textColor: FtCssVariableFactory.extend("--ft-toggle-text-color", "", designSystemVariables.colorOnSurfaceHigh),
|
|
5
|
+
onColor: FtCssVariableFactory.extend("--ft-toggle-on-color", "", designSystemVariables.colorPrimary),
|
|
6
|
+
offColor: FtCssVariableFactory.create("--ft-toggle-off-color", "", "COLOR", "#e0e0e0"),
|
|
7
|
+
handleColor: FtCssVariableFactory.extend("--ft-toggle-handle-color", "", designSystemVariables.colorOnPrimary),
|
|
8
8
|
};
|
|
9
9
|
// language=CSS
|
|
10
10
|
export const styles = css `
|
|
@@ -18,13 +18,13 @@ export const styles = css `
|
|
|
18
18
|
}
|
|
19
19
|
|
|
20
20
|
.ft-toggle.ft-toggle--disabled {
|
|
21
|
-
cursor: default;
|
|
21
|
+
cursor: default;
|
|
22
22
|
}
|
|
23
|
-
|
|
23
|
+
|
|
24
24
|
.ft-toggle.ft-toggle--disabled .ft-toggle-background {
|
|
25
25
|
opacity: .3;
|
|
26
26
|
}
|
|
27
|
-
|
|
27
|
+
|
|
28
28
|
|
|
29
29
|
input {
|
|
30
30
|
display: none;
|
|
@@ -37,7 +37,7 @@ export const styles = css `
|
|
|
37
37
|
height: 24px;
|
|
38
38
|
display: flex;
|
|
39
39
|
align-items: center;
|
|
40
|
-
}
|
|
40
|
+
}
|
|
41
41
|
|
|
42
42
|
.ft-toggle--checked .ft-toggle-background {
|
|
43
43
|
background-color: ${FtToggleCssVariables.onColor};
|
package/build/ft-toggle.light.js
CHANGED
|
@@ -1,41 +1,41 @@
|
|
|
1
|
-
!function(t,
|
|
1
|
+
!function(t,o,r,e,a){const n={textColor:o.FtCssVariableFactory.extend("--ft-toggle-text-color","",o.designSystemVariables.colorOnSurfaceHigh),onColor:o.FtCssVariableFactory.extend("--ft-toggle-on-color","",o.designSystemVariables.colorPrimary),offColor:o.FtCssVariableFactory.create("--ft-toggle-off-color","","COLOR","#e0e0e0"),handleColor:o.FtCssVariableFactory.extend("--ft-toggle-handle-color","",o.designSystemVariables.colorOnPrimary)},i=r.css`
|
|
2
2
|
.ft-toggle {
|
|
3
3
|
cursor: pointer;
|
|
4
4
|
position: relative;
|
|
5
5
|
display: flex;
|
|
6
6
|
align-items: center;
|
|
7
7
|
gap: 8px;
|
|
8
|
-
color: ${
|
|
8
|
+
color: ${n.textColor};
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
.ft-toggle.ft-toggle--disabled {
|
|
12
|
-
cursor: default;
|
|
12
|
+
cursor: default;
|
|
13
13
|
}
|
|
14
|
-
|
|
14
|
+
|
|
15
15
|
.ft-toggle.ft-toggle--disabled .ft-toggle-background {
|
|
16
16
|
opacity: .3;
|
|
17
17
|
}
|
|
18
|
-
|
|
18
|
+
|
|
19
19
|
|
|
20
20
|
input {
|
|
21
21
|
display: none;
|
|
22
22
|
}
|
|
23
23
|
|
|
24
24
|
.ft-toggle-background {
|
|
25
|
-
background-color: ${
|
|
25
|
+
background-color: ${n.offColor};
|
|
26
26
|
border-radius: 1.25rem;
|
|
27
27
|
width: 44px;
|
|
28
28
|
height: 24px;
|
|
29
29
|
display: flex;
|
|
30
30
|
align-items: center;
|
|
31
|
-
}
|
|
31
|
+
}
|
|
32
32
|
|
|
33
33
|
.ft-toggle--checked .ft-toggle-background {
|
|
34
|
-
background-color: ${
|
|
34
|
+
background-color: ${n.onColor};
|
|
35
35
|
}
|
|
36
36
|
|
|
37
37
|
.ft-toggle-handle {
|
|
38
|
-
background-color: ${
|
|
38
|
+
background-color: ${n.handleColor};
|
|
39
39
|
border-radius: 1.25rem;
|
|
40
40
|
width: 20px;
|
|
41
41
|
height: 20px;
|
|
@@ -54,116 +54,123 @@
|
|
|
54
54
|
* @license
|
|
55
55
|
* Copyright 2017 Google LLC
|
|
56
56
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
57
|
-
*/;var l;const
|
|
57
|
+
*/;var l;const c=window,p=c.trustedTypes,f=p?p.createPolicy("lit-html",{createHTML:t=>t}):void 0,g="$lit$",y=`lit$${(Math.random()+"").slice(9)}$`,s="?"+y,d=`<${s}>`,h=document,b=()=>h.createComment(""),m=t=>null===t||"object"!=typeof t&&"function"!=typeof t,u=Array.isArray,O="[ \t\n\f\r]",N=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,S=/-->/g,C=/>/g,x=RegExp(`>|${O}(?:([^\\s"'>=/]+)(${O}*=${O}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),I=/'/g,U=/"/g,R=/^(?:script|style|textarea|title)$/i,W=(t=>(o,...r)=>({_$litType$:t,strings:o,values:r}))(1),v=Symbol.for("lit-noChange"),E=Symbol.for("lit-nothing"),L=new WeakMap,w=h.createTreeWalker(h,129,null,!1),K=(t,o)=>{const r=t.length-1,e=[];let a,n=2===o?"<svg>":"",i=N;for(let o=0;o<r;o++){const r=t[o];let l,c,p=-1,f=0;for(;f<r.length&&(i.lastIndex=f,c=i.exec(r),null!==c);)f=i.lastIndex,i===N?"!--"===c[1]?i=S:void 0!==c[1]?i=C:void 0!==c[2]?(R.test(c[2])&&(a=RegExp("</"+c[2],"g")),i=x):void 0!==c[3]&&(i=x):i===x?">"===c[0]?(i=null!=a?a:N,p=-1):void 0===c[1]?p=-2:(p=i.lastIndex-c[2].length,l=c[1],i=void 0===c[3]?x:'"'===c[3]?U:I):i===U||i===I?i=x:i===S||i===C?i=N:(i=x,a=void 0);const s=i===x&&t[o+1].startsWith("/>")?" ":"";n+=i===N?r+d:p>=0?(e.push(l),r.slice(0,p)+g+r.slice(p)+y+s):r+y+(-2===p?(e.push(void 0),o):s)}const l=n+(t[r]||"<?>")+(2===o?"</svg>":"");if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return[void 0!==f?f.createHTML(l):l,e]};class ${constructor({strings:t,_$litType$:o},r){let e;this.parts=[];let a=0,n=0;const i=t.length-1,l=this.parts,[c,f]=K(t,o);if(this.el=$.createElement(c,r),w.currentNode=this.el.content,2===o){const t=this.el.content,o=t.firstChild;o.remove(),t.append(...o.childNodes)}for(;null!==(e=w.nextNode())&&l.length<i;){if(1===e.nodeType){if(e.hasAttributes()){const t=[];for(const o of e.getAttributeNames())if(o.endsWith(g)||o.startsWith(y)){const r=f[n++];if(t.push(o),void 0!==r){const t=e.getAttribute(r.toLowerCase()+g).split(y),o=/([.?@])?(.*)/.exec(r);l.push({type:1,index:a,name:o[2],strings:t,ctor:"."===o[1]?D:"?"===o[1]?A:"@"===o[1]?H:F})}else l.push({type:6,index:a})}for(const o of t)e.removeAttribute(o)}if(R.test(e.tagName)){const t=e.textContent.split(y),o=t.length-1;if(o>0){e.textContent=p?p.emptyScript:"";for(let r=0;r<o;r++)e.append(t[r],b()),w.nextNode(),l.push({type:2,index:++a});e.append(t[o],b())}}}else if(8===e.nodeType)if(e.data===s)l.push({type:2,index:a});else{let t=-1;for(;-1!==(t=e.data.indexOf(y,t+1));)l.push({type:7,index:a}),t+=y.length-1}a++}}static createElement(t,o){const r=h.createElement("template");return r.innerHTML=t,r}}function Z(t,o,r=t,e){var a,n,i,l;if(o===v)return o;let c=void 0!==e?null===(a=r._$Co)||void 0===a?void 0:a[e]:r._$Cl;const p=m(o)?void 0:o._$litDirective$;return(null==c?void 0:c.constructor)!==p&&(null===(n=null==c?void 0:c._$AO)||void 0===n||n.call(c,!1),void 0===p?c=void 0:(c=new p(t),c._$AT(t,r,e)),void 0!==e?(null!==(i=(l=r)._$Co)&&void 0!==i?i:l._$Co=[])[e]=c:r._$Cl=c),void 0!==c&&(o=Z(t,c._$AS(t,o.values),c,e)),o}class k{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){var o;const{el:{content:r},parts:e}=this._$AD,a=(null!==(o=null==t?void 0:t.creationScope)&&void 0!==o?o:h).importNode(r,!0);w.currentNode=a;let n=w.nextNode(),i=0,l=0,c=e[0];for(;void 0!==c;){if(i===c.index){let o;2===c.type?o=new z(n,n.nextSibling,this,t):1===c.type?o=new c.ctor(n,c.name,c.strings,this,t):6===c.type&&(o=new G(n,this,t)),this._$AV.push(o),c=e[++l]}i!==(null==c?void 0:c.index)&&(n=w.nextNode(),i++)}return a}v(t){let o=0;for(const r of this._$AV)void 0!==r&&(void 0!==r.strings?(r._$AI(t,r,o),o+=r.strings.length-2):r._$AI(t[o])),o++}}class z{constructor(t,o,r,e){var a;this.type=2,this._$AH=E,this._$AN=void 0,this._$AA=t,this._$AB=o,this._$AM=r,this.options=e,this._$Cp=null===(a=null==e?void 0:e.isConnected)||void 0===a||a}get _$AU(){var t,o;return null!==(o=null===(t=this._$AM)||void 0===t?void 0:t._$AU)&&void 0!==o?o:this._$Cp}get parentNode(){let t=this._$AA.parentNode;const o=this._$AM;return void 0!==o&&11===(null==t?void 0:t.nodeType)&&(t=o.parentNode),t}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(t,o=this){t=Z(this,t,o),m(t)?t===E||null==t||""===t?(this._$AH!==E&&this._$AR(),this._$AH=E):t!==this._$AH&&t!==v&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>u(t)||"function"==typeof(null==t?void 0: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!==E&&m(this._$AH)?this._$AA.nextSibling.data=t:this.$(h.createTextNode(t)),this._$AH=t}g(t){var o;const{values:r,_$litType$:e}=t,a="number"==typeof e?this._$AC(t):(void 0===e.el&&(e.el=$.createElement(e.h,this.options)),e);if((null===(o=this._$AH)||void 0===o?void 0:o._$AD)===a)this._$AH.v(r);else{const t=new k(a,this),o=t.u(this.options);t.v(r),this.$(o),this._$AH=t}}_$AC(t){let o=L.get(t.strings);return void 0===o&&L.set(t.strings,o=new $(t)),o}T(t){u(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let r,e=0;for(const a of t)e===o.length?o.push(r=new z(this.k(b()),this.k(b()),this,this.options)):r=o[e],r._$AI(a),e++;e<o.length&&(this._$AR(r&&r._$AB.nextSibling,e),o.length=e)}_$AR(t=this._$AA.nextSibling,o){var r;for(null===(r=this._$AP)||void 0===r||r.call(this,!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){var o;void 0===this._$AM&&(this._$Cp=t,null===(o=this._$AP)||void 0===o||o.call(this,t))}}class F{constructor(t,o,r,e,a){this.type=1,this._$AH=E,this._$AN=void 0,this.element=t,this.name=o,this._$AM=e,this.options=a,r.length>2||""!==r[0]||""!==r[1]?(this._$AH=Array(r.length-1).fill(new String),this.strings=r):this._$AH=E}get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}_$AI(t,o=this,r,e){const a=this.strings;let n=!1;if(void 0===a)t=Z(this,t,o,0),n=!m(t)||t!==this._$AH&&t!==v,n&&(this._$AH=t);else{const e=t;let i,l;for(t=a[0],i=0;i<a.length-1;i++)l=Z(this,e[r+i],o,i),l===v&&(l=this._$AH[i]),n||(n=!m(l)||l!==this._$AH[i]),l===E?t=E:t!==E&&(t+=(null!=l?l:"")+a[i+1]),this._$AH[i]=l}n&&!e&&this.j(t)}j(t){t===E?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,null!=t?t:"")}}class D extends F{constructor(){super(...arguments),this.type=3}j(t){this.element[this.name]=t===E?void 0:t}}const B=p?p.emptyScript:"";class A extends F{constructor(){super(...arguments),this.type=4}j(t){t&&t!==E?this.element.setAttribute(this.name,B):this.element.removeAttribute(this.name)}}class H extends F{constructor(t,o,r,e,a){super(t,o,r,e,a),this.type=5}_$AI(t,o=this){var r;if((t=null!==(r=Z(this,t,o,0))&&void 0!==r?r:E)===v)return;const e=this._$AH,a=t===E&&e!==E||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,n=t!==E&&(e===E||a);a&&this.element.removeEventListener(this.name,this,e),n&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){var o,r;"function"==typeof this._$AH?this._$AH.call(null!==(r=null===(o=this.options)||void 0===o?void 0:o.host)&&void 0!==r?r:this.element,t):this._$AH.handleEvent(t)}}class G{constructor(t,o,r){this.element=t,this.type=6,this._$AN=void 0,this._$AM=o,this.options=r}get _$AU(){return this._$AM._$AU}_$AI(t){Z(this,t)}}const P=c.litHtmlPolyfillSupport;null==P||P($,z),(null!==(l=c.litHtmlVersions)&&void 0!==l?l:c.litHtmlVersions=[]).push("2.7.3");
|
|
58
58
|
/**
|
|
59
59
|
* @license
|
|
60
60
|
* Copyright 2020 Google LLC
|
|
61
61
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
62
62
|
*/
|
|
63
|
-
const L=Symbol.for(""),F=t=>{if((null==t?void 0:t.r)===L)return null==t?void 0:t._$litStatic$},q=t=>({_$litStatic$:t,r:L}),D=new Map,J=(t=>(i,...o)=>{const e=o.length;let n,s;const r=[],l=[];let h,a=0,f=!1;for(;a<e;){for(h=i[a];a<e&&void 0!==(s=o[a],n=F(s));)h+=n+i[++a],f=!0;a!==e&&l.push(s),r.push(h),a++}if(a===e&&r.push(i[e]),f){const t=r.join("$$lit$$");void 0===(i=D.get(t))&&(r.raw=r,D.set(t,i=r)),o=l}return t(i,...o)})(N);var P;!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"}(P||(P={}));const Q=i.FtCssVariableFactory.extend("--ft-typography-font-family",i.designSystemVariables.titleFont),V=i.FtCssVariableFactory.extend("--ft-typography-font-family",i.designSystemVariables.contentFont),X={fontFamily:V,fontSize:i.FtCssVariableFactory.create("--ft-typography-font-size","SIZE","16px"),fontWeight:i.FtCssVariableFactory.create("--ft-typography-font-weight","UNKNOWN","normal"),letterSpacing:i.FtCssVariableFactory.create("--ft-typography-letter-spacing","SIZE","0.496px"),lineHeight:i.FtCssVariableFactory.create("--ft-typography-line-height","NUMBER","1.5"),textTransform:i.FtCssVariableFactory.create("--ft-typography-text-transform","UNKNOWN","inherit")},Y=i.FtCssVariableFactory.extend("--ft-typography-title-font-family",Q),tt=i.FtCssVariableFactory.extend("--ft-typography-title-font-size",X.fontSize,"20px"),it=i.FtCssVariableFactory.extend("--ft-typography-title-font-weight",X.fontWeight,"normal"),ot=i.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing",X.letterSpacing,"0.15px"),et=i.FtCssVariableFactory.extend("--ft-typography-title-line-height",X.lineHeight,"1.2"),nt=i.FtCssVariableFactory.extend("--ft-typography-title-text-transform",X.textTransform,"inherit"),st=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family",Q),rt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size",X.fontSize,"14px"),lt=i.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight",X.fontWeight,"normal"),ht=i.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing",X.letterSpacing,"0.105px"),at=i.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height",X.lineHeight,"1.7"),ft=i.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform",X.textTransform,"inherit"),pt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family",V),gt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size",X.fontSize,"16px"),yt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight",X.fontWeight,"600"),ct=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing",X.letterSpacing,"0.144px"),dt=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height",X.lineHeight,"1.5"),ut=i.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform",X.textTransform,"inherit"),$t=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family",V),vt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size",X.fontSize,"14px"),bt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight",X.fontWeight,"normal"),mt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing",X.letterSpacing,"0.098px"),xt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height",X.lineHeight,"1.7"),wt=i.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform",X.textTransform,"inherit"),zt=i.FtCssVariableFactory.extend("--ft-typography-body1-font-family",V),kt=i.FtCssVariableFactory.extend("--ft-typography-body1-font-size",X.fontSize,"16px"),At=i.FtCssVariableFactory.extend("--ft-typography-body1-font-weight",X.fontWeight,"normal"),_t=i.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing",X.letterSpacing,"0.496px"),Nt=i.FtCssVariableFactory.extend("--ft-typography-body1-line-height",X.lineHeight,"1.5"),Ct=i.FtCssVariableFactory.extend("--ft-typography-body1-text-transform",X.textTransform,"inherit"),St=i.FtCssVariableFactory.extend("--ft-typography-body2-font-family",V),Et=i.FtCssVariableFactory.extend("--ft-typography-body2-font-size",X.fontSize,"14px"),jt=i.FtCssVariableFactory.extend("--ft-typography-body2-font-weight",X.fontWeight,"normal"),Ot=i.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing",X.letterSpacing,"0.252px"),Ut=i.FtCssVariableFactory.extend("--ft-typography-body2-line-height",X.lineHeight,"1.4"),It=i.FtCssVariableFactory.extend("--ft-typography-body2-text-transform",X.textTransform,"inherit"),Tt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-family",V),Mt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-size",X.fontSize,"12px"),Rt=i.FtCssVariableFactory.extend("--ft-typography-caption-font-weight",X.fontWeight,"normal"),Gt=i.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing",X.letterSpacing,"0.396px"),Wt=i.FtCssVariableFactory.extend("--ft-typography-caption-line-height",X.lineHeight,"1.33"),Zt=i.FtCssVariableFactory.extend("--ft-typography-caption-text-transform",X.textTransform,"inherit"),Bt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family",V),Ht=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size",X.fontSize,"10px"),Kt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight",X.fontWeight,"normal"),Lt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing",X.letterSpacing,"0.33px"),Ft=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height",X.lineHeight,"1.6"),qt=i.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform",X.textTransform,"inherit"),Dt=i.FtCssVariableFactory.extend("--ft-typography-overline-font-family",V),Jt=i.FtCssVariableFactory.extend("--ft-typography-overline-font-size",X.fontSize,"10px"),Pt=i.FtCssVariableFactory.extend("--ft-typography-overline-font-weight",X.fontWeight,"normal"),Qt=i.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing",X.letterSpacing,"1.5px"),Vt=i.FtCssVariableFactory.extend("--ft-typography-overline-line-height",X.lineHeight,"1.6"),Xt=i.FtCssVariableFactory.extend("--ft-typography-overline-text-transform",X.textTransform,"uppercase"),Yt=i.FtCssVariableFactory.extend("--ft-typography-button-font-family",V),ti=i.FtCssVariableFactory.extend("--ft-typography-button-font-size",X.fontSize,"14px"),ii=i.FtCssVariableFactory.extend("--ft-typography-button-font-weight",X.fontWeight,"600"),oi=i.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing",X.letterSpacing,"1.246px"),ei=i.FtCssVariableFactory.extend("--ft-typography-button-line-height",X.lineHeight,"1.15"),ni=i.FtCssVariableFactory.extend("--ft-typography-button-text-transform",X.textTransform,"uppercase"),si=o.css`
|
|
63
|
+
const Y=Symbol.for(""),_=t=>{if((null==t?void 0:t.r)===Y)return null==t?void 0:t._$litStatic$},M=t=>({_$litStatic$:t,r:Y}),j=new Map,T=(t=>(o,...r)=>{const e=r.length;let a,n;const i=[],l=[];let c,p=0,f=!1;for(;p<e;){for(c=o[p];p<e&&void 0!==(n=r[p],a=_(n));)c+=a+o[++p],f=!0;p!==e&&l.push(n),i.push(c),p++}if(p===e&&i.push(o[e]),f){const t=i.join("$$lit$$");void 0===(o=j.get(t))&&(i.raw=i,j.set(t,o=i)),r=l}return t(o,...r)})(W);var X;!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"}(X||(X={}));const q=t=>"string"==typeof t?r.unsafeCSS(t):t;class J{static create(t,o,e,a){const n=t=>q(null!=t?t:a),i=r.css`var(${q(t)}, ${n(a)})`;return i.name=t,i.description=t,i.category=e,i.defaultValue=a,i.defaultCssValue=n,i.get=o=>r.css`var(${q(t)}, ${n(o)})`,i.breadcrumb=()=>[],i.lastResortDefaultValue=()=>a,i}static extend(t,o,e,a){const n=t=>e.get(null!=t?t:a),i=r.css`var(${q(t)}, ${n(a)})`;return i.name=t,i.description=o,i.category=e.category,i.fallbackVariable=e,i.defaultValue=a,i.defaultCssValue=n,i.get=o=>r.css`var(${q(t)}, ${n(o)})`,i.breadcrumb=()=>[e.name,...e.breadcrumb()],i.lastResortDefaultValue=()=>null!=a?a:e.lastResortDefaultValue(),i}static external(t,o){const e=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):q(null!=o?o:t.lastResortDefaultValue()),a=r.css`var(${q(t.name)}, ${e(t.defaultValue)})`;return a.name=t.name,a.category=t.category,a.fallbackVariable=t.fallbackVariable,a.defaultValue=t.defaultValue,a.context=o,a.defaultCssValue=e,a.get=o=>r.css`var(${q(t.name)}, ${e(o)})`,a.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>t.lastResortDefaultValue(),a}}const Q={colorWhite:J.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:J.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:J.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:J.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:J.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:J.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:J.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:J.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:J.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:J.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:J.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:J.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:J.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:J.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:J.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:J.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:J.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:J.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:J.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:J.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:J.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:J.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:J.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:J.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:J.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:J.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:J.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:J.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:J.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:J.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:J.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:J.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:J.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:J.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:J.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:J.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:J.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:J.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:J.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:J.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:J.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:J.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:J.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:J.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:J.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:J.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:J.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:J.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:J.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:J.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:J.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:J.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:J.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:J.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:J.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:J.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:J.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:J.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:J.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:J.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:J.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:J.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:J.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:J.create("--ft-color-orange-0","","COLOR","#ee8d17"),colorOrange10:J.create("--ft-color-orange-10","","COLOR","#fef6ec"),colorOrange20:J.create("--ft-color-orange-20","","COLOR","#fbe7cd"),colorOrange30:J.create("--ft-color-orange-30","","COLOR","#f9d8af"),colorOrange40:J.create("--ft-color-orange-40","","COLOR","#f7c991"),colorOrange50:J.create("--ft-color-orange-50","","COLOR","#f5ba72"),colorOrange60:J.create("--ft-color-orange-60","","COLOR","#f2ab54"),colorOrange70:J.create("--ft-color-orange-70","","COLOR","#f09c35"),colorOrange100:J.create("--ft-color-orange-100","","COLOR","#cf7b14"),colorOrange200:J.create("--ft-color-orange-200","","COLOR","#b06811"),colorOrange300:J.create("--ft-color-orange-300","","COLOR","#90560e"),colorOrange400:J.create("--ft-color-orange-400","","COLOR","#71430b"),colorOrange500:J.create("--ft-color-orange-500","","COLOR","#523108"),colorOrange600:J.create("--ft-color-orange-600","","COLOR","#331e05"),colorOrange700:J.create("--ft-color-orange-700","","COLOR","#140c02"),colorRed0:J.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:J.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:J.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:J.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:J.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:J.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:J.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:J.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:J.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:J.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:J.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:J.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:J.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:J.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:J.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:J.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:J.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:J.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:J.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:J.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:J.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:J.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:J.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:J.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:J.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:J.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:J.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:J.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:J.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:J.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:J.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:J.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:J.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:J.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:J.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:J.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:J.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:J.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:J.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:J.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:J.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:J.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:J.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:J.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:J.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:J.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:J.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:J.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:J.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:J.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:J.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:J.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:J.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:J.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:J.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:J.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:J.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:J.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:J.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:J.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:J.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:J.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:J.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:J.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:J.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:J.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:J.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:J.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:J.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:J.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:J.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:J.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:J.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:J.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:J.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:J.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:J.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:J.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:J.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:J.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:J.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:J.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:J.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:J.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:J.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:J.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:J.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:J.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:J.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:J.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:J.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:J.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:J.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:J.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:J.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:J.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:J.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:J.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:J.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:J.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:J.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:J.create("--ft-icon-size-6","","SIZE","48px"),opacity0:J.create("--ft-opacity-0","","NUMBER","0"),opacity8:J.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:J.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:J.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:J.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:J.create("--ft-opacity-80","","NUMBER","0.8")},V={display:{fontFamily:J.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:J.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:J.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:J.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:J.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:J.create("--ft-typography-title-1-fontSize","","SIZE","2rem"),letterSpacing:J.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:J.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:J.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-title-2-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:J.create("--ft-typography-title-2-fontSize","","SIZE","1.5rem"),letterSpacing:J.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:J.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:J.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-title-3-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:J.create("--ft-typography-title-3-fontSize","","SIZE","1.25rem"),letterSpacing:J.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:J.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:J.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:J.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:J.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:J.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:J.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:J.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:J.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:J.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:J.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:J.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-semibold":{fontFamily:J.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:J.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:J.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:J.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:J.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:J.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:J.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:J.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:J.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:J.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:J.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:J.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:J.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:J.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:J.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:J.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:J.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:J.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:J.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:J.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:J.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:J.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:J.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:J.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:J.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:J.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:J.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:J.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:J.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:J.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:J.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:J.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:J.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:J.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:J.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:J.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")}},tt={backgroundActionPrimary:J.extend("--ft-background-action-primary","Used as backgorund of primary action components.",Q.colorBrand0),backgroundErrorPrimary:J.extend("--ft-background-error-primary","Used as background of error components.",Q.colorRed0),backgroundErrorSubtle:J.extend("--ft-background-error-subtle","Used as background of subtle error components.",Q.colorRed10),backgroundInfoPrimary:J.extend("--ft-background-info-primary","Used as background of information components.",Q.colorCyan200),backgroundInfoSubtle:J.extend("--ft-background-info-subtle","Used as background of subtle information components.",Q.colorCyan10),backgroundWarningPrimary:J.extend("--ft-background-warning-primary","Used as background of warning components.",Q.colorOrange300),backgroundWarningSubtle:J.extend("--ft-background-warning-subtle","Used as background of subtle information components.",Q.colorOrange10),backgroundSuccessPrimary:J.extend("--ft-background-success-primary","Used as background of success components.",Q.colorGreen200),backgroundSuccessSubtle:J.extend("--ft-background-success-subtle","Used as background of subtle success components.",Q.colorGreen10),backgroundGlobalSurface:J.extend("--ft-background-global-surface","Used as app background.",Q.colorWhite),backgroundGlobalOnSurface:J.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",Q.colorGray10),backgroundGlobalOnSurfaceDark:J.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",Q.colorGray30),contentActionPrimary:J.extend("--ft-content-action-primary","Used on label of primary action on light surface.",Q.colorBrand0),contentWarningPrimary:J.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",Q.colorOrange300),contentWarningIconOnly:J.extend("--ft-content-warning-icon-only","Used on warning status icons alone",Q.colorOrange0),contentErrorPrimary:J.extend("--ft-content-error-primary","Used on label of error messages on light surface.",Q.colorRed0),contentErrorIconOnly:J.extend("--ft-content-error-icon-only","Used on error status icons alone",Q.colorRed0),contentInfoPrimary:J.extend("--ft-content-info-primary","Used on label of information messages on light surface.",Q.colorCyan200),contentInfoIconOnly:J.extend("--ft-content-info-icon-only","Used on info status icons alone",Q.colorCyan0),contentSuccessIconOnly:J.extend("--ft-content-success-icon-only","Used on success status icons alone",Q.colorGreen0),contentSuccessPrimary:J.extend("--ft-content-success-primary","Used on label of success messages on light surface.",Q.colorGreen200),contentGlobalPrimary:J.extend("--ft-content-global-primary","Used for main content on the page.",Q.colorGray500),contentGlobalSecondary:J.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",Q.colorGray200),contentGlobalSubtle:J.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",Q.colorGray0),contentGlobalOnColor:J.extend("--ft-content-global-on-color","Used for content on a dominant color.",Q.colorWhite),borderActionPrimary:J.extend("--ft-border-action-primary","Used as border for primary action components.",Q.colorBrand0),borderActionFocusRing:J.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",Q.colorCyan0),borderWarningPrimary:J.extend("--ft-border-warning-primary","Used as border for warning components.",Q.colorOrange30),borderSuccessPrimary:J.extend("--ft-border-success-primary","Used as border for success components.",Q.colorGreen30),borderErrorPrimary:J.extend("--ft-border-error-primary","Used as border for error components.",Q.colorRed30),borderInfoPrimary:J.extend("--ft-border-info-primary","Used as border for information components.",Q.colorCyan30),borderGlobalSubtle:J.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",Q.colorGray30),borderGlobalPrimary:J.extend("--ft-border-global-primary","Used as border for element like input.",Q.colorGray50),borderInputPrimary:J.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",Q.colorGray80)};J.create("--ft-button-large-height","","SIZE","40px"),J.extend("--ft-button-large-horizontal-padding","",Q.spacing4),J.extend("--ft-button-large-gap","",Q.spacing2),J.extend("--ft-button-large-border-radius","",Q.borderRadiusS),J.extend("--ft-button-large-icon-size","",Q.iconSize3),J.create("--ft-button-large-border-width","","SIZE","1px"),J.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),J.create("--ft-button-large-focus-outline-width","","SIZE","2px"),J.create("--ft-button-large-icon-only-width","","SIZE","40px"),J.create("--ft-button-small-height","","SIZE","30px"),J.extend("--ft-button-small-horizontal-padding","",Q.spacing3),J.extend("--ft-button-small-gap","",Q.spacing2),J.extend("--ft-button-small-border-radius","",Q.borderRadiusS),J.extend("--ft-button-small-icon-size","",Q.iconSize2),J.create("--ft-button-small-border-width","","SIZE","1px"),J.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),J.create("--ft-button-small-focus-outline-width","","SIZE","2px"),J.create("--ft-button-small-icon-only-width","","SIZE","30px"),J.extend("--ft-button-primary-background-color","",tt.backgroundActionPrimary),J.extend("--ft-button-primary-color","",tt.contentGlobalOnColor),J.extend("--ft-button-primary-icon-color","",tt.contentGlobalOnColor),J.extend("--ft-button-primary-state-layer-color","",tt.contentGlobalOnColor),J.extend("--ft-button-primary-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-button-primary-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-button-primary-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-button-primary-component-opacity-disabled","",Q.opacity40),J.extend("--ft-button-focus-focus-ring-color","",tt.borderActionFocusRing),J.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),J.extend("--ft-button-tertiary-color","",tt.contentActionPrimary),J.extend("--ft-button-tertiary-icon-color","",tt.contentActionPrimary),J.extend("--ft-button-tertiary-state-layer-color","",tt.contentActionPrimary),J.extend("--ft-button-tertiary-state-layer-opacity-hover","",Q.opacity8),J.extend("--ft-button-tertiary-state-layer-opacity-focus","",Q.opacity8),J.extend("--ft-button-tertiary-state-layer-opacity-active","",Q.opacity16),J.extend("--ft-button-tertiary-component-opacity-disabled","",Q.opacity40),J.extend("--ft-button-secondary-background-color","",Q.colorWhite),J.extend("--ft-button-secondary-color","",tt.contentActionPrimary),J.extend("--ft-button-secondary-icon-color","",tt.contentActionPrimary),J.extend("--ft-button-secondary-state-layer-color","",tt.contentActionPrimary),J.extend("--ft-button-secondary-state-layer-opacity-hover","",Q.opacity8),J.extend("--ft-button-secondary-state-layer-opacity-focus","",Q.opacity8),J.extend("--ft-button-secondary-state-layer-opacity-active","",Q.opacity16),J.extend("--ft-button-secondary-component-opacity-disabled","",Q.opacity40),J.extend("--ft-button-secondary-border-color","",tt.borderActionPrimary),J.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),J.extend("--ft-button-neutral-icon-color","",tt.contentGlobalSecondary),J.extend("--ft-button-neutral-color","",tt.contentGlobalSecondary),J.extend("--ft-button-neutral-state-layer-color","",tt.contentGlobalSecondary),J.extend("--ft-button-neutral-state-layer-opacity-hover","",Q.opacity8),J.extend("--ft-button-neutral-state-layer-opacity-focus","",Q.opacity8),J.extend("--ft-button-neutral-state-layer-opacity-active","",Q.opacity16),J.extend("--ft-button-neutral-component-opacity-disabled","",Q.opacity40),J.extend("--ft-tabs-top-left-border-radius","",Q.borderRadiusS),J.extend("--ft-tabs-top-right-border-radius","",Q.borderRadiusS),J.extend("--ft-tabs-label-horizontal-padding","",Q.spacing4),J.extend("--ft-tabs-label-vertical-padding","",Q.spacing3),J.extend("--ft-tabs-label-gap","",Q.spacing1),J.extend("--ft-switch-group-horizontal-padding","",Q.spacing1),J.extend("--ft-switch-group-vertical-padding","",Q.spacing1),J.extend("--ft-switch-group-gap","",Q.spacing1),J.extend("--ft-switch-group-background-color","",tt.backgroundGlobalSurface),J.extend("--ft-switch-group-border-color","",tt.borderGlobalSubtle),J.create("--ft-switch-group-border-radius","","SIZE","6px"),J.extend("--ft-switch-label-horizontal-padding","",Q.spacing2),J.extend("--ft-switch-label-vertical-padding","",Q.spacing1),J.extend("--ft-switch-icon-horizontal-padding","",Q.spacing1),J.extend("--ft-switch-icon-vertical-padding","",Q.spacing1),J.create("--ft-switch-focus-outline-width","","SIZE","2px"),J.extend("--ft-switch-focus-focus-ring-color","",tt.borderActionFocusRing),J.extend("--ft-switch-option-border-radius","",Q.borderRadiusS),J.extend("--ft-switch-off-state-layer-opacity-hover","",Q.opacity8),J.extend("--ft-switch-off-state-layer-opacity-focus","",Q.opacity8),J.extend("--ft-switch-off-state-layer-opacity-active","",Q.opacity16),J.extend("--ft-switch-off-component-opacity-disabled","",Q.opacity40),J.extend("--ft-switch-off-color","",tt.contentGlobalSubtle),J.extend("--ft-switch-off-state-layer-color","",tt.contentGlobalSubtle),J.extend("--ft-chart-1-light","for area color charts",Q.colorBrand40),J.extend("--ft-chart-1-base","for line charts",Q.colorBrand0),J.extend("--ft-chart-2-light","for area color charts",Q.colorYellow60),J.extend("--ft-chart-2-base","for line charts",Q.colorYellow100),J.extend("--ft-chart-3-light","",Q.colorUltramarine40),J.extend("--ft-chart-3-base","",Q.colorUltramarine70),J.extend("--ft-chart-4-light","",Q.colorCyan50),J.extend("--ft-chart-4-base","",Q.colorCyan100),J.extend("--ft-chart-5-light","",Q.colorRed40),J.extend("--ft-chart-5-base","",Q.colorRed60),J.extend("--ft-chart-6-light","",Q.colorGreen40),J.extend("--ft-chart-6-base","",Q.colorGreen70),J.extend("--ft-chart-7-light","",Q.colorOrange70),J.extend("--ft-chart-7-base","",Q.colorOrange100),J.extend("--ft-chart-8-light","",Q.colorAvocado70),J.extend("--ft-chart-8-base","",Q.colorAvocado200),J.extend("--ft-chart-9-light","",Q.colorBrown50),J.extend("--ft-chart-9-base","",Q.colorBrown200),J.extend("--ft-chart-10-light","",Q.colorGray50),J.extend("--ft-chart-10-base","",Q.colorGray80),J.extend("--ft-chart-monochrome-10","",Q.colorBrand10),J.extend("--ft-chart-monochrome-20","",Q.colorBrand20),J.extend("--ft-chart-monochrome-30","",Q.colorBrand40),J.extend("--ft-chart-monochrome-40","",Q.colorBrand60),J.extend("--ft-chart-monochrome-50","",Q.colorBrand0),J.extend("--ft-chart-monochrome-60","",Q.colorBrand200),J.extend("--ft-chip-large-horizontal-padding","",Q.spacing4),J.extend("--ft-chip-large-vertical-padding","",Q.spacing2),J.extend("--ft-chip-large-gap","",Q.spacing1),J.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),J.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),J.extend("--ft-chip-large-border-radius","",Q.borderRadiusPill),J.create("--ft-chip-large-border-width","","SIZE","1px"),J.extend("--ft-chip-large-icon-size","",Q.iconSize3),J.extend("--ft-chip-medium-horizontal-padding","",Q.spacing3),J.extend("--ft-chip-medium-vertical-padding","",Q.spacing1),J.extend("--ft-chip-medium-gap","",Q.spacing1),J.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),J.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),J.extend("--ft-chip-medium-border-radius","",Q.borderRadiusPill),J.create("--ft-chip-medium-border-width","","SIZE","1px"),J.extend("--ft-chip-medium-icon-size","",Q.iconSize2),J.extend("--ft-chip-small-horizontal-padding","",Q.spacing2),J.extend("--ft-chip-small-vertical-padding","",Q.spacing05),J.extend("--ft-chip-small-gap","",Q.spacing1),J.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),J.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),J.extend("--ft-chip-small-border-radius","",Q.borderRadiusPill),J.create("--ft-chip-small-border-width","","SIZE","1px"),J.extend("--ft-chip-small-icon-size","",Q.iconSize1),J.extend("--ft-chip-neutral-background-color","",tt.backgroundGlobalOnSurface),J.extend("--ft-chip-neutral-color","",tt.contentGlobalPrimary),J.extend("--ft-chip-neutral-border-color","",tt.borderGlobalSubtle),J.extend("--ft-chip-info-background-color","",tt.backgroundInfoSubtle),J.extend("--ft-chip-info-color","",tt.contentInfoPrimary),J.extend("--ft-chip-info-border-color","",tt.borderInfoPrimary),J.extend("--ft-chip-success-background-color","",tt.backgroundSuccessSubtle),J.extend("--ft-chip-success-color","",tt.contentSuccessPrimary),J.extend("--ft-chip-success-border-color","",tt.borderSuccessPrimary),J.extend("--ft-chip-warning-background-color","",tt.backgroundWarningSubtle),J.extend("--ft-chip-warning-color","",tt.contentWarningPrimary),J.extend("--ft-chip-warning-border-color","",tt.borderWarningPrimary),J.extend("--ft-chip-error-background-color","",tt.backgroundErrorSubtle),J.extend("--ft-chip-error-color","",tt.contentErrorPrimary),J.extend("--ft-chip-error-border-color","",tt.borderErrorPrimary),J.create("--ft-notice-border-width","","SIZE","1px"),J.extend("--ft-notice-horizontal-padding","",Q.spacing2),J.extend("--ft-notice-vertical-padding","",Q.spacing1),J.extend("--ft-notice-border-radius","",Q.borderRadiusS),J.extend("--ft-notice-gap","",Q.spacing2),J.extend("--ft-notice-icon-size","",Q.iconSize3),J.extend("--ft-notice-info-background-color","",tt.backgroundInfoSubtle),J.extend("--ft-notice-info-border-color","",tt.borderInfoPrimary),J.extend("--ft-notice-info-color","",tt.contentInfoPrimary),J.extend("--ft-notice-warning-background-color","",tt.backgroundWarningSubtle),J.extend("--ft-notice-warning-border-color","",tt.borderWarningPrimary),J.extend("--ft-notice-warning-color","",tt.contentWarningPrimary),J.extend("--ft-checkbox-label-color","",tt.contentGlobalPrimary),J.extend("--ft-checkbox-checked-background-color","",tt.contentActionPrimary),J.extend("--ft-checkbox-checked-state-layer-color","",tt.contentActionPrimary),J.extend("--ft-checkbox-checked-color","",tt.contentGlobalOnColor),J.extend("--ft-checkbox-checked-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-checkbox-checked-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-checkbox-checked-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-checkbox-checked-component-opacity-disabled","",Q.opacity40),J.extend("--ft-checkbox-unchecked-border-color","",Q.colorGray80),J.extend("--ft-checkbox-unchecked-state-layer-color","",Q.colorGray80),J.extend("--ft-checkbox-unchecked-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-checkbox-unchecked-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-checkbox-unchecked-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-checkbox-unchecked-component-opacity-disabled","",Q.opacity40),J.extend("--ft-checkbox-focus-focus-ring-color","",tt.borderActionFocusRing),J.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),J.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),J.extend("--ft-checkbox-gap","",Q.spacing3),J.extend("--ft-toggle-off-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-toggle-off-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-toggle-off-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-toggle-off-component-opacity-disabled","",Q.opacity40),J.extend("--ft-toggle-off-background-color","",tt.contentGlobalSubtle),J.extend("--ft-toggle-off-icon-color","",tt.contentGlobalSubtle),J.extend("--ft-toggle-off-state-layer-color","",tt.contentGlobalSubtle),J.extend("--ft-toggle-on-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-toggle-on-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-toggle-on-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-toggle-on-component-opacity-disabled","",Q.opacity40),J.extend("--ft-toggle-on-background-color","",tt.contentActionPrimary),J.extend("--ft-toggle-on-icon-color","",tt.contentActionPrimary),J.extend("--ft-toggle-on-state-layer-color","",tt.contentActionPrimary),J.extend("--ft-toggle-label-color","",tt.contentGlobalPrimary),J.extend("--ft-toggle-focus-focus-ring-color","",tt.borderActionFocusRing),J.extend("--ft-toggle-gap","",Q.spacing3),J.extend("--ft-radio-label-color","",tt.contentGlobalPrimary),J.extend("--ft-radio-selected-color","",tt.contentActionPrimary),J.extend("--ft-radio-selected-state-layer-color","",tt.contentActionPrimary),J.extend("--ft-radio-selected-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-radio-selected-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-radio-selected-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-radio-selected-component-opacity-disabled","",Q.opacity40),J.extend("--ft-radio-unselected-state-layer-color","",Q.colorGray80),J.extend("--ft-radio-unselected-state-layer-opacity-hover","",Q.opacity16),J.extend("--ft-radio-unselected-state-layer-opacity-focus","",Q.opacity16),J.extend("--ft-radio-unselected-state-layer-opacity-active","",Q.opacity24),J.extend("--ft-radio-unselected-component-opacity-disabled","",Q.opacity40),J.extend("--ft-radio-focus-focus-ring-color","",tt.borderActionFocusRing),J.create("--ft-radio-focus-outline-offset","","SIZE","3px"),J.create("--ft-radio-focus-outline-width","","SIZE","2px"),J.extend("--ft-radio-gap","",Q.spacing3),J.extend("--ft-notification-icon-size","",Q.iconSize4),J.extend("--ft-notification-horizontal-padding","",Q.spacing4),J.extend("--ft-notification-vertical-padding","",Q.spacing4),J.extend("--ft-notification-info-background-color","",tt.backgroundInfoSubtle),J.extend("--ft-notification-info-color","",tt.contentInfoPrimary),J.extend("--ft-notification-info-border-color","",tt.borderInfoPrimary),J.extend("--ft-notification-success-background-color","",tt.backgroundSuccessSubtle),J.extend("--ft-notification-success-color","",tt.contentSuccessPrimary),J.extend("--ft-notification-success-border-color","",tt.borderSuccessPrimary),J.extend("--ft-notification-warning-background-color","",tt.backgroundWarningSubtle),J.extend("--ft-notification-warning-color","",tt.contentWarningPrimary),J.extend("--ft-notification-warning-border-color","",tt.borderWarningPrimary),J.extend("--ft-notification-error-background-color","",tt.backgroundErrorSubtle),J.extend("--ft-notification-error-color","",tt.contentErrorPrimary),J.extend("--ft-notification-error-border-color","",tt.borderErrorPrimary),J.extend("--ft-notification-border-radius","",Q.borderRadiusPill),J.create("--ft-notification-border-width","","SIZE","1px"),J.extend("--ft-notification-gap-leading","",Q.spacing2),J.extend("--ft-notification-gap-trailing","",Q.spacing8);const ot=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),rt=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),et={fontFamily:rt,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")},at=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",ot),nt=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",et.fontSize,"20px"),it=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",et.fontWeight,"normal"),lt=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",et.letterSpacing,"0.15px"),ct=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",et.lineHeight,"1.2"),pt=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",et.textTransform,"inherit"),ft=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",ot),gt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",et.fontSize,"14px"),yt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",et.fontWeight,"normal"),st=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",et.letterSpacing,"0.105px"),dt=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",et.lineHeight,"1.7"),ht=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",et.textTransform,"inherit"),bt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",rt),mt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",et.fontSize,"16px"),ut=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",et.fontWeight,"600"),Ot=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",et.letterSpacing,"0.144px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",et.lineHeight,"1.5"),St=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",et.textTransform,"inherit"),Ct=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",rt),xt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",et.fontSize,"14px"),It=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",et.fontWeight,"normal"),Ut=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",et.letterSpacing,"0.098px"),Rt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",et.lineHeight,"1.7"),Wt=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",et.textTransform,"inherit"),vt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",rt),Et=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",et.fontSize,"16px"),Lt=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",et.fontWeight,"normal"),wt=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",et.letterSpacing,"0.496px"),Kt=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",et.lineHeight,"1.5"),$t=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",et.textTransform,"inherit"),Zt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",rt),kt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",et.fontSize,"14px"),zt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",et.fontWeight,"normal"),Ft=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",et.letterSpacing,"0.252px"),Dt=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",et.lineHeight,"1.4"),Bt=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",et.textTransform,"inherit"),At=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",rt),Ht=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",et.fontSize,"12px"),Gt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",et.fontWeight,"normal"),Pt=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",et.letterSpacing,"0.396px"),Yt=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",et.lineHeight,"1.33"),_t=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",et.textTransform,"inherit"),Mt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",rt),jt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",et.fontSize,"10px"),Tt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",et.fontWeight,"normal"),Xt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",et.letterSpacing,"0.33px"),qt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",et.lineHeight,"1.6"),Jt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",et.textTransform,"inherit"),Qt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",rt),Vt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",et.fontSize,"10px"),to=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",et.fontWeight,"normal"),oo=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",et.letterSpacing,"1.5px"),ro=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",et.lineHeight,"1.6"),eo=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",et.textTransform,"uppercase"),ao=o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",rt),no=o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",et.fontSize,"14px"),io=o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",et.fontWeight,"600"),lo=o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",et.letterSpacing,"1.246px"),co=o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",et.lineHeight,"1.15"),po=o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",et.textTransform,"uppercase"),fo=r.css`
|
|
64
64
|
.ft-typography--title {
|
|
65
|
-
font-family: ${
|
|
66
|
-
font-size: ${
|
|
65
|
+
font-family: ${at};
|
|
66
|
+
font-size: ${nt};
|
|
67
67
|
font-weight: ${it};
|
|
68
|
-
letter-spacing: ${
|
|
69
|
-
line-height: ${
|
|
70
|
-
text-transform: ${
|
|
68
|
+
letter-spacing: ${lt};
|
|
69
|
+
line-height: ${ct};
|
|
70
|
+
text-transform: ${pt};
|
|
71
71
|
}
|
|
72
|
-
`,
|
|
72
|
+
`,go=r.css`
|
|
73
73
|
.ft-typography--title-dense {
|
|
74
|
-
font-family: ${
|
|
75
|
-
font-size: ${rt};
|
|
76
|
-
font-weight: ${lt};
|
|
77
|
-
letter-spacing: ${ht};
|
|
78
|
-
line-height: ${at};
|
|
79
|
-
text-transform: ${ft};
|
|
80
|
-
}
|
|
81
|
-
`,li=o.css`
|
|
82
|
-
.ft-typography--subtitle1 {
|
|
83
|
-
font-family: ${pt};
|
|
74
|
+
font-family: ${ft};
|
|
84
75
|
font-size: ${gt};
|
|
85
76
|
font-weight: ${yt};
|
|
86
|
-
letter-spacing: ${
|
|
77
|
+
letter-spacing: ${st};
|
|
87
78
|
line-height: ${dt};
|
|
88
|
-
text-transform: ${
|
|
79
|
+
text-transform: ${ht};
|
|
80
|
+
}
|
|
81
|
+
`,yo=r.css`
|
|
82
|
+
.ft-typography--subtitle1 {
|
|
83
|
+
font-family: ${bt};
|
|
84
|
+
font-size: ${mt};
|
|
85
|
+
font-weight: ${ut};
|
|
86
|
+
letter-spacing: ${Ot};
|
|
87
|
+
line-height: ${Nt};
|
|
88
|
+
text-transform: ${St};
|
|
89
89
|
}
|
|
90
|
-
`,
|
|
90
|
+
`,so=r.css`
|
|
91
91
|
.ft-typography--subtitle2 {
|
|
92
|
-
font-family: ${
|
|
93
|
-
font-size: ${
|
|
94
|
-
font-weight: ${
|
|
95
|
-
letter-spacing: ${
|
|
96
|
-
line-height: ${
|
|
97
|
-
text-transform: ${
|
|
92
|
+
font-family: ${Ct};
|
|
93
|
+
font-size: ${xt};
|
|
94
|
+
font-weight: ${It};
|
|
95
|
+
letter-spacing: ${Ut};
|
|
96
|
+
line-height: ${Rt};
|
|
97
|
+
text-transform: ${Wt};
|
|
98
98
|
}
|
|
99
99
|
|
|
100
|
-
`,
|
|
100
|
+
`,ho=r.css`
|
|
101
101
|
.ft-typography--body1 {
|
|
102
|
-
font-family: ${
|
|
103
|
-
font-size: ${
|
|
104
|
-
font-weight: ${
|
|
105
|
-
letter-spacing: ${
|
|
106
|
-
line-height: ${
|
|
107
|
-
text-transform: ${
|
|
102
|
+
font-family: ${vt};
|
|
103
|
+
font-size: ${Et};
|
|
104
|
+
font-weight: ${Lt};
|
|
105
|
+
letter-spacing: ${wt};
|
|
106
|
+
line-height: ${Kt};
|
|
107
|
+
text-transform: ${$t};
|
|
108
108
|
}
|
|
109
|
-
`,
|
|
109
|
+
`,bo=r.css`
|
|
110
110
|
.ft-typography--body2 {
|
|
111
|
-
font-family: ${
|
|
112
|
-
font-size: ${
|
|
113
|
-
font-weight: ${
|
|
114
|
-
letter-spacing: ${
|
|
115
|
-
line-height: ${
|
|
116
|
-
text-transform: ${
|
|
111
|
+
font-family: ${Zt};
|
|
112
|
+
font-size: ${kt};
|
|
113
|
+
font-weight: ${zt};
|
|
114
|
+
letter-spacing: ${Ft};
|
|
115
|
+
line-height: ${Dt};
|
|
116
|
+
text-transform: ${Bt};
|
|
117
117
|
}
|
|
118
|
-
`,
|
|
118
|
+
`,mo=r.css`
|
|
119
119
|
.ft-typography--caption {
|
|
120
|
-
font-family: ${
|
|
121
|
-
font-size: ${Mt};
|
|
122
|
-
font-weight: ${Rt};
|
|
123
|
-
letter-spacing: ${Gt};
|
|
124
|
-
line-height: ${Wt};
|
|
125
|
-
text-transform: ${Zt};
|
|
126
|
-
}
|
|
127
|
-
`,gi=o.css`
|
|
128
|
-
.ft-typography--breadcrumb {
|
|
129
|
-
font-family: ${Bt};
|
|
120
|
+
font-family: ${At};
|
|
130
121
|
font-size: ${Ht};
|
|
131
|
-
font-weight: ${
|
|
132
|
-
letter-spacing: ${
|
|
133
|
-
line-height: ${
|
|
134
|
-
text-transform: ${
|
|
122
|
+
font-weight: ${Gt};
|
|
123
|
+
letter-spacing: ${Pt};
|
|
124
|
+
line-height: ${Yt};
|
|
125
|
+
text-transform: ${_t};
|
|
135
126
|
}
|
|
136
|
-
`,
|
|
127
|
+
`,uo=r.css`
|
|
128
|
+
.ft-typography--breadcrumb {
|
|
129
|
+
font-family: ${Mt};
|
|
130
|
+
font-size: ${jt};
|
|
131
|
+
font-weight: ${Tt};
|
|
132
|
+
letter-spacing: ${Xt};
|
|
133
|
+
line-height: ${qt};
|
|
134
|
+
text-transform: ${Jt};
|
|
135
|
+
}
|
|
136
|
+
`,Oo=r.css`
|
|
137
137
|
.ft-typography--overline {
|
|
138
|
-
font-family: ${
|
|
139
|
-
font-size: ${
|
|
140
|
-
font-weight: ${
|
|
141
|
-
letter-spacing: ${
|
|
142
|
-
line-height: ${
|
|
143
|
-
text-transform: ${
|
|
144
|
-
}
|
|
145
|
-
`,
|
|
138
|
+
font-family: ${Qt};
|
|
139
|
+
font-size: ${Vt};
|
|
140
|
+
font-weight: ${to};
|
|
141
|
+
letter-spacing: ${oo};
|
|
142
|
+
line-height: ${ro};
|
|
143
|
+
text-transform: ${eo};
|
|
144
|
+
}
|
|
145
|
+
`,No=r.css`
|
|
146
146
|
.ft-typography--button {
|
|
147
|
-
font-family: ${
|
|
148
|
-
font-size: ${
|
|
149
|
-
font-weight: ${
|
|
150
|
-
letter-spacing: ${
|
|
151
|
-
line-height: ${
|
|
152
|
-
text-transform: ${
|
|
153
|
-
}
|
|
154
|
-
`,
|
|
147
|
+
font-family: ${ao};
|
|
148
|
+
font-size: ${no};
|
|
149
|
+
font-weight: ${io};
|
|
150
|
+
letter-spacing: ${lo};
|
|
151
|
+
line-height: ${co};
|
|
152
|
+
text-transform: ${po};
|
|
153
|
+
}
|
|
154
|
+
`,So=r.css`
|
|
155
155
|
.ft-typography {
|
|
156
156
|
vertical-align: inherit;
|
|
157
157
|
}
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
158
|
+
`,Co=[Object.keys(V).map((t=>function(t){const o=V[t];return r.css`
|
|
159
|
+
font-family: ${o.fontFamily};
|
|
160
|
+
font-size: ${o.fontSize};
|
|
161
|
+
font-weight: ${o.fontWeight};
|
|
162
|
+
letter-spacing: ${o.letterSpacing};
|
|
163
|
+
line-height: ${o.lineHeight};
|
|
164
|
+
text-transform: ${o.textCase};
|
|
165
|
+
`}(t)))];var xo=function(t,o,r,e){for(var a,n=arguments.length,i=n<3?o:null===e?e=Object.getOwnPropertyDescriptor(o,r):e,l=t.length-1;l>=0;l--)(a=t[l])&&(i=(n<3?a(i):n>3?a(o,r,i):a(o,r))||i);return n>3&&i&&Object.defineProperty(o,r,i),i};class Io extends o.FtLitElement{constructor(){super(...arguments),this.variant=X.body1}render(){return this.element?T`
|
|
166
|
+
<${M(this.element)}
|
|
167
|
+
class="ft-typography ft-typography--${this.variant}">
|
|
161
168
|
<slot></slot>
|
|
162
|
-
</${
|
|
163
|
-
`:
|
|
169
|
+
</${M(this.element)}>
|
|
170
|
+
`:T`
|
|
164
171
|
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
165
|
-
`}}
|
|
166
|
-
<label class="${
|
|
172
|
+
`}}Io.styles=[fo,go,yo,so,ho,bo,mo,uo,Oo,No,So,...Co],xo([e.property()],Io.prototype,"element",void 0),xo([e.property()],Io.prototype,"variant",void 0),o.customElement("ft-typography")(Io);var Uo=function(t,o,r,e){for(var a,n=arguments.length,i=n<3?o:null===e?e=Object.getOwnPropertyDescriptor(o,r):e,l=t.length-1;l>=0;l--)(a=t[l])&&(i=(n<3?a(i):n>3?a(o,r,i):a(o,r))||i);return n>3&&i&&Object.defineProperty(o,r,i),i};class Ro extends o.FtLitElement{constructor(){super(...arguments),this.checked=!1,this.disabled=!1}render(){const t={"ft-toggle":!0,"ft-toggle--checked":this.checked,"ft-toggle--disabled":this.disabled};return r.html`
|
|
173
|
+
<label class="${a.classMap(t)}" for="toggle-input">
|
|
167
174
|
<input type="checkbox" class="ft-toggle-input" id="toggle-input"
|
|
168
175
|
?checked=${this.checked}
|
|
169
176
|
?disabled=${this.disabled}
|
|
@@ -175,4 +182,4 @@ const L=Symbol.for(""),F=t=>{if((null==t?void 0:t.r)===L)return null==t?void 0:t
|
|
|
175
182
|
<slot></slot>
|
|
176
183
|
</ft-typography>
|
|
177
184
|
</label>
|
|
178
|
-
`}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new CustomEvent("change",{detail:this.checked}))}}
|
|
185
|
+
`}onChange(t){t.stopPropagation(),this.checked=t.target.checked,this.dispatchEvent(new CustomEvent("change",{detail:this.checked}))}}Ro.elementDefinitions={"ft-typography":Io},Ro.styles=i,Uo([e.property({type:Boolean,reflect:!0})],Ro.prototype,"checked",void 0),Uo([e.property({type:Boolean})],Ro.prototype,"disabled",void 0),o.customElement("ft-toggle")(Ro),t.FtToggle=Ro,t.FtToggleCssVariables=n,t.styles=i}({},ftGlobals.wcUtils,ftGlobals.lit,ftGlobals.litDecorators,ftGlobals.litClassMap);
|