@fluid-topics/ft-copy-block 1.1.69 → 1.1.71
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/build/ft-copy-block.light.js +285 -275
- package/build/ft-copy-block.min.js +465 -403
- package/package.json +4 -4
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
|
|
1
|
+
"use strict";(()=>{var fa=Object.create;var Wo=Object.defineProperty;var ua=Object.getOwnPropertyDescriptor;var ha=Object.getOwnPropertyNames;var ma=Object.getPrototypeOf,ga=Object.prototype.hasOwnProperty;var ie=(e,o)=>()=>(o||e((o={exports:{}}).exports,o),o.exports);var ya=(e,o,r,i)=>{if(o&&typeof o=="object"||typeof o=="function")for(let a of ha(o))!ga.call(e,a)&&a!==r&&Wo(e,a,{get:()=>o[a],enumerable:!(i=ua(o,a))||i.enumerable});return e};var m=(e,o,r)=>(r=e!=null?fa(ma(e)):{},ya(o||!e||!e.__esModule?Wo(r,"default",{value:e,enumerable:!0}):r,e));var v=ie((Xa,$o)=>{$o.exports=ftGlobals.wcUtils});var I=ie((qa,Po)=>{Po.exports=ftGlobals.lit});var Q=ie((Ja,Bo)=>{Bo.exports=ftGlobals.litDecorators});var to=ie((As,Tr)=>{Tr.exports=ftGlobals.litClassMap});var Bn=ie(($p,Pn)=>{Pn.exports=ftGlobals.litUnsafeHTML});var sa=m(v());var Ne=m(I()),ca=m(Q());var vo=m(v());var Se=m(Q()),Mn=m(v());var Pr=m(I()),S=m(v());var Ho=m(I()),B=m(v()),To=B.FtCssVariableFactory.extend("--ft-ripple-color","",B.designSystemVariables.colorContent),N={color:To,backgroundColor:B.FtCssVariableFactory.extend("--ft-ripple-background-color","",To),opacityContentOnSurfacePressed:B.FtCssVariableFactory.external(B.designSystemVariables.opacityContentOnSurfacePressed,"Design system"),opacityContentOnSurfaceHover:B.FtCssVariableFactory.external(B.designSystemVariables.opacityContentOnSurfaceHover,"Design system"),opacityContentOnSurfaceFocused:B.FtCssVariableFactory.external(B.designSystemVariables.opacityContentOnSurfaceFocused,"Design system"),opacityContentOnSurfaceSelected:B.FtCssVariableFactory.external(B.designSystemVariables.opacityContentOnSurfaceSelected,"Design system"),borderRadius:B.FtCssVariableFactory.create("--ft-ripple-border-radius","","SIZE","0px")},ko=B.FtCssVariableFactory.extend("--ft-ripple-color","",B.designSystemVariables.colorPrimary),zo={color:ko,backgroundColor:B.FtCssVariableFactory.extend("--ft-ripple-background-color","",ko)},Uo=B.FtCssVariableFactory.extend("--ft-ripple-color","",B.designSystemVariables.colorSecondary),_o={color:Uo,backgroundColor:B.FtCssVariableFactory.extend("--ft-ripple-background-color","",Uo)},Do=Ho.css`
|
|
2
2
|
:host {
|
|
3
3
|
display: contents;
|
|
4
4
|
}
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
|
|
12
12
|
.ft-ripple:not(.ft-ripple--unbounded) {
|
|
13
13
|
overflow: hidden;
|
|
14
|
-
border-radius: ${
|
|
14
|
+
border-radius: ${N.borderRadius};
|
|
15
15
|
}
|
|
16
16
|
|
|
17
17
|
.ft-ripple .ft-ripple--background,
|
|
@@ -45,27 +45,27 @@
|
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
.ft-ripple .ft-ripple--background {
|
|
48
|
-
background-color: ${
|
|
48
|
+
background-color: ${N.backgroundColor};
|
|
49
49
|
}
|
|
50
50
|
|
|
51
51
|
.ft-ripple .ft-ripple--effect {
|
|
52
|
-
background-color: ${
|
|
52
|
+
background-color: ${N.color};
|
|
53
53
|
}
|
|
54
54
|
|
|
55
55
|
.ft-ripple.ft-ripple--secondary .ft-ripple--background {
|
|
56
|
-
background-color: ${
|
|
56
|
+
background-color: ${_o.backgroundColor};
|
|
57
57
|
}
|
|
58
58
|
|
|
59
59
|
.ft-ripple.ft-ripple--secondary .ft-ripple--effect {
|
|
60
|
-
background-color: ${
|
|
60
|
+
background-color: ${_o.color};
|
|
61
61
|
}
|
|
62
62
|
|
|
63
63
|
.ft-ripple.ft-ripple--primary .ft-ripple--background {
|
|
64
|
-
background-color: ${
|
|
64
|
+
background-color: ${zo.backgroundColor};
|
|
65
65
|
}
|
|
66
66
|
|
|
67
67
|
.ft-ripple.ft-ripple--primary .ft-ripple--effect {
|
|
68
|
-
background-color: ${
|
|
68
|
+
background-color: ${zo.color};
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
.ft-ripple .ft-ripple--background {
|
|
@@ -95,126 +95,127 @@
|
|
|
95
95
|
}
|
|
96
96
|
|
|
97
97
|
.ft-ripple.ft-ripple--hovered .ft-ripple--background {
|
|
98
|
-
opacity: ${
|
|
98
|
+
opacity: ${N.opacityContentOnSurfaceHover};
|
|
99
99
|
}
|
|
100
100
|
|
|
101
101
|
.ft-ripple.ft-ripple--selected .ft-ripple--background {
|
|
102
|
-
opacity: ${
|
|
102
|
+
opacity: ${N.opacityContentOnSurfaceSelected};
|
|
103
103
|
}
|
|
104
104
|
|
|
105
105
|
.ft-ripple.ft-ripple--focused .ft-ripple--background {
|
|
106
|
-
opacity: ${
|
|
106
|
+
opacity: ${N.opacityContentOnSurfaceFocused};
|
|
107
107
|
}
|
|
108
108
|
|
|
109
109
|
.ft-ripple.ft-ripple--pressed .ft-ripple--effect {
|
|
110
|
-
opacity: ${
|
|
110
|
+
opacity: ${N.opacityContentOnSurfacePressed};
|
|
111
111
|
transform: translate(-50%, -50%) scale(1);
|
|
112
112
|
}
|
|
113
|
-
`,y=t=>"string"==typeof t?e.unsafeCSS(t):t;class u{static create(t,o,r,i){const a=t=>y(null!=t?t:i),n=e.css`var(${y(t)}, ${a(i)})`;return n.name=t,n.description=o,n.category=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${y(t)}, ${a(o)})`,n.breadcrumb=()=>[],n.lastResortDefaultValue=()=>i,n}static extend(t,o,r,i){const a=t=>r.get(null!=t?t:i),n=e.css`var(${y(t)}, ${a(i)})`;return n.name=t,n.description=o,n.category=r.category,n.fallbackVariable=r,n.defaultValue=i,n.defaultCssValue=a,n.get=o=>e.css`var(${y(t)}, ${a(o)})`,n.breadcrumb=()=>[r.name,...r.breadcrumb()],n.lastResortDefaultValue=()=>null!=i?i:r.lastResortDefaultValue(),n}static external(t,o){const r=o=>t.fallbackVariable?t.fallbackVariable.get(null!=o?o:t.defaultValue):y(null!=o?o:t.lastResortDefaultValue()),i=e.css`var(${y(t.name)}, ${r(t.defaultValue)})`;return i.name=t.name,i.category=t.category,i.fallbackVariable=t.fallbackVariable,i.defaultValue=t.defaultValue,i.context=o,i.defaultCssValue=r,i.get=o=>e.css`var(${y(t.name)}, ${r(o)})`,i.breadcrumb=()=>t.fallbackVariable?[t.fallbackVariable.name,...t.fallbackVariable.breadcrumb()]:[],i.lastResortDefaultValue=()=>t.lastResortDefaultValue(),i}}const b={colorWhite:u.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:u.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:u.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:u.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:u.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:u.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:u.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:u.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:u.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:u.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:u.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:u.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:u.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:u.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:u.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:u.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:u.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:u.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:u.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:u.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:u.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:u.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:u.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:u.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:u.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:u.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:u.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:u.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:u.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:u.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:u.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:u.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:u.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:u.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:u.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:u.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:u.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:u.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:u.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:u.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:u.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:u.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:u.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:u.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:u.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:u.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:u.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:u.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:u.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:u.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:u.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:u.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:u.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:u.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:u.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:u.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:u.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:u.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:u.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:u.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:u.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:u.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:u.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:u.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:u.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:u.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:u.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:u.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:u.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:u.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:u.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:u.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:u.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:u.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:u.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:u.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:u.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:u.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:u.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:u.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:u.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:u.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:u.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:u.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:u.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:u.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:u.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:u.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:u.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:u.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:u.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:u.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:u.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:u.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:u.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:u.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:u.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:u.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:u.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:u.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:u.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:u.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:u.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:u.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:u.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:u.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:u.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:u.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:u.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:u.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:u.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:u.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:u.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:u.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:u.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:u.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:u.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:u.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:u.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:u.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:u.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:u.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:u.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:u.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:u.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:u.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:u.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:u.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:u.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:u.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:u.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:u.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:u.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:u.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:u.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:u.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:u.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:u.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:u.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:u.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:u.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:u.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:u.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:u.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:u.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:u.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:u.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:u.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:u.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:u.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:u.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:u.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:u.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:u.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:u.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:u.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:u.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:u.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:u.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:u.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:u.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:u.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:u.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:u.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:u.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:u.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:u.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:u.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:u.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:u.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:u.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:u.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:u.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:u.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:u.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:u.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:u.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:u.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:u.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:u.create("--ft-icon-size-6","","SIZE","48px"),opacity0:u.create("--ft-opacity-0","","NUMBER","0"),opacity8:u.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:u.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:u.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:u.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:u.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:u.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:u.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:u.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:u.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:u.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:u.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:u.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:u.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:u.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)")},m={display:{fontFamily:u.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:u.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:u.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-display-textCase","","UNKNOWN","none")},"title-1":{fontFamily:u.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:u.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:u.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},"title-2":{fontFamily:u.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:u.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:u.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},"title-3":{fontFamily:u.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:u.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:u.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:u.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},"body-1-regular":{fontFamily:u.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:u.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:u.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},"body-1-medium":{fontFamily:u.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:u.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},"body-1-semibold":{fontFamily:u.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:u.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},"body-2-regular":{fontFamily:u.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:u.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},"body-2-medium":{fontFamily:u.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},"body-2-medium-underline":{fontFamily:u.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:u.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:u.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},"body-2-semibold":{fontFamily:u.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:u.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:u.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:u.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},"label-1-medium":{fontFamily:u.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},"label-1-semibold":{fontFamily:u.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},"label-1-bold":{fontFamily:u.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:u.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:u.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},"label-2-medium":{fontFamily:u.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},"label-2-semibold":{fontFamily:u.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},"label-2-bold":{fontFamily:u.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:u.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:u.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:u.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:u.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},"caption-1-medium":{fontFamily:u.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},"caption-1-semibold":{fontFamily:u.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},"caption-1-bold":{fontFamily:u.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:u.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:u.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},"caption-2-medium":{fontFamily:u.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:u.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},"caption-2-semibold":{fontFamily:u.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:u.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},"caption-2-bold":{fontFamily:u.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:u.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:u.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},"caption-3-medium":{fontFamily:u.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:u.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:u.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},"caption-3-semibold":{fontFamily:u.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:u.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:u.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},"caption-3-bold":{fontFamily:u.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:u.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:u.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:u.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:u.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:u.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:u.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:u.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:u.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")}},x={backgroundActionPrimary:u.extend("--ft-background-action-primary","Used as backgorund of primary action components.",b.colorBrand0),backgroundErrorSubtle:u.extend("--ft-background-error-subtle","Used as background of subtle error components.",b.colorRed10),backgroundInfoSubtle:u.extend("--ft-background-info-subtle","Used as background of subtle information components.",b.colorCyan10),backgroundWarningSubtle:u.extend("--ft-background-warning-subtle","Used as background of subtle information components.",b.colorOrange10),backgroundSuccessSubtle:u.extend("--ft-background-success-subtle","Used as background of subtle success components.",b.colorGreen10),backgroundGlobalSurface:u.extend("--ft-background-global-surface","Used as app background.",b.colorWhite),backgroundGlobalOnSurface:u.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",b.colorGray10),backgroundGlobalOnSurfaceDark:u.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",b.colorGray30),contentActionPrimary:u.extend("--ft-content-action-primary","Used on label of primary action on light surface.",b.colorBrand0),contentWarningPrimary:u.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",b.colorOrange200),contentWarningIconOnly:u.extend("--ft-content-warning-icon-only","Used on warning status icons alone",b.colorOrange0),contentErrorPrimary:u.extend("--ft-content-error-primary","Used on label of error messages on light surface.",b.colorRed0),contentErrorIconOnly:u.extend("--ft-content-error-icon-only","Used on error status icons alone",b.colorRed70),contentInfoPrimary:u.extend("--ft-content-info-primary","Used on label of information messages on light surface.",b.colorCyan200),contentInfoIconOnly:u.extend("--ft-content-info-icon-only","Used on info status icons alone",b.colorCyan0),contentSuccessPrimary:u.extend("--ft-content-success-primary","Used on label of success messages on light surface.",b.colorGreen200),contentSuccessIconOnly:u.extend("--ft-content-success-icon-only","Used on success status icons alone",b.colorGreen0),contentGlobalPrimary:u.extend("--ft-content-global-primary","Used for main content on the page.",b.colorGray500),contentGlobalSecondary:u.extend("--ft-content-global-secondary","Used for secondary content, often paired with primary content.\nAlso for action icons.",b.colorGray200),contentGlobalSubtle:u.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",b.colorGray0),contentGlobalOnColor:u.extend("--ft-content-global-on-color","Used for content on a dominant color.",b.colorWhite),borderActionPrimary:u.extend("--ft-border-action-primary","Used as border for primary action components.",b.colorBrand0),borderActionFocusRing:u.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",b.colorCyan0),borderWarningPrimary:u.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",b.colorOrange200),borderWarningSubtle:u.extend("--ft-border-warning-subtle","Used as border for warning components.",b.colorOrange30),borderSuccessPrimary:u.extend("--ft-border-success-primary","Used as border for success buttons.",b.colorGreen200),borderSuccessSubtle:u.extend("--ft-border-success-subtle","Used as border for success components.",b.colorGreen30),borderErrorPrimary:u.extend("--ft-border-error-primary","Used as border for text fields in error states.",b.colorRed0),borderErrorSubtle:u.extend("--ft-border-error-subtle","Used as border for error components.",b.colorRed30),borderInfoPrimary:u.extend("--ft-border-info-primary","Used as border for buttons in info color.",b.colorCyan200),borderInfoSubtle:u.extend("--ft-border-info-subtle","Used as border for information components.",b.colorCyan30),borderGlobalPrimary:u.extend("--ft-border-global-primary","Used as border for element like input.",b.colorGray50),borderGlobalSubtle:u.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",b.colorGray30),borderInputPrimary:u.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",b.colorGray80)},v={largeHeight:u.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:u.extend("--ft-button-large-horizontal-padding","",b.spacing4),largeGap:u.extend("--ft-button-large-gap","",b.spacing2),largeBorderRadius:u.extend("--ft-button-large-border-radius","",b.borderRadiusS),largeIconSize:u.extend("--ft-button-large-icon-size","",b.iconSize3),largeBorderWidth:u.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:u.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:u.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:u.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:u.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:u.extend("--ft-button-small-horizontal-padding","",b.spacing3),smallGap:u.extend("--ft-button-small-gap","",b.spacing2),smallBorderRadius:u.extend("--ft-button-small-border-radius","",b.borderRadiusS),smallIconSize:u.extend("--ft-button-small-icon-size","",b.iconSize2),smallBorderWidth:u.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:u.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:u.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:u.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:u.extend("--ft-button-primary-background-color","",x.backgroundActionPrimary),primaryColor:u.extend("--ft-button-primary-color","",x.contentGlobalOnColor),primaryIconColor:u.extend("--ft-button-primary-icon-color","",x.contentGlobalOnColor),primaryStateLayerColor:u.extend("--ft-button-primary-state-layer-color","",x.contentGlobalOnColor),primaryHoverStateLayerOpacity:u.extend("--ft-button-primary-hover-state-layer-opacity","",b.opacity16),primaryFocusStateLayerOpacity:u.extend("--ft-button-primary-focus-state-layer-opacity","",b.opacity16),primaryActiveStateLayerOpacity:u.extend("--ft-button-primary-active-state-layer-opacity","",b.opacity24),primaryDisabledComponentOpacity:u.extend("--ft-button-primary-disabled-component-opacity","",b.opacity40),focusFocusRingColor:u.extend("--ft-button-focus-focus-ring-color","",x.borderActionFocusRing),tertiaryBackgroundColor:u.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:u.extend("--ft-button-tertiary-color","",x.contentActionPrimary),tertiaryIconColor:u.extend("--ft-button-tertiary-icon-color","",x.contentActionPrimary),tertiaryStateLayerColor:u.extend("--ft-button-tertiary-state-layer-color","",x.contentActionPrimary),tertiaryHoverStateLayerOpacity:u.extend("--ft-button-tertiary-hover-state-layer-opacity","",b.opacity8),tertiaryFocusStateLayerOpacity:u.extend("--ft-button-tertiary-focus-state-layer-opacity","",b.opacity8),tertiaryActiveStateLayerOpacity:u.extend("--ft-button-tertiary-active-state-layer-opacity","",b.opacity16),tertiaryDisabledComponentOpacity:u.extend("--ft-button-tertiary-disabled-component-opacity","",b.opacity40),secondaryBackgroundColor:u.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:u.extend("--ft-button-secondary-color","",x.contentActionPrimary),secondaryIconColor:u.extend("--ft-button-secondary-icon-color","",x.contentActionPrimary),secondaryStateLayerColor:u.extend("--ft-button-secondary-state-layer-color","",x.contentActionPrimary),secondaryHoverStateLayerOpacity:u.extend("--ft-button-secondary-hover-state-layer-opacity","",b.opacity8),secondaryFocusStateLayerOpacity:u.extend("--ft-button-secondary-focus-state-layer-opacity","",b.opacity8),secondaryActiveStateLayerOpacity:u.extend("--ft-button-secondary-active-state-layer-opacity","",b.opacity16),secondaryDisabledComponentOpacity:u.extend("--ft-button-secondary-disabled-component-opacity","",b.opacity40),secondaryBorderColor:u.extend("--ft-button-secondary-border-color","",x.borderActionPrimary),neutralBackgroundColor:u.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:u.extend("--ft-button-neutral-icon-color","",x.contentGlobalSecondary),neutralColor:u.extend("--ft-button-neutral-color","",x.contentGlobalSecondary),neutralStateLayerColor:u.extend("--ft-button-neutral-state-layer-color","",x.contentGlobalSecondary),neutralHoverStateLayerOpacity:u.extend("--ft-button-neutral-hover-state-layer-opacity","",b.opacity8),neutralFocusStateLayerOpacity:u.extend("--ft-button-neutral-focus-state-layer-opacity","",b.opacity8),neutralActiveStateLayerOpacity:u.extend("--ft-button-neutral-active-state-layer-opacity","",b.opacity16),neutralDisabledComponentOpacity:u.extend("--ft-button-neutral-disabled-component-opacity","",b.opacity40)};u.extend("--ft-banner-icon-size","",b.iconSize5),u.create("--ft-banner-border-width","","SIZE","1px"),u.extend("--ft-banner-horizontal-padding","",b.spacing6),u.extend("--ft-banner-vertical-padding","",b.spacing6),u.extend("--ft-banner-horizontal-side-gap","",b.spacing6),u.extend("--ft-banner-horizontal-mobile-gap","",b.spacing4),u.extend("--ft-banner-vertical-mobile-gap","",b.spacing6),u.extend("--ft-banner-horizontal-middle-gap","",b.spacing20),u.extend("--ft-banner-info-background-color","",x.backgroundInfoSubtle),u.extend("--ft-banner-info-color","",x.contentInfoPrimary),u.extend("--ft-banner-info-icon-color","",x.contentInfoIconOnly),u.extend("--ft-breadcrumb-horizontal-gap","",b.spacing1),u.extend("--ft-breadcrumb-vertical-gap","",b.spacing2),u.extend("--ft-breadcrumb-current-element-color","",x.contentGlobalPrimary),u.extend("--ft-breadcrumb-icon-color","",x.contentGlobalSubtle),u.extend("--ft-page-header-horizontal-padding","",b.spacing12),u.extend("--ft-page-header-horizontal-gap","",b.spacing4),u.extend("--ft-page-header-vertical-gap","",b.spacing2),u.extend("--ft-page-header-classic-vertical-padding","",b.spacing6),u.extend("--ft-page-header-multiline-vertical-padding","",b.spacing4),u.extend("--ft-page-header-inline-vertical-padding","",b.spacing2),u.extend("--ft-page-header-background-color","",b.colorWhite),u.extend("--ft-page-header-bottom-border-color","",x.borderGlobalSubtle),u.extend("--ft-page-header-title-color","",x.contentGlobalPrimary),u.extend("--ft-page-header-subtitle-color","",x.contentGlobalSecondary),u.create("--ft-modal-small-container-width","","SIZE","600px"),u.create("--ft-modal-large-container-width","","SIZE","900px"),u.extend("--ft-modal-overlay-background-color","",b.colorGray700),u.extend("--ft-modal-overlay-opacity","",b.opacity40),u.extend("--ft-modal-shadow","",b.shadowElevation03),u.extend("--ft-modal-body-background-color","",b.colorWhite),u.extend("--ft-modal-body-color","",x.contentGlobalPrimary),u.extend("--ft-modal-body-horizontal-padding","",b.spacing6),u.extend("--ft-modal-body-vertical-padding","",b.spacing6),u.extend("--ft-modal-body-vertical-gap","",b.spacing6),u.extend("--ft-modal-container-margin","",b.spacing3),u.extend("--ft-modal-header-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-modal-header-border-color","",x.borderGlobalSubtle),u.extend("--ft-modal-header-color","",x.contentGlobalPrimary),u.extend("--ft-modal-header-trailing-icon-color","",x.contentGlobalSecondary),u.extend("--ft-modal-header-vertical-padding","",b.spacing1),u.extend("--ft-modal-header-right-padding","",b.spacing1),u.extend("--ft-modal-header-left-padding","",b.spacing6),u.extend("--ft-modal-header-gap","",b.spacing2),u.create("--ft-modal-header-border-bottom","","SIZE","1px"),u.extend("--ft-modal-border-radius","",b.borderRadiusM),u.extend("--ft-drawer-overlay-opacity","",b.opacity40),u.extend("--ft-drawer-shadow","",b.shadowElevation03),u.extend("--ft-drawer-body-color","",x.contentGlobalPrimary),u.extend("--ft-drawer-body-horizontal-padding","",b.spacing6),u.extend("--ft-drawer-body-vertical-padding","",b.spacing6),u.extend("--ft-drawer-body-gap","",b.spacing6),u.extend("--ft-drawer-body-background-color","",b.colorWhite),u.extend("--ft-drawer-header-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-drawer-header-border-color","",x.borderGlobalSubtle),u.extend("--ft-drawer-header-color","",x.contentGlobalPrimary),u.extend("--ft-drawer-header-trailing-icon-color","",x.contentGlobalSecondary),u.create("--ft-drawer-header-height","","SIZE","50px"),u.extend("--ft-drawer-header-horizontal-padding","",b.spacing2),u.create("--ft-drawer-header-border-width","","SIZE","1px"),u.extend("--ft-drawer-header-gap","",b.spacing3),u.extend("--ft-drawer-buttons-bar-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-drawer-buttons-bar-border-color","",x.borderGlobalSubtle),u.extend("--ft-drawer-buttons-bar-color","",x.contentGlobalPrimary),u.extend("--ft-drawer-buttons-bar-horizontal-padding","",b.spacing4),u.extend("--ft-drawer-buttons-bar-vertical-padding","",b.spacing4),u.extend("--ft-drawer-buttons-bar-gap","",b.spacing3),u.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),u.create("--ft-drawer-container-width","","SIZE","66%"),u.create("--ft-drawer-container-min-width","","SIZE","500px"),u.create("--ft-drawer-container-max-width","","SIZE","1000px"),u.create("--ft-drawer-container-height","","SIZE","100%"),u.extend("--ft-drawer-overlay-background-color","",b.colorGray700),u.extend("--ft-text-input-field-horizontal-padding","",b.spacing4),u.extend("--ft-text-input-field-horizontal-gap","",b.spacing3),u.extend("--ft-text-input-field-vertical-gap","",b.spacing05),u.extend("--ft-text-input-field-icon-size","",b.iconSize3),u.create("--ft-text-input-field-height","","SIZE","50px"),u.extend("--ft-text-input-helper-horizontal-padding","",b.spacing4),u.extend("--ft-text-input-helper-horizontal-gap","",b.spacing1),u.extend("--ft-text-input-helper-icon-size","",b.iconSize2),u.extend("--ft-text-input-border-radius","",b.borderRadiusM),u.extend("--ft-text-input-background-color","",b.colorWhite),u.extend("--ft-text-input-content-value-color","",x.contentGlobalPrimary),u.extend("--ft-text-input-trailing-icon-color","",x.contentGlobalSubtle),u.extend("--ft-text-input-label-color","",x.contentGlobalSubtle),u.extend("--ft-text-input-default-border-color","",x.borderInputPrimary),u.extend("--ft-text-input-default-helper-text-color","",x.contentGlobalSubtle),u.create("--ft-text-input-default-border-width","","SIZE","1px"),u.create("--ft-text-input-error-border-width","","SIZE","2px"),u.extend("--ft-text-input-error-border-color","",x.borderErrorPrimary),u.extend("--ft-text-input-error-helper-text-color","",x.contentErrorPrimary),u.extend("--ft-text-input-error-helper-icon-color","",x.contentErrorIconOnly),u.create("--ft-text-input-warning-border-width","","SIZE","2px"),u.create("--ft-text-input-focus-outline-width","","SIZE","2px"),u.extend("--ft-text-input-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),u.extend("--ft-text-input-disabled-component-opacity","",b.opacity40),u.extend("--ft-text-area-background-color","",b.colorWhite),u.extend("--ft-text-area-content-value-color","",x.contentGlobalPrimary),u.extend("--ft-text-area-label-color","",x.contentGlobalSubtle),u.extend("--ft-text-area-default-border-color","",x.borderInputPrimary),u.extend("--ft-text-area-default-helper-text-color","",x.contentGlobalSubtle),u.create("--ft-text-area-default-border-width","","SIZE","1px"),u.create("--ft-text-area-error-border-width","","SIZE","2px"),u.extend("--ft-text-area-error-border-color","",x.borderErrorPrimary),u.extend("--ft-text-area-error-helper-text-color","",x.contentErrorPrimary),u.extend("--ft-text-area-error-helper-icon-color","",x.contentErrorIconOnly),u.extend("--ft-text-area-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-text-area-focus-outline-width","","SIZE","2px"),u.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),u.extend("--ft-text-area-disabled-component-opacity","",b.opacity40),u.extend("--ft-text-area-field-horizontal-left-padding","",b.spacing4),u.extend("--ft-text-area-field-horizontal-gap","",b.spacing3),u.extend("--ft-text-area-field-vertical-gap","",b.spacing05),u.create("--ft-text-area-field-min-height","","SIZE","64px"),u.extend("--ft-text-area-helper-horizontal-padding","",b.spacing4),u.extend("--ft-text-area-helper-horizontal-gap","",b.spacing1),u.extend("--ft-text-area-helper-icon-size","",b.iconSize2),u.extend("--ft-text-area-border-radius","",b.borderRadiusM),u.create("--ft-floating-menu-height","","SIZE","50px"),u.extend("--ft-floating-menu-horizontal-padding","",b.spacing4),u.extend("--ft-floating-menu-off-icon-color","",x.contentGlobalPrimary),u.extend("--ft-floating-menu-off-color","",x.contentGlobalPrimary),u.extend("--ft-floating-menu-on-color","",x.contentActionPrimary),u.extend("--ft-floating-menu-on-state-layer-color","",x.contentActionPrimary),u.extend("--ft-floating-menu-gap","",b.spacing3),u.extend("--ft-floating-menu-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),u.extend("--ft-floating-menu-focus-state-layer-opacity","",b.opacity8),u.extend("--ft-floating-menu-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-floating-menu-active-state-layer-opacity","",b.opacity16),u.extend("--ft-floating-menu-disabled-component-opacity","",b.opacity40),u.extend("--ft-floating-menu-icon-size","",b.iconSize3),u.extend("--ft-floating-menu-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-combobox-single-select-field-horizontal-padding","",b.spacing4),u.extend("--ft-combobox-single-select-field-horizontal-gap","",b.spacing3),u.extend("--ft-combobox-single-select-field-vertical-gap","",b.spacing05),u.extend("--ft-combobox-single-select-field-icon-size","",b.iconSize3),u.create("--ft-combobox-single-select-field-height","","SIZE","50px"),u.extend("--ft-combobox-single-select-helper-horizontal-padding","",b.spacing4),u.extend("--ft-combobox-single-select-helper-horizontal-gap","",b.spacing1),u.extend("--ft-combobox-single-select-helper-vertical-gap","",b.spacing1),u.extend("--ft-combobox-single-select-helper-icon-size","",b.iconSize2),u.extend("--ft-combobox-single-select-menu-vertical-gap","",b.spacing2),u.extend("--ft-combobox-single-select-border-radius","",b.borderRadiusM),u.extend("--ft-combobox-single-select-background-color","",b.colorWhite),u.extend("--ft-combobox-single-select-label-color","",x.contentGlobalSubtle),u.extend("--ft-combobox-single-select-content-value-color","",x.contentGlobalPrimary),u.extend("--ft-combobox-single-select-trailing-icon-color","",x.contentGlobalSubtle),u.extend("--ft-combobox-single-select-default-border-color","",x.borderInputPrimary),u.extend("--ft-combobox-single-select-default-helper-text-color","",x.contentGlobalSubtle),u.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),u.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),u.extend("--ft-combobox-single-select-error-border-color","",x.borderErrorPrimary),u.extend("--ft-combobox-single-select-error-helper-text-color","",x.contentErrorPrimary),u.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),u.extend("--ft-combobox-single-select-warning-border-color","",x.borderWarningPrimary),u.extend("--ft-combobox-single-select-warning-helper-text-color","",x.contentWarningPrimary),u.extend("--ft-combobox-single-select-warning-helper-icon-color","",x.contentWarningIconOnly),u.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),u.extend("--ft-combobox-single-select-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),u.extend("--ft-combobox-single-select-disabled-component-opacity","",b.opacity40),u.extend("--ft-combobox-multi-select-background-color","",b.colorWhite),u.extend("--ft-combobox-multi-select-label-color","",x.contentGlobalSubtle),u.extend("--ft-combobox-multi-select-trailing-icon-color","",x.contentGlobalSubtle),u.extend("--ft-combobox-multi-select-default-border-color","",x.borderInputPrimary),u.extend("--ft-combobox-multi-select-default-helper-text-color","",x.contentGlobalSubtle),u.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),u.extend("--ft-combobox-multi-select-error-border-color","",x.borderErrorPrimary),u.extend("--ft-combobox-multi-select-error-helper-text-color","",x.contentErrorPrimary),u.extend("--ft-combobox-multi-select-error-helper-icon","",x.contentErrorIconOnly),u.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),u.extend("--ft-combobox-multi-select-warning-border-color","",x.borderWarningPrimary),u.extend("--ft-combobox-multi-select-warning-helper-text-color","",x.contentWarningPrimary),u.extend("--ft-combobox-multi-select-warning-helper-icon-color","",x.contentWarningIconOnly),u.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),u.extend("--ft-combobox-multi-select-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),u.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),u.extend("--ft-combobox-multi-select-disabled-component-opacity","",b.opacity40),u.extend("--ft-combobox-multi-select-helper-horizontal-padding","",b.spacing4),u.extend("--ft-combobox-multi-select-helper-horizontal-gap","",b.spacing1),u.extend("--ft-combobox-multi-select-helper-vertical-gap","",b.spacing1),u.extend("--ft-combobox-multi-select-helper-icon-size","",b.iconSize2),u.extend("--ft-combobox-multi-select-field-horizontal-padding","",b.spacing4),u.extend("--ft-combobox-multi-select-field-horizontal-gap","",b.spacing3),u.extend("--ft-combobox-multi-select-field-vertical-gap","",b.spacing05),u.extend("--ft-combobox-multi-select-field-icon-size","",b.iconSize3),u.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),u.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",b.spacing1),u.extend("--ft-combobox-multi-select-content-values-vertical-gap","",b.spacing1),u.extend("--ft-combobox-multi-select-border-radius","",b.borderRadiusM),u.extend("--ft-popover-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-popover-horizontal-padding","",b.spacing6),u.extend("--ft-popover-vertical-padding","",b.spacing6),u.extend("--ft-popover-icon-color","",x.contentGlobalSecondary),u.extend("--ft-popover-icon-size","",b.iconSize2),u.extend("--ft-popover-title-color","",x.contentGlobalPrimary),u.extend("--ft-popover-body-color","",x.contentGlobalSecondary),u.extend("--ft-popover-link-color","",x.contentActionPrimary),u.extend("--ft-popover-gap","",b.spacing3),u.extend("--ft-popover-border-radius","",b.borderRadiusM),u.extend("--ft-popover-shadow","",b.shadowElevation02),u.extend("--ft-tabs-top-left-border-radius","",b.borderRadiusS),u.extend("--ft-tabs-top-right-border-radius","",b.borderRadiusS),u.extend("--ft-tabs-label-horizontal-padding","",b.spacing4),u.extend("--ft-tabs-label-vertical-padding","",b.spacing3),u.extend("--ft-tabs-label-gap","",b.spacing1),u.extend("--ft-tabs-off-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-tabs-off-focus-state-layer-opacity","",b.opacity8),u.extend("--ft-tabs-off-active-state-layer-opacity","",b.opacity16),u.extend("--ft-tabs-off-disabled-component-opacity","",b.opacity40),u.extend("--ft-tabs-off-color","",x.contentGlobalSubtle),u.extend("--ft-tabs-off-state-layer-color","",x.contentGlobalSubtle),u.extend("--ft-tabs-on-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-tabs-on-focus-state-layer-opacity","",b.opacity8),u.extend("--ft-tabs-on-active-state-layer-opacity","",b.opacity16),u.extend("--ft-tabs-on-disabled-component-opacity","",b.opacity40),u.extend("--ft-tabs-on-color","",x.contentActionPrimary),u.extend("--ft-tabs-on-state-layer-color","",x.contentActionPrimary),u.extend("--ft-tabs-icon-horizontal-padding","",b.spacing1),u.extend("--ft-tabs-icon-vertical-padding","",b.spacing4),u.create("--ft-tabs-focus-outline-width","","SIZE","2px"),u.extend("--ft-tabs-focus-focus-ring-color","",x.borderActionFocusRing),u.extend("--ft-collapsible-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-collapsible-focus-state-layer-opacity","",b.opacity8),u.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),u.extend("--ft-collapsible-focus-focus-ring-color","",x.borderActionFocusRing),u.extend("--ft-collapsible-active-state-layer-opacity","",b.opacity16),u.extend("--ft-collapsible-disabled-component-opacity","",b.opacity40),u.extend("--ft-collapsible-horizontal-padding","",b.spacing4),u.extend("--ft-collapsible-vertical-padding","",b.spacing3),u.extend("--ft-collapsible-color","",x.contentGlobalPrimary),u.extend("--ft-collapsible-state-layer-color","",x.contentGlobalPrimary),u.extend("--ft-collapsible-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-collapsible-border-color","",x.borderGlobalSubtle),u.extend("--ft-collapsible-icon-size","",b.iconSize3),u.extend("--ft-switch-group-horizontal-padding","",b.spacing1),u.extend("--ft-switch-group-vertical-padding","",b.spacing1),u.extend("--ft-switch-group-gap","",b.spacing1),u.extend("--ft-switch-group-background-color","",x.backgroundGlobalSurface),u.extend("--ft-switch-group-border-color","",x.borderGlobalSubtle),u.create("--ft-switch-group-border-radius","","SIZE","6px"),u.extend("--ft-switch-label-horizontal-padding","",b.spacing2),u.extend("--ft-switch-label-vertical-padding","",b.spacing1),u.extend("--ft-switch-off-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-switch-off-focus-state-layer-opacity","",b.opacity8),u.extend("--ft-switch-off-active-state-layer-opacity","",b.opacity16),u.extend("--ft-switch-off-disabled-component-opacity","",b.opacity40),u.extend("--ft-switch-off-color","",x.contentGlobalSubtle),u.extend("--ft-switch-off-state-layer-color","",x.contentGlobalSubtle),u.extend("--ft-switch-on-hover-state-layer-opacity","",b.opacity8),u.extend("--ft-switch-on-focus-state-layer-opacity","",b.opacity8),u.extend("--ft-switch-on-active-state-layer-opacity","",b.opacity16),u.extend("--ft-switch-on-disabled-component-opacity","",b.opacity40),u.extend("--ft-switch-on-color","",x.contentActionPrimary),u.extend("--ft-switch-on-state-layer-color","",x.contentActionPrimary),u.extend("--ft-switch-icon-horizontal-padding","",b.spacing1),u.extend("--ft-switch-icon-vertical-padding","",b.spacing1),u.create("--ft-switch-focus-outline-width","","SIZE","2px"),u.extend("--ft-switch-focus-focus-ring-color","",x.borderActionFocusRing),u.extend("--ft-switch-option-border-radius","",b.borderRadiusS),u.extend("--ft-chart-1-light","for area color charts",b.colorBrand40),u.extend("--ft-chart-1-base","for line charts",b.colorBrand0),u.extend("--ft-chart-2-light","for area color charts",b.colorYellow60),u.extend("--ft-chart-2-base","for line charts",b.colorYellow100),u.extend("--ft-chart-3-light","",b.colorUltramarine40),u.extend("--ft-chart-3-base","",b.colorUltramarine70),u.extend("--ft-chart-4-light","",b.colorCyan50),u.extend("--ft-chart-4-base","",b.colorCyan100),u.extend("--ft-chart-5-light","",b.colorRed40),u.extend("--ft-chart-5-base","",b.colorRed60),u.extend("--ft-chart-6-light","",b.colorGreen40),u.extend("--ft-chart-6-base","",b.colorGreen70),u.extend("--ft-chart-7-light","",b.colorOrange70),u.extend("--ft-chart-7-base","",b.colorOrange100),u.extend("--ft-chart-8-light","",b.colorAvocado70),u.extend("--ft-chart-8-base","",b.colorAvocado200),u.extend("--ft-chart-9-light","",b.colorBrown50),u.extend("--ft-chart-9-base","",b.colorBrown200),u.extend("--ft-chart-10-light","",b.colorGray50),u.extend("--ft-chart-10-base","",b.colorGray80),u.extend("--ft-chart-monochrome-10","",b.colorBrand10),u.extend("--ft-chart-monochrome-20","",b.colorBrand20),u.extend("--ft-chart-monochrome-30","",b.colorBrand40),u.extend("--ft-chart-monochrome-40","",b.colorBrand60),u.extend("--ft-chart-monochrome-50","",b.colorBrand0),u.extend("--ft-chart-monochrome-60","",b.colorBrand200),u.extend("--ft-chip-large-horizontal-padding","",b.spacing4),u.extend("--ft-chip-large-vertical-padding","",b.spacing2),u.extend("--ft-chip-large-gap","",b.spacing1),u.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),u.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),u.extend("--ft-chip-large-border-radius","",b.borderRadiusPill),u.create("--ft-chip-large-border-width","","SIZE","1px"),u.extend("--ft-chip-large-icon-size","",b.iconSize3),u.extend("--ft-chip-medium-horizontal-padding","",b.spacing3),u.extend("--ft-chip-medium-vertical-padding","",b.spacing1),u.extend("--ft-chip-medium-gap","",b.spacing1),u.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),u.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),u.extend("--ft-chip-medium-border-radius","",b.borderRadiusPill),u.create("--ft-chip-medium-border-width","","SIZE","1px"),u.extend("--ft-chip-medium-icon-size","",b.iconSize2),u.extend("--ft-chip-small-horizontal-padding","",b.spacing2),u.extend("--ft-chip-small-vertical-padding","",b.spacing05),u.extend("--ft-chip-small-gap","",b.spacing1),u.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),u.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),u.extend("--ft-chip-small-border-radius","",b.borderRadiusPill),u.create("--ft-chip-small-border-width","","SIZE","1px"),u.extend("--ft-chip-small-icon-size","",b.iconSize1),u.extend("--ft-chip-neutral-background-color","",x.backgroundGlobalOnSurface),u.extend("--ft-chip-neutral-color","",x.contentGlobalPrimary),u.extend("--ft-chip-neutral-icon-color","",x.contentGlobalPrimary),u.extend("--ft-chip-neutral-border-color","",x.borderGlobalSubtle),u.extend("--ft-chip-info-background-color","",x.backgroundInfoSubtle),u.extend("--ft-chip-info-color","",x.contentInfoPrimary),u.extend("--ft-chip-info-icon-color","",x.contentInfoIconOnly),u.extend("--ft-chip-info-border-color","",x.borderInfoSubtle),u.extend("--ft-chip-success-background-color","",x.backgroundSuccessSubtle),u.extend("--ft-chip-success-color","",x.contentSuccessPrimary),u.extend("--ft-chip-success-icon-color","",x.contentSuccessIconOnly),u.extend("--ft-chip-success-border-color","",x.borderSuccessSubtle),u.extend("--ft-chip-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-chip-warning-color","",x.contentWarningPrimary),u.extend("--ft-chip-warning-icon-color","",x.contentWarningIconOnly),u.extend("--ft-chip-warning-border-color","",x.borderWarningSubtle),u.extend("--ft-chip-error-background-color","",x.backgroundErrorSubtle),u.extend("--ft-chip-error-color","",x.contentErrorPrimary),u.extend("--ft-chip-error-icon-color","",x.contentErrorIconOnly),u.extend("--ft-chip-error-border-color","",x.borderErrorSubtle),u.extend("--ft-border-info-border-color","",x.borderInfoSubtle),u.create("--ft-notice-border-width","","SIZE","1px"),u.extend("--ft-notice-horizontal-padding","",b.spacing2),u.extend("--ft-notice-vertical-padding","",b.spacing1),u.extend("--ft-notice-border-radius","",b.borderRadiusS),u.extend("--ft-notice-gap","",b.spacing2),u.extend("--ft-notice-icon-size","",b.iconSize3),u.extend("--ft-notice-info-background-color","",x.backgroundInfoSubtle),u.extend("--ft-notice-info-border-color","",x.borderInfoSubtle),u.extend("--ft-notice-info-color","",x.contentInfoPrimary),u.extend("--ft-notice-info-icon-color","",x.contentInfoIconOnly),u.extend("--ft-notice-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-notice-warning-border-color","",x.borderWarningSubtle),u.extend("--ft-notice-warning-color","",x.contentWarningPrimary),u.extend("--ft-notice-warning-icon-color","",x.contentWarningIconOnly),u.extend("--ft-notice-error-background-color","",x.backgroundErrorSubtle),u.extend("--ft-notice-error-border-color","",x.borderErrorSubtle),u.extend("--ft-notice-error-color","",x.contentErrorPrimary),u.extend("--ft-notice-error-icon-color","",x.contentErrorIconOnly),u.extend("--ft-notice-success-background-color","",x.backgroundSuccessSubtle),u.extend("--ft-notice-success-border-color","",x.borderSuccessSubtle),u.extend("--ft-notice-success-color","",x.contentSuccessPrimary),u.extend("--ft-notice-success-icon-color","",x.contentSuccessIconOnly),u.extend("--ft-checkbox-color","",x.contentGlobalPrimary),u.extend("--ft-checkbox-checked-background-color","",x.contentActionPrimary),u.extend("--ft-checkbox-checked-state-layer-color","",x.contentActionPrimary),u.extend("--ft-checkbox-checked-icon-color","",x.contentGlobalOnColor),u.extend("--ft-checkbox-checked-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-checkbox-checked-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-checkbox-checked-active-state-layer-opacity","",b.opacity24),u.extend("--ft-checkbox-checked-disabled-component-opacity","",b.opacity40),u.extend("--ft-checkbox-unchecked-border-color","",b.colorGray80),u.extend("--ft-checkbox-unchecked-state-layer-color","",b.colorGray80),u.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",b.opacity24),u.extend("--ft-checkbox-unchecked-disabled-component-opacity","",b.opacity40),u.extend("--ft-checkbox-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),u.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),u.extend("--ft-checkbox-gap","",b.spacing3),u.extend("--ft-toggle-off-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-toggle-off-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-toggle-off-active-state-layer-opacity","",b.opacity24),u.extend("--ft-toggle-off-disabled-component-opacity","",b.opacity40),u.extend("--ft-toggle-off-background-color","",x.contentGlobalSubtle),u.extend("--ft-toggle-off-icon-color","",x.contentGlobalSubtle),u.extend("--ft-toggle-off-state-layer-color","",x.contentGlobalSubtle),u.extend("--ft-toggle-on-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-toggle-on-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-toggle-on-active-state-layer-opacity","",b.opacity24),u.extend("--ft-toggle-on-disabled-component-opacity","",b.opacity40),u.extend("--ft-toggle-on-background-color","",x.contentActionPrimary),u.extend("--ft-toggle-on-state-layer-color","",x.contentActionPrimary),u.extend("--ft-toggle-on-icon-color","",x.contentActionPrimary),u.extend("--ft-toggle-color","",x.contentGlobalPrimary),u.extend("--ft-toggle-focus-focus-ring-color","",x.borderActionFocusRing),u.extend("--ft-toggle-gap","",b.spacing3),u.extend("--ft-radio-color","",x.contentGlobalPrimary),u.extend("--ft-radio-selected-radio-color","",x.contentActionPrimary),u.extend("--ft-radio-selected-state-layer-color","",x.contentActionPrimary),u.extend("--ft-radio-selected-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-radio-selected-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-radio-selected-active-state-layer-opacity","",b.opacity24),u.extend("--ft-radio-selected-disabled-component-opacity","",b.opacity40),u.extend("--ft-radio-unselected-state-layer-color","",x.borderInputPrimary),u.extend("--ft-radio-unselected-border-color","",x.borderInputPrimary),u.extend("--ft-radio-unselected-hover-state-layer-opacity","",b.opacity16),u.extend("--ft-radio-unselected-focus-state-layer-opacity","",b.opacity16),u.extend("--ft-radio-unselected-active-state-layer-opacity","",b.opacity24),u.extend("--ft-radio-unselected-disabled-component-opacity","",b.opacity40),u.extend("--ft-radio-focus-focus-ring-color","",x.borderActionFocusRing),u.create("--ft-radio-focus-outline-offset","","SIZE","3px"),u.create("--ft-radio-focus-outline-width","","SIZE","2px"),u.extend("--ft-radio-gap","",b.spacing3),u.extend("--ft-notification-icon-size","",b.iconSize4),u.extend("--ft-notification-horizontal-padding","",b.spacing4),u.extend("--ft-notification-vertical-padding","",b.spacing4),u.extend("--ft-notification-info-background-color","",x.backgroundInfoSubtle),u.extend("--ft-notification-info-color","",x.contentInfoPrimary),u.extend("--ft-notification-info-icon-color","",x.contentInfoIconOnly),u.extend("--ft-notification-info-border-color","",x.borderInfoSubtle),u.extend("--ft-notification-success-background-color","",x.backgroundSuccessSubtle),u.extend("--ft-notification-success-color","",x.contentSuccessPrimary),u.extend("--ft-notification-success-icon-color","",x.contentSuccessIconOnly),u.extend("--ft-notification-success-border-color","",x.borderSuccessSubtle),u.extend("--ft-notification-warning-background-color","",x.backgroundWarningSubtle),u.extend("--ft-notification-warning-color","",x.contentWarningPrimary),u.extend("--ft-notification-warning-icon-color","",x.contentWarningIconOnly),u.extend("--ft-notification-warning-border-color","",x.borderWarningSubtle),u.extend("--ft-notification-error-background-color","",x.backgroundErrorSubtle),u.extend("--ft-notification-error-color","",x.contentErrorPrimary),u.extend("--ft-notification-error-icon-color","",x.contentErrorIconOnly),u.extend("--ft-notification-error-border-color","",x.borderErrorSubtle),u.extend("--ft-notification-border-radius","",b.borderRadiusPill),u.create("--ft-notification-border-width","","SIZE","1px"),u.extend("--ft-notification-leading-gap","",b.spacing2),u.extend("--ft-notification-trailing-gap","",b.spacing8),u.extend("--ft-tooltip-horizontal-padding","",b.spacing2),u.extend("--ft-tooltip-vertical-padding","",b.spacing2),u.extend("--ft-tooltip-border-radius","",b.borderRadiusS),u.extend("--ft-tooltip-color","",x.contentGlobalOnColor),u.extend("--ft-tooltip-background-color","",x.contentGlobalPrimary),u.extend("--ft-tooltip-background-opacity","",b.opacity80),u.extend("--ft-tooltip-shadow","",b.shadowElevation03),u.create("--ft-tooltip-max-width","","SIZE","256px"),u.extend("--ft-tooltip-gap","",b.spacing05);const O=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.titleFont),N=o.FtCssVariableFactory.extend("--ft-typography-font-family","",o.designSystemVariables.contentFont),w={fontFamily:N,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")},S=o.FtCssVariableFactory.extend("--ft-typography-title-font-family","",O),C=o.FtCssVariableFactory.extend("--ft-typography-title-font-size","",w.fontSize,"20px"),I=o.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",w.fontWeight,"normal"),$=o.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",w.letterSpacing,"0.15px"),E=o.FtCssVariableFactory.extend("--ft-typography-title-line-height","",w.lineHeight,"1.2"),W=o.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",w.textTransform,"inherit"),U=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",O),k=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",w.fontSize,"14px"),R=o.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",w.fontWeight,"normal"),L=o.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",w.letterSpacing,"0.105px"),Z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",w.lineHeight,"1.7"),z=o.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",w.textTransform,"inherit"),K=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",N),F=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",w.fontSize,"16px"),D=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",w.fontWeight,"600"),B=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",w.letterSpacing,"0.144px"),A=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",w.lineHeight,"1.5"),H=o.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",w.textTransform,"inherit"),G=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",N),M=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",w.fontSize,"14px"),P=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",w.fontWeight,"normal"),j=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",w.letterSpacing,"0.098px"),T=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",w.lineHeight,"1.7"),Y=o.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",w.textTransform,"inherit"),_=o.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",N),V=o.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",w.fontSize,"16px"),X=o.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",w.fontWeight,"normal"),q=o.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",w.letterSpacing,"0.496px"),J=o.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",w.lineHeight,"1.5"),Q=o.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",w.textTransform,"inherit"),tt=o.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",N),ot=o.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",w.fontSize,"14px"),et=o.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",w.fontWeight,"normal"),rt=o.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",w.letterSpacing,"0.252px"),it=o.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",w.lineHeight,"1.4"),at=o.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",w.textTransform,"inherit"),nt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",N),lt=o.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",w.fontSize,"12px"),ct=o.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",w.fontWeight,"normal"),st=o.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",w.letterSpacing,"0.396px"),pt=o.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",w.lineHeight,"1.33"),ft=o.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",w.textTransform,"inherit"),dt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",N),ht=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",w.fontSize,"10px"),gt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",w.fontWeight,"normal"),yt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",w.letterSpacing,"0.33px"),ut=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",w.lineHeight,"1.6"),bt=o.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",w.textTransform,"inherit"),mt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",N),xt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",w.fontSize,"10px"),vt=o.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",w.fontWeight,"normal"),Ot=o.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",w.letterSpacing,"1.5px"),Nt=o.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",w.lineHeight,"1.6"),wt=o.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",w.textTransform,"uppercase"),St={fontFamily:o.FtCssVariableFactory.extend("--ft-typography-button-font-family","",N),fontSize:o.FtCssVariableFactory.extend("--ft-typography-button-font-size","",w.fontSize,"14px"),fontWeight:o.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",w.fontWeight,"600"),letterSpacing:o.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",w.letterSpacing,"1.246px"),lineHeight:o.FtCssVariableFactory.extend("--ft-typography-button-line-height","",w.lineHeight,"1.15"),textTransform:o.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",w.textTransform,"uppercase")},Ct=e.css`
|
|
113
|
+
`;var tt=m(I()),h=m(v());var mt=m(I(),1),Ot=e=>typeof e=="string"?(0,mt.unsafeCSS)(e):e,t=class{static create(o,r,i,a){let l=p=>Ot(p??a),c=mt.css`var(${Ot(o)}, ${l(a)})`;return c.name=o,c.description=r,c.category=i,c.defaultValue=a,c.defaultCssValue=l,c.get=p=>mt.css`var(${Ot(o)}, ${l(p)})`,c.breadcrumb=()=>[],c.lastResortDefaultValue=()=>a,c}static extend(o,r,i,a){let l=p=>i.get(p??a),c=mt.css`var(${Ot(o)}, ${l(a)})`;return c.name=o,c.description=r,c.category=i.category,c.fallbackVariable=i,c.defaultValue=a,c.defaultCssValue=l,c.get=p=>mt.css`var(${Ot(o)}, ${l(p)})`,c.breadcrumb=()=>[i.name,...i.breadcrumb()],c.lastResortDefaultValue=()=>a??i.lastResortDefaultValue(),c}static external(o,r){let i=l=>o.fallbackVariable?o.fallbackVariable.get(l??o.defaultValue):Ot(l??o.lastResortDefaultValue()),a=mt.css`var(${Ot(o.name)}, ${i(o.defaultValue)})`;return a.name=o.name,a.category=o.category,a.fallbackVariable=o.fallbackVariable,a.defaultValue=o.defaultValue,a.context=r,a.defaultCssValue=i,a.get=l=>mt.css`var(${Ot(o.name)}, ${i(l)})`,a.breadcrumb=()=>o.fallbackVariable?[o.fallbackVariable.name,...o.fallbackVariable.breadcrumb()]:[],a.lastResortDefaultValue=()=>o.lastResortDefaultValue(),a}};var n={colorWhite:t.create("--ft-color-white","","COLOR","#ffffff"),colorGray0:t.create("--ft-color-gray-0","","COLOR","#71718e"),colorGray10:t.create("--ft-color-gray-10","","COLOR","#fbfbfc"),colorGray20:t.create("--ft-color-gray-20","","COLOR","#f2f2f5"),colorGray30:t.create("--ft-color-gray-30","","COLOR","#e9e9ed"),colorGray40:t.create("--ft-color-gray-40","","COLOR","#e0e0e6"),colorGray50:t.create("--ft-color-gray-50","","COLOR","#cdcdd7"),colorGray60:t.create("--ft-color-gray-60","","COLOR","#bbbbc9"),colorGray70:t.create("--ft-color-gray-70","","COLOR","#a8a8ba"),colorGray80:t.create("--ft-color-gray-80","","COLOR","#9696ab"),colorGray90:t.create("--ft-color-gray-90","","COLOR","#83839d"),colorGray100:t.create("--ft-color-gray-100","","COLOR","#62627c"),colorGray200:t.create("--ft-color-gray-200","","COLOR","#545469"),colorGray300:t.create("--ft-color-gray-300","","COLOR","#454557"),colorGray400:t.create("--ft-color-gray-400","","COLOR","#363644"),colorGray500:t.create("--ft-color-gray-500","","COLOR","#282832"),colorGray600:t.create("--ft-color-gray-600","","COLOR","#19191f"),colorGray700:t.create("--ft-color-gray-700","","COLOR","#0a0a0d"),colorBrand0:t.create("--ft-color-brand-0","","COLOR","#9d207b"),colorBrand10:t.create("--ft-color-brand-10","","COLOR","#f7edf4"),colorBrand20:t.create("--ft-color-brand-20","","COLOR","#ebcfe4"),colorBrand30:t.create("--ft-color-brand-30","","COLOR","#dfb2d3"),colorBrand40:t.create("--ft-color-brand-40","","COLOR","#d395c2"),colorBrand50:t.create("--ft-color-brand-50","","COLOR","#c778b1"),colorBrand60:t.create("--ft-color-brand-60","","COLOR","#ba5ba1"),colorBrand70:t.create("--ft-color-brand-70","","COLOR","#ae3e90"),colorBrand100:t.create("--ft-color-brand-100","","COLOR","#8d1d6e"),colorBrand200:t.create("--ft-color-brand-200","","COLOR","#78185e"),colorBrand300:t.create("--ft-color-brand-300","","COLOR","#62144d"),colorBrand400:t.create("--ft-color-brand-400","","COLOR","#4d103c"),colorBrand500:t.create("--ft-color-brand-500","","COLOR","#380b2c"),colorBrand600:t.create("--ft-color-brand-600","","COLOR","#23071b"),colorBrand700:t.create("--ft-color-brand-700","","COLOR","#0d030b"),colorCyan0:t.create("--ft-color-cyan-0","","COLOR","#0e98b4"),colorCyan10:t.create("--ft-color-cyan-10","","COLOR","#ebf6f9"),colorCyan20:t.create("--ft-color-cyan-20","","COLOR","#cbe9ef"),colorCyan30:t.create("--ft-color-cyan-30","","COLOR","#acdbe5"),colorCyan40:t.create("--ft-color-cyan-40","","COLOR","#8ccedb"),colorCyan50:t.create("--ft-color-cyan-50","","COLOR","#6dc0d1"),colorCyan60:t.create("--ft-color-cyan-60","","COLOR","#4db3c8"),colorCyan70:t.create("--ft-color-cyan-70","","COLOR","#2ea5be"),colorCyan100:t.create("--ft-color-cyan-100","","COLOR","#0c849c"),colorCyan200:t.create("--ft-color-cyan-200","","COLOR","#0a7085"),colorCyan300:t.create("--ft-color-cyan-300","","COLOR","#085c6d"),colorCyan400:t.create("--ft-color-cyan-400","","COLOR","#074856"),colorCyan500:t.create("--ft-color-cyan-500","","COLOR","#05343e"),colorCyan600:t.create("--ft-color-cyan-600","","COLOR","#032127"),colorCyan700:t.create("--ft-color-cyan-700","","COLOR","#010d0f"),colorGreen0:t.create("--ft-color-green-0","","COLOR","#21a274"),colorGreen10:t.create("--ft-color-green-10","","COLOR","#edf7f3"),colorGreen20:t.create("--ft-color-green-20","","COLOR","#cfebe1"),colorGreen30:t.create("--ft-color-green-30","","COLOR","#b2dfcf"),colorGreen40:t.create("--ft-color-green-40","","COLOR","#95d3bd"),colorGreen50:t.create("--ft-color-green-50","","COLOR","#78c7ab"),colorGreen60:t.create("--ft-color-green-60","","COLOR","#5bba98"),colorGreen70:t.create("--ft-color-green-70","","COLOR","#3eae86"),colorGreen100:t.create("--ft-color-green-100","","COLOR","#1d8d65"),colorGreen200:t.create("--ft-color-green-200","","COLOR","#187856"),colorGreen300:t.create("--ft-color-green-300","","COLOR","#146246"),colorGreen400:t.create("--ft-color-green-400","","COLOR","#104d37"),colorGreen500:t.create("--ft-color-green-500","","COLOR","#0b3828"),colorGreen600:t.create("--ft-color-green-600","","COLOR","#072319"),colorGreen700:t.create("--ft-color-green-700","","COLOR","#030d0a"),colorOrange0:t.create("--ft-color-orange-0","","COLOR","#F2700D"),colorOrange10:t.create("--ft-color-orange-10","","COLOR","#FFF7EB"),colorOrange20:t.create("--ft-color-orange-20","","COLOR","#FFEDD6"),colorOrange30:t.create("--ft-color-orange-30","","COLOR","#FFDDB2"),colorOrange40:t.create("--ft-color-orange-40","","COLOR","#FECB90"),colorOrange50:t.create("--ft-color-orange-50","","COLOR","#FCB76E"),colorOrange60:t.create("--ft-color-orange-60","","COLOR","#F9A34D"),colorOrange70:t.create("--ft-color-orange-70","","COLOR","#F68B2C"),colorOrange100:t.create("--ft-color-orange-100","","COLOR","#D35909"),colorOrange200:t.create("--ft-color-orange-200","","COLOR","#B74706"),colorOrange300:t.create("--ft-color-orange-300","","COLOR","#913503"),colorOrange400:t.create("--ft-color-orange-400","","COLOR","#6F2601"),colorOrange500:t.create("--ft-color-orange-500","","COLOR","#4D1800"),colorOrange600:t.create("--ft-color-orange-600","","COLOR","#330F00"),colorOrange700:t.create("--ft-color-orange-700","","COLOR","#140600"),colorRed0:t.create("--ft-color-red-0","","COLOR","#b40e2c"),colorRed10:t.create("--ft-color-red-10","","COLOR","#f9ebed"),colorRed20:t.create("--ft-color-red-20","","COLOR","#efcbd2"),colorRed30:t.create("--ft-color-red-30","","COLOR","#e5acb6"),colorRed40:t.create("--ft-color-red-40","","COLOR","#db8c9b"),colorRed50:t.create("--ft-color-red-50","","COLOR","#d16d7f"),colorRed60:t.create("--ft-color-red-60","","COLOR","#c84d63"),colorRed70:t.create("--ft-color-red-70","","COLOR","#be2e48"),colorRed100:t.create("--ft-color-red-100","","COLOR","#9c0c26"),colorRed200:t.create("--ft-color-red-200","","COLOR","#850a20"),colorRed300:t.create("--ft-color-red-300","","COLOR","#6d081b"),colorRed400:t.create("--ft-color-red-400","","COLOR","#560715"),colorRed500:t.create("--ft-color-red-500","","COLOR","#3e050f"),colorRed600:t.create("--ft-color-red-600","","COLOR","#270309"),colorRed700:t.create("--ft-color-red-700","","COLOR","#0f0104"),colorYellow0:t.create("--ft-color-yellow-0","","COLOR","#E4C00C"),colorYellow10:t.create("--ft-color-yellow-10","","COLOR","#fefae9"),colorYellow20:t.create("--ft-color-yellow-20","","COLOR","#fcf4ca"),colorYellow30:t.create("--ft-color-yellow-30","","COLOR","#faedaa"),colorYellow40:t.create("--ft-color-yellow-40","","COLOR","#f9e78b"),colorYellow50:t.create("--ft-color-yellow-50","","COLOR","#f7e06b"),colorYellow60:t.create("--ft-color-yellow-60","","COLOR","#F4D63E"),colorYellow70:t.create("--ft-color-yellow-70","","COLOR","#F3CE16"),colorYellow100:t.create("--ft-color-yellow-100","","COLOR","#d3b10b"),colorYellow200:t.create("--ft-color-yellow-200","","COLOR","#b3970a"),colorYellow300:t.create("--ft-color-yellow-300","","COLOR","#947c08"),colorYellow400:t.create("--ft-color-yellow-400","","COLOR","#746206"),colorYellow500:t.create("--ft-color-yellow-500","","COLOR","#554705"),colorYellow600:t.create("--ft-color-yellow-600","","COLOR","#352d03"),colorYellow700:t.create("--ft-color-yellow-700","","COLOR","#161201"),colorUltramarine0:t.create("--ft-color-ultramarine-0","","COLOR","#3C19E5"),colorUltramarine10:t.create("--ft-color-ultramarine-10","","COLOR","#EDEAFD"),colorUltramarine20:t.create("--ft-color-ultramarine-20","","COLOR","#D4CCF9"),colorUltramarine30:t.create("--ft-color-ultramarine-30","","COLOR","#BBAFF6"),colorUltramarine40:t.create("--ft-color-ultramarine-40","","COLOR","#A191F3"),colorUltramarine50:t.create("--ft-color-ultramarine-50","","COLOR","#8873EF"),colorUltramarine60:t.create("--ft-color-ultramarine-60","","COLOR","#6F55EC"),colorUltramarine70:t.create("--ft-color-ultramarine-70","","COLOR","#5537E8"),colorUltramarine100:t.create("--ft-color-ultramarine-100","","COLOR","#3416C7"),colorUltramarine200:t.create("--ft-color-ultramarine-200","","COLOR","#2C13A9"),colorUltramarine300:t.create("--ft-color-ultramarine-300","","COLOR","#250F8C"),colorUltramarine400:t.create("--ft-color-ultramarine-400","","COLOR","#1D0C6E"),colorUltramarine500:t.create("--ft-color-ultramarine-500","","COLOR","#150950"),colorUltramarine600:t.create("--ft-color-ultramarine-600","","COLOR","#0D0532"),colorUltramarine700:t.create("--ft-color-ultramarine-700","","COLOR","#050215"),colorAvocado0:t.create("--ft-color-avocado-0","","COLOR","#98BD28"),colorAvocado10:t.create("--ft-color-avocado-10","","COLOR","#F6F9EC"),colorAvocado20:t.create("--ft-color-avocado-20","","COLOR","#E8F0D0"),colorAvocado30:t.create("--ft-color-avocado-30","","COLOR","#DBE8B4"),colorAvocado40:t.create("--ft-color-avocado-40","","COLOR","#CEDF98"),colorAvocado50:t.create("--ft-color-avocado-50","","COLOR","#C0D77C"),colorAvocado60:t.create("--ft-color-avocado-60","","COLOR","#B3CE60"),colorAvocado70:t.create("--ft-color-avocado-70","","COLOR","#A5C644"),colorAvocado100:t.create("--ft-color-avocado-100","","COLOR","#84A423"),colorAvocado200:t.create("--ft-color-avocado-200","","COLOR","#708C1E"),colorAvocado300:t.create("--ft-color-avocado-300","","COLOR","#5D7318"),colorAvocado400:t.create("--ft-color-avocado-400","","COLOR","#495B13"),colorAvocado500:t.create("--ft-color-avocado-500","","COLOR","#35420E"),colorAvocado600:t.create("--ft-color-avocado-600","","COLOR","#212A09"),colorAvocado700:t.create("--ft-color-avocado-700","","COLOR","#0E1104"),colorBrown0:t.create("--ft-color-brown-0","","COLOR","#B26F4D"),colorBrown10:t.create("--ft-color-brown-10","","COLOR","#F8F2EF"),colorBrown20:t.create("--ft-color-brown-20","","COLOR","#EEDFD8"),colorBrown30:t.create("--ft-color-brown-30","","COLOR","#E4CDC1"),colorBrown40:t.create("--ft-color-brown-40","","COLOR","#DABAAA"),colorBrown50:t.create("--ft-color-brown-50","","COLOR","#D0A792"),colorBrown60:t.create("--ft-color-brown-60","","COLOR","#C6947B"),colorBrown70:t.create("--ft-color-brown-70","","COLOR","#BC8264"),colorBrown100:t.create("--ft-color-brown-100","","COLOR","#9B6143"),colorBrown200:t.create("--ft-color-brown-200","","COLOR","#845239"),colorBrown300:t.create("--ft-color-brown-300","","COLOR","#6D442F"),colorBrown400:t.create("--ft-color-brown-400","","COLOR","#553525"),colorBrown500:t.create("--ft-color-brown-500","","COLOR","#3E271B"),colorBrown600:t.create("--ft-color-brown-600","","COLOR","#271811"),colorBrown700:t.create("--ft-color-brown-700","","COLOR","#100A07"),spacing1:t.create("--ft-spacing-1","","SIZE","0.25rem"),spacing2:t.create("--ft-spacing-2","","SIZE","calc(var(--ft-spacing-2, 0.25rem)*2)"),spacing3:t.create("--ft-spacing-3","","SIZE","calc(var(--ft-spacing-3, 0.25rem)*3)"),spacing4:t.create("--ft-spacing-4","","SIZE","calc(var(--ft-spacing-4, 0.25rem)*4)"),spacing5:t.create("--ft-spacing-5","","SIZE","calc(var(--ft-spacing-5, 0.25rem)*5)"),spacing6:t.create("--ft-spacing-6","","SIZE","calc(var(--ft-spacing-6, 0.25rem)*6)"),spacing8:t.create("--ft-spacing-8","","SIZE","calc(var(--ft-spacing-8, 0.25rem)*8)"),spacing10:t.create("--ft-spacing-10","","SIZE","calc(var(--ft-spacing-10, 0.25rem)*10)"),spacing12:t.create("--ft-spacing-12","","SIZE","calc(var(--ft-spacing-12, 0.25rem)*12)"),spacing16:t.create("--ft-spacing-16","","SIZE","calc(var(--ft-spacing-16, 0.25rem)*16)"),spacing20:t.create("--ft-spacing-20","","SIZE","calc(var(--ft-spacing-20, 0.25rem)*20)"),spacing24:t.create("--ft-spacing-24","","SIZE","calc(var(--ft-spacing-24, 0.25rem)*24)"),spacing28:t.create("--ft-spacing-28","","SIZE","calc(var(--ft-spacing-28, 0.25rem)*28)"),spacing32:t.create("--ft-spacing-32","","SIZE","calc(var(--ft-spacing-32, 0.25rem)*32)"),spacing05:t.create("--ft-spacing-0-5","","SIZE","calc(var(--ft-spacing-0-5, 0.25rem)*0.5)"),borderRadiusS:t.create("--ft-border-radius-s","","SIZE","4px"),borderRadiusM:t.create("--ft-border-radius-m","","SIZE","8px"),borderRadiusL:t.create("--ft-border-radius-l","","SIZE","12px"),borderRadiusXl:t.create("--ft-border-radius-xl","","SIZE","16px"),borderRadiusPill:t.create("--ft-border-radius-pill","","SIZE","999px"),borderRadiusRound:t.create("--ft-border-radius-round","","SIZE","50%"),iconSize1:t.create("--ft-icon-size-1","","SIZE","12px"),iconSize2:t.create("--ft-icon-size-2","","SIZE","16px"),iconSize3:t.create("--ft-icon-size-3","","SIZE","20px"),iconSize4:t.create("--ft-icon-size-4","","SIZE","24px"),iconSize5:t.create("--ft-icon-size-5","","SIZE","32px"),iconSize6:t.create("--ft-icon-size-6","","SIZE","48px"),opacity0:t.create("--ft-opacity-0","","NUMBER","0"),opacity8:t.create("--ft-opacity-8","","NUMBER","0.08"),opacity16:t.create("--ft-opacity-16","","NUMBER","0.16"),opacity24:t.create("--ft-opacity-24","","NUMBER","0.24"),opacity40:t.create("--ft-opacity-40","","NUMBER","0.4"),opacity80:t.create("--ft-opacity-80","","NUMBER","0.8"),shadowElevation01:t.create("--ft-shadow-elevation-01","","SHADOW","0px 1px 4px 0px rgba(0,0,0,0.06), 0px 1px 2px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation02:t.create("--ft-shadow-elevation-02","","SHADOW","0px 4px 10px 0px rgba(0,0,0,0.06), 0px 2px 5px 0px rgba(0,0,0,0.14), 0px 0px 1px 0px rgba(0,0,0,0.06)"),shadowElevation03:t.create("--ft-shadow-elevation-03","","SHADOW","0px 6px 13px 0px rgba(0,0,0,0.06), 0px 3px 7px 0px rgba(0,0,0,0.14), 0px 1px 2px 0px rgba(0,0,0,0.06)"),shadowElevation04:t.create("--ft-shadow-elevation-04","","SHADOW","0px 8px 16px 0px rgba(0,0,0,0.06), 0px 4px 9px 0px rgba(0,0,0,0.14), 0px 2px 3px 0px rgba(0,0,0,0.06)"),shadowElevation06:t.create("--ft-shadow-elevation-06","","SHADOW","0px 12px 22px 0px rgba(0,0,0,0.06), 0px 6px 13px 0px rgba(0,0,0,0.14), 0px 4px 5px 0px rgba(0,0,0,0.06)"),shadowElevation08:t.create("--ft-shadow-elevation-08","","SHADOW","0px 16px 28px 0px rgba(0,0,0,0.06), 0px 8px 17px 0px rgba(0,0,0,0.14), 0px 6px 7px 0px rgba(0,0,0,0.06)"),shadowElevation12:t.create("--ft-shadow-elevation-12","","SHADOW","0px 22px 40px 0px rgba(0,0,0,0.06), 0px 12px 23px 0px rgba(0,0,0,0.14), 0px 10px 11px 0px rgba(0,0,0,0.06)"),shadowElevation16:t.create("--ft-shadow-elevation-16","","SHADOW","0px 28px 52px 0px rgba(0,0,0,0.06), 0px 16px 29px 0px rgba(0,0,0,0.14), 0px 14px 15px 0px rgba(0,0,0,0.06)"),shadowElevation24:t.create("--ft-shadow-elevation-24","","SHADOW","0px 40px 76px 0px rgba(0,0,0,0.06), 0px 24px 41px 0px rgba(0,0,0,0.14), 0px 22px 23px 0px rgba(0,0,0,0.06)")},Mo={fontFamily:t.create("--ft-typography-display-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-display-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-display-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-display-fontSize","","SIZE","2.5rem"),letterSpacing:t.create("--ft-typography-display-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-display-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-display-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-display-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-display-textCase","","UNKNOWN","none")},Go={fontFamily:t.create("--ft-typography-title-1-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-1-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-title-1-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-1-fontSize","","SIZE","1.5rem"),letterSpacing:t.create("--ft-typography-title-1-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-1-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-1-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-1-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-1-textCase","","UNKNOWN","none")},Zo={fontFamily:t.create("--ft-typography-title-2-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-2-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-2-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-2-fontSize","","SIZE","1.25rem"),letterSpacing:t.create("--ft-typography-title-2-letterSpacing","","SIZE","-0.02em"),paragraphSpacing:t.create("--ft-typography-title-2-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-2-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-2-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-2-textCase","","UNKNOWN","none")},Ko={fontFamily:t.create("--ft-typography-title-3-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-title-3-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-title-3-lineHeight","","SIZE","120%"),fontSize:t.create("--ft-typography-title-3-fontSize","","SIZE","1.125rem"),letterSpacing:t.create("--ft-typography-title-3-letterSpacing","","SIZE","-0.01em"),paragraphSpacing:t.create("--ft-typography-title-3-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-title-3-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-title-3-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-title-3-textCase","","UNKNOWN","none")},Fo={fontFamily:t.create("--ft-typography-body-1-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-1-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-regular-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-regular-textCase","","UNKNOWN","none")},Vo={fontFamily:t.create("--ft-typography-body-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-1-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-medium-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-medium-textCase","","UNKNOWN","none")},jo={fontFamily:t.create("--ft-typography-body-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-1-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-1-semibold-fontSize","","SIZE","1rem"),letterSpacing:t.create("--ft-typography-body-1-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-1-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-1-semibold-textCase","","UNKNOWN","none")},Yo={fontFamily:t.create("--ft-typography-body-2-regular-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-regular-fontWeight","","UNKNOWN","400"),lineHeight:t.create("--ft-typography-body-2-regular-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-regular-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-regular-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-regular-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-regular-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-regular-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-regular-textCase","","UNKNOWN","none")},Xo={fontFamily:t.create("--ft-typography-body-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-medium-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-medium-textCase","","UNKNOWN","none")},ba={fontFamily:t.create("--ft-typography-body-2-medium-underline-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-medium-underline-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-body-2-medium-underline-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-medium-underline-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-medium-underline-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-medium-underline-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-medium-underline-paragraphIndent","","UNKNOWN","0"),textCase:t.create("--ft-typography-body-2-medium-underline-textCase","","UNKNOWN","none"),textDecoration:t.create("--ft-typography-body-2-medium-underline-textDecoration","","UNKNOWN","underline")},qo={fontFamily:t.create("--ft-typography-body-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-body-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-body-2-semibold-lineHeight","","SIZE","135%"),fontSize:t.create("--ft-typography-body-2-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-body-2-semibold-letterSpacing","","SIZE","normal"),paragraphSpacing:t.create("--ft-typography-body-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-body-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-body-2-semibold-textDecoration","","UNKNOWN","none"),textCase:t.create("--ft-typography-body-2-semibold-textCase","","UNKNOWN","none")},Jo={fontFamily:t.create("--ft-typography-label-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-1-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-medium-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-medium-textDecoration","","UNKNOWN","none")},Qo={fontFamily:t.create("--ft-typography-label-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-1-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-semibold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-semibold-textDecoration","","UNKNOWN","none")},tr={fontFamily:t.create("--ft-typography-label-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-1-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-1-bold-fontSize","","SIZE","0.875rem"),letterSpacing:t.create("--ft-typography-label-1-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-1-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-1-bold-textDecoration","","UNKNOWN","none")},er={fontFamily:t.create("--ft-typography-label-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-label-2-medium-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-medium-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-medium-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-medium-textDecoration","","UNKNOWN","none")},or={fontFamily:t.create("--ft-typography-label-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-label-2-semibold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-semibold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-semibold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-semibold-textDecoration","","UNKNOWN","none")},rr={fontFamily:t.create("--ft-typography-label-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-label-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-label-2-bold-lineHeight","","SIZE","110%"),fontSize:t.create("--ft-typography-label-2-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-label-2-bold-letterSpacing","","SIZE","0.04em"),textCase:t.create("--ft-typography-label-2-bold-textCase","","UNKNOWN","uppercase"),paragraphSpacing:t.create("--ft-typography-label-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-label-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-label-2-bold-textDecoration","","UNKNOWN","none")},nr={fontFamily:t.create("--ft-typography-caption-1-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-1-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-medium-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-medium-textDecoration","","UNKNOWN","none")},ar={fontFamily:t.create("--ft-typography-caption-1-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-1-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-semibold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-semibold-textDecoration","","UNKNOWN","none")},ir={fontFamily:t.create("--ft-typography-caption-1-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-1-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-1-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-1-bold-fontSize","","SIZE","0.75rem"),letterSpacing:t.create("--ft-typography-caption-1-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-1-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-1-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-1-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-1-bold-textDecoration","","UNKNOWN","none")},lr={fontFamily:t.create("--ft-typography-caption-2-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-2-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-medium-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-medium-textDecoration","","UNKNOWN","none")},cr={fontFamily:t.create("--ft-typography-caption-2-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-2-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-semibold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-semibold-textDecoration","","UNKNOWN","none")},sr={fontFamily:t.create("--ft-typography-caption-2-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-2-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-2-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-2-bold-fontSize","","SIZE","0.6875rem"),letterSpacing:t.create("--ft-typography-caption-2-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-2-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-2-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-2-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-2-bold-textDecoration","","UNKNOWN","none")},pr={fontFamily:t.create("--ft-typography-caption-3-medium-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-medium-fontWeight","","UNKNOWN","500"),lineHeight:t.create("--ft-typography-caption-3-medium-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-medium-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-medium-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-medium-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-medium-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-medium-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-medium-textDecoration","","UNKNOWN","none")},dr={fontFamily:t.create("--ft-typography-caption-3-semibold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-semibold-fontWeight","","UNKNOWN","600"),lineHeight:t.create("--ft-typography-caption-3-semibold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-semibold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-semibold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-semibold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-semibold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-semibold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-semibold-textDecoration","","UNKNOWN","none")},fr={fontFamily:t.create("--ft-typography-caption-3-bold-fontFamily","","UNKNOWN","Inter"),fontWeight:t.create("--ft-typography-caption-3-bold-fontWeight","","UNKNOWN","700"),lineHeight:t.create("--ft-typography-caption-3-bold-lineHeight","","SIZE","130%"),fontSize:t.create("--ft-typography-caption-3-bold-fontSize","","SIZE","0.625rem"),letterSpacing:t.create("--ft-typography-caption-3-bold-letterSpacing","","SIZE","normal"),textCase:t.create("--ft-typography-caption-3-bold-textCase","","UNKNOWN","none"),paragraphSpacing:t.create("--ft-typography-caption-3-bold-paragraphSpacing","","UNKNOWN","normal"),paragraphIndent:t.create("--ft-typography-caption-3-bold-paragraphIndent","","UNKNOWN","0"),textDecoration:t.create("--ft-typography-caption-3-bold-textDecoration","","UNKNOWN","none")},Ee={display:Mo,"title-1":Go,"title-2":Zo,"title-3":Ko,"body-1-regular":Fo,"body-1-medium":Vo,"body-1-semibold":jo,"body-2-regular":Yo,"body-2-medium":Xo,"body-2-medium-underline":ba,"body-2-semibold":qo,"label-1-medium":Jo,"label-1-semibold":Qo,"label-1-bold":tr,"label-2-medium":er,"label-2-semibold":or,"label-2-bold":rr,"caption-1-medium":nr,"caption-1-semibold":ar,"caption-1-bold":ir,"caption-2-medium":lr,"caption-2-semibold":cr,"caption-2-bold":sr,"caption-3-medium":pr,"caption-3-semibold":dr,"caption-3-bold":fr};var s={backgroundActionPrimary:t.extend("--ft-background-action-primary","Used as backgorund of primary action components.",n.colorBrand0),backgroundErrorSubtle:t.extend("--ft-background-error-subtle","Used as background of subtle error components.",n.colorRed10),backgroundInfoSubtle:t.extend("--ft-background-info-subtle","Used as background of subtle information components.",n.colorCyan10),backgroundWarningSubtle:t.extend("--ft-background-warning-subtle","Used as background of subtle information components.",n.colorOrange10),backgroundSuccessSubtle:t.extend("--ft-background-success-subtle","Used as background of subtle success components.",n.colorGreen10),backgroundGlobalSurface:t.extend("--ft-background-global-surface","Used as app background.",n.colorWhite),backgroundGlobalOnSurface:t.extend("--ft-background-global-on-surface","Used as background on element on the base background, like cards.",n.colorGray10),backgroundGlobalOnSurfaceDark:t.extend("--ft-background-global-on-surface-dark","Used as background on element that need background separation.",n.colorGray30),contentActionPrimary:t.extend("--ft-content-action-primary","Used on label of primary action on light surface.",n.colorBrand0),contentWarningPrimary:t.extend("--ft-content-warning-primary","Used on label of warning messages on light surface.",n.colorOrange200),contentWarningIconOnly:t.extend("--ft-content-warning-icon-only","Used on warning status icons alone",n.colorOrange0),contentErrorPrimary:t.extend("--ft-content-error-primary","Used on label of error messages on light surface.",n.colorRed0),contentErrorIconOnly:t.extend("--ft-content-error-icon-only","Used on error status icons alone",n.colorRed70),contentInfoPrimary:t.extend("--ft-content-info-primary","Used on label of information messages on light surface.",n.colorCyan200),contentInfoIconOnly:t.extend("--ft-content-info-icon-only","Used on info status icons alone",n.colorCyan0),contentSuccessPrimary:t.extend("--ft-content-success-primary","Used on label of success messages on light surface.",n.colorGreen200),contentSuccessIconOnly:t.extend("--ft-content-success-icon-only","Used on success status icons alone",n.colorGreen0),contentGlobalPrimary:t.extend("--ft-content-global-primary","Used for main content on the page.",n.colorGray500),contentGlobalSecondary:t.extend("--ft-content-global-secondary",`Used for secondary content, often paired with primary content.
|
|
114
|
+
Also for action icons.`,n.colorGray200),contentGlobalSubtle:t.extend("--ft-content-global-subtle","Used for placeholder, unselected items in a tab component or breadcrumb.",n.colorGray0),contentGlobalOnColor:t.extend("--ft-content-global-on-color","Used for content on a dominant color.",n.colorWhite),borderActionPrimary:t.extend("--ft-border-action-primary","Used as border for primary action components.",n.colorBrand0),borderActionFocusRing:t.extend("--ft-border-action-focus-ring","Focus ring is an additional border to indicate focus-visible state.",n.colorCyan0),borderWarningPrimary:t.extend("--ft-border-warning-primary","Used as border for text fields in warning state and for buttons in warning color",n.colorOrange200),borderWarningSubtle:t.extend("--ft-border-warning-subtle","Used as border for warning components.",n.colorOrange30),borderSuccessPrimary:t.extend("--ft-border-success-primary","Used as border for success buttons.",n.colorGreen200),borderSuccessSubtle:t.extend("--ft-border-success-subtle","Used as border for success components.",n.colorGreen30),borderErrorPrimary:t.extend("--ft-border-error-primary","Used as border for text fields in error states.",n.colorRed0),borderErrorSubtle:t.extend("--ft-border-error-subtle","Used as border for error components.",n.colorRed30),borderInfoPrimary:t.extend("--ft-border-info-primary","Used as border for buttons in info color.",n.colorCyan200),borderInfoSubtle:t.extend("--ft-border-info-subtle","Used as border for information components.",n.colorCyan30),borderGlobalPrimary:t.extend("--ft-border-global-primary","Used as border for element like input.",n.colorGray50),borderGlobalSubtle:t.extend("--ft-border-global-subtle","Used as border to deliminate an area filled with background.on-surface and separators.",n.colorGray30),borderInputPrimary:t.extend("--ft-border-input-primary","Used as border for checkboxes and radio buttons",n.colorGray80)};var g={largeHeight:t.create("--ft-button-large-height","","SIZE","40px"),largeHorizontalPadding:t.extend("--ft-button-large-horizontal-padding","",n.spacing4),largeGap:t.extend("--ft-button-large-gap","",n.spacing2),largeBorderRadius:t.extend("--ft-button-large-border-radius","",n.borderRadiusS),largeIconSize:t.extend("--ft-button-large-icon-size","",n.iconSize3),largeBorderWidth:t.create("--ft-button-large-border-width","","SIZE","1px"),largeFocusOutlineOffset:t.create("--ft-button-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-button-large-focus-outline-width","","SIZE","2px"),largeIconOnlyWidth:t.create("--ft-button-large-icon-only-width","","SIZE","40px"),smallHeight:t.create("--ft-button-small-height","","SIZE","30px"),smallHorizontalPadding:t.extend("--ft-button-small-horizontal-padding","",n.spacing3),smallGap:t.extend("--ft-button-small-gap","",n.spacing2),smallBorderRadius:t.extend("--ft-button-small-border-radius","",n.borderRadiusS),smallIconSize:t.extend("--ft-button-small-icon-size","",n.iconSize2),smallBorderWidth:t.create("--ft-button-small-border-width","","SIZE","1px"),smallFocusOutlineOffset:t.create("--ft-button-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-button-small-focus-outline-width","","SIZE","2px"),smallIconOnlyWidth:t.create("--ft-button-small-icon-only-width","","SIZE","30px"),primaryBackgroundColor:t.extend("--ft-button-primary-background-color","",s.backgroundActionPrimary),primaryColor:t.extend("--ft-button-primary-color","",s.contentGlobalOnColor),primaryIconColor:t.extend("--ft-button-primary-icon-color","",s.contentGlobalOnColor),primaryStateLayerColor:t.extend("--ft-button-primary-state-layer-color","",s.contentGlobalOnColor),primaryHoverStateLayerOpacity:t.extend("--ft-button-primary-hover-state-layer-opacity","",n.opacity16),primaryFocusStateLayerOpacity:t.extend("--ft-button-primary-focus-state-layer-opacity","",n.opacity16),primaryActiveStateLayerOpacity:t.extend("--ft-button-primary-active-state-layer-opacity","",n.opacity24),primaryDisabledComponentOpacity:t.extend("--ft-button-primary-disabled-component-opacity","",n.opacity40),focusFocusRingColor:t.extend("--ft-button-focus-focus-ring-color","",s.borderActionFocusRing),tertiaryBackgroundColor:t.create("--ft-button-tertiary-background-color","","COLOR","rgba(0,0,0,0)"),tertiaryColor:t.extend("--ft-button-tertiary-color","",s.contentActionPrimary),tertiaryIconColor:t.extend("--ft-button-tertiary-icon-color","",s.contentActionPrimary),tertiaryStateLayerColor:t.extend("--ft-button-tertiary-state-layer-color","",s.contentActionPrimary),tertiaryHoverStateLayerOpacity:t.extend("--ft-button-tertiary-hover-state-layer-opacity","",n.opacity8),tertiaryFocusStateLayerOpacity:t.extend("--ft-button-tertiary-focus-state-layer-opacity","",n.opacity8),tertiaryActiveStateLayerOpacity:t.extend("--ft-button-tertiary-active-state-layer-opacity","",n.opacity16),tertiaryDisabledComponentOpacity:t.extend("--ft-button-tertiary-disabled-component-opacity","",n.opacity40),secondaryBackgroundColor:t.create("--ft-button-secondary-background-color","","COLOR","rgba(0,0,0,0)"),secondaryColor:t.extend("--ft-button-secondary-color","",s.contentActionPrimary),secondaryIconColor:t.extend("--ft-button-secondary-icon-color","",s.contentActionPrimary),secondaryStateLayerColor:t.extend("--ft-button-secondary-state-layer-color","",s.contentActionPrimary),secondaryHoverStateLayerOpacity:t.extend("--ft-button-secondary-hover-state-layer-opacity","",n.opacity8),secondaryFocusStateLayerOpacity:t.extend("--ft-button-secondary-focus-state-layer-opacity","",n.opacity8),secondaryActiveStateLayerOpacity:t.extend("--ft-button-secondary-active-state-layer-opacity","",n.opacity16),secondaryDisabledComponentOpacity:t.extend("--ft-button-secondary-disabled-component-opacity","",n.opacity40),secondaryBorderColor:t.extend("--ft-button-secondary-border-color","",s.borderActionPrimary),neutralBackgroundColor:t.create("--ft-button-neutral-background-color","","COLOR","rgba(0,0,0,0)"),neutralIconColor:t.extend("--ft-button-neutral-icon-color","",s.contentGlobalSecondary),neutralColor:t.extend("--ft-button-neutral-color","",s.contentGlobalSecondary),neutralStateLayerColor:t.extend("--ft-button-neutral-state-layer-color","",s.contentGlobalSecondary),neutralHoverStateLayerOpacity:t.extend("--ft-button-neutral-hover-state-layer-opacity","",n.opacity8),neutralFocusStateLayerOpacity:t.extend("--ft-button-neutral-focus-state-layer-opacity","",n.opacity8),neutralActiveStateLayerOpacity:t.extend("--ft-button-neutral-active-state-layer-opacity","",n.opacity16),neutralDisabledComponentOpacity:t.extend("--ft-button-neutral-disabled-component-opacity","",n.opacity40)};var ui={iconSize:t.extend("--ft-banner-icon-size","",n.iconSize5),borderWidth:t.create("--ft-banner-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-banner-horizontal-padding","",n.spacing6),verticalPadding:t.extend("--ft-banner-vertical-padding","",n.spacing6),horizontalSideGap:t.extend("--ft-banner-horizontal-side-gap","",n.spacing6),horizontalMobileGap:t.extend("--ft-banner-horizontal-mobile-gap","",n.spacing4),verticalMobileGap:t.extend("--ft-banner-vertical-mobile-gap","",n.spacing6),horizontalMiddleGap:t.extend("--ft-banner-horizontal-middle-gap","",n.spacing20),infoBackgroundColor:t.extend("--ft-banner-info-background-color","",s.backgroundInfoSubtle),infoColor:t.extend("--ft-banner-info-color","",s.contentInfoPrimary),infoIconColor:t.extend("--ft-banner-info-icon-color","",s.contentInfoIconOnly)};var bi={horizontalGap:t.extend("--ft-breadcrumb-horizontal-gap","",n.spacing1),verticalGap:t.extend("--ft-breadcrumb-vertical-gap","",n.spacing2),currentElementColor:t.extend("--ft-breadcrumb-current-element-color","",s.contentGlobalPrimary),iconColor:t.extend("--ft-breadcrumb-icon-color","",s.contentGlobalSubtle)};var Oi={horizontalPadding:t.extend("--ft-page-header-horizontal-padding","",n.spacing12),horizontalGap:t.extend("--ft-page-header-horizontal-gap","",n.spacing4),verticalGap:t.extend("--ft-page-header-vertical-gap","",n.spacing2),classicVerticalPadding:t.extend("--ft-page-header-classic-vertical-padding","",n.spacing6),multilineVerticalPadding:t.extend("--ft-page-header-multiline-vertical-padding","",n.spacing4),inlineVerticalPadding:t.extend("--ft-page-header-inline-vertical-padding","",n.spacing2),backgroundColor:t.extend("--ft-page-header-background-color","",n.colorWhite),bottomBorderColor:t.extend("--ft-page-header-bottom-border-color","",s.borderGlobalSubtle),titleColor:t.extend("--ft-page-header-title-color","",s.contentGlobalPrimary),subtitleColor:t.extend("--ft-page-header-subtitle-color","",s.contentGlobalSecondary)};var Ai={smallContainerWidth:t.create("--ft-modal-small-container-width","","SIZE","600px"),largeContainerWidth:t.create("--ft-modal-large-container-width","","SIZE","900px"),overlayBackgroundColor:t.extend("--ft-modal-overlay-background-color","",n.colorGray700),overlayOpacity:t.extend("--ft-modal-overlay-opacity","",n.opacity40),shadow:t.extend("--ft-modal-shadow","",n.shadowElevation03),bodyBackgroundColor:t.extend("--ft-modal-body-background-color","",n.colorWhite),bodyColor:t.extend("--ft-modal-body-color","",s.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-modal-body-horizontal-padding","",n.spacing6),bodyVerticalPadding:t.extend("--ft-modal-body-vertical-padding","",n.spacing6),bodyVerticalGap:t.extend("--ft-modal-body-vertical-gap","",n.spacing6),containerMargin:t.extend("--ft-modal-container-margin","",n.spacing3),headerBackgroundColor:t.extend("--ft-modal-header-background-color","",s.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-modal-header-border-color","",s.borderGlobalSubtle),headerColor:t.extend("--ft-modal-header-color","",s.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-modal-header-trailing-icon-color","",s.contentGlobalSecondary),headerVerticalPadding:t.extend("--ft-modal-header-vertical-padding","",n.spacing1),headerRightPadding:t.extend("--ft-modal-header-right-padding","",n.spacing1),headerLeftPadding:t.extend("--ft-modal-header-left-padding","",n.spacing6),headerGap:t.extend("--ft-modal-header-gap","",n.spacing2),headerBorderBottom:t.create("--ft-modal-header-border-bottom","","SIZE","1px"),borderRadius:t.extend("--ft-modal-border-radius","",n.borderRadiusM)};var Pi={overlayOpacity:t.extend("--ft-drawer-overlay-opacity","",n.opacity40),shadow:t.extend("--ft-drawer-shadow","",n.shadowElevation03),bodyColor:t.extend("--ft-drawer-body-color","",s.contentGlobalPrimary),bodyHorizontalPadding:t.extend("--ft-drawer-body-horizontal-padding","",n.spacing6),bodyVerticalPadding:t.extend("--ft-drawer-body-vertical-padding","",n.spacing6),bodyGap:t.extend("--ft-drawer-body-gap","",n.spacing6),bodyBackgroundColor:t.extend("--ft-drawer-body-background-color","",n.colorWhite),headerBackgroundColor:t.extend("--ft-drawer-header-background-color","",s.backgroundGlobalOnSurface),headerBorderColor:t.extend("--ft-drawer-header-border-color","",s.borderGlobalSubtle),headerColor:t.extend("--ft-drawer-header-color","",s.contentGlobalPrimary),headerTrailingIconColor:t.extend("--ft-drawer-header-trailing-icon-color","",s.contentGlobalSecondary),headerHeight:t.create("--ft-drawer-header-height","","SIZE","50px"),headerHorizontalPadding:t.extend("--ft-drawer-header-horizontal-padding","",n.spacing2),headerBorderWidth:t.create("--ft-drawer-header-border-width","","SIZE","1px"),headerGap:t.extend("--ft-drawer-header-gap","",n.spacing3),buttonsBarBackgroundColor:t.extend("--ft-drawer-buttons-bar-background-color","",s.backgroundGlobalOnSurface),buttonsBarBorderColor:t.extend("--ft-drawer-buttons-bar-border-color","",s.borderGlobalSubtle),buttonsBarColor:t.extend("--ft-drawer-buttons-bar-color","",s.contentGlobalPrimary),buttonsBarHorizontalPadding:t.extend("--ft-drawer-buttons-bar-horizontal-padding","",n.spacing4),buttonsBarVerticalPadding:t.extend("--ft-drawer-buttons-bar-vertical-padding","",n.spacing4),buttonsBarGap:t.extend("--ft-drawer-buttons-bar-gap","",n.spacing3),buttonsBarBorderWidth:t.create("--ft-drawer-buttons-bar-border-width","","SIZE","1px"),containerWidth:t.create("--ft-drawer-container-width","","SIZE","66%"),containerMinWidth:t.create("--ft-drawer-container-min-width","","SIZE","500px"),containerMaxWidth:t.create("--ft-drawer-container-max-width","","SIZE","1000px"),containerHeight:t.create("--ft-drawer-container-height","","SIZE","100%"),overlayBackgroundColor:t.extend("--ft-drawer-overlay-background-color","",n.colorGray700)};var Ui={fieldHorizontalPadding:t.extend("--ft-text-input-field-horizontal-padding","",n.spacing4),fieldHorizontalGap:t.extend("--ft-text-input-field-horizontal-gap","",n.spacing3),fieldVerticalGap:t.extend("--ft-text-input-field-vertical-gap","",n.spacing05),fieldIconSize:t.extend("--ft-text-input-field-icon-size","",n.iconSize3),fieldHeight:t.create("--ft-text-input-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-text-input-helper-horizontal-padding","",n.spacing4),helperHorizontalGap:t.extend("--ft-text-input-helper-horizontal-gap","",n.spacing1),helperIconSize:t.extend("--ft-text-input-helper-icon-size","",n.iconSize2),borderRadius:t.extend("--ft-text-input-border-radius","",n.borderRadiusM),backgroundColor:t.extend("--ft-text-input-background-color","",n.colorWhite),contentValueColor:t.extend("--ft-text-input-content-value-color","",s.contentGlobalPrimary),trailingIconColor:t.extend("--ft-text-input-trailing-icon-color","",s.contentGlobalSubtle),labelColor:t.extend("--ft-text-input-label-color","",s.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-input-default-border-color","",s.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-input-default-helper-text-color","",s.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-input-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-input-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-input-error-border-color","",s.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-input-error-helper-text-color","",s.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-input-error-helper-icon-color","",s.contentErrorIconOnly),warningBorderWidth:t.create("--ft-text-input-warning-border-width","","SIZE","2px"),focusOutlineWidth:t.create("--ft-text-input-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-text-input-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineOffset:t.create("--ft-text-input-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-input-disabled-component-opacity","",n.opacity40)};var Gi={backgroundColor:t.extend("--ft-text-area-background-color","",n.colorWhite),contentValueColor:t.extend("--ft-text-area-content-value-color","",s.contentGlobalPrimary),labelColor:t.extend("--ft-text-area-label-color","",s.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-text-area-default-border-color","",s.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-text-area-default-helper-text-color","",s.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-text-area-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-text-area-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-text-area-error-border-color","",s.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-text-area-error-helper-text-color","",s.contentErrorPrimary),errorHelperIconColor:t.extend("--ft-text-area-error-helper-icon-color","",s.contentErrorIconOnly),focusFocusRingColor:t.extend("--ft-text-area-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineWidth:t.create("--ft-text-area-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-text-area-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-text-area-disabled-component-opacity","",n.opacity40),fieldHorizontalLeftPadding:t.extend("--ft-text-area-field-horizontal-left-padding","",n.spacing4),fieldHorizontalGap:t.extend("--ft-text-area-field-horizontal-gap","",n.spacing3),fieldVerticalGap:t.extend("--ft-text-area-field-vertical-gap","",n.spacing05),fieldMinHeight:t.create("--ft-text-area-field-min-height","","SIZE","64px"),helperHorizontalPadding:t.extend("--ft-text-area-helper-horizontal-padding","",n.spacing4),helperHorizontalGap:t.extend("--ft-text-area-helper-horizontal-gap","",n.spacing1),helperIconSize:t.extend("--ft-text-area-helper-icon-size","",n.iconSize2),borderRadius:t.extend("--ft-text-area-border-radius","",n.borderRadiusM)};var ji={height:t.create("--ft-floating-menu-height","","SIZE","50px"),horizontalPadding:t.extend("--ft-floating-menu-horizontal-padding","",n.spacing4),offIconColor:t.extend("--ft-floating-menu-off-icon-color","",s.contentGlobalPrimary),offColor:t.extend("--ft-floating-menu-off-color","",s.contentGlobalPrimary),onColor:t.extend("--ft-floating-menu-on-color","",s.contentActionPrimary),onStateLayerColor:t.extend("--ft-floating-menu-on-state-layer-color","",s.contentActionPrimary),gap:t.extend("--ft-floating-menu-gap","",n.spacing3),focusFocusRingColor:t.extend("--ft-floating-menu-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineWidth:t.create("--ft-floating-menu-focus-outline-width","","SIZE","3px"),focusStateLayerOpacity:t.extend("--ft-floating-menu-focus-state-layer-opacity","",n.opacity8),hoverStateLayerOpacity:t.extend("--ft-floating-menu-hover-state-layer-opacity","",n.opacity8),activeStateLayerOpacity:t.extend("--ft-floating-menu-active-state-layer-opacity","",n.opacity16),disabledComponentOpacity:t.extend("--ft-floating-menu-disabled-component-opacity","",n.opacity40),iconSize:t.extend("--ft-floating-menu-icon-size","",n.iconSize3),backgroundColor:t.extend("--ft-floating-menu-background-color","",s.backgroundGlobalOnSurface)};var Qi={fieldHorizontalPadding:t.extend("--ft-combobox-single-select-field-horizontal-padding","",n.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-single-select-field-horizontal-gap","",n.spacing3),fieldVerticalGap:t.extend("--ft-combobox-single-select-field-vertical-gap","",n.spacing05),fieldIconSize:t.extend("--ft-combobox-single-select-field-icon-size","",n.iconSize3),fieldHeight:t.create("--ft-combobox-single-select-field-height","","SIZE","50px"),helperHorizontalPadding:t.extend("--ft-combobox-single-select-helper-horizontal-padding","",n.spacing4),helperHorizontalGap:t.extend("--ft-combobox-single-select-helper-horizontal-gap","",n.spacing1),helperVerticalGap:t.extend("--ft-combobox-single-select-helper-vertical-gap","",n.spacing1),helperIconSize:t.extend("--ft-combobox-single-select-helper-icon-size","",n.iconSize2),menuVerticalGap:t.extend("--ft-combobox-single-select-menu-vertical-gap","",n.spacing2),borderRadius:t.extend("--ft-combobox-single-select-border-radius","",n.borderRadiusM),backgroundColor:t.extend("--ft-combobox-single-select-background-color","",n.colorWhite),labelColor:t.extend("--ft-combobox-single-select-label-color","",s.contentGlobalSubtle),contentValueColor:t.extend("--ft-combobox-single-select-content-value-color","",s.contentGlobalPrimary),trailingIconColor:t.extend("--ft-combobox-single-select-trailing-icon-color","",s.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-single-select-default-border-color","",s.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-single-select-default-helper-text-color","",s.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-single-select-default-border-width","","SIZE","1px"),errorBorderWidth:t.create("--ft-combobox-single-select-error-border-width","","SIZE","2px"),errorBorderColor:t.extend("--ft-combobox-single-select-error-border-color","",s.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-single-select-error-helper-text-color","",s.contentErrorPrimary),warningBorderWidth:t.create("--ft-combobox-single-select-warning-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-single-select-warning-border-color","",s.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-single-select-warning-helper-text-color","",s.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-single-select-warning-helper-icon-color","",s.contentWarningIconOnly),focusOutlineWidth:t.create("--ft-combobox-single-select-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-single-select-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineOffset:t.create("--ft-combobox-single-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-single-select-disabled-component-opacity","",n.opacity40)};var nl={backgroundColor:t.extend("--ft-combobox-multi-select-background-color","",n.colorWhite),labelColor:t.extend("--ft-combobox-multi-select-label-color","",s.contentGlobalSubtle),trailingIconColor:t.extend("--ft-combobox-multi-select-trailing-icon-color","",s.contentGlobalSubtle),defaultBorderColor:t.extend("--ft-combobox-multi-select-default-border-color","",s.borderInputPrimary),defaultHelperTextColor:t.extend("--ft-combobox-multi-select-default-helper-text-color","",s.contentGlobalSubtle),defaultBorderWidth:t.create("--ft-combobox-multi-select-default-border-width","","SIZE","1px"),errorBorderColor:t.extend("--ft-combobox-multi-select-error-border-color","",s.borderErrorPrimary),errorHelperTextColor:t.extend("--ft-combobox-multi-select-error-helper-text-color","",s.contentErrorPrimary),errorHelperIcon:t.extend("--ft-combobox-multi-select-error-helper-icon","",s.contentErrorIconOnly),errorBorderWidth:t.create("--ft-combobox-multi-select-error-border-width","","SIZE","2px"),warningBorderColor:t.extend("--ft-combobox-multi-select-warning-border-color","",s.borderWarningPrimary),warningHelperTextColor:t.extend("--ft-combobox-multi-select-warning-helper-text-color","",s.contentWarningPrimary),warningHelperIconColor:t.extend("--ft-combobox-multi-select-warning-helper-icon-color","",s.contentWarningIconOnly),warningBorderWidth:t.create("--ft-combobox-multi-select-warning-border-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-combobox-multi-select-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineWidth:t.create("--ft-combobox-multi-select-focus-outline-width","","SIZE","2px"),focusOutlineOffset:t.create("--ft-combobox-multi-select-focus-outline-offset","","SIZE","3px"),disabledComponentOpacity:t.extend("--ft-combobox-multi-select-disabled-component-opacity","",n.opacity40),helperHorizontalPadding:t.extend("--ft-combobox-multi-select-helper-horizontal-padding","",n.spacing4),helperHorizontalGap:t.extend("--ft-combobox-multi-select-helper-horizontal-gap","",n.spacing1),helperVerticalGap:t.extend("--ft-combobox-multi-select-helper-vertical-gap","",n.spacing1),helperIconSize:t.extend("--ft-combobox-multi-select-helper-icon-size","",n.iconSize2),fieldHorizontalPadding:t.extend("--ft-combobox-multi-select-field-horizontal-padding","",n.spacing4),fieldHorizontalGap:t.extend("--ft-combobox-multi-select-field-horizontal-gap","",n.spacing3),fieldVerticalGap:t.extend("--ft-combobox-multi-select-field-vertical-gap","",n.spacing05),fieldIconSize:t.extend("--ft-combobox-multi-select-field-icon-size","",n.iconSize3),fieldMaxHeight:t.create("--ft-combobox-multi-select-field-max-height","","SIZE","112px"),contentValuesHorizontalGap:t.extend("--ft-combobox-multi-select-content-values-horizontal-gap","",n.spacing1),contentValuesVerticalGap:t.extend("--ft-combobox-multi-select-content-values-vertical-gap","",n.spacing1),borderRadius:t.extend("--ft-combobox-multi-select-border-radius","",n.borderRadiusM)};var sl={backgroundColor:t.extend("--ft-popover-background-color","",s.backgroundGlobalOnSurface),horizontalPadding:t.extend("--ft-popover-horizontal-padding","",n.spacing6),verticalPadding:t.extend("--ft-popover-vertical-padding","",n.spacing6),iconColor:t.extend("--ft-popover-icon-color","",s.contentGlobalSecondary),iconSize:t.extend("--ft-popover-icon-size","",n.iconSize2),titleColor:t.extend("--ft-popover-title-color","",s.contentGlobalPrimary),bodyColor:t.extend("--ft-popover-body-color","",s.contentGlobalSecondary),linkColor:t.extend("--ft-popover-link-color","",s.contentActionPrimary),gap:t.extend("--ft-popover-gap","",n.spacing3),borderRadius:t.extend("--ft-popover-border-radius","",n.borderRadiusM),shadow:t.extend("--ft-popover-shadow","",n.shadowElevation02)};var hl={topLeftBorderRadius:t.extend("--ft-tabs-top-left-border-radius","",n.borderRadiusS),topRightBorderRadius:t.extend("--ft-tabs-top-right-border-radius","",n.borderRadiusS),labelHorizontalPadding:t.extend("--ft-tabs-label-horizontal-padding","",n.spacing4),labelVerticalPadding:t.extend("--ft-tabs-label-vertical-padding","",n.spacing3),labelGap:t.extend("--ft-tabs-label-gap","",n.spacing1),offHoverStateLayerOpacity:t.extend("--ft-tabs-off-hover-state-layer-opacity","",n.opacity8),offFocusStateLayerOpacity:t.extend("--ft-tabs-off-focus-state-layer-opacity","",n.opacity8),offActiveStateLayerOpacity:t.extend("--ft-tabs-off-active-state-layer-opacity","",n.opacity16),offDisabledComponentOpacity:t.extend("--ft-tabs-off-disabled-component-opacity","",n.opacity40),offColor:t.extend("--ft-tabs-off-color","",s.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-tabs-off-state-layer-color","",s.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-tabs-on-hover-state-layer-opacity","",n.opacity8),onFocusStateLayerOpacity:t.extend("--ft-tabs-on-focus-state-layer-opacity","",n.opacity8),onActiveStateLayerOpacity:t.extend("--ft-tabs-on-active-state-layer-opacity","",n.opacity16),onDisabledComponentOpacity:t.extend("--ft-tabs-on-disabled-component-opacity","",n.opacity40),onColor:t.extend("--ft-tabs-on-color","",s.contentActionPrimary),onStateLayerColor:t.extend("--ft-tabs-on-state-layer-color","",s.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-tabs-icon-horizontal-padding","",n.spacing1),iconVerticalPadding:t.extend("--ft-tabs-icon-vertical-padding","",n.spacing4),focusOutlineWidth:t.create("--ft-tabs-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-tabs-focus-focus-ring-color","",s.borderActionFocusRing)};var xl={hoverStateLayerOpacity:t.extend("--ft-collapsible-hover-state-layer-opacity","",n.opacity8),focusStateLayerOpacity:t.extend("--ft-collapsible-focus-state-layer-opacity","",n.opacity8),focusOutlineWidth:t.create("--ft-collapsible-focus-outline-width","","SIZE","3px"),focusFocusRingColor:t.extend("--ft-collapsible-focus-focus-ring-color","",s.borderActionFocusRing),activeStateLayerOpacity:t.extend("--ft-collapsible-active-state-layer-opacity","",n.opacity16),disabledComponentOpacity:t.extend("--ft-collapsible-disabled-component-opacity","",n.opacity40),horizontalPadding:t.extend("--ft-collapsible-horizontal-padding","",n.spacing4),verticalPadding:t.extend("--ft-collapsible-vertical-padding","",n.spacing3),color:t.extend("--ft-collapsible-color","",s.contentGlobalPrimary),stateLayerColor:t.extend("--ft-collapsible-state-layer-color","",s.contentGlobalPrimary),backgroundColor:t.extend("--ft-collapsible-background-color","",s.backgroundGlobalOnSurface),borderColor:t.extend("--ft-collapsible-border-color","",s.borderGlobalSubtle),iconSize:t.extend("--ft-collapsible-icon-size","",n.iconSize3)};var wl={groupHorizontalPadding:t.extend("--ft-switch-group-horizontal-padding","",n.spacing1),groupVerticalPadding:t.extend("--ft-switch-group-vertical-padding","",n.spacing1),groupGap:t.extend("--ft-switch-group-gap","",n.spacing1),groupBackgroundColor:t.extend("--ft-switch-group-background-color","",s.backgroundGlobalSurface),groupBorderColor:t.extend("--ft-switch-group-border-color","",s.borderGlobalSubtle),groupBorderRadius:t.create("--ft-switch-group-border-radius","","SIZE","6px"),labelHorizontalPadding:t.extend("--ft-switch-label-horizontal-padding","",n.spacing2),labelVerticalPadding:t.extend("--ft-switch-label-vertical-padding","",n.spacing1),offHoverStateLayerOpacity:t.extend("--ft-switch-off-hover-state-layer-opacity","",n.opacity8),offFocusStateLayerOpacity:t.extend("--ft-switch-off-focus-state-layer-opacity","",n.opacity8),offActiveStateLayerOpacity:t.extend("--ft-switch-off-active-state-layer-opacity","",n.opacity16),offDisabledComponentOpacity:t.extend("--ft-switch-off-disabled-component-opacity","",n.opacity40),offColor:t.extend("--ft-switch-off-color","",s.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-switch-off-state-layer-color","",s.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-switch-on-hover-state-layer-opacity","",n.opacity8),onFocusStateLayerOpacity:t.extend("--ft-switch-on-focus-state-layer-opacity","",n.opacity8),onActiveStateLayerOpacity:t.extend("--ft-switch-on-active-state-layer-opacity","",n.opacity16),onDisabledComponentOpacity:t.extend("--ft-switch-on-disabled-component-opacity","",n.opacity40),onColor:t.extend("--ft-switch-on-color","",s.contentActionPrimary),onStateLayerColor:t.extend("--ft-switch-on-state-layer-color","",s.contentActionPrimary),iconHorizontalPadding:t.extend("--ft-switch-icon-horizontal-padding","",n.spacing1),iconVerticalPadding:t.extend("--ft-switch-icon-vertical-padding","",n.spacing1),focusOutlineWidth:t.create("--ft-switch-focus-outline-width","","SIZE","2px"),focusFocusRingColor:t.extend("--ft-switch-focus-focus-ring-color","",s.borderActionFocusRing),optionBorderRadius:t.extend("--ft-switch-option-border-radius","",n.borderRadiusS)};var Al={color1Light:t.extend("--ft-chart-1-light","for area color charts",n.colorBrand40),color1Base:t.extend("--ft-chart-1-base","for line charts",n.colorBrand0),color2Light:t.extend("--ft-chart-2-light","for area color charts",n.colorYellow60),color2Base:t.extend("--ft-chart-2-base","for line charts",n.colorYellow100),color3Light:t.extend("--ft-chart-3-light","",n.colorUltramarine40),color3Base:t.extend("--ft-chart-3-base","",n.colorUltramarine70),color4Light:t.extend("--ft-chart-4-light","",n.colorCyan50),color4Base:t.extend("--ft-chart-4-base","",n.colorCyan100),color5Light:t.extend("--ft-chart-5-light","",n.colorRed40),color5Base:t.extend("--ft-chart-5-base","",n.colorRed60),color6Light:t.extend("--ft-chart-6-light","",n.colorGreen40),color6Base:t.extend("--ft-chart-6-base","",n.colorGreen70),color7Light:t.extend("--ft-chart-7-light","",n.colorOrange70),color7Base:t.extend("--ft-chart-7-base","",n.colorOrange100),color8Light:t.extend("--ft-chart-8-light","",n.colorAvocado70),color8Base:t.extend("--ft-chart-8-base","",n.colorAvocado200),color9Light:t.extend("--ft-chart-9-light","",n.colorBrown50),color9Base:t.extend("--ft-chart-9-base","",n.colorBrown200),color10Light:t.extend("--ft-chart-10-light","",n.colorGray50),color10Base:t.extend("--ft-chart-10-base","",n.colorGray80),monochrome10:t.extend("--ft-chart-monochrome-10","",n.colorBrand10),monochrome20:t.extend("--ft-chart-monochrome-20","",n.colorBrand20),monochrome30:t.extend("--ft-chart-monochrome-30","",n.colorBrand40),monochrome40:t.extend("--ft-chart-monochrome-40","",n.colorBrand60),monochrome50:t.extend("--ft-chart-monochrome-50","",n.colorBrand0),monochrome60:t.extend("--ft-chart-monochrome-60","",n.colorBrand200)};var Pl={largeHorizontalPadding:t.extend("--ft-chip-large-horizontal-padding","",n.spacing4),largeVerticalPadding:t.extend("--ft-chip-large-vertical-padding","",n.spacing2),largeGap:t.extend("--ft-chip-large-gap","",n.spacing1),largeFocusOutlineOffset:t.create("--ft-chip-large-focus-outline-offset","","SIZE","2px"),largeFocusOutlineWidth:t.create("--ft-chip-large-focus-outline-width","","SIZE","2px"),largeBorderRadius:t.extend("--ft-chip-large-border-radius","",n.borderRadiusPill),largeBorderWidth:t.create("--ft-chip-large-border-width","","SIZE","1px"),largeIconSize:t.extend("--ft-chip-large-icon-size","",n.iconSize3),mediumHorizontalPadding:t.extend("--ft-chip-medium-horizontal-padding","",n.spacing3),mediumVerticalPadding:t.extend("--ft-chip-medium-vertical-padding","",n.spacing1),mediumGap:t.extend("--ft-chip-medium-gap","",n.spacing1),mediumFocusOutlineOffset:t.create("--ft-chip-medium-focus-outline-offset","","SIZE","2px"),mediumFocusOutlineWidth:t.create("--ft-chip-medium-focus-outline-width","","SIZE","2px"),mediumBorderRadius:t.extend("--ft-chip-medium-border-radius","",n.borderRadiusPill),mediumBorderWidth:t.create("--ft-chip-medium-border-width","","SIZE","1px"),mediumIconSize:t.extend("--ft-chip-medium-icon-size","",n.iconSize2),smallHorizontalPadding:t.extend("--ft-chip-small-horizontal-padding","",n.spacing2),smallVerticalPadding:t.extend("--ft-chip-small-vertical-padding","",n.spacing05),smallGap:t.extend("--ft-chip-small-gap","",n.spacing1),smallFocusOutlineOffset:t.create("--ft-chip-small-focus-outline-offset","","SIZE","2px"),smallFocusOutlineWidth:t.create("--ft-chip-small-focus-outline-width","","SIZE","2px"),smallBorderRadius:t.extend("--ft-chip-small-border-radius","",n.borderRadiusPill),smallBorderWidth:t.create("--ft-chip-small-border-width","","SIZE","1px"),smallIconSize:t.extend("--ft-chip-small-icon-size","",n.iconSize1),neutralBackgroundColor:t.extend("--ft-chip-neutral-background-color","",s.backgroundGlobalOnSurface),neutralColor:t.extend("--ft-chip-neutral-color","",s.contentGlobalPrimary),neutralIconColor:t.extend("--ft-chip-neutral-icon-color","",s.contentGlobalPrimary),neutralBorderColor:t.extend("--ft-chip-neutral-border-color","",s.borderGlobalSubtle),infoBackgroundColor:t.extend("--ft-chip-info-background-color","",s.backgroundInfoSubtle),infoColor:t.extend("--ft-chip-info-color","",s.contentInfoPrimary),infoIconColor:t.extend("--ft-chip-info-icon-color","",s.contentInfoIconOnly),infoBorderColor:t.extend("--ft-chip-info-border-color","",s.borderInfoSubtle),successBackgroundColor:t.extend("--ft-chip-success-background-color","",s.backgroundSuccessSubtle),successColor:t.extend("--ft-chip-success-color","",s.contentSuccessPrimary),successIconColor:t.extend("--ft-chip-success-icon-color","",s.contentSuccessIconOnly),successBorderColor:t.extend("--ft-chip-success-border-color","",s.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-chip-warning-background-color","",s.backgroundWarningSubtle),warningColor:t.extend("--ft-chip-warning-color","",s.contentWarningPrimary),warningIconColor:t.extend("--ft-chip-warning-icon-color","",s.contentWarningIconOnly),warningBorderColor:t.extend("--ft-chip-warning-border-color","",s.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-chip-error-background-color","",s.backgroundErrorSubtle),errorColor:t.extend("--ft-chip-error-color","",s.contentErrorPrimary),errorIconColor:t.extend("--ft-chip-error-icon-color","",s.contentErrorIconOnly),errorBorderColor:t.extend("--ft-chip-error-border-color","",s.borderErrorSubtle)};var zl={infoBorderColor:t.extend("--ft-border-info-border-color","",s.borderInfoSubtle)};var Ml={borderWidth:t.create("--ft-notice-border-width","","SIZE","1px"),horizontalPadding:t.extend("--ft-notice-horizontal-padding","",n.spacing2),verticalPadding:t.extend("--ft-notice-vertical-padding","",n.spacing1),borderRadius:t.extend("--ft-notice-border-radius","",n.borderRadiusS),gap:t.extend("--ft-notice-gap","",n.spacing2),iconSize:t.extend("--ft-notice-icon-size","",n.iconSize3),infoBackgroundColor:t.extend("--ft-notice-info-background-color","",s.backgroundInfoSubtle),infoBorderColor:t.extend("--ft-notice-info-border-color","",s.borderInfoSubtle),infoColor:t.extend("--ft-notice-info-color","",s.contentInfoPrimary),infoIconColor:t.extend("--ft-notice-info-icon-color","",s.contentInfoIconOnly),warningBackgroundColor:t.extend("--ft-notice-warning-background-color","",s.backgroundWarningSubtle),warningBorderColor:t.extend("--ft-notice-warning-border-color","",s.borderWarningSubtle),warningColor:t.extend("--ft-notice-warning-color","",s.contentWarningPrimary),warningIconColor:t.extend("--ft-notice-warning-icon-color","",s.contentWarningIconOnly),errorBackgroundColor:t.extend("--ft-notice-error-background-color","",s.backgroundErrorSubtle),errorBorderColor:t.extend("--ft-notice-error-border-color","",s.borderErrorSubtle),errorColor:t.extend("--ft-notice-error-color","",s.contentErrorPrimary),errorIconColor:t.extend("--ft-notice-error-icon-color","",s.contentErrorIconOnly),successBackgroundColor:t.extend("--ft-notice-success-background-color","",s.backgroundSuccessSubtle),successBorderColor:t.extend("--ft-notice-success-border-color","",s.borderSuccessSubtle),successColor:t.extend("--ft-notice-success-color","",s.contentSuccessPrimary),successIconColor:t.extend("--ft-notice-success-icon-color","",s.contentSuccessIconOnly)};var Vl={color:t.extend("--ft-checkbox-color","",s.contentGlobalPrimary),checkedBackgroundColor:t.extend("--ft-checkbox-checked-background-color","",s.contentActionPrimary),checkedStateLayerColor:t.extend("--ft-checkbox-checked-state-layer-color","",s.contentActionPrimary),checkedIconColor:t.extend("--ft-checkbox-checked-icon-color","",s.contentGlobalOnColor),checkedHoverStateLayerOpacity:t.extend("--ft-checkbox-checked-hover-state-layer-opacity","",n.opacity16),checkedFocusStateLayerOpacity:t.extend("--ft-checkbox-checked-focus-state-layer-opacity","",n.opacity16),checkedActiveStateLayerOpacity:t.extend("--ft-checkbox-checked-active-state-layer-opacity","",n.opacity24),checkedDisabledComponentOpacity:t.extend("--ft-checkbox-checked-disabled-component-opacity","",n.opacity40),uncheckedBorderColor:t.extend("--ft-checkbox-unchecked-border-color","",n.colorGray80),uncheckedStateLayerColor:t.extend("--ft-checkbox-unchecked-state-layer-color","",n.colorGray80),uncheckedHoverStateLayerOpacity:t.extend("--ft-checkbox-unchecked-hover-state-layer-opacity","",n.opacity16),uncheckedFocusStateLayerOpacity:t.extend("--ft-checkbox-unchecked-focus-state-layer-opacity","",n.opacity16),uncheckedActiveStateLayerOpacity:t.extend("--ft-checkbox-unchecked-active-state-layer-opacity","",n.opacity24),uncheckedDisabledComponentOpacity:t.extend("--ft-checkbox-unchecked-disabled-component-opacity","",n.opacity40),focusFocusRingColor:t.extend("--ft-checkbox-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineOffset:t.create("--ft-checkbox-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-checkbox-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-checkbox-gap","",n.spacing3)};var Jl={offHoverStateLayerOpacity:t.extend("--ft-toggle-off-hover-state-layer-opacity","",n.opacity16),offFocusStateLayerOpacity:t.extend("--ft-toggle-off-focus-state-layer-opacity","",n.opacity16),offActiveStateLayerOpacity:t.extend("--ft-toggle-off-active-state-layer-opacity","",n.opacity24),offDisabledComponentOpacity:t.extend("--ft-toggle-off-disabled-component-opacity","",n.opacity40),offBackgroundColor:t.extend("--ft-toggle-off-background-color","",s.contentGlobalSubtle),offIconColor:t.extend("--ft-toggle-off-icon-color","",s.contentGlobalSubtle),offStateLayerColor:t.extend("--ft-toggle-off-state-layer-color","",s.contentGlobalSubtle),onHoverStateLayerOpacity:t.extend("--ft-toggle-on-hover-state-layer-opacity","",n.opacity16),onFocusStateLayerOpacity:t.extend("--ft-toggle-on-focus-state-layer-opacity","",n.opacity16),onActiveStateLayerOpacity:t.extend("--ft-toggle-on-active-state-layer-opacity","",n.opacity24),onDisabledComponentOpacity:t.extend("--ft-toggle-on-disabled-component-opacity","",n.opacity40),onBackgroundColor:t.extend("--ft-toggle-on-background-color","",s.contentActionPrimary),onStateLayerColor:t.extend("--ft-toggle-on-state-layer-color","",s.contentActionPrimary),onIconColor:t.extend("--ft-toggle-on-icon-color","",s.contentActionPrimary),color:t.extend("--ft-toggle-color","",s.contentGlobalPrimary),focusFocusRingColor:t.extend("--ft-toggle-focus-focus-ring-color","",s.borderActionFocusRing),gap:t.extend("--ft-toggle-gap","",n.spacing3)};var rc={color:t.extend("--ft-radio-color","",s.contentGlobalPrimary),selectedRadioColor:t.extend("--ft-radio-selected-radio-color","",s.contentActionPrimary),selectedStateLayerColor:t.extend("--ft-radio-selected-state-layer-color","",s.contentActionPrimary),selectedHoverStateLayerOpacity:t.extend("--ft-radio-selected-hover-state-layer-opacity","",n.opacity16),selectedFocusStateLayerOpacity:t.extend("--ft-radio-selected-focus-state-layer-opacity","",n.opacity16),selectedActiveStateLayerOpacity:t.extend("--ft-radio-selected-active-state-layer-opacity","",n.opacity24),selectedDisabledComponentOpacity:t.extend("--ft-radio-selected-disabled-component-opacity","",n.opacity40),unselectedStateLayerColor:t.extend("--ft-radio-unselected-state-layer-color","",s.borderInputPrimary),unselectedBorderColor:t.extend("--ft-radio-unselected-border-color","",s.borderInputPrimary),unselectedHoverStateLayerOpacity:t.extend("--ft-radio-unselected-hover-state-layer-opacity","",n.opacity16),unselectedFocusStateLayerOpacity:t.extend("--ft-radio-unselected-focus-state-layer-opacity","",n.opacity16),unselectedActiveStateLayerOpacity:t.extend("--ft-radio-unselected-active-state-layer-opacity","",n.opacity24),unselectedDisabledComponentOpacity:t.extend("--ft-radio-unselected-disabled-component-opacity","",n.opacity40),focusFocusRingColor:t.extend("--ft-radio-focus-focus-ring-color","",s.borderActionFocusRing),focusOutlineOffset:t.create("--ft-radio-focus-outline-offset","","SIZE","3px"),focusOutlineWidth:t.create("--ft-radio-focus-outline-width","","SIZE","2px"),gap:t.extend("--ft-radio-gap","",n.spacing3)};var cc={iconSize:t.extend("--ft-notification-icon-size","",n.iconSize4),horizontalPadding:t.extend("--ft-notification-horizontal-padding","",n.spacing4),verticalPadding:t.extend("--ft-notification-vertical-padding","",n.spacing4),infoBackgroundColor:t.extend("--ft-notification-info-background-color","",s.backgroundInfoSubtle),infoColor:t.extend("--ft-notification-info-color","",s.contentInfoPrimary),infoIconColor:t.extend("--ft-notification-info-icon-color","",s.contentInfoIconOnly),infoBorderColor:t.extend("--ft-notification-info-border-color","",s.borderInfoSubtle),successBackgroundColor:t.extend("--ft-notification-success-background-color","",s.backgroundSuccessSubtle),successColor:t.extend("--ft-notification-success-color","",s.contentSuccessPrimary),successIconColor:t.extend("--ft-notification-success-icon-color","",s.contentSuccessIconOnly),successBorderColor:t.extend("--ft-notification-success-border-color","",s.borderSuccessSubtle),warningBackgroundColor:t.extend("--ft-notification-warning-background-color","",s.backgroundWarningSubtle),warningColor:t.extend("--ft-notification-warning-color","",s.contentWarningPrimary),warningIconColor:t.extend("--ft-notification-warning-icon-color","",s.contentWarningIconOnly),warningBorderColor:t.extend("--ft-notification-warning-border-color","",s.borderWarningSubtle),errorBackgroundColor:t.extend("--ft-notification-error-background-color","",s.backgroundErrorSubtle),errorColor:t.extend("--ft-notification-error-color","",s.contentErrorPrimary),errorIconColor:t.extend("--ft-notification-error-icon-color","",s.contentErrorIconOnly),errorBorderColor:t.extend("--ft-notification-error-border-color","",s.borderErrorSubtle),borderRadius:t.extend("--ft-notification-border-radius","",n.borderRadiusPill),borderWidth:t.create("--ft-notification-border-width","","SIZE","1px"),leadingGap:t.extend("--ft-notification-leading-gap","",n.spacing2),trailingGap:t.extend("--ft-notification-trailing-gap","",n.spacing8)};var uc={horizontalPadding:t.extend("--ft-tooltip-horizontal-padding","",n.spacing2),verticalPadding:t.extend("--ft-tooltip-vertical-padding","",n.spacing2),borderRadius:t.extend("--ft-tooltip-border-radius","",n.borderRadiusS),color:t.extend("--ft-tooltip-color","",s.contentGlobalOnColor),backgroundColor:t.extend("--ft-tooltip-background-color","",s.contentGlobalPrimary),backgroundOpacity:t.extend("--ft-tooltip-background-opacity","",n.opacity80),shadow:t.extend("--ft-tooltip-shadow","",n.shadowElevation03),maxWidth:t.create("--ft-tooltip-max-width","","SIZE","256px"),gap:t.extend("--ft-tooltip-gap","",n.spacing05)};var Re=m(I());function ur(e){let o=Ee[e];return Re.css`
|
|
115
|
+
.ft-typography--${(0,Re.unsafeCSS)(e)} {
|
|
116
|
+
font-family: ${o.fontFamily};
|
|
117
|
+
font-size: ${o.fontSize};
|
|
118
|
+
font-weight: ${o.fontWeight};
|
|
119
|
+
letter-spacing: ${o.letterSpacing};
|
|
120
|
+
line-height: ${o.lineHeight};
|
|
121
|
+
text-transform: ${o.textCase};
|
|
122
|
+
}
|
|
123
|
+
`}var hr=h.FtCssVariableFactory.extend("--ft-typography-font-family","",h.designSystemVariables.titleFont),gt=h.FtCssVariableFactory.extend("--ft-typography-font-family","",h.designSystemVariables.contentFont),b={fontFamily:gt,fontSize:h.FtCssVariableFactory.create("--ft-typography-font-size","","SIZE","16px"),fontWeight:h.FtCssVariableFactory.create("--ft-typography-font-weight","","UNKNOWN","normal"),letterSpacing:h.FtCssVariableFactory.create("--ft-typography-letter-spacing","","SIZE","0.496px"),lineHeight:h.FtCssVariableFactory.create("--ft-typography-line-height","","NUMBER","1.5"),textTransform:h.FtCssVariableFactory.create("--ft-typography-text-transform","","UNKNOWN","inherit")},Ht={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-title-font-family","",hr),fontSize:h.FtCssVariableFactory.extend("--ft-typography-title-font-size","",b.fontSize,"20px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-title-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-title-letter-spacing","",b.letterSpacing,"0.15px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-title-line-height","",b.lineHeight,"1.2"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-title-text-transform","",b.textTransform,"inherit")},Dt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-family","",hr),fontSize:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-size","",b.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-title-dense-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-title-dense-letter-spacing","",b.letterSpacing,"0.105px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-title-dense-line-height","",b.lineHeight,"1.7"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-title-dense-text-transform","",b.textTransform,"inherit")},Mt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-size","",b.fontSize,"16px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-font-weight","",b.fontWeight,"600"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-letter-spacing","",b.letterSpacing,"0.144px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-line-height","",b.lineHeight,"1.5"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-subtitle1-text-transform","",b.textTransform,"inherit")},Gt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-size","",b.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-letter-spacing","",b.letterSpacing,"0.098px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-line-height","",b.lineHeight,"1.7"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-subtitle2-text-transform","",b.textTransform,"inherit")},Zt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-body1-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-body1-font-size","",b.fontSize,"16px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-body1-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-body1-letter-spacing","",b.letterSpacing,"0.496px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-body1-line-height","",b.lineHeight,"1.5"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-body1-text-transform","",b.textTransform,"inherit")},Kt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-body2-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-body2-font-size","",b.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-body2-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-body2-letter-spacing","",b.letterSpacing,"0.252px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-body2-line-height","",b.lineHeight,"1.4"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-body2-text-transform","",b.textTransform,"inherit")},Ft={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-caption-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-caption-font-size","",b.fontSize,"12px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-caption-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-caption-letter-spacing","",b.letterSpacing,"0.396px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-caption-line-height","",b.lineHeight,"1.33"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-caption-text-transform","",b.textTransform,"inherit")},Vt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-size","",b.fontSize,"10px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-letter-spacing","",b.letterSpacing,"0.33px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-line-height","",b.lineHeight,"1.6"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-breadcrumb-text-transform","",b.textTransform,"inherit")},jt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-overline-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-overline-font-size","",b.fontSize,"10px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-overline-font-weight","",b.fontWeight,"normal"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-overline-letter-spacing","",b.letterSpacing,"1.5px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-overline-line-height","",b.lineHeight,"1.6"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-overline-text-transform","",b.textTransform,"uppercase")},dt={fontFamily:h.FtCssVariableFactory.extend("--ft-typography-button-font-family","",gt),fontSize:h.FtCssVariableFactory.extend("--ft-typography-button-font-size","",b.fontSize,"14px"),fontWeight:h.FtCssVariableFactory.extend("--ft-typography-button-font-weight","",b.fontWeight,"600"),letterSpacing:h.FtCssVariableFactory.extend("--ft-typography-button-letter-spacing","",b.letterSpacing,"1.246px"),lineHeight:h.FtCssVariableFactory.extend("--ft-typography-button-line-height","",b.lineHeight,"1.15"),textTransform:h.FtCssVariableFactory.extend("--ft-typography-button-text-transform","",b.textTransform,"uppercase")},mr=tt.css`
|
|
114
124
|
.ft-typography--title {
|
|
115
|
-
font-family: ${
|
|
116
|
-
font-size: ${
|
|
117
|
-
font-weight: ${
|
|
118
|
-
letter-spacing: ${
|
|
119
|
-
line-height: ${
|
|
120
|
-
text-transform: ${
|
|
121
|
-
}
|
|
122
|
-
`,
|
|
125
|
+
font-family: ${Ht.fontFamily};
|
|
126
|
+
font-size: ${Ht.fontSize};
|
|
127
|
+
font-weight: ${Ht.fontWeight};
|
|
128
|
+
letter-spacing: ${Ht.letterSpacing};
|
|
129
|
+
line-height: ${Ht.lineHeight};
|
|
130
|
+
text-transform: ${Ht.textTransform};
|
|
131
|
+
}
|
|
132
|
+
`,gr=tt.css`
|
|
123
133
|
.ft-typography--title-dense {
|
|
124
|
-
font-family: ${
|
|
125
|
-
font-size: ${
|
|
126
|
-
font-weight: ${
|
|
127
|
-
letter-spacing: ${
|
|
128
|
-
line-height: ${
|
|
129
|
-
text-transform: ${
|
|
130
|
-
}
|
|
131
|
-
|
|
134
|
+
font-family: ${Dt.fontFamily};
|
|
135
|
+
font-size: ${Dt.fontSize};
|
|
136
|
+
font-weight: ${Dt.fontWeight};
|
|
137
|
+
letter-spacing: ${Dt.letterSpacing};
|
|
138
|
+
line-height: ${Dt.lineHeight};
|
|
139
|
+
text-transform: ${Dt.textTransform};
|
|
140
|
+
}
|
|
141
|
+
`,yr=tt.css`
|
|
132
142
|
.ft-typography--subtitle1 {
|
|
133
|
-
font-family: ${
|
|
134
|
-
font-size: ${
|
|
135
|
-
font-weight: ${
|
|
136
|
-
letter-spacing: ${
|
|
137
|
-
line-height: ${
|
|
138
|
-
text-transform: ${
|
|
139
|
-
}
|
|
140
|
-
`,
|
|
143
|
+
font-family: ${Mt.fontFamily};
|
|
144
|
+
font-size: ${Mt.fontSize};
|
|
145
|
+
font-weight: ${Mt.fontWeight};
|
|
146
|
+
letter-spacing: ${Mt.letterSpacing};
|
|
147
|
+
line-height: ${Mt.lineHeight};
|
|
148
|
+
text-transform: ${Mt.textTransform};
|
|
149
|
+
}
|
|
150
|
+
`,br=tt.css`
|
|
141
151
|
.ft-typography--subtitle2 {
|
|
142
|
-
font-family: ${
|
|
143
|
-
font-size: ${
|
|
144
|
-
font-weight: ${
|
|
145
|
-
letter-spacing: ${
|
|
146
|
-
line-height: ${
|
|
147
|
-
text-transform: ${
|
|
152
|
+
font-family: ${Gt.fontFamily};
|
|
153
|
+
font-size: ${Gt.fontSize};
|
|
154
|
+
font-weight: ${Gt.fontWeight};
|
|
155
|
+
letter-spacing: ${Gt.letterSpacing};
|
|
156
|
+
line-height: ${Gt.lineHeight};
|
|
157
|
+
text-transform: ${Gt.textTransform};
|
|
148
158
|
}
|
|
149
159
|
|
|
150
|
-
`,
|
|
160
|
+
`,xr=tt.css`
|
|
151
161
|
.ft-typography--body1 {
|
|
152
|
-
font-family: ${
|
|
153
|
-
font-size: ${
|
|
154
|
-
font-weight: ${
|
|
155
|
-
letter-spacing: ${
|
|
156
|
-
line-height: ${
|
|
157
|
-
text-transform: ${
|
|
158
|
-
}
|
|
159
|
-
`,
|
|
162
|
+
font-family: ${Zt.fontFamily};
|
|
163
|
+
font-size: ${Zt.fontSize};
|
|
164
|
+
font-weight: ${Zt.fontWeight};
|
|
165
|
+
letter-spacing: ${Zt.letterSpacing};
|
|
166
|
+
line-height: ${Zt.lineHeight};
|
|
167
|
+
text-transform: ${Zt.textTransform};
|
|
168
|
+
}
|
|
169
|
+
`,Sr=tt.css`
|
|
160
170
|
.ft-typography--body2 {
|
|
161
|
-
font-family: ${
|
|
162
|
-
font-size: ${
|
|
163
|
-
font-weight: ${
|
|
164
|
-
letter-spacing: ${
|
|
165
|
-
line-height: ${
|
|
166
|
-
text-transform: ${
|
|
167
|
-
}
|
|
168
|
-
`,
|
|
171
|
+
font-family: ${Kt.fontFamily};
|
|
172
|
+
font-size: ${Kt.fontSize};
|
|
173
|
+
font-weight: ${Kt.fontWeight};
|
|
174
|
+
letter-spacing: ${Kt.letterSpacing};
|
|
175
|
+
line-height: ${Kt.lineHeight};
|
|
176
|
+
text-transform: ${Kt.textTransform};
|
|
177
|
+
}
|
|
178
|
+
`,Cr=tt.css`
|
|
169
179
|
.ft-typography--caption {
|
|
170
|
-
font-family: ${
|
|
171
|
-
font-size: ${
|
|
172
|
-
font-weight: ${
|
|
173
|
-
letter-spacing: ${
|
|
174
|
-
line-height: ${
|
|
175
|
-
text-transform: ${
|
|
176
|
-
}
|
|
177
|
-
`,
|
|
180
|
+
font-family: ${Ft.fontFamily};
|
|
181
|
+
font-size: ${Ft.fontSize};
|
|
182
|
+
font-weight: ${Ft.fontWeight};
|
|
183
|
+
letter-spacing: ${Ft.letterSpacing};
|
|
184
|
+
line-height: ${Ft.lineHeight};
|
|
185
|
+
text-transform: ${Ft.textTransform};
|
|
186
|
+
}
|
|
187
|
+
`,vr=tt.css`
|
|
178
188
|
.ft-typography--breadcrumb {
|
|
179
|
-
font-family: ${
|
|
180
|
-
font-size: ${
|
|
181
|
-
font-weight: ${
|
|
182
|
-
letter-spacing: ${
|
|
183
|
-
line-height: ${
|
|
184
|
-
text-transform: ${
|
|
185
|
-
}
|
|
186
|
-
`,
|
|
189
|
+
font-family: ${Vt.fontFamily};
|
|
190
|
+
font-size: ${Vt.fontSize};
|
|
191
|
+
font-weight: ${Vt.fontWeight};
|
|
192
|
+
letter-spacing: ${Vt.letterSpacing};
|
|
193
|
+
line-height: ${Vt.lineHeight};
|
|
194
|
+
text-transform: ${Vt.textTransform};
|
|
195
|
+
}
|
|
196
|
+
`,Or=tt.css`
|
|
187
197
|
.ft-typography--overline {
|
|
188
|
-
font-family: ${
|
|
189
|
-
font-size: ${
|
|
190
|
-
font-weight: ${
|
|
191
|
-
letter-spacing: ${
|
|
192
|
-
line-height: ${
|
|
193
|
-
text-transform: ${
|
|
194
|
-
}
|
|
195
|
-
`,
|
|
198
|
+
font-family: ${jt.fontFamily};
|
|
199
|
+
font-size: ${jt.fontSize};
|
|
200
|
+
font-weight: ${jt.fontWeight};
|
|
201
|
+
letter-spacing: ${jt.letterSpacing};
|
|
202
|
+
line-height: ${jt.lineHeight};
|
|
203
|
+
text-transform: ${jt.textTransform};
|
|
204
|
+
}
|
|
205
|
+
`,wr=tt.css`
|
|
196
206
|
.ft-typography--button {
|
|
197
|
-
font-family: ${
|
|
198
|
-
font-size: ${
|
|
199
|
-
font-weight: ${
|
|
200
|
-
letter-spacing: ${
|
|
201
|
-
line-height: ${
|
|
202
|
-
text-transform: ${
|
|
203
|
-
}
|
|
204
|
-
`,
|
|
207
|
+
font-family: ${dt.fontFamily};
|
|
208
|
+
font-size: ${dt.fontSize};
|
|
209
|
+
font-weight: ${dt.fontWeight};
|
|
210
|
+
letter-spacing: ${dt.letterSpacing};
|
|
211
|
+
line-height: ${dt.lineHeight};
|
|
212
|
+
text-transform: ${dt.textTransform};
|
|
213
|
+
}
|
|
214
|
+
`,Nr=tt.css`
|
|
205
215
|
.ft-typography {
|
|
206
216
|
vertical-align: inherit;
|
|
207
217
|
}
|
|
208
|
-
`,
|
|
209
|
-
.ft-typography--${e.unsafeCSS(t)} {
|
|
210
|
-
font-family: ${o.fontFamily};
|
|
211
|
-
font-size: ${o.fontSize};
|
|
212
|
-
font-weight: ${o.fontWeight};
|
|
213
|
-
letter-spacing: ${o.letterSpacing};
|
|
214
|
-
line-height: ${o.lineHeight};
|
|
215
|
-
text-transform: ${o.textCase};
|
|
216
|
-
}
|
|
217
|
-
`}(t)))],Ft={color:o.FtCssVariableFactory.extend("--ft-loader-color","",o.designSystemVariables.colorPrimary),size:o.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Dt=e.css`
|
|
218
|
+
`,Er=[Object.keys(Ee).map(e=>ur(e))];var Rr=m(I()),le=m(v()),F={color:le.FtCssVariableFactory.extend("--ft-loader-color","",le.designSystemVariables.colorPrimary),size:le.FtCssVariableFactory.create("--ft-loader-size","","SIZE","80px")},Ar=Rr.css`
|
|
218
219
|
:host {
|
|
219
220
|
line-height: 0;
|
|
220
221
|
}
|
|
@@ -223,8 +224,8 @@
|
|
|
223
224
|
display: inline-block;
|
|
224
225
|
position: relative;
|
|
225
226
|
|
|
226
|
-
width: ${
|
|
227
|
-
height: ${
|
|
227
|
+
width: ${F.size};
|
|
228
|
+
height: ${F.size};
|
|
228
229
|
}
|
|
229
230
|
|
|
230
231
|
.ft-loader div {
|
|
@@ -233,7 +234,7 @@
|
|
|
233
234
|
width: 25%;
|
|
234
235
|
height: 25%;
|
|
235
236
|
border-radius: 50%;
|
|
236
|
-
background: ${
|
|
237
|
+
background: ${F.color};
|
|
237
238
|
animation-timing-function: cubic-bezier(0, 1, 1, 0);
|
|
238
239
|
}
|
|
239
240
|
|
|
@@ -280,10 +281,10 @@
|
|
|
280
281
|
transform: translate(0, 0);
|
|
281
282
|
}
|
|
282
283
|
100% {
|
|
283
|
-
transform: translate(calc(0.35 * ${
|
|
284
|
+
transform: translate(calc(0.35 * ${F.size}), 0);
|
|
284
285
|
}
|
|
285
286
|
}
|
|
286
|
-
|
|
287
|
+
`;var Lr=m(I()),yt=m(v()),V={size:yt.FtCssVariableFactory.create("--ft-icon-font-size","","SIZE","24px"),fluidTopicsFontFamily:yt.FtCssVariableFactory.extend("--ft-icon-fluid-topics-font-family","",yt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-icons")),fileFormatFontFamily:yt.FtCssVariableFactory.extend("--ft-icon-file-format-font-family","",yt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","ft-mime")),materialFontFamily:yt.FtCssVariableFactory.extend("--ft-icon-material-font-family","",yt.FtCssVariableFactory.create("--ft-icon-font-family","","UNKNOWN","Material Icons")),verticalAlign:yt.FtCssVariableFactory.create("--ft-icon-vertical-align","","UNKNOWN","unset")},Ir=Lr.css`
|
|
287
288
|
:host, i.ft-icon {
|
|
288
289
|
display: inline-flex;
|
|
289
290
|
align-items: center;
|
|
@@ -292,14 +293,14 @@
|
|
|
292
293
|
}
|
|
293
294
|
|
|
294
295
|
:host {
|
|
295
|
-
width: ${
|
|
296
|
-
height: ${
|
|
296
|
+
width: ${V.size};
|
|
297
|
+
height: ${V.size};
|
|
297
298
|
}
|
|
298
299
|
|
|
299
300
|
i.ft-icon {
|
|
300
301
|
width: 100%;
|
|
301
302
|
height: 100%;
|
|
302
|
-
font-size: ${
|
|
303
|
+
font-size: ${V.size};
|
|
303
304
|
line-height: 1;
|
|
304
305
|
font-weight: normal;
|
|
305
306
|
text-transform: none;
|
|
@@ -310,28 +311,28 @@
|
|
|
310
311
|
text-rendering: auto;
|
|
311
312
|
-webkit-font-smoothing: antialiased;
|
|
312
313
|
-moz-osx-font-smoothing: grayscale;
|
|
313
|
-
vertical-align: ${
|
|
314
|
+
vertical-align: ${V.verticalAlign};
|
|
314
315
|
}
|
|
315
316
|
|
|
316
317
|
i.ft-icon.ft-icon--fluid-topics {
|
|
317
|
-
font-family: ${
|
|
318
|
+
font-family: ${V.fluidTopicsFontFamily}, ft-icons, fticons, sans-serif;
|
|
318
319
|
|
|
319
320
|
/* Ugly fix because font is broken */
|
|
320
|
-
font-size: calc(0.75 * ${
|
|
321
|
-
line-height: ${
|
|
321
|
+
font-size: calc(0.75 * ${V.size});
|
|
322
|
+
line-height: ${V.size};
|
|
322
323
|
position: relative;
|
|
323
324
|
top: -4%;
|
|
324
325
|
justify-content: center;
|
|
325
326
|
}
|
|
326
327
|
|
|
327
328
|
.ft-icon--file-format {
|
|
328
|
-
font-family: ${
|
|
329
|
+
font-family: ${V.fileFormatFontFamily}, ft-mime, sans-serif;
|
|
329
330
|
}
|
|
330
331
|
|
|
331
332
|
.ft-icon--material {
|
|
332
|
-
font-family: ${
|
|
333
|
+
font-family: ${V.materialFontFamily}, "Material Icons", sans-serif;
|
|
333
334
|
}
|
|
334
|
-
|
|
335
|
+
`;var Wr=S.FtCssVariableFactory.extend("--ft-button-color","",S.designSystemVariables.colorPrimary),_={backgroundColor:S.FtCssVariableFactory.extend("--ft-button-background-color","",S.designSystemVariables.colorSurface),borderRadius:S.FtCssVariableFactory.extend("--ft-button-border-radius","",S.designSystemVariables.borderRadiusL),color:Wr,fontSize:S.FtCssVariableFactory.extend("--ft-button-font-size","",dt.fontSize),iconSize:S.FtCssVariableFactory.create("--ft-button-icon-size","","SIZE","24px"),rippleColor:S.FtCssVariableFactory.extend("--ft-button-ripple-color","",Wr),verticalPadding:S.FtCssVariableFactory.create("--ft-button-vertical-padding","","SIZE","6px"),horizontalPadding:S.FtCssVariableFactory.create("--ft-button-horizontal-padding","","SIZE","8px"),iconPadding:S.FtCssVariableFactory.create("--ft-button-icon-padding","","SIZE","8px"),opacityDisabled:S.FtCssVariableFactory.external(S.designSystemVariables.colorOpacityDisabled,"Design system")},$r=S.FtCssVariableFactory.extend("--ft-button-primary-color","",S.FtCssVariableFactory.extend("--ft-button-color","",S.designSystemVariables.colorOnPrimary)),Qe={backgroundColor:S.FtCssVariableFactory.extend("--ft-button-primary-background-color","",S.FtCssVariableFactory.extend("--ft-button-background-color","",S.designSystemVariables.colorPrimary)),color:$r,rippleColor:S.FtCssVariableFactory.extend("--ft-button-primary-ripple-color","",$r)},ft={borderRadius:S.FtCssVariableFactory.extend("--ft-button-dense-border-radius","",S.FtCssVariableFactory.extend("--ft-button-border-radius","",S.designSystemVariables.borderRadiusM)),verticalPadding:S.FtCssVariableFactory.create("--ft-button-dense-vertical-padding","","SIZE","2px"),horizontalPadding:S.FtCssVariableFactory.create("--ft-button-dense-horizontal-padding","","SIZE","4px"),iconPadding:S.FtCssVariableFactory.create("--ft-button-dense-icon-padding","","SIZE","4px")},Br=[Pr.css`
|
|
335
336
|
:host {
|
|
336
337
|
display: inline-block;
|
|
337
338
|
max-width: 100%;
|
|
@@ -342,7 +343,7 @@
|
|
|
342
343
|
box-shadow: 0px 0px 0px transparent;
|
|
343
344
|
border: 0px solid transparent;
|
|
344
345
|
text-shadow: 0px 0px 0px transparent;
|
|
345
|
-
font-size: ${
|
|
346
|
+
font-size: ${_.fontSize};
|
|
346
347
|
}
|
|
347
348
|
|
|
348
349
|
button:hover {
|
|
@@ -371,31 +372,31 @@
|
|
|
371
372
|
border: none;
|
|
372
373
|
pointer-events: auto;
|
|
373
374
|
|
|
374
|
-
--ft-button-internal-line-height: max(calc(${
|
|
375
|
-
--ft-button-internal-color: ${
|
|
376
|
-
${
|
|
377
|
-
${
|
|
375
|
+
--ft-button-internal-line-height: max(calc(${_.fontSize} + 2px), ${_.iconSize});
|
|
376
|
+
--ft-button-internal-color: ${_.color};
|
|
377
|
+
${(0,S.setVariable)(V.size,_.iconSize)};
|
|
378
|
+
${(0,S.setVariable)(N.color,_.rippleColor)};
|
|
378
379
|
|
|
379
|
-
border-radius: ${
|
|
380
|
-
padding: ${
|
|
381
|
-
background-color: ${
|
|
380
|
+
border-radius: ${_.borderRadius};
|
|
381
|
+
padding: ${_.verticalPadding} ${_.horizontalPadding};
|
|
382
|
+
background-color: ${_.backgroundColor};
|
|
382
383
|
color: var(--ft-button-internal-color);
|
|
383
384
|
-webkit-mask-image: radial-gradient(white, black);
|
|
384
385
|
}
|
|
385
386
|
|
|
386
387
|
.ft-button.ft-button--outlined {
|
|
387
388
|
border: 1px solid var(--ft-button-internal-color);
|
|
388
|
-
padding: calc(${
|
|
389
|
+
padding: calc(${_.verticalPadding} - 1px) calc(${_.horizontalPadding} - 1px);
|
|
389
390
|
}
|
|
390
391
|
|
|
391
392
|
.ft-button.ft-button--dense {
|
|
392
|
-
padding: ${
|
|
393
|
-
border-radius: ${
|
|
394
|
-
gap: ${
|
|
393
|
+
padding: ${ft.verticalPadding} ${ft.horizontalPadding};
|
|
394
|
+
border-radius: ${ft.borderRadius};
|
|
395
|
+
gap: ${ft.iconPadding};
|
|
395
396
|
}
|
|
396
397
|
|
|
397
398
|
.ft-button.ft-button--dense.ft-button--outlined {
|
|
398
|
-
padding: calc(${
|
|
399
|
+
padding: calc(${ft.verticalPadding} - 1px) calc(${ft.horizontalPadding} - 1px);
|
|
399
400
|
}
|
|
400
401
|
|
|
401
402
|
.ft-button:not([disabled]):hover {
|
|
@@ -403,22 +404,22 @@
|
|
|
403
404
|
}
|
|
404
405
|
|
|
405
406
|
.ft-button--round {
|
|
406
|
-
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${
|
|
407
|
+
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${_.verticalPadding});
|
|
407
408
|
}
|
|
408
409
|
|
|
409
410
|
.ft-button--round.ft-button--dense {
|
|
410
|
-
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${
|
|
411
|
+
border-radius: calc(var(--ft-button-internal-line-height) / 2 + ${ft.verticalPadding});
|
|
411
412
|
}
|
|
412
413
|
|
|
413
414
|
.ft-button[disabled] {
|
|
414
415
|
filter: grayscale(1);
|
|
415
|
-
opacity: ${
|
|
416
|
+
opacity: ${_.opacityDisabled};
|
|
416
417
|
}
|
|
417
418
|
|
|
418
419
|
.ft-button.ft-button--primary {
|
|
419
|
-
background-color: ${
|
|
420
|
-
--ft-button-internal-color: ${
|
|
421
|
-
${
|
|
420
|
+
background-color: ${Qe.backgroundColor};
|
|
421
|
+
--ft-button-internal-color: ${Qe.color};
|
|
422
|
+
${(0,S.setVariable)(N.color,Qe.rippleColor)};
|
|
422
423
|
}
|
|
423
424
|
|
|
424
425
|
.ft-button:focus {
|
|
@@ -431,74 +432,64 @@
|
|
|
431
432
|
white-space: nowrap;
|
|
432
433
|
text-overflow: ellipsis;
|
|
433
434
|
display: block;
|
|
434
|
-
margin: 0 ${
|
|
435
|
-
${
|
|
436
|
-
${
|
|
435
|
+
margin: 0 ${_.iconPadding};
|
|
436
|
+
${(0,S.setVariable)(dt.fontSize,"1em")};
|
|
437
|
+
${(0,S.setVariable)(dt.lineHeight,"var(--ft-button-internal-line-height)")};
|
|
437
438
|
}
|
|
438
439
|
|
|
439
440
|
.ft-button--dense .ft-button--label {
|
|
440
|
-
margin: 0 ${
|
|
441
|
+
margin: 0 ${ft.iconPadding};
|
|
441
442
|
}
|
|
442
443
|
|
|
443
444
|
.ft-button--label[hidden] {
|
|
444
445
|
display: none;
|
|
445
446
|
}
|
|
446
447
|
|
|
447
|
-
|
|
448
|
+
[part="icon"] {
|
|
448
449
|
flex-shrink: 0;
|
|
449
450
|
position: relative;
|
|
450
451
|
}
|
|
451
452
|
|
|
452
|
-
.ft-button--label[hidden] +
|
|
453
|
-
margin: 0 calc(${
|
|
454
|
-
padding: 0 ${
|
|
453
|
+
.ft-button--label[hidden] + [part="icon"] {
|
|
454
|
+
margin: 0 calc(${_.horizontalPadding} * -1);
|
|
455
|
+
padding: 0 ${_.verticalPadding};
|
|
455
456
|
}
|
|
456
457
|
|
|
457
|
-
.ft-button--dense .ft-button--label[hidden] +
|
|
458
|
-
margin: 0 calc(${
|
|
459
|
-
padding: 0 ${
|
|
458
|
+
.ft-button--dense .ft-button--label[hidden] + [part="icon"] {
|
|
459
|
+
margin: 0 calc(${ft.horizontalPadding} * -1);
|
|
460
|
+
padding: 0 ${ft.verticalPadding};
|
|
460
461
|
}
|
|
461
462
|
|
|
462
|
-
.ft-button:not(.ft-button--trailing-icon)
|
|
463
|
-
|
|
464
|
-
order: -1;
|
|
463
|
+
.ft-button:not(.ft-button--trailing-icon) [part="label"]{
|
|
464
|
+
order: 2;
|
|
465
465
|
}
|
|
466
466
|
|
|
467
467
|
ft-loader {
|
|
468
|
-
${
|
|
469
|
-
${
|
|
468
|
+
${(0,S.setVariable)(F.size,_.iconSize)};
|
|
469
|
+
${(0,S.setVariable)(F.color,"var(--ft-button-internal-color)")};
|
|
470
470
|
}
|
|
471
|
-
`,
|
|
471
|
+
`,S.noTextSelect];var oe=m(v());var Ur=m(v());var kr=m(I()),D=m(Q()),zr=m(to()),ce=m(v());var j=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},L=class extends ce.FtLitElement{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.unbounded=!1,this.activated=!1,this.selected=!1,this.disabled=!1,this.hovered=!1,this.focused=!1,this.pressed=!1,this.rippling=!1,this.originX=0,this.originY=0,this.debouncer=new ce.Debouncer(1e3),this.onTransitionStart=o=>{o.propertyName==="transform"&&(this.rippling=this.pressed,this.debouncer.run(()=>this.rippling=!1))},this.onTransitionEnd=o=>{o.propertyName==="transform"&&(this.rippling=!1)},this.setupDebouncer=new ce.Debouncer(10),this.moveRipple=o=>{var r,i;let{x:a,y:l}=this.getCoordinates(o),c=(i=(r=this.ripple)===null||r===void 0?void 0:r.getBoundingClientRect())!==null&&i!==void 0?i:{x:0,y:0,width:0,height:0};this.originX=Math.round(a!=null?a-c.x:c.width/2),this.originY=Math.round(l!=null?l-c.y:c.height/2)},this.startPress=o=>{this.moveRipple(o),this.pressed=!this.isIgnored(o)},this.endPress=()=>{this.pressed=!1},this.startHover=o=>{this.hovered=!this.isIgnored(o)},this.endHover=()=>{this.hovered=!1},this.startFocus=o=>{this.focused=this.isFocusVisible(o?.target)&&!this.isIgnored(o)},this.endFocus=()=>{this.focused=!1}}render(){let o={"ft-ripple":!0,"ft-ripple--primary":this.primary,"ft-ripple--secondary":this.secondary,"ft-ripple--unbounded":this.unbounded,"ft-ripple--selected":(this.selected||this.activated)&&!this.disabled,"ft-ripple--pressed":(this.pressed||this.rippling)&&!this.disabled,"ft-ripple--hovered":this.hovered&&!this.disabled,"ft-ripple--focused":this.focused&&!this.disabled};return kr.html`
|
|
472
472
|
<style>
|
|
473
473
|
.ft-ripple .ft-ripple--effect {
|
|
474
474
|
left: ${this.originX}px;
|
|
475
475
|
top: ${this.originY}px;
|
|
476
476
|
}
|
|
477
477
|
</style>
|
|
478
|
-
<div class="${
|
|
478
|
+
<div class="${(0,zr.classMap)(o)}">
|
|
479
479
|
<div class="ft-ripple--background"></div>
|
|
480
480
|
<div class="ft-ripple--effect"></div>
|
|
481
481
|
</div>
|
|
482
|
-
`}contentAvailableCallback(
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
*/
|
|
488
|
-
const Jt=globalThis,Qt=Jt.trustedTypes,to=Qt?Qt.createPolicy("lit-html",{createHTML:t=>t}):void 0,oo="$lit$",eo=`lit$${(Math.random()+"").slice(9)}$`,ro="?"+eo,io=`<${ro}>`,ao=document,no=()=>ao.createComment(""),lo=t=>null===t||"object"!=typeof t&&"function"!=typeof t,co=Array.isArray,so="[ \t\n\f\r]",po=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,fo=/-->/g,ho=/>/g,go=RegExp(`>|${so}(?:([^\\s"'>=/]+)(${so}*=${so}*(?:[^ \t\n\f\r"'\`<>=]|("|')|))|$)`,"g"),yo=/'/g,uo=/"/g,bo=/^(?:script|style|textarea|title)$/i,mo=(t=>(o,...e)=>({_$litType$:t,strings:o,values:e}))(1),xo=Symbol.for("lit-noChange"),vo=Symbol.for("lit-nothing"),Oo=new WeakMap,No=ao.createTreeWalker(ao,129);function wo(t,o){if(!Array.isArray(t)||!t.hasOwnProperty("raw"))throw Error("invalid template strings array");return void 0!==to?to.createHTML(o):o}const So=(t,o)=>{const e=t.length-1,r=[];let i,a=2===o?"<svg>":"",n=po;for(let o=0;o<e;o++){const e=t[o];let l,c,s=-1,p=0;for(;p<e.length&&(n.lastIndex=p,c=n.exec(e),null!==c);)p=n.lastIndex,n===po?"!--"===c[1]?n=fo:void 0!==c[1]?n=ho:void 0!==c[2]?(bo.test(c[2])&&(i=RegExp("</"+c[2],"g")),n=go):void 0!==c[3]&&(n=go):n===go?">"===c[0]?(n=i??po,s=-1):void 0===c[1]?s=-2:(s=n.lastIndex-c[2].length,l=c[1],n=void 0===c[3]?go:'"'===c[3]?uo:yo):n===uo||n===yo?n=go:n===fo||n===ho?n=po:(n=go,i=void 0);const f=n===go&&t[o+1].startsWith("/>")?" ":"";a+=n===po?e+io:s>=0?(r.push(l),e.slice(0,s)+oo+e.slice(s)+eo+f):e+eo+(-2===s?o:f)}return[wo(t,a+(t[e]||"<?>")+(2===o?"</svg>":"")),r]};class Co{constructor({strings:t,_$litType$:o},e){let r;this.parts=[];let i=0,a=0;const n=t.length-1,l=this.parts,[c,s]=So(t,o);if(this.el=Co.createElement(c,e),No.currentNode=this.el.content,2===o){const t=this.el.content.firstChild;t.replaceWith(...t.childNodes)}for(;null!==(r=No.nextNode())&&l.length<n;){if(1===r.nodeType){if(r.hasAttributes())for(const t of r.getAttributeNames())if(t.endsWith(oo)){const o=s[a++],e=r.getAttribute(t).split(eo),n=/([.?@])?(.*)/.exec(o);l.push({type:1,index:i,name:n[2],strings:e,ctor:"."===n[1]?Uo:"?"===n[1]?ko:"@"===n[1]?Ro:Wo}),r.removeAttribute(t)}else t.startsWith(eo)&&(l.push({type:6,index:i}),r.removeAttribute(t));if(bo.test(r.tagName)){const t=r.textContent.split(eo),o=t.length-1;if(o>0){r.textContent=Qt?Qt.emptyScript:"";for(let e=0;e<o;e++)r.append(t[e],no()),No.nextNode(),l.push({type:2,index:++i});r.append(t[o],no())}}}else if(8===r.nodeType)if(r.data===ro)l.push({type:2,index:i});else{let t=-1;for(;-1!==(t=r.data.indexOf(eo,t+1));)l.push({type:7,index:i}),t+=eo.length-1}i++}}static createElement(t,o){const e=ao.createElement("template");return e.innerHTML=t,e}}function Io(t,o,e=t,r){if(o===xo)return o;let i=void 0!==r?e._$Co?.[r]:e._$Cl;const a=lo(o)?void 0:o._$litDirective$;return i?.constructor!==a&&(i?._$AO?.(!1),void 0===a?i=void 0:(i=new a(t),i._$AT(t,e,r)),void 0!==r?(e._$Co??=[])[r]=i:e._$Cl=i),void 0!==i&&(o=Io(t,i._$AS(t,o.values),i,r)),o}class $o{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??ao).importNode(o,!0);No.currentNode=r;let i=No.nextNode(),a=0,n=0,l=e[0];for(;void 0!==l;){if(a===l.index){let o;2===l.type?o=new Eo(i,i.nextSibling,this,t):1===l.type?o=new l.ctor(i,l.name,l.strings,this,t):6===l.type&&(o=new Lo(i,this,t)),this._$AV.push(o),l=e[++n]}a!==l?.index&&(i=No.nextNode(),a++)}return No.currentNode=ao,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 Eo{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(t,o,e,r){this.type=2,this._$AH=vo,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=Io(this,t,o),lo(t)?t===vo||null==t||""===t?(this._$AH!==vo&&this._$AR(),this._$AH=vo):t!==this._$AH&&t!==xo&&this._(t):void 0!==t._$litType$?this.g(t):void 0!==t.nodeType?this.$(t):(t=>co(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!==vo&&lo(this._$AH)?this._$AA.nextSibling.data=t:this.$(ao.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=Co.createElement(wo(e.h,e.h[0]),this.options)),e);if(this._$AH?._$AD===r)this._$AH.p(o);else{const t=new $o(r,this),e=t.u(this.options);t.p(o),this.$(e),this._$AH=t}}_$AC(t){let o=Oo.get(t.strings);return void 0===o&&Oo.set(t.strings,o=new Co(t)),o}T(t){co(this._$AH)||(this._$AH=[],this._$AR());const o=this._$AH;let e,r=0;for(const i of t)r===o.length?o.push(e=new Eo(this.k(no()),this.k(no()),this,this.options)):e=o[r],e._$AI(i),r++;r<o.length&&(this._$AR(e&&e._$AB.nextSibling,r),o.length=r)}_$AR(t=this._$AA.nextSibling,o){for(this._$AP?.(!1,!0,o);t&&t!==this._$AB;){const o=t.nextSibling;t.remove(),t=o}}setConnected(t){void 0===this._$AM&&(this._$Cv=t,this._$AP?.(t))}}class Wo{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(t,o,e,r,i){this.type=1,this._$AH=vo,this._$AN=void 0,this.element=t,this.name=o,this._$AM=r,this.options=i,e.length>2||""!==e[0]||""!==e[1]?(this._$AH=Array(e.length-1).fill(new String),this.strings=e):this._$AH=vo}_$AI(t,o=this,e,r){const i=this.strings;let a=!1;if(void 0===i)t=Io(this,t,o,0),a=!lo(t)||t!==this._$AH&&t!==xo,a&&(this._$AH=t);else{const r=t;let n,l;for(t=i[0],n=0;n<i.length-1;n++)l=Io(this,r[e+n],o,n),l===xo&&(l=this._$AH[n]),a||=!lo(l)||l!==this._$AH[n],l===vo?t=vo:t!==vo&&(t+=(l??"")+i[n+1]),this._$AH[n]=l}a&&!r&&this.O(t)}O(t){t===vo?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,t??"")}}class Uo extends Wo{constructor(){super(...arguments),this.type=3}O(t){this.element[this.name]=t===vo?void 0:t}}class ko extends Wo{constructor(){super(...arguments),this.type=4}O(t){this.element.toggleAttribute(this.name,!!t&&t!==vo)}}class Ro extends Wo{constructor(t,o,e,r,i){super(t,o,e,r,i),this.type=5}_$AI(t,o=this){if((t=Io(this,t,o,0)??vo)===xo)return;const e=this._$AH,r=t===vo&&e!==vo||t.capture!==e.capture||t.once!==e.once||t.passive!==e.passive,i=t!==vo&&(e===vo||r);r&&this.element.removeEventListener(this.name,this,e),i&&this.element.addEventListener(this.name,this,t),this._$AH=t}handleEvent(t){"function"==typeof this._$AH?this._$AH.call(this.options?.host??this.element,t):this._$AH.handleEvent(t)}}class Lo{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){Io(this,t)}}const Zo=Jt.litHtmlPolyfillSupport;Zo?.(Co,Eo),(Jt.litHtmlVersions??=[]).push("3.1.0");
|
|
489
|
-
/**
|
|
490
|
-
* @license
|
|
491
|
-
* Copyright 2020 Google LLC
|
|
492
|
-
* SPDX-License-Identifier: BSD-3-Clause
|
|
493
|
-
*/
|
|
494
|
-
const zo=Symbol.for(""),Ko=t=>{if(t?.r===zo)return t?._$litStatic$},Fo=t=>({_$litStatic$:t,r:zo}),Do=new Map,Bo=(t=>(o,...e)=>{const r=e.length;let i,a;const n=[],l=[];let c,s=0,p=!1;for(;s<r;){for(c=o[s];s<r&&void 0!==(a=e[s],i=Ko(a));)c+=i+o[++s],p=!0;s!==r&&l.push(a),n.push(c),s++}if(s===r&&n.push(o[r]),p){const t=n.join("$$lit$$");void 0===(o=Do.get(t))&&(n.raw=n,Do.set(t,o=n)),e=l}return t(o,...e)})(mo);var Ao;!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"}(Ao||(Ao={}));var Ho=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class Go extends o.FtLitElement{constructor(){super(...arguments),this.variant=Ao.body1}render(){return this.element?Bo`
|
|
495
|
-
<${Fo(this.element)}
|
|
482
|
+
`}contentAvailableCallback(o){super.contentAvailableCallback(o),this.rippleEffect&&this.rippleEffect.ontransitionstart!==this.onTransitionStart&&(this.rippleEffect.ontransitionstart=this.onTransitionStart,this.rippleEffect.ontransitionend=this.onTransitionEnd)}update(o){var r,i;super.update(o),o.has("disabled")&&(this.disabled?(this.endRipple(),(r=this.target)===null||r===void 0||r.removeAttribute("data-is-ft-ripple-target")):(i=this.target)===null||i===void 0||i.setAttribute("data-is-ft-ripple-target","true"))}endRipple(){this.endHover(),this.endFocus(),this.endPress(),this.rippling=!1}connectedCallback(){super.connectedCallback(),this.setupDebouncer.run(()=>this.defaultSetup())}defaultSetup(){var o,r;let i=(o=this.shadowRoot)===null||o===void 0?void 0:o.host.parentElement;i&&this.setupFor((r=this.target)!==null&&r!==void 0?r:i)}setupFor(o){if(this.setupDebouncer.cancel(),this.target===o)return;this.onDisconnect&&this.onDisconnect(),this.target=o,o.setAttribute("data-is-ft-ripple-target","true");let r=(...p)=>d=>{p.forEach(f=>window.addEventListener(f,this.endPress,{once:!0})),this.startPress(d)},i=r("mouseup","contextmenu"),a=r("touchend","touchcancel"),l=p=>{["Enter"," "].includes(p.key)&&r("keyup")(p)},c={passive:!0};o.addEventListener("mouseover",this.startHover,c),o.addEventListener("mousemove",this.moveRipple,c),o.addEventListener("mouseleave",this.endHover,c),o.addEventListener("mousedown",i,c),o.addEventListener("touchstart",a,c),o.addEventListener("touchmove",this.moveRipple,c),o.addEventListener("keydown",l,c),o.addEventListener("focus",this.startFocus,c),o.addEventListener("blur",this.endFocus,c),o.addEventListener("focusin",this.startFocus,c),o.addEventListener("focusout",this.endFocus,c),this.onDisconnect=()=>{o.removeAttribute("data-is-ft-ripple-target"),o.removeEventListener("mouseover",this.startHover,c),o.removeEventListener("mousemove",this.moveRipple,c),o.removeEventListener("mouseleave",this.endHover,c),o.removeEventListener("mousedown",i,c),o.removeEventListener("touchstart",a,c),o.removeEventListener("touchmove",this.moveRipple,c),o.removeEventListener("keydown",l,c),o.removeEventListener("focus",this.startFocus,c),o.removeEventListener("blur",this.endFocus,c),o.removeEventListener("focusin",this.startFocus,c),o.removeEventListener("focusout",this.endFocus,c),this.onDisconnect=void 0,this.target=void 0}}getCoordinates(o){let r=o,i=o,a,l;return r.x!=null?{x:a,y:l}=r:i.touches!=null&&(a=i.touches[0].clientX,l=i.touches[0].clientY),{x:a,y:l}}isFocusVisible(o){return o instanceof HTMLElement?o.matches(":focus-visible"):!0}isIgnored(o){if(this.disabled)return!0;if(o!=null)for(let r of o.composedPath()){if(r===this.target)break;if("hasAttribute"in r&&r.hasAttribute("data-is-ft-ripple-target"))return!0}return!1}disconnectedCallback(){super.disconnectedCallback(),this.onDisconnect&&this.onDisconnect(),this.endRipple()}};L.elementDefinitions={};L.styles=Do;j([(0,D.property)({type:Boolean})],L.prototype,"primary",void 0);j([(0,D.property)({type:Boolean})],L.prototype,"secondary",void 0);j([(0,D.property)({type:Boolean})],L.prototype,"unbounded",void 0);j([(0,D.property)({type:Boolean})],L.prototype,"activated",void 0);j([(0,D.property)({type:Boolean})],L.prototype,"selected",void 0);j([(0,D.property)({type:Boolean})],L.prototype,"disabled",void 0);j([(0,D.state)()],L.prototype,"hovered",void 0);j([(0,D.state)()],L.prototype,"focused",void 0);j([(0,D.state)()],L.prototype,"pressed",void 0);j([(0,D.state)()],L.prototype,"rippling",void 0);j([(0,D.state)()],L.prototype,"originX",void 0);j([(0,D.state)()],L.prototype,"originY",void 0);j([(0,D.query)(".ft-ripple")],L.prototype,"ripple",void 0);j([(0,D.query)(".ft-ripple--effect")],L.prototype,"rippleEffect",void 0);(0,Ur.customElement)("ft-ripple")(L);var $n=m(v());var Wn=m(I()),U=m(Q()),be=m(v());var nn=m(v());var lo=globalThis,Ae=lo.trustedTypes,_r=Ae?Ae.createPolicy("lit-html",{createHTML:e=>e}):void 0,Kr="$lit$",wt=`lit$${(Math.random()+"").slice(9)}$`,Fr="?"+wt,xa=`<${Fr}>`,$t=document,Le=()=>$t.createComment(""),pe=e=>e===null||typeof e!="object"&&typeof e!="function",Vr=Array.isArray,Sa=e=>Vr(e)||typeof e?.[Symbol.iterator]=="function",eo=`[
|
|
483
|
+
\f\r]`,se=/<(?:(!--|\/[^a-zA-Z])|(\/?[a-zA-Z][^>\s]*)|(\/?$))/g,Hr=/-->/g,Dr=/>/g,It=RegExp(`>|${eo}(?:([^\\s"'>=/]+)(${eo}*=${eo}*(?:[^
|
|
484
|
+
\f\r"'\`<>=]|("|')|))|$)`,"g"),Mr=/'/g,Gr=/"/g,jr=/^(?:script|style|textarea|title)$/i,Yr=e=>(o,...r)=>({_$litType$:e,strings:o,values:r}),Xr=Yr(1),qr=Yr(2),de=Symbol.for("lit-noChange"),H=Symbol.for("lit-nothing"),Zr=new WeakMap,Wt=$t.createTreeWalker($t,129);function Jr(e,o){if(!Array.isArray(e)||!e.hasOwnProperty("raw"))throw Error("invalid template strings array");return _r!==void 0?_r.createHTML(o):o}var Ca=(e,o)=>{let r=e.length-1,i=[],a,l=o===2?"<svg>":"",c=se;for(let p=0;p<r;p++){let d=e[p],f,x,y=-1,w=0;for(;w<d.length&&(c.lastIndex=w,x=c.exec(d),x!==null);)w=c.lastIndex,c===se?x[1]==="!--"?c=Hr:x[1]!==void 0?c=Dr:x[2]!==void 0?(jr.test(x[2])&&(a=RegExp("</"+x[2],"g")),c=It):x[3]!==void 0&&(c=It):c===It?x[0]===">"?(c=a??se,y=-1):x[1]===void 0?y=-2:(y=c.lastIndex-x[2].length,f=x[1],c=x[3]===void 0?It:x[3]==='"'?Gr:Mr):c===Gr||c===Mr?c=It:c===Hr||c===Dr?c=se:(c=It,a=void 0);let C=c===It&&e[p+1].startsWith("/>")?" ":"";l+=c===se?d+xa:y>=0?(i.push(f),d.slice(0,y)+Kr+d.slice(y)+wt+C):d+wt+(y===-2?p:C)}return[Jr(e,l+(e[r]||"<?>")+(o===2?"</svg>":"")),i]},fe=class e{constructor({strings:o,_$litType$:r},i){let a;this.parts=[];let l=0,c=0,p=o.length-1,d=this.parts,[f,x]=Ca(o,r);if(this.el=e.createElement(f,i),Wt.currentNode=this.el.content,r===2){let y=this.el.content.firstChild;y.replaceWith(...y.childNodes)}for(;(a=Wt.nextNode())!==null&&d.length<p;){if(a.nodeType===1){if(a.hasAttributes())for(let y of a.getAttributeNames())if(y.endsWith(Kr)){let w=x[c++],C=a.getAttribute(y).split(wt),R=/([.?@])?(.*)/.exec(w);d.push({type:1,index:l,name:R[2],strings:C,ctor:R[1]==="."?ro:R[1]==="?"?no:R[1]==="@"?ao:Xt}),a.removeAttribute(y)}else y.startsWith(wt)&&(d.push({type:6,index:l}),a.removeAttribute(y));if(jr.test(a.tagName)){let y=a.textContent.split(wt),w=y.length-1;if(w>0){a.textContent=Ae?Ae.emptyScript:"";for(let C=0;C<w;C++)a.append(y[C],Le()),Wt.nextNode(),d.push({type:2,index:++l});a.append(y[w],Le())}}}else if(a.nodeType===8)if(a.data===Fr)d.push({type:2,index:l});else{let y=-1;for(;(y=a.data.indexOf(wt,y+1))!==-1;)d.push({type:7,index:l}),y+=wt.length-1}l++}}static createElement(o,r){let i=$t.createElement("template");return i.innerHTML=o,i}};function Yt(e,o,r=e,i){if(o===de)return o;let a=i!==void 0?r._$Co?.[i]:r._$Cl,l=pe(o)?void 0:o._$litDirective$;return a?.constructor!==l&&(a?._$AO?.(!1),l===void 0?a=void 0:(a=new l(e),a._$AT(e,r,i)),i!==void 0?(r._$Co??=[])[i]=a:r._$Cl=a),a!==void 0&&(o=Yt(e,a._$AS(e,o.values),a,i)),o}var oo=class{constructor(o,r){this._$AV=[],this._$AN=void 0,this._$AD=o,this._$AM=r}get parentNode(){return this._$AM.parentNode}get _$AU(){return this._$AM._$AU}u(o){let{el:{content:r},parts:i}=this._$AD,a=(o?.creationScope??$t).importNode(r,!0);Wt.currentNode=a;let l=Wt.nextNode(),c=0,p=0,d=i[0];for(;d!==void 0;){if(c===d.index){let f;d.type===2?f=new Ie(l,l.nextSibling,this,o):d.type===1?f=new d.ctor(l,d.name,d.strings,this,o):d.type===6&&(f=new io(l,this,o)),this._$AV.push(f),d=i[++p]}c!==d?.index&&(l=Wt.nextNode(),c++)}return Wt.currentNode=$t,a}p(o){let r=0;for(let i of this._$AV)i!==void 0&&(i.strings!==void 0?(i._$AI(o,i,r),r+=i.strings.length-2):i._$AI(o[r])),r++}},Ie=class e{get _$AU(){return this._$AM?._$AU??this._$Cv}constructor(o,r,i,a){this.type=2,this._$AH=H,this._$AN=void 0,this._$AA=o,this._$AB=r,this._$AM=i,this.options=a,this._$Cv=a?.isConnected??!0}get parentNode(){let o=this._$AA.parentNode,r=this._$AM;return r!==void 0&&o?.nodeType===11&&(o=r.parentNode),o}get startNode(){return this._$AA}get endNode(){return this._$AB}_$AI(o,r=this){o=Yt(this,o,r),pe(o)?o===H||o==null||o===""?(this._$AH!==H&&this._$AR(),this._$AH=H):o!==this._$AH&&o!==de&&this._(o):o._$litType$!==void 0?this.g(o):o.nodeType!==void 0?this.$(o):Sa(o)?this.T(o):this._(o)}k(o){return this._$AA.parentNode.insertBefore(o,this._$AB)}$(o){this._$AH!==o&&(this._$AR(),this._$AH=this.k(o))}_(o){this._$AH!==H&&pe(this._$AH)?this._$AA.nextSibling.data=o:this.$($t.createTextNode(o)),this._$AH=o}g(o){let{values:r,_$litType$:i}=o,a=typeof i=="number"?this._$AC(o):(i.el===void 0&&(i.el=fe.createElement(Jr(i.h,i.h[0]),this.options)),i);if(this._$AH?._$AD===a)this._$AH.p(r);else{let l=new oo(a,this),c=l.u(this.options);l.p(r),this.$(c),this._$AH=l}}_$AC(o){let r=Zr.get(o.strings);return r===void 0&&Zr.set(o.strings,r=new fe(o)),r}T(o){Vr(this._$AH)||(this._$AH=[],this._$AR());let r=this._$AH,i,a=0;for(let l of o)a===r.length?r.push(i=new e(this.k(Le()),this.k(Le()),this,this.options)):i=r[a],i._$AI(l),a++;a<r.length&&(this._$AR(i&&i._$AB.nextSibling,a),r.length=a)}_$AR(o=this._$AA.nextSibling,r){for(this._$AP?.(!1,!0,r);o&&o!==this._$AB;){let i=o.nextSibling;o.remove(),o=i}}setConnected(o){this._$AM===void 0&&(this._$Cv=o,this._$AP?.(o))}},Xt=class{get tagName(){return this.element.tagName}get _$AU(){return this._$AM._$AU}constructor(o,r,i,a,l){this.type=1,this._$AH=H,this._$AN=void 0,this.element=o,this.name=r,this._$AM=a,this.options=l,i.length>2||i[0]!==""||i[1]!==""?(this._$AH=Array(i.length-1).fill(new String),this.strings=i):this._$AH=H}_$AI(o,r=this,i,a){let l=this.strings,c=!1;if(l===void 0)o=Yt(this,o,r,0),c=!pe(o)||o!==this._$AH&&o!==de,c&&(this._$AH=o);else{let p=o,d,f;for(o=l[0],d=0;d<l.length-1;d++)f=Yt(this,p[i+d],r,d),f===de&&(f=this._$AH[d]),c||=!pe(f)||f!==this._$AH[d],f===H?o=H:o!==H&&(o+=(f??"")+l[d+1]),this._$AH[d]=f}c&&!a&&this.O(o)}O(o){o===H?this.element.removeAttribute(this.name):this.element.setAttribute(this.name,o??"")}},ro=class extends Xt{constructor(){super(...arguments),this.type=3}O(o){this.element[this.name]=o===H?void 0:o}},no=class extends Xt{constructor(){super(...arguments),this.type=4}O(o){this.element.toggleAttribute(this.name,!!o&&o!==H)}},ao=class extends Xt{constructor(o,r,i,a,l){super(o,r,i,a,l),this.type=5}_$AI(o,r=this){if((o=Yt(this,o,r,0)??H)===de)return;let i=this._$AH,a=o===H&&i!==H||o.capture!==i.capture||o.once!==i.once||o.passive!==i.passive,l=o!==H&&(i===H||a);a&&this.element.removeEventListener(this.name,this,i),l&&this.element.addEventListener(this.name,this,o),this._$AH=o}handleEvent(o){typeof this._$AH=="function"?this._$AH.call(this.options?.host??this.element,o):this._$AH.handleEvent(o)}},io=class{constructor(o,r,i){this.element=o,this.type=6,this._$AN=void 0,this._$AM=r,this.options=i}get _$AU(){return this._$AM._$AU}_$AI(o){Yt(this,o)}};var va=lo.litHtmlPolyfillSupport;va?.(fe,Ie),(lo.litHtmlVersions??=[]).push("3.1.0");var tn=Symbol.for(""),Oa=e=>{if(e?.r===tn)return e?._$litStatic$},co=e=>({_$litStatic$:e,r:tn});var Qr=new Map,en=e=>(o,...r)=>{let i=r.length,a,l,c=[],p=[],d,f=0,x=!1;for(;f<i;){for(d=o[f];f<i&&(l=r[f],(a=Oa(l))!==void 0);)d+=a+o[++f],x=!0;f!==i&&p.push(l),c.push(d),f++}if(f===i&&c.push(o[i]),x){let y=c.join("$$lit$$");(o=Qr.get(y))===void 0&&(c.raw=c,Qr.set(y,o=c)),r=p}return e(o,...r)},so=en(Xr),Us=en(qr);var po=m(Q()),rn=m(v());var Pt;(function(e){e.title="title",e.title_dense="title-dense",e.subtitle1="subtitle1",e.subtitle2="subtitle2",e.body1="body1",e.body2="body2",e.caption="caption",e.breadcrumb="breadcrumb",e.overline="overline",e.button="button",e.display="display",e.title1="title-1",e.title2="title-2",e.title3="title-3",e.body1regular="body-1-regular",e.body1medium="body-1-medium",e.body1semibold="body-1-semibold",e.body2regular="body-2-regular",e.body2medium="body-2-medium",e.body2semibold="body-2-semibold",e.label1medium="label-1-medium",e.label1semibold="label-1-semibold",e.label1bold="label-1-bold",e.label2medium="label-2-medium",e.label2semibold="label-2-semibold",e.label2bold="label-2-bold",e.caption1medium="caption-1-medium",e.caption1semibold="caption-1-semibold",e.caption1bold="caption-1-bold",e.caption2medium="caption-2-medium",e.caption2semibold="caption-2-semibold",e.caption2bold="caption-2-bold"})(Pt||(Pt={}));var on=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},nt=class extends rn.FtLitElement{constructor(){super(...arguments),this.variant=Pt.body1}render(){return this.element?so`
|
|
485
|
+
<${co(this.element)}
|
|
486
|
+
part="text"
|
|
496
487
|
class="ft-typography ft-typography--${this.variant}">
|
|
497
488
|
<slot></slot>
|
|
498
|
-
</${
|
|
499
|
-
`:
|
|
500
|
-
<slot class="ft-typography ft-typography--${this.variant}"></slot>
|
|
501
|
-
`}}
|
|
489
|
+
</${co(this.element)}>
|
|
490
|
+
`:so`
|
|
491
|
+
<slot part="text" class="ft-typography ft-typography--${this.variant}"></slot>
|
|
492
|
+
`}};nt.styles=[mr,gr,yr,br,xr,Sr,Cr,vr,Or,wr,Nr,...Er];on([(0,po.property)()],nt.prototype,"element",void 0);on([(0,po.property)()],nt.prototype,"variant",void 0);(0,nn.customElement)("ft-typography")(nt);var an=m(I()),bt=m(v()),qt={distance:bt.FtCssVariableFactory.create("--ft-tooltip-distance","","SIZE","4px"),color:bt.FtCssVariableFactory.create("--ft-tooltip-color","","COLOR","#FFFFFF"),backgroundColor:bt.FtCssVariableFactory.create("--ft-tooltip-background-color","","COLOR","#666666"),zIndex:bt.FtCssVariableFactory.create("--ft-tooltip-z-index","","NUMBER","100"),borderRadiusS:bt.FtCssVariableFactory.external(bt.designSystemVariables.borderRadiusS,"Design system"),maxWidth:bt.FtCssVariableFactory.create("--ft-tooltip-max-width","","SIZE","150px")},ln=an.css`
|
|
502
493
|
.ft-tooltip--container {
|
|
503
494
|
display: block;
|
|
504
495
|
}
|
|
@@ -513,21 +504,21 @@ const zo=Symbol.for(""),Ko=t=>{if(t?.r===zo)return t?._$litStatic$},Fo=t=>({_$li
|
|
|
513
504
|
box-sizing: border-box;
|
|
514
505
|
overflow: hidden;
|
|
515
506
|
width: max-content;
|
|
516
|
-
max-width: ${
|
|
507
|
+
max-width: ${qt.maxWidth};
|
|
517
508
|
text-align: center;
|
|
518
|
-
padding: ${
|
|
519
|
-
z-index: ${
|
|
509
|
+
padding: ${qt.distance};
|
|
510
|
+
z-index: ${qt.zIndex};
|
|
520
511
|
}
|
|
521
512
|
|
|
522
513
|
.ft-tooltip--content {
|
|
523
514
|
padding: 4px 8px;
|
|
524
|
-
border-radius: ${
|
|
525
|
-
background-color: ${
|
|
526
|
-
color: ${
|
|
515
|
+
border-radius: ${qt.borderRadiusS};
|
|
516
|
+
background-color: ${qt.backgroundColor};
|
|
517
|
+
color: ${qt.color};
|
|
527
518
|
position: relative;
|
|
528
519
|
word-break: break-word;
|
|
529
520
|
}
|
|
530
|
-
`,Xo=["start","end"],qo=["top","right","bottom","left"].reduce(((t,o)=>t.concat(o,o+"-"+Xo[0],o+"-"+Xo[1])),[]),Jo=Math.min,Qo=Math.max,te=Math.round,oe=t=>({x:t,y:t}),ee={left:"right",right:"left",bottom:"top",top:"bottom"},re={start:"end",end:"start"};function ie(t,o,e){return Qo(t,Jo(o,e))}function ae(t,o){return"function"==typeof t?t(o):t}function ne(t){return t.split("-")[0]}function le(t){return t.split("-")[1]}function ce(t){return"x"===t?"y":"x"}function se(t){return"y"===t?"height":"width"}function pe(t){return["top","bottom"].includes(ne(t))?"y":"x"}function fe(t){return ce(pe(t))}function de(t){return t.replace(/left|right|bottom|top/g,(t=>ee[t]))}function he(t){return{...t,top:t.y,left:t.x,right:t.x+t.width,bottom:t.y+t.height}}function ge(t,o,e){let{reference:r,floating:i}=t;const a=pe(o),n=fe(o),l=se(n),c=ne(o),s="y"===a,p=r.x+r.width/2-i.width/2,f=r.y+r.height/2-i.height/2,d=r[l]/2-i[l]/2;let h;switch(c){case"top":h={x:p,y:r.y-i.height};break;case"bottom":h={x:p,y:r.y+r.height};break;case"right":h={x:r.x+r.width,y:f};break;case"left":h={x:r.x-i.width,y:f};break;default:h={x:r.x,y:r.y}}switch(le(o)){case"start":h[n]-=d*(e&&s?-1:1);break;case"end":h[n]+=d*(e&&s?-1:1)}return h}async function ye(t,o){var e;void 0===o&&(o={});const{x:r,y:i,platform:a,rects:n,elements:l,strategy:c}=t,{boundary:s="clippingAncestors",rootBoundary:p="viewport",elementContext:f="floating",altBoundary:d=!1,padding:h=0}=ae(o,t),g=function(t){return"number"!=typeof t?function(t){return{top:0,right:0,bottom:0,left:0,...t}}(t):{top:t,right:t,bottom:t,left:t}}(h),y=l[d?"floating"===f?"reference":"floating":f],u=he(await a.getClippingRect({element:null==(e=await(null==a.isElement?void 0:a.isElement(y)))||e?y:y.contextElement||await(null==a.getDocumentElement?void 0:a.getDocumentElement(l.floating)),boundary:s,rootBoundary:p,strategy:c})),b="floating"===f?{...n.floating,x:r,y:i}:n.reference,m=await(null==a.getOffsetParent?void 0:a.getOffsetParent(l.floating)),x=await(null==a.isElement?void 0:a.isElement(m))&&await(null==a.getScale?void 0:a.getScale(m))||{x:1,y:1},v=he(a.convertOffsetParentRelativeRectToViewportRelativeRect?await a.convertOffsetParentRelativeRectToViewportRelativeRect({rect:b,offsetParent:m,strategy:c}):b);return{top:(u.top-v.top+g.top)/x.y,bottom:(v.bottom-u.bottom+g.bottom)/x.y,left:(u.left-v.left+g.left)/x.x,right:(v.right-u.right+g.right)/x.x}}function ue(t,o,e){return(t?[...e.filter((o=>le(o)===t)),...e.filter((o=>le(o)!==t))]:e.filter((t=>ne(t)===t))).filter((e=>!t||(le(e)===t||!!o&&function(t){return t.replace(/start|end/g,(t=>re[t]))}(e)!==e)))}const be=function(t){return void 0===t&&(t={}),{name:"autoPlacement",options:t,async fn(o){var e,r,i;const{rects:a,middlewareData:n,placement:l,platform:c,elements:s}=o,{crossAxis:p=!1,alignment:f,allowedPlacements:d=qo,autoAlignment:h=!0,...g}=ae(t,o),y=void 0!==f||d===qo?ue(f||null,h,d):d,u=await ye(o,g),b=(null==(e=n.autoPlacement)?void 0:e.index)||0,m=y[b];if(null==m)return{};const x=function(t,o,e){void 0===e&&(e=!1);const r=le(t),i=fe(t),a=se(i);let n="x"===i?r===(e?"end":"start")?"right":"left":"start"===r?"bottom":"top";return o.reference[a]>o.floating[a]&&(n=de(n)),[n,de(n)]}(m,a,await(null==c.isRTL?void 0:c.isRTL(s.floating)));if(l!==m)return{reset:{placement:y[0]}};const v=[u[ne(m)],u[x[0]],u[x[1]]],O=[...(null==(r=n.autoPlacement)?void 0:r.overflows)||[],{placement:m,overflows:v}],N=y[b+1];if(N)return{data:{index:b+1,overflows:O},reset:{placement:N}};const w=O.map((t=>{const o=le(t.placement);return[t.placement,o&&p?t.overflows.slice(0,2).reduce(((t,o)=>t+o),0):t.overflows[0],t.overflows]})).sort(((t,o)=>t[1]-o[1])),S=w.filter((t=>t[2].slice(0,le(t[0])?2:3).every((t=>t<=0)))),C=(null==(i=S[0])?void 0:i[0])||w[0][0];return C!==l?{data:{index:b+1,overflows:O},reset:{placement:C}}:{}}}};function me(t){return Oe(t)?(t.nodeName||"").toLowerCase():"#document"}function xe(t){var o;return(null==t||null==(o=t.ownerDocument)?void 0:o.defaultView)||window}function ve(t){var o;return null==(o=(Oe(t)?t.ownerDocument:t.document)||window.document)?void 0:o.documentElement}function Oe(t){return t instanceof Node||t instanceof xe(t).Node}function Ne(t){return t instanceof Element||t instanceof xe(t).Element}function we(t){return t instanceof HTMLElement||t instanceof xe(t).HTMLElement}function Se(t){return"undefined"!=typeof ShadowRoot&&(t instanceof ShadowRoot||t instanceof xe(t).ShadowRoot)}function Ce(t){const{overflow:o,overflowX:e,overflowY:r,display:i}=Ue(t);return/auto|scroll|overlay|hidden|clip/.test(o+r+e)&&!["inline","contents"].includes(i)}function Ie(t){return["table","td","th"].includes(me(t))}function $e(t){const o=Ee(),e=Ue(t);return"none"!==e.transform||"none"!==e.perspective||!!e.containerType&&"normal"!==e.containerType||!o&&!!e.backdropFilter&&"none"!==e.backdropFilter||!o&&!!e.filter&&"none"!==e.filter||["transform","perspective","filter"].some((t=>(e.willChange||"").includes(t)))||["paint","layout","strict","content"].some((t=>(e.contain||"").includes(t)))}function Ee(){return!("undefined"==typeof CSS||!CSS.supports)&&CSS.supports("-webkit-backdrop-filter","none")}function We(t){return["html","body","#document"].includes(me(t))}function Ue(t){return xe(t).getComputedStyle(t)}function ke(t){return Ne(t)?{scrollLeft:t.scrollLeft,scrollTop:t.scrollTop}:{scrollLeft:t.pageXOffset,scrollTop:t.pageYOffset}}function Re(t){if("html"===me(t))return t;const o=t.assignedSlot||t.parentNode||Se(t)&&t.host||ve(t);return Se(o)?o.host:o}function Le(t){const o=Re(t);return We(o)?t.ownerDocument?t.ownerDocument.body:t.body:we(o)&&Ce(o)?o:Le(o)}function Ze(t,o,e){var r;void 0===o&&(o=[]),void 0===e&&(e=!0);const i=Le(t),a=i===(null==(r=t.ownerDocument)?void 0:r.body),n=xe(i);return a?o.concat(n,n.visualViewport||[],Ce(i)?i:[],n.frameElement&&e?Ze(n.frameElement):[]):o.concat(i,Ze(i,[],e))}function ze(t){const o=Ue(t);let e=parseFloat(o.width)||0,r=parseFloat(o.height)||0;const i=we(t),a=i?t.offsetWidth:e,n=i?t.offsetHeight:r,l=te(e)!==a||te(r)!==n;return l&&(e=a,r=n),{width:e,height:r,$:l}}function Ke(t){return Ne(t)?t:t.contextElement}function Fe(t){const o=Ke(t);if(!we(o))return oe(1);const e=o.getBoundingClientRect(),{width:r,height:i,$:a}=ze(o);let n=(a?te(e.width):e.width)/r,l=(a?te(e.height):e.height)/i;return n&&Number.isFinite(n)||(n=1),l&&Number.isFinite(l)||(l=1),{x:n,y:l}}const De=oe(0);function Be(t){const o=xe(t);return Ee()&&o.visualViewport?{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}:De}function Ae(t,o,e,r){void 0===o&&(o=!1),void 0===e&&(e=!1);const i=t.getBoundingClientRect(),a=Ke(t);let n=oe(1);o&&(r?Ne(r)&&(n=Fe(r)):n=Fe(t));const l=function(t,o,e){return void 0===o&&(o=!1),!(!e||o&&e!==xe(t))&&o}(a,e,r)?Be(a):oe(0);let c=(i.left+l.x)/n.x,s=(i.top+l.y)/n.y,p=i.width/n.x,f=i.height/n.y;if(a){const t=xe(a),o=r&&Ne(r)?xe(r):r;let e=t.frameElement;for(;e&&r&&o!==t;){const t=Fe(e),o=e.getBoundingClientRect(),r=Ue(e),i=o.left+(e.clientLeft+parseFloat(r.paddingLeft))*t.x,a=o.top+(e.clientTop+parseFloat(r.paddingTop))*t.y;c*=t.x,s*=t.y,p*=t.x,f*=t.y,c+=i,s+=a,e=xe(e).frameElement}}return he({width:p,height:f,x:c,y:s})}function He(t){return Ae(ve(t)).left+ke(t).scrollLeft}function Ge(t,o,e){let r;if("viewport"===o)r=function(t,o){const e=xe(t),r=ve(t),i=e.visualViewport;let a=r.clientWidth,n=r.clientHeight,l=0,c=0;if(i){a=i.width,n=i.height;const t=Ee();(!t||t&&"fixed"===o)&&(l=i.offsetLeft,c=i.offsetTop)}return{width:a,height:n,x:l,y:c}}(t,e);else if("document"===o)r=function(t){const o=ve(t),e=ke(t),r=t.ownerDocument.body,i=Qo(o.scrollWidth,o.clientWidth,r.scrollWidth,r.clientWidth),a=Qo(o.scrollHeight,o.clientHeight,r.scrollHeight,r.clientHeight);let n=-e.scrollLeft+He(t);const l=-e.scrollTop;return"rtl"===Ue(r).direction&&(n+=Qo(o.clientWidth,r.clientWidth)-i),{width:i,height:a,x:n,y:l}}(ve(t));else if(Ne(o))r=function(t,o){const e=Ae(t,!0,"fixed"===o),r=e.top+t.clientTop,i=e.left+t.clientLeft,a=we(t)?Fe(t):oe(1);return{width:t.clientWidth*a.x,height:t.clientHeight*a.y,x:i*a.x,y:r*a.y}}(o,e);else{const e=Be(t);r={...o,x:o.x-e.x,y:o.y-e.y}}return he(r)}function Me(t,o){const e=Re(t);return!(e===o||!Ne(e)||We(e))&&("fixed"===Ue(e).position||Me(e,o))}function Pe(t,o,e){const r=we(o),i=ve(o),a="fixed"===e,n=Ae(t,!0,a,o);let l={scrollLeft:0,scrollTop:0};const c=oe(0);if(r||!r&&!a)if(("body"!==me(o)||Ce(i))&&(l=ke(o)),r){const t=Ae(o,!0,a,o);c.x=t.x+o.clientLeft,c.y=t.y+o.clientTop}else i&&(c.x=He(i));return{x:n.left+l.scrollLeft-c.x,y:n.top+l.scrollTop-c.y,width:n.width,height:n.height}}function je(t,o){return we(t)&&"fixed"!==Ue(t).position?o?o(t):t.offsetParent:null}function Te(t,o){const e=xe(t);if(!we(t))return e;let r=je(t,o);for(;r&&Ie(r)&&"static"===Ue(r).position;)r=je(r,o);return r&&("html"===me(r)||"body"===me(r)&&"static"===Ue(r).position&&!$e(r))?e:r||function(t){let o=Re(t);for(;we(o)&&!We(o);){if($e(o))return o;o=Re(o)}return null}(t)||e}const Ye={convertOffsetParentRelativeRectToViewportRelativeRect:function(t){let{rect:o,offsetParent:e,strategy:r}=t;const i=we(e),a=ve(e);if(e===a)return o;let n={scrollLeft:0,scrollTop:0},l=oe(1);const c=oe(0);if((i||!i&&"fixed"!==r)&&(("body"!==me(e)||Ce(a))&&(n=ke(e)),we(e))){const t=Ae(e);l=Fe(e),c.x=t.x+e.clientLeft,c.y=t.y+e.clientTop}return{width:o.width*l.x,height:o.height*l.y,x:o.x*l.x-n.scrollLeft*l.x+c.x,y:o.y*l.y-n.scrollTop*l.y+c.y}},getDocumentElement:ve,getClippingRect:function(t){let{element:o,boundary:e,rootBoundary:r,strategy:i}=t;const a=[..."clippingAncestors"===e?function(t,o){const e=o.get(t);if(e)return e;let r=Ze(t,[],!1).filter((t=>Ne(t)&&"body"!==me(t))),i=null;const a="fixed"===Ue(t).position;let n=a?Re(t):t;for(;Ne(n)&&!We(n);){const o=Ue(n),e=$e(n);e||"fixed"!==o.position||(i=null),(a?!e&&!i:!e&&"static"===o.position&&i&&["absolute","fixed"].includes(i.position)||Ce(n)&&!e&&Me(t,n))?r=r.filter((t=>t!==n)):i=o,n=Re(n)}return o.set(t,r),r}(o,this._c):[].concat(e),r],n=a[0],l=a.reduce(((t,e)=>{const r=Ge(o,e,i);return t.top=Qo(r.top,t.top),t.right=Jo(r.right,t.right),t.bottom=Jo(r.bottom,t.bottom),t.left=Qo(r.left,t.left),t}),Ge(o,n,i));return{width:l.right-l.left,height:l.bottom-l.top,x:l.left,y:l.top}},getOffsetParent:Te,getElementRects:async function(t){let{reference:o,floating:e,strategy:r}=t;const i=this.getOffsetParent||Te,a=this.getDimensions;return{reference:Pe(o,await i(e),r),floating:{x:0,y:0,...await a(e)}}},getClientRects:function(t){return Array.from(t.getClientRects())},getDimensions:function(t){return ze(t)},getScale:Fe,isElement:Ne,isRTL:function(t){return"rtl"===Ue(t).direction}},_e=(t,o,e)=>{const r=new Map,i={platform:Ye,...e},a={...i.platform,_c:r};return(async(t,o,e)=>{const{placement:r="bottom",strategy:i="absolute",middleware:a=[],platform:n}=e,l=a.filter(Boolean),c=await(null==n.isRTL?void 0:n.isRTL(o));let s=await n.getElementRects({reference:t,floating:o,strategy:i}),{x:p,y:f}=ge(s,r,c),d=r,h={},g=0;for(let e=0;e<l.length;e++){const{name:a,fn:y}=l[e],{x:u,y:b,data:m,reset:x}=await y({x:p,y:f,initialPlacement:r,placement:d,strategy:i,middlewareData:h,rects:s,platform:n,elements:{reference:t,floating:o}});p=null!=u?u:p,f=null!=b?b:f,h={...h,[a]:{...h[a],...m}},x&&g<=50&&(g++,"object"==typeof x&&(x.placement&&(d=x.placement),x.rects&&(s=!0===x.rects?await n.getElementRects({reference:t,floating:o,strategy:i}):x.rects),({x:p,y:f}=ge(s,d,c))),e=-1)}return{x:p,y:f,placement:d,strategy:i,middlewareData:h}})(t,o,{...i,platform:a})};function Ve(t){return function(t){for(let o=t;o;o=Xe(o))if(o instanceof Element&&"none"===getComputedStyle(o).display)return null;for(let o=Xe(t);o;o=Xe(o)){if(!(o instanceof Element))continue;const t=getComputedStyle(o);if("contents"!==t.display){if("static"!==t.position||"none"!==t.filter)return o;if("BODY"===o.tagName)return o}}return null}(t)}function Xe(t){return t.assignedSlot?t.assignedSlot:t.parentNode instanceof ShadowRoot?t.parentNode.host:t.parentNode}var qe,Je,Qe,tr=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class or extends o.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new o.Debouncer,this.revealDebouncer=new o.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return e.html`
|
|
521
|
+
`;var sn=["top","right","bottom","left"],cn=["start","end"],uo=sn.reduce((e,o)=>e.concat(o,o+"-"+cn[0],o+"-"+cn[1]),[]),ue=Math.min,Nt=Math.max,he=Math.round;var xt=e=>({x:e,y:e}),wa={left:"right",right:"left",bottom:"top",top:"bottom"},Na={start:"end",end:"start"};function ho(e,o,r){return Nt(e,ue(o,r))}function We(e,o){return typeof e=="function"?e(o):e}function Jt(e){return e.split("-")[0]}function Et(e){return e.split("-")[1]}function mo(e){return e==="x"?"y":"x"}function go(e){return e==="y"?"height":"width"}function $e(e){return["top","bottom"].includes(Jt(e))?"y":"x"}function yo(e){return mo($e(e))}function pn(e,o,r){r===void 0&&(r=!1);let i=Et(e),a=yo(e),l=go(a),c=a==="x"?i===(r?"end":"start")?"right":"left":i==="start"?"bottom":"top";return o.reference[l]>o.floating[l]&&(c=fo(c)),[c,fo(c)]}function dn(e){return e.replace(/start|end/g,o=>Na[o])}function fo(e){return e.replace(/left|right|bottom|top/g,o=>wa[o])}function Ea(e){return{top:0,right:0,bottom:0,left:0,...e}}function fn(e){return typeof e!="number"?Ea(e):{top:e,right:e,bottom:e,left:e}}function Bt(e){return{...e,top:e.y,left:e.x,right:e.x+e.width,bottom:e.y+e.height}}function un(e,o,r){let{reference:i,floating:a}=e,l=$e(o),c=yo(o),p=go(c),d=Jt(o),f=l==="y",x=i.x+i.width/2-a.width/2,y=i.y+i.height/2-a.height/2,w=i[p]/2-a[p]/2,C;switch(d){case"top":C={x,y:i.y-a.height};break;case"bottom":C={x,y:i.y+i.height};break;case"right":C={x:i.x+i.width,y};break;case"left":C={x:i.x-a.width,y};break;default:C={x:i.x,y:i.y}}switch(Et(o)){case"start":C[c]-=w*(r&&f?-1:1);break;case"end":C[c]+=w*(r&&f?-1:1);break}return C}var hn=async(e,o,r)=>{let{placement:i="bottom",strategy:a="absolute",middleware:l=[],platform:c}=r,p=l.filter(Boolean),d=await(c.isRTL==null?void 0:c.isRTL(o)),f=await c.getElementRects({reference:e,floating:o,strategy:a}),{x,y}=un(f,i,d),w=i,C={},R=0;for(let $=0;$<p.length;$++){let{name:k,fn:P}=p[$],{x:z,y:G,data:vt,reset:M}=await P({x,y,initialPlacement:i,placement:w,strategy:a,middlewareData:C,rects:f,platform:c,elements:{reference:e,floating:o}});if(x=z??x,y=G??y,C={...C,[k]:{...C[k],...vt}},M&&R<=50){R++,typeof M=="object"&&(M.placement&&(w=M.placement),M.rects&&(f=M.rects===!0?await c.getElementRects({reference:e,floating:o,strategy:a}):M.rects),{x,y}=un(f,w,d)),$=-1;continue}}return{x,y,placement:w,strategy:a,middlewareData:C}};async function bo(e,o){var r;o===void 0&&(o={});let{x:i,y:a,platform:l,rects:c,elements:p,strategy:d}=e,{boundary:f="clippingAncestors",rootBoundary:x="viewport",elementContext:y="floating",altBoundary:w=!1,padding:C=0}=We(o,e),R=fn(C),k=p[w?y==="floating"?"reference":"floating":y],P=Bt(await l.getClippingRect({element:(r=await(l.isElement==null?void 0:l.isElement(k)))==null||r?k:k.contextElement||await(l.getDocumentElement==null?void 0:l.getDocumentElement(p.floating)),boundary:f,rootBoundary:x,strategy:d})),z=y==="floating"?{...c.floating,x:i,y:a}:c.reference,G=await(l.getOffsetParent==null?void 0:l.getOffsetParent(p.floating)),vt=await(l.isElement==null?void 0:l.isElement(G))?await(l.getScale==null?void 0:l.getScale(G))||{x:1,y:1}:{x:1,y:1},M=Bt(l.convertOffsetParentRelativeRectToViewportRelativeRect?await l.convertOffsetParentRelativeRectToViewportRelativeRect({rect:z,offsetParent:G,strategy:d}):z);return{top:(P.top-M.top+R.top)/vt.y,bottom:(M.bottom-P.bottom+R.bottom)/vt.y,left:(P.left-M.left+R.left)/vt.x,right:(M.right-P.right+R.right)/vt.x}}function Ra(e,o,r){return(e?[...r.filter(a=>Et(a)===e),...r.filter(a=>Et(a)!==e)]:r.filter(a=>Jt(a)===a)).filter(a=>e?Et(a)===e||(o?dn(a)!==a:!1):!0)}var xo=function(e){return e===void 0&&(e={}),{name:"autoPlacement",options:e,async fn(o){var r,i,a;let{rects:l,middlewareData:c,placement:p,platform:d,elements:f}=o,{crossAxis:x=!1,alignment:y,allowedPlacements:w=uo,autoAlignment:C=!0,...R}=We(e,o),$=y!==void 0||w===uo?Ra(y||null,C,w):w,k=await bo(o,R),P=((r=c.autoPlacement)==null?void 0:r.index)||0,z=$[P];if(z==null)return{};let G=pn(z,l,await(d.isRTL==null?void 0:d.isRTL(f.floating)));if(p!==z)return{reset:{placement:$[0]}};let vt=[k[Jt(z)],k[G[0]],k[G[1]]],M=[...((i=c.autoPlacement)==null?void 0:i.overflows)||[],{placement:z,overflows:vt}],Ao=$[P+1];if(Ao)return{data:{index:P+1,overflows:M},reset:{placement:Ao}};let Lo=M.map(pt=>{let ae=Et(pt.placement);return[pt.placement,ae&&x?pt.overflows.slice(0,2).reduce((pa,da)=>pa+da,0):pt.overflows[0],pt.overflows]}).sort((pt,ae)=>pt[1]-ae[1]),Io=((a=Lo.filter(pt=>pt[2].slice(0,Et(pt[0])?2:3).every(ae=>ae<=0))[0])==null?void 0:a[0])||Lo[0][0];return Io!==p?{data:{index:P+1,overflows:M},reset:{placement:Io}}:{}}}};var So=function(e){return e===void 0&&(e={}),{name:"shift",options:e,async fn(o){let{x:r,y:i,placement:a}=o,{mainAxis:l=!0,crossAxis:c=!1,limiter:p={fn:k=>{let{x:P,y:z}=k;return{x:P,y:z}}},...d}=We(e,o),f={x:r,y:i},x=await bo(o,d),y=$e(Jt(a)),w=mo(y),C=f[w],R=f[y];if(l){let k=w==="y"?"top":"left",P=w==="y"?"bottom":"right",z=C+x[k],G=C-x[P];C=ho(z,C,G)}if(c){let k=y==="y"?"top":"left",P=y==="y"?"bottom":"right",z=R+x[k],G=R-x[P];R=ho(z,R,G)}let $=p.fn({...o,[w]:C,[y]:R});return{...$,data:{x:$.x-r,y:$.y-i}}}}};function St(e){return gn(e)?(e.nodeName||"").toLowerCase():"#document"}function Y(e){var o;return(e==null||(o=e.ownerDocument)==null?void 0:o.defaultView)||window}function Ct(e){var o;return(o=(gn(e)?e.ownerDocument:e.document)||window.document)==null?void 0:o.documentElement}function gn(e){return e instanceof Node||e instanceof Y(e).Node}function ut(e){return e instanceof Element||e instanceof Y(e).Element}function at(e){return e instanceof HTMLElement||e instanceof Y(e).HTMLElement}function mn(e){return typeof ShadowRoot>"u"?!1:e instanceof ShadowRoot||e instanceof Y(e).ShadowRoot}function Qt(e){let{overflow:o,overflowX:r,overflowY:i,display:a}=q(e);return/auto|scroll|overlay|hidden|clip/.test(o+i+r)&&!["inline","contents"].includes(a)}function yn(e){return["table","td","th"].includes(St(e))}function Be(e){let o=Te(),r=q(e);return r.transform!=="none"||r.perspective!=="none"||(r.containerType?r.containerType!=="normal":!1)||!o&&(r.backdropFilter?r.backdropFilter!=="none":!1)||!o&&(r.filter?r.filter!=="none":!1)||["transform","perspective","filter"].some(i=>(r.willChange||"").includes(i))||["paint","layout","strict","content"].some(i=>(r.contain||"").includes(i))}function bn(e){let o=Tt(e);for(;at(o)&&!me(o);){if(Be(o))return o;o=Tt(o)}return null}function Te(){return typeof CSS>"u"||!CSS.supports?!1:CSS.supports("-webkit-backdrop-filter","none")}function me(e){return["html","body","#document"].includes(St(e))}function q(e){return Y(e).getComputedStyle(e)}function ge(e){return ut(e)?{scrollLeft:e.scrollLeft,scrollTop:e.scrollTop}:{scrollLeft:e.pageXOffset,scrollTop:e.pageYOffset}}function Tt(e){if(St(e)==="html")return e;let o=e.assignedSlot||e.parentNode||mn(e)&&e.host||Ct(e);return mn(o)?o.host:o}function xn(e){let o=Tt(e);return me(o)?e.ownerDocument?e.ownerDocument.body:e.body:at(o)&&Qt(o)?o:xn(o)}function Pe(e,o,r){var i;o===void 0&&(o=[]),r===void 0&&(r=!0);let a=xn(e),l=a===((i=e.ownerDocument)==null?void 0:i.body),c=Y(a);return l?o.concat(c,c.visualViewport||[],Qt(a)?a:[],c.frameElement&&r?Pe(c.frameElement):[]):o.concat(a,Pe(a,[],r))}function vn(e){let o=q(e),r=parseFloat(o.width)||0,i=parseFloat(o.height)||0,a=at(e),l=a?e.offsetWidth:r,c=a?e.offsetHeight:i,p=he(r)!==l||he(i)!==c;return p&&(r=l,i=c),{width:r,height:i,$:p}}function On(e){return ut(e)?e:e.contextElement}function te(e){let o=On(e);if(!at(o))return xt(1);let r=o.getBoundingClientRect(),{width:i,height:a,$:l}=vn(o),c=(l?he(r.width):r.width)/i,p=(l?he(r.height):r.height)/a;return(!c||!Number.isFinite(c))&&(c=1),(!p||!Number.isFinite(p))&&(p=1),{x:c,y:p}}var Aa=xt(0);function wn(e){let o=Y(e);return!Te()||!o.visualViewport?Aa:{x:o.visualViewport.offsetLeft,y:o.visualViewport.offsetTop}}function La(e,o,r){return o===void 0&&(o=!1),!r||o&&r!==Y(e)?!1:o}function ye(e,o,r,i){o===void 0&&(o=!1),r===void 0&&(r=!1);let a=e.getBoundingClientRect(),l=On(e),c=xt(1);o&&(i?ut(i)&&(c=te(i)):c=te(e));let p=La(l,r,i)?wn(l):xt(0),d=(a.left+p.x)/c.x,f=(a.top+p.y)/c.y,x=a.width/c.x,y=a.height/c.y;if(l){let w=Y(l),C=i&&ut(i)?Y(i):i,R=w.frameElement;for(;R&&i&&C!==w;){let $=te(R),k=R.getBoundingClientRect(),P=q(R),z=k.left+(R.clientLeft+parseFloat(P.paddingLeft))*$.x,G=k.top+(R.clientTop+parseFloat(P.paddingTop))*$.y;d*=$.x,f*=$.y,x*=$.x,y*=$.y,d+=z,f+=G,R=Y(R).frameElement}}return Bt({width:x,height:y,x:d,y:f})}function Ia(e){let{rect:o,offsetParent:r,strategy:i}=e,a=at(r),l=Ct(r);if(r===l)return o;let c={scrollLeft:0,scrollTop:0},p=xt(1),d=xt(0);if((a||!a&&i!=="fixed")&&((St(r)!=="body"||Qt(l))&&(c=ge(r)),at(r))){let f=ye(r);p=te(r),d.x=f.x+r.clientLeft,d.y=f.y+r.clientTop}return{width:o.width*p.x,height:o.height*p.y,x:o.x*p.x-c.scrollLeft*p.x+d.x,y:o.y*p.y-c.scrollTop*p.y+d.y}}function Wa(e){return Array.from(e.getClientRects())}function Nn(e){return ye(Ct(e)).left+ge(e).scrollLeft}function $a(e){let o=Ct(e),r=ge(e),i=e.ownerDocument.body,a=Nt(o.scrollWidth,o.clientWidth,i.scrollWidth,i.clientWidth),l=Nt(o.scrollHeight,o.clientHeight,i.scrollHeight,i.clientHeight),c=-r.scrollLeft+Nn(e),p=-r.scrollTop;return q(i).direction==="rtl"&&(c+=Nt(o.clientWidth,i.clientWidth)-a),{width:a,height:l,x:c,y:p}}function Pa(e,o){let r=Y(e),i=Ct(e),a=r.visualViewport,l=i.clientWidth,c=i.clientHeight,p=0,d=0;if(a){l=a.width,c=a.height;let f=Te();(!f||f&&o==="fixed")&&(p=a.offsetLeft,d=a.offsetTop)}return{width:l,height:c,x:p,y:d}}function Ba(e,o){let r=ye(e,!0,o==="fixed"),i=r.top+e.clientTop,a=r.left+e.clientLeft,l=at(e)?te(e):xt(1),c=e.clientWidth*l.x,p=e.clientHeight*l.y,d=a*l.x,f=i*l.y;return{width:c,height:p,x:d,y:f}}function Sn(e,o,r){let i;if(o==="viewport")i=Pa(e,r);else if(o==="document")i=$a(Ct(e));else if(ut(o))i=Ba(o,r);else{let a=wn(e);i={...o,x:o.x-a.x,y:o.y-a.y}}return Bt(i)}function En(e,o){let r=Tt(e);return r===o||!ut(r)||me(r)?!1:q(r).position==="fixed"||En(r,o)}function Ta(e,o){let r=o.get(e);if(r)return r;let i=Pe(e,[],!1).filter(p=>ut(p)&&St(p)!=="body"),a=null,l=q(e).position==="fixed",c=l?Tt(e):e;for(;ut(c)&&!me(c);){let p=q(c),d=Be(c);!d&&p.position==="fixed"&&(a=null),(l?!d&&!a:!d&&p.position==="static"&&!!a&&["absolute","fixed"].includes(a.position)||Qt(c)&&!d&&En(e,c))?i=i.filter(x=>x!==c):a=p,c=Tt(c)}return o.set(e,i),i}function ka(e){let{element:o,boundary:r,rootBoundary:i,strategy:a}=e,c=[...r==="clippingAncestors"?Ta(o,this._c):[].concat(r),i],p=c[0],d=c.reduce((f,x)=>{let y=Sn(o,x,a);return f.top=Nt(y.top,f.top),f.right=ue(y.right,f.right),f.bottom=ue(y.bottom,f.bottom),f.left=Nt(y.left,f.left),f},Sn(o,p,a));return{width:d.right-d.left,height:d.bottom-d.top,x:d.left,y:d.top}}function za(e){return vn(e)}function Ua(e,o,r){let i=at(o),a=Ct(o),l=r==="fixed",c=ye(e,!0,l,o),p={scrollLeft:0,scrollTop:0},d=xt(0);if(i||!i&&!l)if((St(o)!=="body"||Qt(a))&&(p=ge(o)),i){let f=ye(o,!0,l,o);d.x=f.x+o.clientLeft,d.y=f.y+o.clientTop}else a&&(d.x=Nn(a));return{x:c.left+p.scrollLeft-d.x,y:c.top+p.scrollTop-d.y,width:c.width,height:c.height}}function Cn(e,o){return!at(e)||q(e).position==="fixed"?null:o?o(e):e.offsetParent}function Rn(e,o){let r=Y(e);if(!at(e))return r;let i=Cn(e,o);for(;i&&yn(i)&&q(i).position==="static";)i=Cn(i,o);return i&&(St(i)==="html"||St(i)==="body"&&q(i).position==="static"&&!Be(i))?r:i||bn(e)||r}var _a=async function(e){let{reference:o,floating:r,strategy:i}=e,a=this.getOffsetParent||Rn,l=this.getDimensions;return{reference:Ua(o,await a(r),i),floating:{x:0,y:0,...await l(r)}}};function Ha(e){return q(e).direction==="rtl"}var ke={convertOffsetParentRelativeRectToViewportRelativeRect:Ia,getDocumentElement:Ct,getClippingRect:ka,getOffsetParent:Rn,getElementRects:_a,getClientRects:Wa,getDimensions:za,getScale:te,isElement:ut,isRTL:Ha};var An=(e,o,r)=>{let i=new Map,a={platform:ke,...r},l={...a.platform,_c:i};return hn(e,o,{...a,platform:l})};function Ln(e){return Da(e)}function Co(e){return e.assignedSlot?e.assignedSlot:e.parentNode instanceof ShadowRoot?e.parentNode.host:e.parentNode}function Da(e){for(let o=e;o;o=Co(o))if(o instanceof Element&&getComputedStyle(o).display==="none")return null;for(let o=Co(e);o;o=Co(o)){if(!(o instanceof Element))continue;let r=getComputedStyle(o);if(r.display!=="contents"&&(r.position!=="static"||r.filter!=="none"||o.tagName==="BODY"))return o}return null}async function In(e,o,r){return An(e,o,{platform:{...ke,getOffsetParent:i=>ke.getOffsetParent(i,Ln)},middleware:[So({crossAxis:!0}),xo({allowedPlacements:[r]})]})}var X=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},A=class extends be.FtLitElement{constructor(){super(...arguments),this.text="",this.manual=!1,this.inline=!1,this.delay=500,this.position="bottom",this.visible=!1,this.validPositions=new Set(["top","bottom","left","right"]),this.hideDebounce=new be.Debouncer,this.revealDebouncer=new be.Debouncer}get validPosition(){return this.validPositions.has(this.position)?this.position:"bottom"}render(){return Wn.html`
|
|
531
522
|
<div part="container"
|
|
532
523
|
class="ft-tooltip--container ${this.inline?"ft-tooltip--inline":""}"
|
|
533
524
|
@mouseenter=${this.onHover}
|
|
@@ -545,42 +536,45 @@ const zo=Symbol.for(""),Ko=t=>{if(t?.r===zo)return t?._$litStatic$},Fo=t=>({_$li
|
|
|
545
536
|
</div>
|
|
546
537
|
</div>
|
|
547
538
|
</div>
|
|
548
|
-
`}updated(t){t.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(t)}contentAvailableCallback(t){super.contentAvailableCallback(t),["visible","text"].some((o=>t.has(o)))&&this.visible&&this.positionTooltip()}async show(t){this.visible=!0,null!=t&&await this.hideDebounce.run((()=>{this.hide()}),t)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var t;return(null!==(t=this.slotNodes)&&void 0!==t?t:[]).filter((t=>t.nodeType==Node.ELEMENT_NODE))[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){const t=this.tooltipContent.style;switch(t.transition="none",this.validPosition){case"top":t.top=this.tooltip.clientHeight+"px",t.left="0";break;case"bottom":t.top=-this.tooltip.clientHeight+"px",t.left="0";break;case"left":t.top="0",t.left=this.tooltip.clientWidth+"px";break;case"right":t.top="0",t.left=-this.tooltip.clientWidth+"px"}}}positionTooltip(){this.resetTooltipContent(),this.tooltip&&this.slottedElement&&(this.tooltip.style.left="",this.tooltip.style.top="",async function(t,o,e){return _e(t,o,{platform:{...Ye,getOffsetParent:t=>Ye.getOffsetParent(t,Ve)},middleware:[(r={crossAxis:!0},void 0===r&&(r={}),{name:"shift",options:r,async fn(t){const{x:o,y:e,placement:i}=t,{mainAxis:a=!0,crossAxis:n=!1,limiter:l={fn:t=>{let{x:o,y:e}=t;return{x:o,y:e}}},...c}=ae(r,t),s={x:o,y:e},p=await ye(t,c),f=pe(ne(i)),d=ce(f);let h=s[d],g=s[f];if(a){const t="y"===d?"bottom":"right";h=ie(h+p["y"===d?"top":"left"],h,h-p[t])}if(n){const t="y"===f?"bottom":"right";g=ie(g+p["y"===f?"top":"left"],g,g-p[t])}const y=l.fn({...t,[d]:h,[f]:g});return{...y,data:{x:y.x-o,y:y.y-e}}}}),be({allowedPlacements:[e]})]});var r}(this.slottedElement,this.tooltip,this.position).then((({x:t,y:o})=>{this.tooltip&&(this.tooltip.style.left=`${t}px`,this.tooltip.style.top=`${o}px`)}))),this.revealDebouncer.run((()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")}),this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout((()=>window.addEventListener("touchstart",(t=>{t.composedPath().includes(this.container)||this.onOut()}),{once:!0})),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}onClick(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(t,o){return Math.max(t,Math.min(0,-o))}}or.elementDefinitions={"ft-typography":Go},or.styles=Vo,tr([r.property()],or.prototype,"text",void 0),tr([r.property({type:Boolean})],or.prototype,"manual",void 0),tr([r.property({type:Boolean})],or.prototype,"inline",void 0),tr([r.property({type:Number})],or.prototype,"delay",void 0),tr([r.property()],or.prototype,"position",void 0),tr([r.queryAssignedNodes()],or.prototype,"slotNodes",void 0),tr([r.query(".ft-tooltip--container")],or.prototype,"container",void 0),tr([r.query(".ft-tooltip")],or.prototype,"tooltip",void 0),tr([r.query(".ft-tooltip--content")],or.prototype,"tooltipContent",void 0),tr([r.state()],or.prototype,"visible",void 0),tr([r.eventOptions({passive:!0})],or.prototype,"onTouch",null),tr([r.eventOptions({passive:!0})],or.prototype,"onHover",null),tr([r.eventOptions({passive:!0})],or.prototype,"onOut",null),tr([r.eventOptions({passive:!0})],or.prototype,"onClick",null),o.customElement("ft-tooltip")(or),function(t){t.THUMBS_DOWN="",t.THUMBS_DOWN_PLAIN="",t.THUMBS_UP="",t.THUMBS_UP_PLAIN="",t.STAR="",t.STAR_PLAIN="",t.DESKTOP="",t.LIFE_RING="",t.GLOBE="",t.PIGGY_BANK="",t.TABLET_LANDSCAPE="",t.TABLET_PORTRAIT="",t.MOBILE_LANDSCAPE="",t.MOBILE_PORTRAIT="",t.ARROW_RIGHT_TO_LINE="",t.THIN_ARROW_UP="",t.CONTEXTUAL="",t.CHART_SIMPLE="",t.BARS_PROGRESS="",t.LINE_CHART="",t.STACKED_CHART="",t.CHART_BAR_NORMALIZED="",t.BOOK_OPEN_GEAR="",t.BOOK_OPEN_GEAR_SLASH="",t.DIAGRAM_SUNBURST="",t.DIAGRAM_SANKEY="",t.UNSTRUCTURED_DOC="",t.RESET="",t.THIN_ARROW_LEFT="",t.THIN_ARROW_RIGHT="",t.MY_COLLECTIONS="",t.OFFLINE_SETTINGS="",t.MY_LIBRARY="",t.RATE_PLAIN="",t.RATE="",t.FEEDBACK_PLAIN="",t.PAUSE="",t.PLAY="",t.RELATIVES_PLAIN="",t.RELATIVES="",t.SHORTCUT_MENU="",t.PRINT="",t.DEFAULT_ROLES="",t.ACCOUNT_SETTINGS="",t.ONLINE="",t.OFFLINE="",t.UPLOAD="",t.BOOK_PLAIN="",t.SYNC="",t.SHARED_PBK="",t.COLLECTIONS="",t.SEARCH_IN_PUBLICATION="",t.BOOKS="",t.LOCKER="",t.ARROW_DOWN="",t.ARROW_LEFT="",t.ARROW_RIGHT="",t.ARROW_UP="",t.SAVE="",t.MAILS_AND_NOTIFICATIONS="",t.DOT="",t.MINUS="",t.PLUS="",t.FILTERS="",t.STRIPE_ARROW_RIGHT="",t.STRIPE_ARROW_LEFT="",t.ATTACHMENTS="",t.ADD_BOOKMARK="",t.BOOKMARK="",t.EXPORT="",t.MENU="",t.TAG="",t.TAG_PLAIN="",t.COPY_TO_CLIPBOARD="",t.COLUMNS="",t.ARTICLE="",t.CLOSE="",t.OCTAGON_XMARK="",t.CLOSE_PLAIN="",t.CHECK_PLAIN="",t.LOGOUT="",t.SIGN_IN="",t.THIN_ARROW="",t.TRIANGLE_BOTTOM="",t.TRIANGLE_LEFT="",t.TRIANGLE_RIGHT="",t.TRIANGLE_TOP="",t.FACET_HAS_DESCENDANT="",t.MINUS_PLAIN="",t.PLUS_PLAIN="",t.INFO="",t.ICON_EXPAND="",t.ICON_COLLAPSE="",t.ADD_TO_PBK="",t.ALERT="",t.ADD_ALERT="",t.BACK_TO_SEARCH="",t.DOWNLOAD="",t.EDIT="",t.FEEDBACK="",t.MODIFY_PBK="",t.SCHEDULED="",t.SEARCH="",t.SHARE="󨃱",t.TOC="",t.WRITE_UGC="",t.TRASH="",t.EXTLINK="",t.EXTLINK_LIGHT="",t.CALENDAR="",t.BOOK="",t.DOWNLOAD_PLAIN="",t.CHECK="",t.TOPICS="",t.EYE="",t.EYE_SLASH="",t.DISC="",t.CIRCLE="",t.SHARED="",t.SORT_UNSORTED="",t.SORT_UP="",t.SORT_DOWN="",t.WORKING="",t.ZOOM_OUT="",t.ZOOM_IN="",t.ZOOM_REALSIZE="",t.ZOOM_FULLSCREEN="",t.ADMIN_RESTRICTED="",t.ADMIN_THEME="",t.WARNING="",t.CONTEXT="",t.SEARCH_HOME="",t.STEPS="",t.HOME="",t.TRANSLATE="",t.USER="",t.ADMIN="",t.ANALYTICS="",t.ADMIN_KHUB="",t.ADMIN_USERS="",t.ADMIN_INTEGRATION="",t.ADMIN_PORTAL="",t.COMMENT_QUESTION="",t.COMMENT_QUESTION_PLAIN="",t.MESSAGE_BOT="",t.PIP="",t.PIP_WIDE="",t.EXPAND_WIDE="",t.X_MARK="",t.CLONE="",t.CLONE_LINK_SIMPLE="",t.CONSUMER="",t.HOURGLASS_HALF="",t.CLOCK_THREE="",t.CALENDAR_DAY="",t.COMPUTER_MOUSE_MAGNIFYING_GLASS="",t.WAND_MAGIC_SPARKLES="",t.PAPER_PLANE=""}(qe||(qe={})),function(t){t.UNKNOWN="",t.ABW="",t.AUDIO="",t.AVI="",t.CHM="",t.CODE="",t.CSV="",t.DITA="",t.EPUB="",t.EXCEL="",t.FLAC="",t.GIF="",t.GZIP="",t.HTML="",t.IMAGE="",t.JPEG="",t.JSON="",t.M4A="",t.MOV="",t.MP3="",t.MP4="",t.OGG="",t.PDF="",t.PNG="",t.POWERPOINT="",t.RAR="",t.STP="",t.TEXT="",t.VIDEO="",t.WAV="",t.WMA="",t.WORD="",t.XML="",t.YAML="",t.ZIP=""}(Je||(Je={})),new Map([...["abw"].map((t=>[t,Je.ABW])),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map((t=>[t,Je.AUDIO])),...["avi"].map((t=>[t,Je.AVI])),...["chm","xhs"].map((t=>[t,Je.CHM])),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map((t=>[t,Je.CODE])),...["csv"].map((t=>[t,Je.CSV])),...["dita","ditamap","ditaval"].map((t=>[t,Je.DITA])),...["epub"].map((t=>[t,Je.EPUB])),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map((t=>[t,Je.EXCEL])),...["flac"].map((t=>[t,Je.FLAC])),...["gif"].map((t=>[t,Je.GIF])),...["gzip","x-gzip","giz","gz","tgz"].map((t=>[t,Je.GZIP])),...["html","htm","xhtml"].map((t=>[t,Je.HTML])),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map((t=>[t,Je.IMAGE])),...["jpeg","jpg","jpe"].map((t=>[t,Je.JPEG])),...["json"].map((t=>[t,Je.JSON])),...["m4a","m4p"].map((t=>[t,Je.M4A])),...["mov","qt"].map((t=>[t,Je.MOV])),...["mp3"].map((t=>[t,Je.MP3])),...["mp4","m4v"].map((t=>[t,Je.MP4])),...["ogg","oga"].map((t=>[t,Je.OGG])),...["pdf","ps"].map((t=>[t,Je.PDF])),...["png"].map((t=>[t,Je.PNG])),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map((t=>[t,Je.POWERPOINT])),...["rar"].map((t=>[t,Je.RAR])),...["stp"].map((t=>[t,Je.STP])),...["txt","rtf","md","mdown"].map((t=>[t,Je.TEXT])),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map((t=>[t,Je.VIDEO])),...["wav"].map((t=>[t,Je.WAV])),...["wma"].map((t=>[t,Je.WMA])),...["doc","dot","docx","docm","dotx","dotm","docb"].map((t=>[t,Je.WORD])),...["xml","xsl","rdf"].map((t=>[t,Je.XML])),...["yaml","yml","x-yaml"].map((t=>[t,Je.YAML])),...["zip"].map((t=>[t,Je.ZIP]))]),Je.ABW,Je.AUDIO,Je.AVI,Je.CHM,Je.CODE,Je.CSV,Je.DITA,Je.EPUB,Je.EXCEL,Je.FLAC,Je.GIF,Je.GZIP,Je.HTML,Je.IMAGE,Je.JPEG,Je.JSON,Je.M4A,Je.MOV,Je.MP3,Je.MP4,Je.OGG,Je.PDF,Je.PNG,Je.POWERPOINT,Je.RAR,Je.STP,Je.TEXT,Je.UNKNOWN,Je.VIDEO,Je.WAV,Je.WMA,Je.WORD,Je.XML,Je.YAML,Je.ZIP,function(t){t.fluid_topics="fluid-topics",t.file_format="file-format",t.material="material"}(Qe||(Qe={}));var er=function(t,o,e,r){for(var i,a=arguments.length,n=a<3?o:null===r?r=Object.getOwnPropertyDescriptor(o,e):r,l=t.length-1;l>=0;l--)(i=t[l])&&(n=(a<3?i(n):a>3?i(o,e,n):i(o,e))||n);return a>3&&n&&Object.defineProperty(o,e,n),n};class rr extends o.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=e.nothing}render(){const t=this.variant&&Object.values(Qe).includes(this.variant)?this.variant:Qe.fluid_topics,o=t!==Qe.material||!!this.value;return e.html`
|
|
549
|
-
<i class="ft-icon ft-icon--${
|
|
550
|
-
${
|
|
551
|
-
<slot ?hidden=${
|
|
539
|
+
`}updated(o){o.has("visible")&&this.visible&&this.resetTooltipContent(),super.updated(o)}contentAvailableCallback(o){super.contentAvailableCallback(o),["visible","text"].some(r=>o.has(r))&&this.visible&&this.positionTooltip()}async show(o){this.visible=!0,o!=null&&await this.hideDebounce.run(()=>{this.hide()},o)}hide(){this.visible=!1}toggle(){this.visible=!this.visible}get slottedElement(){var o;return((o=this.slotNodes)!==null&&o!==void 0?o:[]).filter(r=>r.nodeType==Node.ELEMENT_NODE)[0]}resetTooltipContent(){if(this.tooltip&&this.tooltipContent){let o=this.tooltipContent.style;switch(o.transition="none",this.validPosition){case"top":o.top=this.tooltip.clientHeight+"px",o.left="0";break;case"bottom":o.top=-this.tooltip.clientHeight+"px",o.left="0";break;case"left":o.top="0",o.left=this.tooltip.clientWidth+"px";break;case"right":o.top="0",o.left=-this.tooltip.clientWidth+"px";break}}}positionTooltip(){this.resetTooltipContent(),this.tooltip&&this.slottedElement&&(this.tooltip.style.left="",this.tooltip.style.top="",In(this.slottedElement,this.tooltip,this.position).then(({x:o,y:r})=>{this.tooltip&&(this.tooltip.style.left=`${o}px`,this.tooltip.style.top=`${r}px`)})),this.revealDebouncer.run(()=>{this.tooltipContent&&(this.tooltipContent.style.transition="top var(--ft-transition-duration, 250ms), left var(--ft-transition-duration, 250ms)",this.tooltipContent.style.top="0",this.tooltipContent.style.left="0")},this.manual?0:this.delay)}onTouch(){this.manual||(this.show(),setTimeout(()=>window.addEventListener("touchstart",o=>{o.composedPath().includes(this.container)||this.onOut()},{once:!0}),100))}onHover(){this.manual||this.show()}onOut(){this.manual||(this.revealDebouncer.cancel(),this.hide())}onClick(){this.manual||(this.revealDebouncer.cancel(),this.hide())}correctOutOfWindowPixels(o,r){return Math.max(o,Math.min(0,-r))}};A.elementDefinitions={"ft-typography":nt};A.styles=ln;X([(0,U.property)()],A.prototype,"text",void 0);X([(0,U.property)({type:Boolean})],A.prototype,"manual",void 0);X([(0,U.property)({type:Boolean})],A.prototype,"inline",void 0);X([(0,U.property)({type:Number})],A.prototype,"delay",void 0);X([(0,U.property)()],A.prototype,"position",void 0);X([(0,U.queryAssignedNodes)()],A.prototype,"slotNodes",void 0);X([(0,U.query)(".ft-tooltip--container")],A.prototype,"container",void 0);X([(0,U.query)(".ft-tooltip")],A.prototype,"tooltip",void 0);X([(0,U.query)(".ft-tooltip--content")],A.prototype,"tooltipContent",void 0);X([(0,U.state)()],A.prototype,"visible",void 0);X([(0,U.eventOptions)({passive:!0})],A.prototype,"onTouch",null);X([(0,U.eventOptions)({passive:!0})],A.prototype,"onHover",null);X([(0,U.eventOptions)({passive:!0})],A.prototype,"onOut",null);X([(0,U.eventOptions)({passive:!0})],A.prototype,"onClick",null);(0,$n.customElement)("ft-tooltip")(A);var zn=m(v());var xe=m(I()),kt=m(Q()),Tn=m(v()),kn=m(Bn());var ze;(function(e){e.THUMBS_DOWN="",e.THUMBS_DOWN_PLAIN="",e.THUMBS_UP="",e.THUMBS_UP_PLAIN="",e.STAR="",e.STAR_PLAIN="",e.DESKTOP="",e.LIFE_RING="",e.GLOBE="",e.PIGGY_BANK="",e.TABLET_LANDSCAPE="",e.TABLET_PORTRAIT="",e.MOBILE_LANDSCAPE="",e.MOBILE_PORTRAIT="",e.ARROW_RIGHT_TO_LINE="",e.THIN_ARROW_UP="",e.CONTEXTUAL="",e.CHART_SIMPLE="",e.BARS_PROGRESS="",e.LINE_CHART="",e.STACKED_CHART="",e.CHART_BAR_NORMALIZED="",e.BOOK_OPEN_GEAR="",e.BOOK_OPEN_GEAR_SLASH="",e.DIAGRAM_SUNBURST="",e.DIAGRAM_SANKEY="",e.UNSTRUCTURED_DOC="",e.RESET="",e.THIN_ARROW_LEFT="",e.THIN_ARROW_RIGHT="",e.MY_COLLECTIONS="",e.OFFLINE_SETTINGS="",e.MY_LIBRARY="",e.RATE_PLAIN="",e.RATE="",e.FEEDBACK_PLAIN="",e.PAUSE="",e.PLAY="",e.RELATIVES_PLAIN="",e.RELATIVES="",e.SHORTCUT_MENU="",e.PRINT="",e.DEFAULT_ROLES="",e.ACCOUNT_SETTINGS="",e.ONLINE="",e.OFFLINE="",e.UPLOAD="",e.BOOK_PLAIN="",e.SYNC="",e.SHARED_PBK="",e.COLLECTIONS="",e.SEARCH_IN_PUBLICATION="",e.BOOKS="",e.LOCKER="",e.ARROW_DOWN="",e.ARROW_LEFT="",e.ARROW_RIGHT="",e.ARROW_UP="",e.SAVE="",e.MAILS_AND_NOTIFICATIONS="",e.DOT="",e.MINUS="",e.PLUS="",e.FILTERS="",e.STRIPE_ARROW_RIGHT="",e.STRIPE_ARROW_LEFT="",e.ATTACHMENTS="",e.ADD_BOOKMARK="",e.BOOKMARK="",e.EXPORT="",e.MENU="",e.TAG="",e.TAG_PLAIN="",e.COPY_TO_CLIPBOARD="",e.COLUMNS="",e.ARTICLE="",e.CLOSE="",e.OCTAGON_XMARK="",e.CLOSE_PLAIN="",e.CHECK_PLAIN="",e.LOGOUT="",e.SIGN_IN="",e.THIN_ARROW="",e.TRIANGLE_BOTTOM="",e.TRIANGLE_LEFT="",e.TRIANGLE_RIGHT="",e.TRIANGLE_TOP="",e.FACET_HAS_DESCENDANT="",e.MINUS_PLAIN="",e.PLUS_PLAIN="",e.INFO="",e.ICON_EXPAND="",e.ICON_COLLAPSE="",e.ADD_TO_PBK="",e.ALERT="",e.ADD_ALERT="",e.BACK_TO_SEARCH="",e.DOWNLOAD="",e.EDIT="",e.FEEDBACK="",e.MODIFY_PBK="",e.SCHEDULED="",e.SEARCH="",e.SHARE="󨃱",e.TOC="",e.WRITE_UGC="",e.TRASH="",e.EXTLINK="",e.EXTLINK_LIGHT="",e.CALENDAR="",e.BOOK="",e.DOWNLOAD_PLAIN="",e.CHECK="",e.TOPICS="",e.EYE="",e.EYE_SLASH="",e.DISC="",e.CIRCLE="",e.SHARED="",e.SORT_UNSORTED="",e.SORT_UP="",e.SORT_DOWN="",e.WORKING="",e.ZOOM_OUT="",e.ZOOM_IN="",e.ZOOM_REALSIZE="",e.ZOOM_FULLSCREEN="",e.ADMIN_RESTRICTED="",e.ADMIN_THEME="",e.WARNING="",e.CONTEXT="",e.SEARCH_HOME="",e.STEPS="",e.HOME="",e.TRANSLATE="",e.USER="",e.ADMIN="",e.ANALYTICS="",e.ADMIN_KHUB="",e.ADMIN_USERS="",e.ADMIN_INTEGRATION="",e.ADMIN_PORTAL="",e.COMMENT_QUESTION="",e.COMMENT_QUESTION_PLAIN="",e.MESSAGE_BOT="",e.PIP="",e.PIP_WIDE="",e.EXPAND_WIDE="",e.X_MARK="",e.CLONE="",e.CLONE_LINK_SIMPLE="",e.CONSUMER="",e.HOURGLASS_HALF="",e.CLOCK_THREE="",e.CALENDAR_DAY="",e.COMPUTER_MOUSE_MAGNIFYING_GLASS="",e.WAND_MAGIC_SPARKLES="",e.PAPER_PLANE=""})(ze||(ze={}));var u;(function(e){e.UNKNOWN="",e.ABW="",e.AUDIO="",e.AVI="",e.CHM="",e.CODE="",e.CSV="",e.DITA="",e.EPUB="",e.EXCEL="",e.FLAC="",e.GIF="",e.GZIP="",e.HTML="",e.IMAGE="",e.JPEG="",e.JSON="",e.M4A="",e.MOV="",e.MP3="",e.MP4="",e.OGG="",e.PDF="",e.PNG="",e.POWERPOINT="",e.RAR="",e.STP="",e.TEXT="",e.VIDEO="",e.WAV="",e.WMA="",e.WORD="",e.XML="",e.YAML="",e.ZIP=""})(u||(u={}));var Pp=new Map([...["abw"].map(e=>[e,u.ABW]),...["3gp","act","aiff","aac","amr","au","awb","dct","dss","dvf","gsm","iklax","ivs","mmf","mpc","msv","opus","ra","rm","raw","sln","tta","vox","wv"].map(e=>[e,u.AUDIO]),...["avi"].map(e=>[e,u.AVI]),...["chm","xhs"].map(e=>[e,u.CHM]),...["java","py","php","php3","php4","php5","js","javascript","rb","rbw","c","cpp","cxx","h","hh","hpp","hxx","sh","bash","zsh","tcsh","ksh","csh","vb","scala","pl","prl","perl","groovy","ceylon","aspx","jsp","scpt","applescript","bas","bat","lua","jsp","mk","cmake","css","sass","less","m","mm","xcodeproj"].map(e=>[e,u.CODE]),...["csv"].map(e=>[e,u.CSV]),...["dita","ditamap","ditaval"].map(e=>[e,u.DITA]),...["epub"].map(e=>[e,u.EPUB]),...["xls","xlt","xlm","xlsx","xlsm","xltx","xltm","xlsb","xla","xlam","xll","xlw"].map(e=>[e,u.EXCEL]),...["flac"].map(e=>[e,u.FLAC]),...["gif"].map(e=>[e,u.GIF]),...["gzip","x-gzip","giz","gz","tgz"].map(e=>[e,u.GZIP]),...["html","htm","xhtml"].map(e=>[e,u.HTML]),...["ai","vml","xps","img","cpt","psd","psp","xcf","svg","svg+xml","bmp","bpg","ppm","pgm","pbm","pnm","rif","tif","tiff","webp","wmf","ico"].map(e=>[e,u.IMAGE]),...["jpeg","jpg","jpe"].map(e=>[e,u.JPEG]),...["json"].map(e=>[e,u.JSON]),...["m4a","m4p"].map(e=>[e,u.M4A]),...["mov","qt"].map(e=>[e,u.MOV]),...["mp3"].map(e=>[e,u.MP3]),...["mp4","m4v"].map(e=>[e,u.MP4]),...["ogg","oga"].map(e=>[e,u.OGG]),...["pdf","ps"].map(e=>[e,u.PDF]),...["png"].map(e=>[e,u.PNG]),...["ppt","pot","pps","pptx","pptm","potx","potm","ppam","ppsx","ppsm","sldx","sldm"].map(e=>[e,u.POWERPOINT]),...["rar"].map(e=>[e,u.RAR]),...["stp"].map(e=>[e,u.STP]),...["txt","rtf","md","mdown"].map(e=>[e,u.TEXT]),...["webm","mkv","flv","vob","ogv","ogg","drc","mng","wmv","yuv","rm","rmvb","asf","mpg","mp2","mpeg","mpe","mpv","m2v","svi","3gp","3g2","mxf","roq","nsv"].map(e=>[e,u.VIDEO]),...["wav"].map(e=>[e,u.WAV]),...["wma"].map(e=>[e,u.WMA]),...["doc","dot","docx","docm","dotx","dotm","docb"].map(e=>[e,u.WORD]),...["xml","xsl","rdf"].map(e=>[e,u.XML]),...["yaml","yml","x-yaml"].map(e=>[e,u.YAML]),...["zip"].map(e=>[e,u.ZIP])]);var Bp={[u.ABW]:"#91ABC6",[u.AUDIO]:"#1795E3",[u.AVI]:"#E63324",[u.CHM]:"#71C3EB",[u.CODE]:"#71C3EB",[u.CSV]:"#1F7345",[u.DITA]:"#71C3EB",[u.EPUB]:"#85B926",[u.EXCEL]:"#1F7345",[u.FLAC]:"#1795E3",[u.GIF]:"#59B031",[u.GZIP]:"#F8AB36",[u.HTML]:"#71C3EB",[u.IMAGE]:"#59B031",[u.JPEG]:"#59B031",[u.JSON]:"#71C3EB",[u.M4A]:"#1795E3",[u.MOV]:"#E63324",[u.MP3]:"#1795E3",[u.MP4]:"#E63324",[u.OGG]:"#1795E3",[u.PDF]:"#E44948",[u.PNG]:"#59B031",[u.POWERPOINT]:"#B54A2B",[u.RAR]:"#F8AB36",[u.STP]:"#3764B1",[u.TEXT]:"#3162AB",[u.UNKNOWN]:"#999999",[u.VIDEO]:"#E63324",[u.WAV]:"#1795E3",[u.WMA]:"#1795E3",[u.WORD]:"#3162AB",[u.XML]:"#71C3EB",[u.YAML]:"#71C3EB",[u.ZIP]:"#F8AB36"};var Rt;(function(e){e.fluid_topics="fluid-topics",e.file_format="file-format",e.material="material"})(Rt||(Rt={}));var Ue=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},et=class extends Tn.FtLitElement{constructor(){super(...arguments),this.resolvedIcon=xe.nothing}render(){let o=this.variant&&Object.values(Rt).includes(this.variant)?this.variant:Rt.fluid_topics,r=o!==Rt.material||!!this.value;return xe.html`
|
|
540
|
+
<i class="ft-icon ft-icon--${o}" part="icon icon-${o}">
|
|
541
|
+
${(0,kn.unsafeHTML)(this.resolvedIcon)}
|
|
542
|
+
<slot ?hidden=${r}></slot>
|
|
552
543
|
</i>
|
|
553
|
-
`}get textContent(){var
|
|
544
|
+
`}get textContent(){var o,r;return(r=(o=this.slottedContent)===null||o===void 0?void 0:o.assignedNodes().map(i=>i.textContent).join("").trim())!==null&&r!==void 0?r:""}update(o){super.update(o),["value","variant"].some(r=>o.has(r))&&this.resolveIcon()}resolveIcon(){var o,r;let i=this.value||this.textContent;switch(this.variant){case Rt.file_format:this.resolvedIcon=(o=u[i.replace("-","_").toUpperCase()])!==null&&o!==void 0?o:i;break;case Rt.material:this.resolvedIcon=this.value||xe.nothing;break;default:this.resolvedIcon=(r=ze[i.replace("-","_").toUpperCase()])!==null&&r!==void 0?r:i;break}}firstUpdated(o){super.firstUpdated(o),setTimeout(()=>this.resolveIcon())}};et.elementDefinitions={};et.styles=Ir;Ue([(0,kt.property)()],et.prototype,"variant",void 0);Ue([(0,kt.property)()],et.prototype,"value",void 0);Ue([(0,kt.state)()],et.prototype,"resolvedIcon",void 0);Ue([(0,kt.query)("slot")],et.prototype,"slottedContent",void 0);(0,zn.customElement)("ft-icon")(et);var Hn=m(v());var Un=m(I()),_n=m(v());var zt=class extends _n.FtLitElement{render(){return Un.html`
|
|
554
545
|
<div class="ft-loader">
|
|
555
546
|
<div></div>
|
|
556
547
|
<div></div>
|
|
557
548
|
<div></div>
|
|
558
549
|
<div></div>
|
|
559
550
|
</div>
|
|
560
|
-
`}}
|
|
551
|
+
`}};zt.styles=Ar;(0,Hn.customElement)("ft-loader")(zt);var ee=m(I()),Dn=m(to()),Z=m(Q()),J=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},T=class extends(0,oe.toFtFormComponent)(oe.FtLitElement,"button"){constructor(){super(),this.role="button",this.type="button",this.disabled=!1,this.label="",this.icon=void 0,this.trailingIcon=!1,this.loading=!1,this.tooltipPosition="bottom",this.hideTooltip=!1,this.forceTooltip=!1,this.addEventListener("click",o=>{var r;this.isDisabled()?(o.preventDefault(),o.stopPropagation(),o.stopImmediatePropagation()):this.type=="submit"&&((r=this.form)===null||r===void 0||r.requestSubmit())})}render(){return this.addTooltipIfNeeded(ee.html`
|
|
561
552
|
<button part="button"
|
|
562
|
-
class="${
|
|
553
|
+
class="${(0,Dn.classMap)(this.buttonClasses)}"
|
|
563
554
|
aria-label="${this.getLabel()}"
|
|
564
555
|
?disabled=${this.isDisabled()}>
|
|
565
556
|
<ft-ripple part="ripple" ?disabled=${this.isDisabled()}></ft-ripple>
|
|
566
557
|
<ft-typography part="label"
|
|
567
558
|
variant=${this.typographyVariant}
|
|
568
559
|
element="span"
|
|
569
|
-
class="ft-button--label ${
|
|
560
|
+
class="ft-button--label ${oe.isSafari?"ft-safari-ellipsis-fix":""}"
|
|
570
561
|
?hidden=${!this.hasTextContent()}>
|
|
571
562
|
<slot @slotchange=${this.onSlotchange}></slot>
|
|
572
563
|
</ft-typography>
|
|
573
564
|
${this.resolveIcon()}
|
|
574
565
|
</button>
|
|
575
|
-
`)}addTooltipIfNeeded(
|
|
566
|
+
`)}addTooltipIfNeeded(o){return this.getLabel().trim().length>0&&(this.forceTooltip||!this.hasTextContent()&&!this.hideTooltip)?ee.html`
|
|
576
567
|
<ft-tooltip part="tooltip"
|
|
577
568
|
text="${this.getLabel()}"
|
|
578
569
|
position="${this.tooltipPosition}">
|
|
579
|
-
${
|
|
570
|
+
${o}
|
|
580
571
|
</ft-tooltip>
|
|
581
|
-
`:
|
|
582
|
-
<ft-loader part="loader icon"></ft-loader> `:this.icon?
|
|
583
|
-
|
|
572
|
+
`:o}resolveIcon(){return this.loading?ee.html`
|
|
573
|
+
<ft-loader part="loader icon"></ft-loader> `:this.icon?ee.html`
|
|
574
|
+
<ft-icon part="icon" .variant="${this.iconVariant}" .value="${this.icon}"></ft-icon>
|
|
575
|
+
`:ee.html`
|
|
576
|
+
<slot part="icon" name="icon"></slot>
|
|
577
|
+
`}focus(){var o;(o=this.button)===null||o===void 0||o.focus()}getLabel(){return this.label||this.textContent}get textContent(){return this.unslotText(this.slottedContent).trim()}unslotText(o){return o instanceof HTMLSlotElement?o.assignedNodes().map(r=>this.unslotText(r)).join(""):o?.textContent||""}hasTextContent(){return this.textContent.length>0}onSlotchange(){this.requestUpdate()}isDisabled(){return this.disabled||this.loading}};T.elementDefinitions={"ft-ripple":L,"ft-tooltip":A,"ft-typography":nt,"ft-icon":et,"ft-loader":zt};J([(0,Z.property)({type:String,reflect:!0})],T.prototype,"role",void 0);J([(0,Z.property)()],T.prototype,"type",void 0);J([(0,Z.property)({type:Boolean})],T.prototype,"disabled",void 0);J([(0,Z.property)()],T.prototype,"label",void 0);J([(0,Z.property)()],T.prototype,"icon",void 0);J([(0,Z.property)()],T.prototype,"iconVariant",void 0);J([(0,Z.property)({type:Boolean})],T.prototype,"trailingIcon",void 0);J([(0,Z.property)({type:Boolean})],T.prototype,"loading",void 0);J([(0,Z.property)()],T.prototype,"tooltipPosition",void 0);J([(0,Z.property)({type:Boolean})],T.prototype,"hideTooltip",void 0);J([(0,Z.property)({type:Boolean})],T.prototype,"forceTooltip",void 0);J([(0,Z.query)(".ft-button")],T.prototype,"button",void 0);J([(0,Z.query)(".ft-button--label slot")],T.prototype,"slottedContent",void 0);var _e=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},it=class extends T{constructor(){super(...arguments),this.primary=!1,this.outlined=!1,this.dense=!1,this.round=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--outlined":this.outlined,"ft-button--dense":this.dense,"ft-button--round":this.round,"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0}}get typographyVariant(){return"button"}};it.styles=[Mn.safariEllipsisFix,Br];_e([(0,Se.property)({type:Boolean})],it.prototype,"primary",void 0);_e([(0,Se.property)({type:Boolean})],it.prototype,"outlined",void 0);_e([(0,Se.property)({type:Boolean})],it.prototype,"dense",void 0);_e([(0,Se.property)({type:Boolean})],it.prototype,"round",void 0);var re=m(Q());var Kn=m(v());var Gn=m(I()),E=m(v());var Zn=[Gn.css`
|
|
584
578
|
:host {
|
|
585
579
|
display: inline-block;
|
|
586
580
|
max-width: 100%;
|
|
@@ -630,7 +624,7 @@ const zo=Symbol.for(""),Ko=t=>{if(t?.r===zo)return t?._$litStatic$},Fo=t=>({_$li
|
|
|
630
624
|
}
|
|
631
625
|
|
|
632
626
|
.ft-button:focus-visible {
|
|
633
|
-
outline-color: ${
|
|
627
|
+
outline-color: ${g.focusFocusRingColor};
|
|
634
628
|
outline-style: solid;
|
|
635
629
|
}
|
|
636
630
|
|
|
@@ -659,208 +653,224 @@ const zo=Symbol.for(""),Ko=t=>{if(t?.r===zo)return t?._$litStatic$},Fo=t=>({_$li
|
|
|
659
653
|
/** Primary styles **/
|
|
660
654
|
|
|
661
655
|
.ft-button--primary {
|
|
662
|
-
${
|
|
656
|
+
${(0,E.setVariable)(F.color,g.primaryIconColor)};
|
|
663
657
|
|
|
664
|
-
${
|
|
665
|
-
${
|
|
666
|
-
${
|
|
667
|
-
${
|
|
668
|
-
${
|
|
658
|
+
${(0,E.setVariable)(N.color,g.primaryStateLayerColor)};
|
|
659
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceHover,g.primaryHoverStateLayerOpacity)};
|
|
660
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceFocused,g.primaryFocusStateLayerOpacity)};
|
|
661
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceSelected,g.primaryActiveStateLayerOpacity)};
|
|
662
|
+
${(0,E.setVariable)(N.opacityContentOnSurfacePressed,g.primaryActiveStateLayerOpacity)};
|
|
669
663
|
|
|
670
|
-
background-color: ${
|
|
671
|
-
color: ${
|
|
664
|
+
background-color: ${g.primaryBackgroundColor};
|
|
665
|
+
color: ${g.primaryColor};
|
|
672
666
|
border-style: none;
|
|
673
667
|
}
|
|
674
668
|
|
|
675
669
|
.ft-button--primary[disabled] {
|
|
676
|
-
opacity: ${
|
|
670
|
+
opacity: ${g.primaryDisabledComponentOpacity};
|
|
677
671
|
}
|
|
678
672
|
|
|
679
673
|
.ft-button--primary ft-icon {
|
|
680
|
-
color: ${
|
|
674
|
+
color: ${g.primaryIconColor};
|
|
681
675
|
}
|
|
682
676
|
|
|
683
677
|
/** Secondary styles **/
|
|
684
678
|
|
|
685
679
|
.ft-button--secondary {
|
|
686
|
-
${
|
|
680
|
+
${(0,E.setVariable)(F.color,g.secondaryIconColor)};
|
|
687
681
|
|
|
688
|
-
${
|
|
689
|
-
${
|
|
690
|
-
${
|
|
691
|
-
${
|
|
692
|
-
${
|
|
682
|
+
${(0,E.setVariable)(N.color,g.secondaryStateLayerColor)};
|
|
683
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceHover,g.secondaryHoverStateLayerOpacity)};
|
|
684
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceFocused,g.secondaryFocusStateLayerOpacity)};
|
|
685
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceSelected,g.secondaryActiveStateLayerOpacity)};
|
|
686
|
+
${(0,E.setVariable)(N.opacityContentOnSurfacePressed,g.secondaryActiveStateLayerOpacity)};
|
|
693
687
|
|
|
694
|
-
background-color: ${
|
|
695
|
-
color: ${
|
|
696
|
-
border-color: ${
|
|
688
|
+
background-color: ${g.secondaryBackgroundColor};
|
|
689
|
+
color: ${g.secondaryColor};
|
|
690
|
+
border-color: ${g.secondaryBorderColor};
|
|
697
691
|
border-style: solid;
|
|
698
692
|
}
|
|
699
693
|
|
|
700
694
|
.ft-button--secondary[disabled] {
|
|
701
|
-
opacity: ${
|
|
695
|
+
opacity: ${g.secondaryDisabledComponentOpacity};
|
|
702
696
|
}
|
|
703
697
|
|
|
704
698
|
.ft-button--secondary ft-icon {
|
|
705
|
-
color: ${
|
|
699
|
+
color: ${g.secondaryIconColor};
|
|
706
700
|
}
|
|
707
701
|
|
|
708
702
|
/** Tertiary styles **/
|
|
709
703
|
|
|
710
704
|
.ft-button--tertiary {
|
|
711
|
-
${
|
|
705
|
+
${(0,E.setVariable)(F.color,g.tertiaryIconColor)};
|
|
712
706
|
|
|
713
|
-
${
|
|
714
|
-
${
|
|
715
|
-
${
|
|
716
|
-
${
|
|
717
|
-
${
|
|
707
|
+
${(0,E.setVariable)(N.color,g.tertiaryStateLayerColor)};
|
|
708
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceHover,g.tertiaryHoverStateLayerOpacity)};
|
|
709
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceFocused,g.tertiaryFocusStateLayerOpacity)};
|
|
710
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceSelected,g.tertiaryActiveStateLayerOpacity)};
|
|
711
|
+
${(0,E.setVariable)(N.opacityContentOnSurfacePressed,g.tertiaryActiveStateLayerOpacity)};
|
|
718
712
|
|
|
719
|
-
background-color: ${
|
|
720
|
-
color: ${
|
|
713
|
+
background-color: ${g.tertiaryBackgroundColor};
|
|
714
|
+
color: ${g.tertiaryColor};
|
|
721
715
|
border-style: none;
|
|
722
716
|
}
|
|
723
717
|
|
|
724
718
|
.ft-button--tertiary[disabled] {
|
|
725
|
-
opacity: ${
|
|
719
|
+
opacity: ${g.tertiaryDisabledComponentOpacity};
|
|
726
720
|
}
|
|
727
721
|
|
|
728
722
|
.ft-button--tertiary ft-icon {
|
|
729
|
-
color: ${
|
|
723
|
+
color: ${g.tertiaryIconColor};
|
|
730
724
|
}
|
|
731
725
|
|
|
732
726
|
/** Neutral styles **/
|
|
733
727
|
|
|
734
728
|
.ft-button--neutral {
|
|
735
|
-
${
|
|
729
|
+
${(0,E.setVariable)(F.color,g.neutralIconColor)};
|
|
736
730
|
|
|
737
|
-
${
|
|
738
|
-
${
|
|
739
|
-
${
|
|
740
|
-
${
|
|
741
|
-
${
|
|
731
|
+
${(0,E.setVariable)(N.backgroundColor,g.neutralStateLayerColor)};
|
|
732
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceHover,g.neutralHoverStateLayerOpacity)};
|
|
733
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceFocused,g.neutralFocusStateLayerOpacity)};
|
|
734
|
+
${(0,E.setVariable)(N.opacityContentOnSurfaceSelected,g.neutralActiveStateLayerOpacity)};
|
|
735
|
+
${(0,E.setVariable)(N.opacityContentOnSurfacePressed,g.neutralActiveStateLayerOpacity)};
|
|
742
736
|
|
|
743
|
-
background-color: ${
|
|
744
|
-
color: ${
|
|
737
|
+
background-color: ${g.neutralBackgroundColor};
|
|
738
|
+
color: ${g.neutralColor};
|
|
745
739
|
border-style: none;
|
|
746
740
|
}
|
|
747
741
|
|
|
748
742
|
.ft-button--neutral[disabled] {
|
|
749
|
-
opacity: ${
|
|
743
|
+
opacity: ${g.neutralDisabledComponentOpacity};
|
|
750
744
|
}
|
|
751
745
|
|
|
752
746
|
.ft-button--neutral ft-icon {
|
|
753
|
-
color: ${
|
|
747
|
+
color: ${g.neutralIconColor};
|
|
754
748
|
}
|
|
755
749
|
|
|
756
750
|
/** Large styles **/
|
|
757
751
|
|
|
758
752
|
.ft-button--large {
|
|
759
|
-
${
|
|
760
|
-
${
|
|
753
|
+
${(0,E.setVariable)(V.size,g.largeIconSize)};
|
|
754
|
+
${(0,E.setVariable)(F.size,g.largeIconSize)};
|
|
761
755
|
|
|
762
|
-
height: ${
|
|
763
|
-
padding: 0 ${
|
|
764
|
-
gap: ${
|
|
765
|
-
border-radius: ${
|
|
766
|
-
border-width: ${
|
|
756
|
+
height: ${g.largeHeight};
|
|
757
|
+
padding: 0 ${g.largeHorizontalPadding};
|
|
758
|
+
gap: ${g.largeGap};
|
|
759
|
+
border-radius: ${g.largeBorderRadius};
|
|
760
|
+
border-width: ${g.largeBorderWidth};
|
|
767
761
|
}
|
|
768
762
|
|
|
769
763
|
.ft-button--large:focus-visible {
|
|
770
|
-
outline-width: ${
|
|
771
|
-
outline-offset: ${
|
|
764
|
+
outline-width: ${g.largeFocusOutlineWidth};
|
|
765
|
+
outline-offset: ${g.largeFocusOutlineOffset};
|
|
772
766
|
}
|
|
773
767
|
|
|
774
768
|
.ft-button--large.ft-button--icon-only {
|
|
775
|
-
width: ${
|
|
769
|
+
width: ${g.largeIconOnlyWidth};
|
|
776
770
|
padding: unset;
|
|
777
771
|
}
|
|
778
772
|
|
|
779
773
|
/** Small styles **/
|
|
780
774
|
|
|
781
775
|
.ft-button--small {
|
|
782
|
-
${
|
|
783
|
-
${
|
|
776
|
+
${(0,E.setVariable)(V.size,g.smallIconSize)};
|
|
777
|
+
${(0,E.setVariable)(F.size,g.smallIconSize)};
|
|
784
778
|
|
|
785
|
-
height: ${
|
|
786
|
-
padding: 0 ${
|
|
787
|
-
gap: ${
|
|
788
|
-
border-radius: ${
|
|
789
|
-
border-width: ${
|
|
779
|
+
height: ${g.smallHeight};
|
|
780
|
+
padding: 0 ${g.smallHorizontalPadding};
|
|
781
|
+
gap: ${g.smallGap};
|
|
782
|
+
border-radius: ${g.smallBorderRadius};
|
|
783
|
+
border-width: ${g.smallBorderWidth};
|
|
790
784
|
}
|
|
791
785
|
|
|
792
786
|
.ft-button--small:focus-visible {
|
|
793
|
-
outline-width: ${
|
|
794
|
-
outline-offset: ${
|
|
787
|
+
outline-width: ${g.smallFocusOutlineWidth};
|
|
788
|
+
outline-offset: ${g.smallFocusOutlineOffset};
|
|
795
789
|
}
|
|
796
790
|
|
|
797
791
|
.ft-button--small.ft-button--icon-only {
|
|
798
|
-
width: ${
|
|
792
|
+
width: ${g.smallIconOnlyWidth};
|
|
799
793
|
padding: unset;
|
|
800
794
|
}
|
|
801
|
-
`,
|
|
795
|
+
`,E.noTextSelect];var Ce=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},ht=class extends T{constructor(){super(...arguments),this.primary=!1,this.secondary=!1,this.tertiary=!1,this.neutral=!1,this.small=!1}get buttonClasses(){return{"ft-button":!0,"ft-button--primary":this.primary,"ft-button--secondary":this.secondary,"ft-button--tertiary":this.tertiary||!this.primary&&!this.secondary&&!this.neutral,"ft-button--neutral":this.neutral,"ft-button--large":!this.small,"ft-button--small":this.small,"ft-button--icon-only":!this.hasTextContent(),"ft-button--trailing-icon":this.trailingIcon,"ft-button--loading":this.trailingIcon,"ft-no-text-select":!0,"ft-button--no-icon":!this.icon}}get typographyVariant(){return this.small?Pt.caption1medium:Pt.body2medium}};ht.styles=[Kn.safariEllipsisFix,Zn];Ce([(0,re.property)({type:Boolean})],ht.prototype,"primary",void 0);Ce([(0,re.property)({type:Boolean})],ht.prototype,"secondary",void 0);Ce([(0,re.property)({type:Boolean})],ht.prototype,"tertiary",void 0);Ce([(0,re.property)({type:Boolean})],ht.prototype,"neutral",void 0);Ce([(0,re.property)({type:Boolean})],ht.prototype,"small",void 0);(0,vo.customElement)("ft-button")(it);(0,vo.customElement)("ftds-button")(ht);var Fn=m(I()),ot=m(v()),lt={spacing:ot.FtCssVariableFactory.create("--ft-copy-block-spacing","","SIZE","12px 48px 12px 12px"),borderRadius:ot.FtCssVariableFactory.extend("--ft-copy-block-border-radius","",ot.designSystemVariables.borderRadiusS),borderStyle:ot.FtCssVariableFactory.create("--ft-copy-block-border-style","","BORDER-STYLE","solid"),borderColor:ot.FtCssVariableFactory.extend("--ft-copy-block-border-color","",ot.designSystemVariables.colorOutline),borderWidth:ot.FtCssVariableFactory.create("--ft-copy-block-border-width","","SIZE","1px"),backgroundColor:ot.FtCssVariableFactory.extend("--ft-copy-block-background-color","",ot.designSystemVariables.colorSurface),buttonHeight:ot.FtCssVariableFactory.create("--ft-copy-block-button-height","","SIZE","unset")},Vn=Fn.css`
|
|
802
796
|
:host {
|
|
803
797
|
display: block;
|
|
804
798
|
}
|
|
805
799
|
|
|
806
800
|
[part="container"] {
|
|
807
801
|
position: relative;
|
|
808
|
-
border-radius: ${
|
|
809
|
-
border-style: ${
|
|
810
|
-
border-color: ${
|
|
811
|
-
border-width: ${
|
|
812
|
-
background-color: ${
|
|
802
|
+
border-radius: ${lt.borderRadius};
|
|
803
|
+
border-style: ${lt.borderStyle};
|
|
804
|
+
border-color: ${lt.borderColor};
|
|
805
|
+
border-width: ${lt.borderWidth};
|
|
806
|
+
background-color: ${lt.backgroundColor};
|
|
813
807
|
}
|
|
814
808
|
|
|
815
809
|
[part="button-container"] {
|
|
816
810
|
position: absolute;
|
|
817
811
|
right: 0;
|
|
818
812
|
top: 0;
|
|
819
|
-
height: ${
|
|
813
|
+
height: ${lt.buttonHeight}
|
|
820
814
|
}
|
|
821
815
|
|
|
822
816
|
[part="content"] {
|
|
823
817
|
overflow-x: auto;
|
|
824
|
-
margin: ${
|
|
818
|
+
margin: ${lt.spacing};
|
|
825
819
|
}
|
|
826
820
|
|
|
827
821
|
[part="tooltip"] {
|
|
828
822
|
display: block;
|
|
829
|
-
height: ${
|
|
823
|
+
height: ${lt.buttonHeight}
|
|
830
824
|
}
|
|
831
825
|
|
|
832
826
|
[part="tooltip"]::part(container) {
|
|
833
|
-
height: ${
|
|
827
|
+
height: ${lt.buttonHeight}
|
|
834
828
|
}
|
|
835
829
|
|
|
836
830
|
[part="button"] {
|
|
837
|
-
height: ${
|
|
831
|
+
height: ${lt.buttonHeight}
|
|
838
832
|
}
|
|
839
833
|
|
|
840
834
|
[part="button"]::part(button) {
|
|
841
|
-
height: ${
|
|
835
|
+
height: ${lt.buttonHeight}
|
|
842
836
|
}
|
|
843
837
|
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
838
|
+
`;var ia=m(v());var Ye=m(I()),Xe=m(Q()),qe=m(v());var jn=m(I());var Yn=jn.css`
|
|
839
|
+
`;var je=m(v());var ra=m(v());var ea=m(I()),rt=m(Q()),ct=m(v());var Xn=m(I());var qn=Xn.css`
|
|
840
|
+
`;var Jn=m(v()),Ma="ft-app-info",Ga={},O=Jn.FtReduxStore.get({name:Ma,reducers:Ga,initialState:{baseUrl:void 0,apiIntegrationIdentifier:void 0,uiLocale:document.documentElement.lang||"en-US",availableUiLocales:[],metadataConfiguration:void 0,editorMode:!1,noCustom:!1,noCustomComponent:!1,session:void 0,openExternalDocumentInNewTab:!1,navigatorOnline:!0,forcedOffline:!1}});var Lt=m(v());var Oo=m(v());var Ut=class e{static get(o){let{baseUrl:r,apiIntegrationIdentifier:i}=O.getState(),a=o??i;if(r&&a&&window.fluidtopics)return new window.fluidtopics.FluidTopicsApi(r,a,!0)}static await(o){return new Promise(r=>{let i=e.get(o);if(i)r(i);else{let a=O.subscribe(()=>{i=e.get(o),i&&(a(),r(i))})}})}};var At=class{constructor(o=!0,r){var i;this.overrideApi=r;let a=this.constructor;a.commonCache=(i=a.commonCache)!==null&&i!==void 0?i:new Oo.CacheRegistry,this.cache=o?a.commonCache:new Oo.CacheRegistry}get api(){var o;return(o=this.overrideApi)!==null&&o!==void 0?o:Ut.get()}get awaitApi(){var o;return(o=this.overrideApi)!==null&&o!==void 0?o:Ut.await()}clearCache(){this.cache.clearAll()}};var Qn,Za=Symbol("clearAfterUnitTest"),He=class extends At{constructor(o){super(),this.messageContextProvider=o,this.defaultMessages={},this.listeners={},this.currentUiLocale="",this[Qn]=()=>{this.defaultMessages={},this.cache=new Lt.CacheRegistry,this.listeners={}},this.currentUiLocale=O.getState().uiLocale,O.subscribe(()=>this.clearWhenUiLocaleChanges())}clearWhenUiLocaleChanges(){let{uiLocale:o}=O.getState();this.currentUiLocale!==o&&(this.currentUiLocale=o,this.cache.clearAll(),this.notifyAll())}addContext(o){let r=o.name.toLowerCase();this.cache.setFinal(r,o),this.notify(r)}getAllContexts(){return this.cache.resolvedValues()}async prepareContext(o,r){var i;if(o=o.toLowerCase(),Object.keys(r).length>0){let a={...(i=this.defaultMessages[o])!==null&&i!==void 0?i:{},...r};(0,Lt.deepEqual)(this.defaultMessages[o],a)||(this.defaultMessages[o]=a,await this.notify(o))}await this.fetchContext(o)}resolveMessage(o,r,...i){var a,l,c;o=o.toLowerCase(),this.fetchContext(o);let p=(l=(a=this.cache.getNow(o))===null||a===void 0?void 0:a.messages)!==null&&l!==void 0?l:{};return new Lt.ParametrizedLabelResolver((c=this.defaultMessages[o])!==null&&c!==void 0?c:{},p).resolve(r,...i)}async fetchContext(o){if(!this.cache.has(o))try{await this.cache.get(o,()=>this.messageContextProvider(this.currentUiLocale,o)),await this.notify(o)}catch(r){console.error(r)}}subscribe(o,r){var i;return o=o.toLowerCase(),this.listeners[o]=(i=this.listeners[o])!==null&&i!==void 0?i:new Set,this.listeners[o].add(r),()=>{var a;return(a=this.listeners[o])===null||a===void 0?void 0:a.delete(r)}}async notifyAll(){await Promise.all(Object.keys(this.listeners).map(o=>this.notify(o)))}async notify(o){this.listeners[o]!=null&&await Promise.all([...this.listeners[o].values()].map(r=>(0,Lt.delay)(0).then(()=>r()).catch(()=>null)))}};Qn=Za;window.FluidTopicsI18nService==null&&(window.FluidTopicsI18nService=new class extends He{constructor(){super(async(e,o)=>(await this.awaitApi).getFluidTopicsMessageContext(e,o))}});window.FluidTopicsCustomI18nService==null&&(window.FluidTopicsCustomI18nService=new class extends He{constructor(){super(async(e,o)=>(await this.awaitApi).getCustomMessageContext(e,o))}});var ne=window.FluidTopicsI18nService,ta=window.FluidTopicsCustomI18nService;var K=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},W=class extends ct.FtLitElement{constructor(){super(...arguments),this.apiIntegrationIdentifier="ft-integration",this.uiLocale="en-US",this.editorMode=!1,this.noCustom=!1,this.openExternalDocumentInNewTab=!1,this.noCustomComponent=!1,this.withManualResources=!1,this.navigatorOnline=!1,this.forcedOffline=!1,this.apiProvider=()=>Ut.get(),this.messageContexts=[],this.cache=new ct.CacheRegistry,this.cleanSessionDebouncer=new ct.Debouncer}render(){return ea.html`
|
|
847
841
|
<slot></slot>
|
|
848
|
-
`}update(
|
|
842
|
+
`}update(o){super.update(o),o.has("baseUrl")&&(O.actions.baseUrl(this.baseUrl),window.fluidTopicsBaseUrl=this.baseUrl),o.has("apiIntegrationIdentifier")&&O.actions.apiIntegrationIdentifier(this.apiIntegrationIdentifier),o.has("uiLocale")&&O.actions.uiLocale(this.uiLocale),o.has("metadataConfiguration")&&O.actions.metadataConfiguration(this.metadataConfiguration),o.has("noCustom")&&O.actions.noCustom(this.noCustom),o.has("editorMode")&&O.actions.editorMode(this.editorMode),o.has("noCustomComponent")&&O.actions.noCustomComponent(this.noCustomComponent),o.has("session")&&O.actions.session(this.session),o.has("availableUiLocales")&&O.actions.availableUiLocales(Array.isArray(this.availableUiLocales)?this.availableUiLocales:[]),o.has("messageContexts")&&this.messageContexts!=null&&this.messageContexts.forEach(r=>ne.addContext(r)),o.has("openExternalDocumentInNewTab")&&O.actions.openExternalDocumentInNewTab(this.openExternalDocumentInNewTab),o.has("navigatorOnline")&&O.actions.navigatorOnline(this.navigatorOnline),o.has("forcedOffline")&&O.actions.forcedOffline(this.forcedOffline),setTimeout(()=>this.updateIfNeeded())}async updateIfNeeded(){!this.withManualResources&&this.apiProvider()&&(this.session==null&&this.updateSession(),this.availableUiLocales==null&&this.updateUiLocales(),this.metadataConfiguration==null&&this.updateMetadataConfiguration())}async updateSession(){this.session=await this.cache.get("session",async()=>{let o=await this.apiProvider().getCurrentSession();return o.idleTimeoutInMillis>0&&this.cleanSessionDebouncer.run(()=>{this.cache.clear("session"),this.session=void 0},o.idleTimeoutInMillis),o})}async updateUiLocales(){this.availableUiLocales=await this.cache.get("availableUiLocales",()=>this.apiProvider().getAvailableUiLocales())}async updateMetadataConfiguration(){this.metadataConfiguration=await this.cache.get("metadataConfiguration",()=>this.apiProvider().getMetadataConfiguration())}};W.elementDefinitions={};W.styles=qn;K([(0,rt.property)()],W.prototype,"baseUrl",void 0);K([(0,rt.property)()],W.prototype,"apiIntegrationIdentifier",void 0);K([(0,rt.property)()],W.prototype,"uiLocale",void 0);K([(0,ct.jsonProperty)(null)],W.prototype,"availableUiLocales",void 0);K([(0,ct.jsonProperty)(null)],W.prototype,"metadataConfiguration",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"editorMode",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"noCustom",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"openExternalDocumentInNewTab",void 0);K([(0,rt.property)({converter:{fromAttribute(e){return e==="false"?!1:e==="true"||(e??!1)}}})],W.prototype,"noCustomComponent",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"withManualResources",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"navigatorOnline",void 0);K([(0,rt.property)({type:Boolean})],W.prototype,"forcedOffline",void 0);K([(0,rt.property)({type:Object})],W.prototype,"apiProvider",void 0);K([(0,ct.jsonProperty)([])],W.prototype,"messageContexts",void 0);K([(0,ct.jsonProperty)(void 0)],W.prototype,"session",void 0);var Ze=m(v());var De=class extends At{async listMySearches(){let o=O.getState().session;return o?.sessionAuthenticated?this.cache.get("my-searches",async()=>(await this.awaitApi).listMySearches(o.profile.userId),5*60*1e3):[]}};var Me=class extends At{async listMyBookmarks(){let o=O.getState().session;return o?.sessionAuthenticated?this.cache.get("my-bookmarks",async()=>(await this.awaitApi).listMyBookmarks(o.profile.userId),5*60*1e3):[]}};var Ka="ft-user-assets",Ge=Ze.FtReduxStore.get({name:Ka,initialState:{savedSearches:void 0,bookmarks:void 0}}),wo=class{constructor(){this.currentSession=O.getState().session,this.bookmarksAreUsed=!1,this.bookmarksService=new Me,this.savedSearchesService=new De,O.subscribe(()=>this.reloadWhenUserSessionChanges())}reloadWhenUserSessionChanges(){var o;let{session:r}=O.getState();(0,Ze.deepEqual)((o=this.currentSession)===null||o===void 0?void 0:o.profile,r?.profile)||(this.currentSession=r,this.clearMySearches(),this.reloadBookmarks())}clear(){this.clearMySearches(),this.clearMyBookmarks()}clearMySearches(){this.savedSearchesService.clearCache(),Ge.actions.savedSearches(void 0)}clearMyBookmarks(){this.bookmarksService.clearCache(),Ge.actions.bookmarks(void 0)}async reloadMySearches(){this.savedSearchesService.clearCache();let o=await this.savedSearchesService.listMySearches();Ge.actions.savedSearches(o)}async reloadBookmarks(){this.bookmarksService.clearCache(),await this.updateBookmarksIfUsed()}async registerBookmarkComponent(){this.bookmarksAreUsed=!0,await this.updateBookmarksIfUsed()}async updateBookmarksIfUsed(){var o;if(this.bookmarksAreUsed){let r=!((o=this.currentSession)===null||o===void 0)&&o.sessionAuthenticated?await this.bookmarksService.listMyBookmarks():void 0;Ge.actions.bookmarks(r)}}},ef=new wo;var No=class{addCommand(o,r=!1){O.commands.add(o,r)}consumeCommand(o){return O.commands.consume(o)}};window.FluidTopicsAppInfoStoreService=new No;var oa=m(v()),Eo=class{highlightHtml(o,r){(0,oa.highlightHtml)(o,r)}};window.FluidTopicsHighlightHtmlService=new Eo;(0,ra.customElement)("ft-app-context")(W);var na=m(Q()),Fa=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},Ro=Symbol("i18nAttributes"),Ke=Symbol("i18nProperties"),ve=Symbol("i18nUnsubs");function aa(e){var o;class r extends e{constructor(){super(...arguments),this.useCustomMessageContexts=!1,this[o]=new Map}get i18nService(){return this.useCustomMessageContexts?ta:ne}i18n(a,l,...c){var p;if(typeof a=="string")return this.i18nService.resolveMessage(a,l,...c);let d=(p=a.args)!==null&&p!==void 0?p:a.argsProvider?a.argsProvider(this):[];return this.i18nService.resolveMessage(a.context,a.key,...d)}onI18nUpdate(a){var l,c;(l=this[Ro])===null||l===void 0||l.forEach((p,d)=>{var f;let x=this.getI18nAttributeValue(d);((f=x?.context)===null||f===void 0?void 0:f.toLowerCase())===a.toLowerCase()&&this.updateI18nAttributeMessage(d,x,p)}),(c=this[Ke])===null||c===void 0||c.forEach((p,d)=>{p.context.toLowerCase()===a.toLowerCase()&&(this[d]=this.i18n(p))}),setTimeout(()=>this.requestUpdate(),0)}updateI18nAttributeMessage(a,l,c){this[a]={...l,message:this.i18n({context:l.context,key:l.key,...c})}}update(a){var l,c;super.update(a),(l=this[Ro])===null||l===void 0||l.forEach((p,d)=>{let f=this.getI18nAttributeValue(d);f?.context&&f.key&&(a.has(d)||p.argsProvider!=null)&&(a.has(d)&&this.addI18nContext(f.context),this.updateI18nAttributeMessage(d,f,p))}),(c=this[Ke])===null||c===void 0||c.forEach((p,d)=>{p.argsProvider!=null&&(this[d]=this.i18n(p))})}getI18nAttributeValue(a){return this[a]}connectedCallback(){var a,l,c,p;super.connectedCallback(),new Set([...(l=(a=this[Ke])===null||a===void 0?void 0:a.values())!==null&&l!==void 0?l:[],...[...(p=(c=this[Ro])===null||c===void 0?void 0:c.keys())!==null&&p!==void 0?p:[]].map(d=>this.getI18nAttributeValue(d))].map(d=>d?.context)).forEach(d=>d&&this.addI18nMessages(d))}addI18nMessages(a,l){a=a.toLowerCase(),this[ve].has(a)||this[ve].set(a,this.i18nService.subscribe(a,()=>this.onI18nUpdate(a))),this.i18nService.prepareContext(a,l??{})}addI18nContext(a,l){this.addI18nMessages(typeof a=="string"?a:a.name,l)}disconnectedCallback(){super.disconnectedCallback(),this[ve].forEach(a=>a()),this[ve].clear()}}return o=ve,Fa([(0,na.property)({type:Boolean})],r.prototype,"useCustomMessageContexts",void 0),r}var Fe=class extends aa(je.FtLitElement){},Ve=class extends aa(je.FtLitElementRedux){};var Oe=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},st=class extends Ve{constructor(){super(),this.editorMode=!1,this.addStore(O)}render(){return!this.key||!this.context?this.editorMode?"Select a context and a label key.":Ye.nothing:Ye.html`
|
|
849
843
|
<span class="ft-i18n">
|
|
850
844
|
${this.i18n(this.context,this.key,...Array.isArray(this.args)?this.args:[])}
|
|
851
845
|
</span>
|
|
852
|
-
|
|
846
|
+
`}update(o){var r;super.update(o),["context","key","defaultMessage"].some(i=>o.has(i))&&this.context&&this.key&&this.addI18nMessages(this.context,{[this.key]:(r=this.defaultMessage)!==null&&r!==void 0?r:""})}};st.elementDefinitions={};st.styles=Yn;Oe([(0,qe.redux)()],st.prototype,"editorMode",void 0);Oe([(0,Xe.property)()],st.prototype,"context",void 0);Oe([(0,Xe.property)()],st.prototype,"key",void 0);Oe([(0,qe.jsonProperty)([])],st.prototype,"args",void 0);Oe([(0,Xe.property)()],st.prototype,"defaultMessage",void 0);var Je=class e{static build(o){return new e(o)}static fromGwt(o){return new e(o)}constructor(o){this.name=o,this.properties=new Proxy({},{get:(r,i)=>{let a=i;return l=>({context:this.name,key:a,args:typeof l=="function"?void 0:l,argsProvider:typeof l=="function"?l:void 0})}}),this.messages=new Proxy({},{get:(r,i)=>(...a)=>ne.resolveMessage(this.name,i,...a)})}};(0,ia.customElement)("ft-i18n")(st);var we=Je.build("copyBlockComponent"),la={tooltipMessage:"Copy to clipboard",copySuccessMessage:"Copied!"};var Va=function(e,o,r,i){var a=arguments.length,l=a<3?o:i===null?i=Object.getOwnPropertyDescriptor(o,r):i,c;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")l=Reflect.decorate(e,o,r,i);else for(var p=e.length-1;p>=0;p--)(c=e[p])&&(l=(a<3?c(l):a>3?c(o,r,l):c(o,r))||l);return a>3&&l&&Object.defineProperty(o,r,l),l},_t=class extends Fe{constructor(){super(),this.addI18nContext(we,la)}render(){return Ne.html`
|
|
853
847
|
<div part="container">
|
|
854
|
-
${navigator.clipboard?
|
|
848
|
+
${navigator.clipboard?Ne.html`
|
|
855
849
|
<div part="button-container">
|
|
856
|
-
<ft-tooltip part="tooltip" text=${
|
|
850
|
+
<ft-tooltip part="tooltip" text=${we.messages.tooltipMessage()} position="bottom" exportpartsPrefix="tooltip">
|
|
857
851
|
<ft-button icon="CLONE" part="button" exportpartsPrefix="button" @click=${this.copyContents}></ft-button>
|
|
858
852
|
</ft-tooltip>
|
|
859
853
|
</div>
|
|
860
|
-
`:
|
|
854
|
+
`:Ne.nothing}
|
|
861
855
|
|
|
862
856
|
<div part="content">
|
|
863
857
|
<slot></slot>
|
|
864
858
|
</div>
|
|
865
859
|
</div>
|
|
866
|
-
`}async copyContents(){try{await navigator.clipboard.writeText(this.shadowRoot.host.innerText),this.tooltip.manual=!0,this.tooltip.text=
|
|
860
|
+
`}async copyContents(){try{await navigator.clipboard.writeText(this.shadowRoot.host.innerText),this.tooltip.manual=!0,this.tooltip.text=we.messages.copySuccessMessage(),await this.tooltip.show(1e3),this.tooltip.text=we.messages.tooltipMessage(),this.tooltip.manual=!1}catch{console.log("Failed to copy to clipboard")}}};_t.elementDefinitions={"ft-button":it,"ft-tooltip":A};_t.styles=Vn;Va([(0,ca.query)("[part='tooltip']")],_t.prototype,"tooltip",void 0);(0,sa.customElement)("ft-copy-block")(_t);})();
|
|
861
|
+
/*! Bundled license information:
|
|
862
|
+
|
|
863
|
+
lit-html/lit-html.js:
|
|
864
|
+
(**
|
|
865
|
+
* @license
|
|
866
|
+
* Copyright 2017 Google LLC
|
|
867
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
868
|
+
*)
|
|
869
|
+
|
|
870
|
+
lit-html/static.js:
|
|
871
|
+
(**
|
|
872
|
+
* @license
|
|
873
|
+
* Copyright 2020 Google LLC
|
|
874
|
+
* SPDX-License-Identifier: BSD-3-Clause
|
|
875
|
+
*)
|
|
876
|
+
*/
|